Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Documents/presentation-share_architectural_ressources_between_hardware_context/fr/root.tex
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Documents/presentation-share_architectural_ressources_between_hardware_context/fr/root.tex	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Documents/presentation-share_architectural_ressources_between_hardware_context/fr/root.tex	(revision 16)
@@ -0,0 +1,549 @@
+\section{Introduction}
+
+\frame
+    {
+      \frametitle{Introduction}
+
+      Chip MultiProcessors (CMP) et le Simultaneous Multi-Threading (SMT) sont 2 approches opposée qui résolves le même problème : éxècuter sur un même chip plusieurs threads.
+
+      \begin{description}
+      \item[CMP :] Chaque thread dispose de l'ensemble des ressources d'un core\\(Hydra, Piranha, Opteron)
+      \item[SMT :] Chaque thread partage les ressources d'un core avec toutes les autres\\(MARS-M, 21464, Pentium4 HyperThreading)
+      \item[CMP de SMT : ] il s'agit de plusieurs core de processeurs où chaque core est multi-threadé\\(Niagara, Power5, Montecito)
+      \end{description}
+    }
+
+\frame
+    {
+      \frametitle{Approche grain fin}
+
+      Entre le tout partagé et le tout dédié, nous pouvons faire varier dégré de partage de certaines ressources.
+
+      Ces objectif sont :
+      \begin{itemize}
+      \item Economiser de la surface%(Pour une même structure on compare sa duplication avec le contrôle nécessaire pour permettre son partage)
+      \item Augmenter leur taux d'utilisation en profitant du Thread Level Parallelism
+      \item Avoir le maximum de ressource disponible en éxècution ST (Single Thread), tout en minimisant la dégradation des performances en éxècution MT (Multi Thread)
+      \end{itemize}
+    }
+
+\frame
+    {
+      \frametitle{Travaux liés}
+
+      \begin{description}
+      \item[CASH : Revisiting hardware sharing in single-chip parallel processor]~\\2004 - Dolbeau et Seznec\\Partage entre les threads des unités à latence longue (multiplication, division ...), Prédicteur de branchement, Icache et Dcache.
+      \item[Conjoined-core Chip Multiprocessing]~\\2004 - Kumar, Jouppi et Tullsen\\Partage des unités flottantes, ports du crossbar (Cache à la mémoire), Icache et Dcache.
+      \end{description}
+    }
+
+\section{Expérimentation}
+\frame
+    {
+      \frametitle{Expérimentation}
+      Nous allons déterminer l'incidence du partage des ressources suivantes :
+
+      \begin{itemize}
+	\item I/Dcache
+	\item Front et Back end
+	\item Unités d'executions
+      \end{itemize}
+    }
+
+\subsection{Charge de travails}
+\frame
+    {
+      \frametitle{Charge de travails}
+
+      \begin{itemize}
+	\item Sélection des benchmarks parmit les SPECINT2000 (164.gzip, 175.vpr, 181.mcf, 255.vortex, 256.bzip2, 300.twolf)
+	\item Le nombre de software soumit au architecture est décrite par la combinaison $C_{\text{nb\_benchmarks}}^{\text{nb\_threads}}$
+	  Une charge de travail est donc composée de 4 benchmarks qui vont être éxecuter par l'un des 4 contextes disponibles.
+        \item Utilisation de {\it Newlib} pour d'avoir les librairies standard (libc, libm et fonction de bas niveau (read, write, open, close ...))
+      \end{itemize}
+    }
+
+\subsection{Architecture de référence}
+\frame
+    {
+      \frametitle{Architecture de référence - Core}
+
+      \begin{tabular}{l|c}
+	                                             & Commun		\\
+	\hline
+	\hline
+	nb\_ue                                       & 8                \\
+	\hline
+	taille - select\_queue                       & 4		\\
+	taille - reservation\_station                & 4		\\
+	taille - execute\_queue                      & 4		\\
+	\hline
+	Nombre de branchements spéculé               & 8 		\\
+	Return Address Stack                         & 16		\\
+	\hline
+	Réseau de bypass                             & Complet          \\
+	\hline
+	nb\_data\_access                             & 4*		\\ 
+	\hline
+	nb\_gpr\_reader                              & 12		\\
+	nb\_gpr\_writer                              & 8		\\
+	nb\_memory\_write                            & 3		\\
+	nb\_execute\_write                           & 6		\\
+	nb\_spr\_reader                              & 2		\\
+	nb\_spr\_writer                              & 2		\\
+      \end{tabular}
+      }
+
+\frame
+    {
+      \begin{tabular}{l|ccc}
+	                                             & 1 Core           & 2 Cores       & 4 Cores       \\
+	\hline
+	\hline
+	largeur                                      & 8 		& 4 		& 2 		\\
+	largeur des fenêtres                         & 16		& 8 		& 4 		\\
+	\hline
+	taille - ifetch\_queue                       & 8 		& 4 		& 2 		\\
+	taille - decod\_queue                        & 16		& 8 		& 4  		\\
+	taille - rename\_queue                       & 32		& 16 		& 8 		\\
+	taille - Re Order Buffer                     & 128		& 64 		& 32  		\\
+	\hline
+	Branch Target Buffer                         & 256	        & 128 	        & 64 	        \\
+	nb compteur 2bits (predicteur meta)          & 128              & 64            & 32            \\
+	nb compteur 2bits (predicteur global)        & 1K		& 512		& 256		\\
+	nb compteur 2bits (predicteur local)         & 16k		& 8k		& 4k		\\
+	\hline
+	nb\_branch\_complete                         & 4		& 2		& 1		\\
+	nb\_memory\_complete                         & 4		& 2		& 1		\\
+	\hline
+	nb\_gpr\_phy                                 & 128+128         	& 64+64       	& 32+32      	\\
+	nb\_gpr\_free                                & 8		& 4		& 2		\\
+	nb\_spr\_phy                                 & 64		& 32		& 64		\\
+	nb\_spr\_free                                & 8                & 4             & 2             \\   
+      \end{tabular}
+    }
+
+\frame
+    {
+      \frametitle{Architecture de référence - Système mémoire}
+
+      \begin{tabular}{l|ll}
+	                     & L1          & L2             \\
+	                     & I/D séparé  & unifié         \\
+	\hline
+	Taille               & 8 ko        & 2 Mo           \\
+	Nombre de lignes     & 128*        & 16k            \\
+	Nombre de mots/ligne & 16          & 32             \\
+	Associatif           & 4 voies     & 4 voies        \\
+	Latence - Hit        & 2 cycles    & 6 cycles       \\
+	Pénalités - Miss     & 4 cycles    & 100 cycles     \\
+      \end{tabular}
+
+      \vspace{\stretch{1}}
+
+      Les caches IL1 et DL1 sont dupliqués NB\_CLUSTER fois, de plus chacun ont leur nombre de lignes divisé par NB\_CLUSTER. De même pour les ports du Dcache (nb\_data\_access).
+    }
+
+\frame
+    {
+      \frametitle{Méthodologie}
+
+      Pour chaque instance
+      \begin{itemize}
+      \item On réalise autant de simulations qu'il y a de charge de travail (soit 15).
+      \item Une execution se fait en 11 millions de cycles dans lequel 1 millions ne sera pas prit en compte
+      \item Nous prenons le temps moyen sur ces 15 simulations et on le compare à la moyenne de ces 6 benchmarks exécuter dans la version ST du processeur
+      \item La comparaison donne le speedup de la version MT par rapport à la version ST
+      \end{itemize}
+    }
+
+\section{Résultat}
+
+\frame
+    {
+      \frametitle{Résultat}
+
+	\begin{center}
+	  \printgraph{simulation_all}{0.8}
+	\end{center}
+
+    }
+
+\frame
+    {
+      \begin{minipage}{0.45\textwidth}
+	\begin{center}
+	  \printgraph{simulation_cachel1}{0.8}
+	\end{center}
+      \end{minipage}
+      \begin{minipage}{0.45\textwidth}
+	Partage du cache induit :
+	\begin{itemize}
+	  \item un conflit d'accès au port
+	  \item un pourrissement des données par les autre contextes
+	  \item 
+	\end{itemize}
+      \end{minipage}
+    }
+
+\frame
+    {
+      \begin{minipage}{0.45\textwidth}
+	\begin{center}
+	  \printgraph{simulation_operative}{0.8}
+	\end{center}
+      \end{minipage}
+      \begin{minipage}{0.45\textwidth}
+	Partage de la partie opérative induit 
+	\begin{itemize}
+	  \item Une augmentation de l'influence des instructions mal prédite
+	  \item Une augmentation de la sensiblité au évenement peu courant (synchronisation, ...)
+	\end{itemize}
+      \end{minipage}
+    }
+
+\frame
+    {
+      \begin{minipage}{0.45\textwidth}
+	\begin{center}
+	  \printgraph{simulation_ue}{0.8}
+	\end{center}
+      \end{minipage}
+      \begin{minipage}{0.45\textwidth}
+	Partage des unités d'exécutions
+	\begin{itemize}
+	  \item Augmente leur taux d'utilisations
+	  \item Augmente la sensiblité dut au erreur de routage (envoye vers une unité surchargé alors que d'autre sont en famine d'instructions)
+	\end{itemize}
+      \end{minipage}
+    }
+
+\section{Réalisation VHDL}
+
+\frame
+    {
+      \frametitle{Réalisation VHDL}
+      
+      Les modèles vont être générés par des méthodes du modeles SystemC afin d'obtenir du VHDL classique
+    }
+
+\subsection{Regroupement d'instruction}
+\frame
+    {
+      \frametitle{Regroupement d'instruction}
+
+      Les processeurs à contrôle dynamique (superscalaire classique) ou à contrôle statique (VLIW) résolvent différemment le problème du lancement multiple d'instructions. 
+
+      L'avantage principal du VLIW étant sa simplicité de ses unités de contrôles : les instructions sont dans des slots précaractérisés.
+    }
+
+\frame
+    {
+      \frametitle{Nouvel étage : {\it Group}}
+
+      \begin{itemize}
+      \item Entrée : A paquets contenant N éléments
+      \item Sortie : B paquets contenant M éléments
+      \item 1 élément soit un paquet d'éléments soit une instruction
+      \item Algorithme de paquétisation libre
+      \item Simplification : M est un multiple de N paquets
+      \end{itemize}
+    }
+    
+\frame
+    {
+      \frametitle{Etage {\it Group1}}
+
+      Situé après l'étage de décodage
+      
+      \begin{itemize}
+      \item Les paquets sont formée d'instructions consécutive (car non encore inséré dans le ReOrder Buffer)
+      \item Un paquet contient des instructions indépendants
+      \item Les paquets suivent des règles de Types (Suivant les routages possibles et des types des unités d'éxecutions)
+      \end{itemize}
+    }
+
+\frame
+    {
+      \begin{itemize}
+      \item + Simplification de la logique de gestion des dépendances RAW et WAW proche (comparaison sur les numéros de registres logiques)
+      \item + Une potentiel simplification du RAT si l'algorithme prends en compte de définir un seuil maximum du nombre de lecture/écriture
+      \item + ReOrder Buffer simplifié, les requêtes d'insertion et de retirement sont sur des paquets
+      \item - Insertion de Nop
+      \item - Paquetisation dans l'ordre du programme (Peu ou pas de liberté dans l'algo de paquétisations)
+      \end{itemize}
+    }
+
+\frame
+    {
+      \frametitle{Etage {\it Group2}}
+
+      Situé après l'insertion dans le ReOrder Buffer
+      
+      \begin{itemize}
+      \item + L'algorhtme de paquétisations à de plus grand degré de liberté (Car peut prendre les paquets dans le désordre)
+      \item + Diminution du contrôle pour les étages de sélection
+      \item - Encore plus de Nop inséré
+      \item - Performance de la paquetisation lié au nombre d'instruction en attente dans la rename\_queue et à la fenêtre d'instruction
+      \end{itemize}
+    }
+
+\frame
+    {
+      \printgraph{MORPHEO_paquetisation}{0.5}
+    }
+
+\frame
+    {
+      \frametitle{Incidence}
+
+      \begin{enumerate}
+      \item L'accès au banc de registres en lecture se fait sur un paquet entier? Si une des instructions n'a pas ses opérandes?
+      \item L'écriture dans le banc de registres se fait sur un paquet entier?
+      \item Plusieurs niveaux de dispatch, clusterisation implicite des unités fonctionnelles
+      \item Attendre la fin d'un paquet de niveau 2, alors que l'étage Commit n'a besoin que de paquet de niveau 1?
+      \end{enumerate}
+    }
+
+
+\subsection{Partage des ensembles associatifs}
+\frame
+    {
+      \frametitle{Partage des ensembles associatifs}
+
+      Soit une structure associative par ensemble (par exemple le cache ou la Branch Target Buffer)
+
+      Posons :
+      \begin{itemize}
+      \item E le nombre d'entité accédant à cette structure
+      \item P le nombre de port nécessaire pour chaque entité (on posera P identique pour chaque E)
+      \item N le degré d'associativité de la structure
+      \end{itemize}
+    }
+
+\frame
+    {
+      \frametitle{Structure complémentement partagée}
+
+      La structure est ici entièrement partagé entre toutes les entités.
+
+      \printgraph{MORPHEO_structure_associative_full_share}{0.8}
+
+      \begin{center}
+	$P_{total1} = E*N*P$
+      \end{center}
+    }
+
+\frame
+    {
+      \frametitle{Structure partiellement partagée}
+
+      Nous allons maintenant décomposer la structure en deux parties : 
+      \begin{enumerate}
+	\item une première qui est accessible par toutes les entités et sera associative de degré M
+	\item la seconde est accessible par X sous-ensemble d'entité. Chaque groupe sont disjoint 2 à 2 et contient E' élément (donc $X=\frac{E}{E'}$). Dans chaque groupe il y a une structure associative de degré K
+	\item Pour simplifier : $N=M+X*K$ avec E' et K et constant pour chaque groupe
+      \end{enumerate}
+    }
+
+\frame
+    {
+      \printgraph{MORPHEO_structure_associative_semi_share}{0.8}
+      \begin{center}
+	$P_{total2} = E*(M+K)*P$
+      \end{center}
+    }
+
+\frame
+    {
+      \frametitle{Gain}
+      \begin{center}
+	$P_{total1} - P_{total2} = E*(\frac{E}{E'}-1)*K*P$
+      \end{center}
+
+      Soit dans les deux exemples précédents :
+
+      \begin{center}
+      \begin{tabular}{l|cc}
+	      & Full shared  & Semi shared       \\
+	\hline				         
+	N     & 8            & $M+X*K = 8$       \\
+	M     & -            & 4                 \\
+	K     & -            & 2                 \\
+	E     & 6            & 6                 \\
+	E'    & -            & 3                 \\
+	\hline
+	Total & $E*N*P$      & $E*(M+K)*P$       \\
+	      & $48*P$       & $36*P$            \\
+	\hline
+	Gain  & \multicolumn{2}{c}{$E*(\frac{E}{E'}-1)*K*P$}\\
+	      & \multicolumn{2}{c}{$12*P$}                  \\
+      \end{tabular}
+      \end{center}
+    }
+
+\frame
+    {
+      \frametitle{Incidence}
+
+      \begin{itemize}
+	\item + Gain en nombre de port
+	\item + Moins de pourrisement des structures dut au partage des ressources
+	\item - Perte de performance en execution ST, et potentiellement en execution MT
+      \end{itemize}
+    }
+
+
+\subsection{Clusterisation des Unités d'éxecution - Cache de banc de registres}
+\frame
+    {
+      \begin{minipage}{0.55\textwidth}
+      \frametitle{Partie exécutive \dots}
+      \printgraph{MORPHEO_Partie_executive-schema_de_principe}{0.65}
+      \end{minipage}
+      \begin{minipage}{0.40\textwidth}
+	Posons : 
+	\begin{itemize}
+	  \item $N = \sum_{i=1}^{k} n_{i}$
+	  \item $M = \sum_{i=1}^{k} m_{i}$
+	  \item W : Nb reg dest
+	  \item R : Nb reg src
+	  \item D : Profondeur SR
+	\end{itemize}
+      \end{minipage}
+    }
+
+\frame
+    {
+      \frametitle{\dots ~ avec un réseaux de bypass complet}
+
+      \begin{center}
+	\printgraph{MORPHEO_Partie_executive-bypass_complet}{0.6}
+      \end{center}
+    }
+
+\frame
+    {
+      \frametitle{\dots ~ avec clusterisation}
+
+      \begin{minipage}{0.48\textwidth}
+	\begin{center}
+	  \printgraph{MORPHEO_Partie_executive-cluster}{0.6}
+	\end{center}
+      \end{minipage}
+      \begin{minipage}{0.48\textwidth}
+	En posant : 
+
+	\begin{itemize}
+	  \item V  : le nombre de voisin
+	  \item M' : le nombre de résultat circulant entre les clusters
+	\end{itemize}
+      \end{minipage}
+    }
+
+\frame
+    {
+      \frametitle{\dots ~ avec cache de banc de registres}
+
+      \begin{center}
+	\begin{minipage}{0.48\textwidth}
+	  \printgraph{MORPHEO_Partie_executive-cluster_avec_cache1}{0.6}
+	\end{minipage}
+	\begin{minipage}{0.48\textwidth}
+	  \printgraph{MORPHEO_Partie_executive-cluster_avec_cache2}{0.6}
+	\end{minipage}
+      \end{center}
+    }
+
+%\frame
+%    {
+%      \frametitle{Comparaison}
+%
+%      Posons S le nombre de registres physiques.
+%
+%      Avec :
+%      \begin{center}
+%	\begin{tabular}{lc}
+%	  sff2 & 34 transistors\\
+%	  nmx2 & 12 transistors\\
+%	\end{tabular}
+%      \end{center}
+%
+%      Avec : 
+%      \begin{itemize}
+%	\item R = 2
+%	\item W = 1
+%	\item $\forall i,j \in [1:k[ ~ n_{i}=n_{j}$, avec M = 12
+%	\item $\forall i,j \in [1:k[ ~ m_{i}=m_{j}$, avec N = 8
+%	%\item $\forall i   \in [1:k[ ~ D_{i}=D$
+%      \end{itemize}
+%	
+%      Taille du Banc de registres : $S * Size_{sff2} + ((W_{RF}-1)*S + R_{RF}*(S-1)) * Size_{nmx2}$
+%
+%
+%     }
+
+\frame
+    {      
+      \frametitle{Comparaison}
+
+      \begin{center}
+	\begin{tabular}{l|c}
+	              & nb bypass       \\
+	  \hline
+	  Complete    & $(W*M)*(R*D*N)$ \\
+	  Clusterisé  & $\sum_{i=1}^{k} ((W*m_{i} + V*B) * R*D*m_{i})$\\
+	  Cache 1     & $\sum_{i=1}^{k} (W*m_{i} * R*D*m_{i})$\\
+	  Cache 2     & $0$\\
+	\end{tabular}
+
+	\begin{tabular}{l|c}
+	              & Banc de registres \\
+	  \hline
+	  Complete    & $(W*M)$ port d'écriture, $(R*N)$ de lecture\\
+	  Clusterisé  & Bonne cible pour le multi banc      \\
+	  Cache 1     & 1 port de lecture, 1 port d'écriture\\
+	  Cache 2     & 1 port de lecture, 1 port d'écriture\\
+	\end{tabular}
+
+      \end{center}
+
+
+    }
+
+
+\section{Planning}
+\frame
+    {
+      \frametitle{Tâche à réaliser}
+
+      \begin{enumerate}
+      \item Réecriture complete du code SystemC 
+	\begin{itemize}
+	\item Compatibilité avec SystemCass
+	\item Optimisation du code et des algorithmes
+	\item Mise en forme pour l'exportation du projet
+	\item Définition d'un format pour la configuration
+	\item Définition d'un format pour les statistiques
+	\end{itemize}
+      \item Ecriture systématique de la documentation pour chaque composant
+	\begin{itemize}
+	\item Structure interne
+	\item Incidence des paramètres sur la structure (Surface et Temps d'execution)
+	\item Choix architecturaux pour le passage au VHDL
+	\end{itemize}
+      \item Ecriture des modèles VHDL et synthèse sur FPGA
+      \end{enumerate}
+    }
+
+\frame
+    {
+      \frametitle{Tâche déléguée}
+
+      \begin{enumerate}
+      \item Ecriture d'un cache de donnée en SystemC/VHDL
+      \item Ecriture d'un cache d'instruction en VHDL
+      \item Automatisation du processus d'optimisation de la configuration en fonction des statistiques et de contraintes
+      \item Synthèse des modèles VHDL avec Coriolis
+      \end{enumerate}
+    }
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_all.dat
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_all.dat	(revision 15)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_all.dat	(revision 16)
@@ -1,13 +1,14 @@
-1.46 # x4-1\_1\_4-8
-2.37 # x4-1\_2\_2-8
-2.37 # x4-1\_2\_2-4
-2.94 # x4-1\_4\_1-8
-3.27 # x4-1\_4\_1-2
-2.51 # x4-2\_1\_2-8
-2.4  # x4-2\_1\_2-4
-3.38 # x4-2\_2\_1-8
-3.41 # x4-2\_2\_1-4
-3.63 # x4-2\_2\_1-2
-3.94 # x4-4\_1\_1-8
-3.88 # x4-4\_1\_1-4
-3.92 # x4-4\_1\_1-2
+1.46 # x04_w08-01_e08-01
+2.37 # x04_w08-04_e08-01
+2.37 # x04_w08-04_e08-07
+2.94 # x04_w08-07_e08-01
+3.27 # x04_w08-07_e08-15
+2.51 # x04_w08-08_e08-01
+2.4  # x04_w08-08_e08-07
+3.38 # x04_w08-11_e08-01
+3.64 # x04_w08-11_e08-07a
+3.41 # x04_w08-11_e08-07b
+3.63 # x04_w08-11_e08-15
+3.94 # x04_w08-15_e08-01
+3.88 # x04_w08-15_e08-07
+3.92 # x04_w08-15_e08-15 
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_all.p
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_all.p	(revision 15)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_all.p	(revision 16)
@@ -16,18 +16,19 @@
 set yrange [0:4]
    
-set xtics rotate by -25 ('x4-1\_1\_4-8'  0 , \
-			 'x4-1\_2\_2-8'  1 , \
-			 'x4-1\_2\_2-4'  2 , \
-			 'x4-1\_4\_1-8'  3 , \
-			 'x4-1\_4\_1-2'  4 , \
-			 'x4-2\_1\_2-8'  5 , \
-			 'x4-2\_1\_2-4'  6 , \
-			 'x4-2\_2\_1-8'  7 , \
-			 'x4-2\_2\_1-4'  8 , \
-			 'x4-2\_2\_1-2'  9 , \
-			 'x4-4\_1\_1-8'  10, \
-			 'x4-4\_1\_1-4'  11, \
-			 'x4-4\_1\_1-2'  12  \
-			 )			   
+set xtics rotate by -25 ('x04\_w08-01\_e08-01 '  0 , \
+			 'x04\_w08-04\_e08-01 '  1 , \
+			 'x04\_w08-04\_e08-07 '  2 , \
+			 'x04\_w08-07\_e08-01 '  3 , \
+			 'x04\_w08-07\_e08-15 '  4 , \
+			 'x04\_w08-08\_e08-01 '  5 , \
+			 'x04\_w08-08\_e08-07 '  6 , \
+			 'x04\_w08-11\_e08-01 '  7 , \
+			 'x04\_w08-11\_e08-07a'  8 , \
+			 'x04\_w08-11\_e08-07b'  9 , \
+			 'x04\_w08-11\_e08-15 '  10, \
+			 'x04\_w08-15\_e08-01 '  11, \
+			 'x04\_w08-15\_e08-07 '  12, \
+			 'x04\_w08-15\_e08-15 '  13  \
+			 )
 
 plot "simulation_all.dat" notitle
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_cachel1.dat
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_cachel1.dat	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_cachel1.dat	(revision 16)
@@ -0,0 +1,3 @@
+2.94 # x04_w08-07_e08-01
+3.38 # x04_w08-11_e08-01
+3.94 # x04_w08-15_e08-01
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_cachel1.p
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_cachel1.p	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_cachel1.p	(revision 16)
@@ -0,0 +1,24 @@
+set size 0.5, 1.0
+set terminal postscript eps enhanced color
+
+set out "../Schema_eps/simulation_cachel1.eps"
+
+unset label
+unset log
+
+set data style boxes
+set boxwidth 0.5
+set style fill solid 1.000000 border -1
+
+set grid
+set xlabel "Architecture"
+set ylabel "Speed Up MT/ST"
+set yrange [2:4]
+   
+set xtics rotate by -25 ('x04\_w08-07\_e08-01 '  0 , \
+			 'x04\_w08-11\_e08-01 '  1 , \
+			 'x04\_w08-15\_e08-01 '  2   \
+			 )
+
+plot "simulation_cachel1.dat" notitle
+     
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_operative.dat
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_operative.dat	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_operative.dat	(revision 16)
@@ -0,0 +1,5 @@
+1.46 # x04_w08-01_e08-01
+2.37 # x04_w08-04_e08-01
+2.94 # x04_w08-07_e08-01
+3.38 # x04_w08-11_e08-01
+3.94 # x04_w08-15_e08-01
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_operative.p
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_operative.p	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_operative.p	(revision 16)
@@ -0,0 +1,26 @@
+set size 0.5, 1.0
+set terminal postscript eps enhanced color
+
+set out "../Schema_eps/simulation_operative.eps"
+
+unset label
+unset log
+
+set data style boxes
+set boxwidth 0.5
+set style fill solid 1.000000 border -1
+
+set grid
+set xlabel "Architecture"
+set ylabel "Speed Up MT/ST"
+set yrange [0:4]
+   
+set xtics rotate by -25 ('x04\_w08-01\_e08-01 '  0 , \
+			 'x04\_w08-04\_e08-01 '  1 , \
+			 'x04\_w08-07\_e08-01 '  2 , \
+			 'x04\_w08-11\_e08-01 '  4 , \
+			 'x04\_w08-15\_e08-01 '  5   \
+			 )
+
+plot "simulation_operative.dat" notitle
+     
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_ue.dat
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_ue.dat	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_ue.dat	(revision 16)
@@ -0,0 +1,4 @@
+3.38 # x04_w08-11_e08-01
+3.64 # x04_w08-11_e08-07a
+3.41 # x04_w08-11_e08-07b
+3.63 # x04_w08-11_e08-15
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_ue.p
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_ue.p	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Graph/simulation_ue.p	(revision 16)
@@ -0,0 +1,25 @@
+set size 0.5, 1.0
+set terminal postscript eps enhanced color
+
+set out "../Schema_eps/simulation_ue.eps"
+
+unset label
+unset log
+
+set data style boxes
+set boxwidth 0.5
+set style fill solid 1.000000 border -1
+
+set grid
+set xlabel "Architecture"
+set ylabel "Speed Up MT/ST"
+set yrange [2:4]
+   
+set xtics rotate by -25 ('x04\_w08-11\_e08-01 '  0 , \
+			 'x04\_w08-11\_e08-07a'  1 , \
+			 'x04\_w08-11\_e08-07b'  2 , \
+			 'x04\_w08-11\_e08-15 '  3   \
+			 )
+
+plot "simulation_ue.dat" notitle
+     
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Language/presentation-share_architectural_ressources_between_hardware_context
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Language/presentation-share_architectural_ressources_between_hardware_context	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Language/presentation-share_architectural_ressources_between_hardware_context	(revision 16)
@@ -0,0 +1,1 @@
+fr
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Package/presentation-share_architectural_ressources_between_hardware_context.sty
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Package/presentation-share_architectural_ressources_between_hardware_context.sty	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Package/presentation-share_architectural_ressources_between_hardware_context.sty	(revision 16)
@@ -0,0 +1,9 @@
+\def\review{2006/10/13}
+
+\title{Incidence du partage des ressources architecturales entre les contextes matériels}
+
+\institute{Equipe SOC - Laboratoire d'information de Paris VI - France}
+ 
+\author{Mathieu Rosière}
+
+\date{\review}
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Package/presentation-share_architectural_ressources_between_hardware_context.tex
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Package/presentation-share_architectural_ressources_between_hardware_context.tex	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Package/presentation-share_architectural_ressources_between_hardware_context.tex	(revision 16)
@@ -0,0 +1,3 @@
+\usepackage{beamerthemetree}
+
+\setbeameroption{show notes on second screen}
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-bypass_complet.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-bypass_complet.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-bypass_complet.fig	(revision 16)
@@ -0,0 +1,218 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 4575 3300 6225 6000
+6 5700 3300 6150 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 5700 3300 5700 3900 6150 3900 6150 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6150 3750 5700 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5700 3600 6150 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5700 3450 6150 3450
+-6
+6 4650 3300 5100 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 4650 3300 4650 3900 5100 3900 5100 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5100 3750 4650 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4650 3600 5100 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4650 3450 5100 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 5400 4650 750 150 5400 4650 4650 4500
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 6150 4950 5700 4950 5700 5400 6150 5400 6150 4950
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 5625 5250 5175 5250 5175 5700 5625 5700 5625 5250
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 5100 5550 4650 5550 4650 6000 5100 6000 5100 5550
+-6
+6 6675 3300 8325 6000
+6 7800 3300 8250 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7800 3300 7800 3900 8250 3900 8250 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8250 3750 7800 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3600 8250 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3450 8250 3450
+-6
+6 6750 3300 7200 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 6750 3300 6750 3900 7200 3900 7200 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7200 3750 6750 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3600 7200 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3450 7200 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 7500 4650 750 150 7500 4650 6750 4500
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 8250 4950 7800 4950 7800 5400 8250 5400 8250 4950
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7725 5250 7275 5250 7275 5700 7725 5700 7725 5250
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7200 5550 6750 5550 6750 6000 7200 6000 7200 5550
+-6
+6 8775 3300 10425 6000
+6 9900 3300 10350 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 9900 3300 9900 3900 10350 3900 10350 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 10350 3750 9900 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 9900 3600 10350 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 9900 3450 10350 3450
+-6
+6 8850 3300 9300 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 8850 3300 8850 3900 9300 3900 9300 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 9300 3750 8850 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8850 3600 9300 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8850 3450 9300 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 9600 4650 750 150 9600 4650 8850 4500
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 10350 4950 9900 4950 9900 5400 10350 5400 10350 4950
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 9825 5250 9375 5250 9375 5700 9825 5700 9825 5250
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 9300 5550 8850 5550 8850 6000 9300 6000 9300 5550
+-6
+6 10875 3300 12525 6000
+6 12000 3300 12450 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 12000 3300 12000 3900 12450 3900 12450 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 12450 3750 12000 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 12000 3600 12450 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 12000 3450 12450 3450
+-6
+6 10950 3300 11400 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 10950 3300 10950 3900 11400 3900 11400 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 11400 3750 10950 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 10950 3600 11400 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 10950 3450 11400 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 11700 4650 750 150 11700 4650 10950 4500
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 12450 4950 12000 4950 12000 5400 12450 5400 12450 4950
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 11925 5250 11475 5250 11475 5700 11925 5700 11925 5250
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 11400 5550 10950 5550 10950 6000 11400 6000 11400 5550
+-6
+6 11025 3825 11325 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 11025 3825 11025 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 11175 3825 11175 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 11325 3825 11325 3900 11325 3975 11325 4050
+-6
+6 12075 3825 12375 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 12075 3825 12075 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 12225 3825 12225 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 12375 3825 12375 3900 12375 3975 12375 4050
+-6
+6 9975 3825 10275 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 9975 3825 9975 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 10125 3825 10125 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 10275 3825 10275 3900 10275 3975 10275 4050
+-6
+6 8925 3825 9225 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8925 3825 8925 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 9075 3825 9075 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 9225 3825 9225 3900 9225 3975 9225 4050
+-6
+6 7875 3825 8175 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7875 3825 7875 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8025 3825 8025 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 8175 3825 8175 3900 8175 3975 8175 4050
+-6
+6 6825 3825 7125 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6825 3825 6825 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6975 3825 6975 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7125 3825 7125 3900 7125 3975 7125 4050
+-6
+6 5775 3825 6075 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5775 3825 5775 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5925 3825 5925 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 6075 3825 6075 3900 6075 3975 6075 4050
+-6
+6 4725 3825 5025 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4725 3825 4725 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4875 3825 4875 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 5025 3825 5025 3900 5025 3975 5025 4050
+-6
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 8250 5175 8400 5175 8400 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7725 5475 8550 5475 8550 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7200 5775 8700 5775 8700 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5025 4050 12375 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4875 4200 12225 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4725 4350 12075 4350
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8400 4350 8400 1950
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8550 4200 8550 1950
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8700 4050 8700 1950
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6975 1950 6975 3375
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8025 1950 8025 3375
+2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
+	 12450 1650 12450 2250 4650 2250 4650 1650 12450 1650
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster.fig	(revision 16)
@@ -0,0 +1,166 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 6675 3300 8325 6000
+6 7800 3300 8250 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7800 3300 7800 3900 8250 3900 8250 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8250 3750 7800 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3600 8250 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3450 8250 3450
+-6
+6 6750 3300 7200 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 6750 3300 6750 3900 7200 3900 7200 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7200 3750 6750 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3600 7200 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3450 7200 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 7500 4650 750 150 7500 4650 6750 4500
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 8250 4950 7800 4950 7800 5400 8250 5400 8250 4950
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7725 5250 7275 5250 7275 5700 7725 5700 7725 5250
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7200 5550 6750 5550 6750 6000 7200 6000 7200 5550
+-6
+6 7875 3825 8175 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7875 3825 7875 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8025 3825 8025 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 8175 3825 8175 3900 8175 3975 8175 4050
+-6
+6 6825 3825 7125 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6825 3825 6825 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6975 3825 6975 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7125 3825 7125 3900 7125 3975 7125 4050
+-6
+6 9000 2400 9300 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 4
+	 9300 2400 9000 2400 9000 2700 9300 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9075 2400 9075 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9150 2400 9150 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9225 2400 9225 2700
+-6
+6 9000 2850 9300 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 4
+	 9000 2850 9300 2850 9300 3150 9000 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9225 2850 9225 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9150 2850 9150 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9075 2850 9075 3150
+-6
+6 6150 2850 6450 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 4
+	 6150 2850 6450 2850 6450 3150 6150 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6375 2850 6375 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6300 2850 6300 3150
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6225 2850 6225 3150
+-6
+6 6150 2400 6450 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 4
+	 6450 2400 6150 2400 6150 2700 6450 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6225 2400 6225 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6300 2400 6300 2700
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6375 2400 6375 2700
+-6
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 8250 5175 8400 5175 8400 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7725 5475 8550 5475 8550 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7200 5775 8700 5775 8700 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7125 4050 8700 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6975 4200 8550 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6825 4350 8400 4350
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6975 1950 6975 3375
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8025 1950 8025 3375
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 4
+	 8400 3750 8400 3300 8700 3300 8700 3750
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 8400 3600 8700 3600
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 8700 3450 8400 3450
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8550 3300 8550 3075 9150 3075
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8550 3075 8550 2475 6300 2475
+2 1 0 1 1 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7650 4050 7650 1950
+2 1 0 1 1 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7500 4200 7500 1950
+2 1 0 1 1 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7350 4350 7350 1950
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8400 4350 8400 3825
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8550 4200 8550 3825
+2 1 0 1 12 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8700 4050 8700 3825
+2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
+	 9450 1650 9450 2250 6000 2250 6000 1650 9450 1650
+2 1 2 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9150 1350 9150 6300
+2 1 2 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6300 1350 6300 6300
+2 1 1 1 12 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 9150 2625 8175 2625 8175 3375
+2 1 1 1 12 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8175 2625 7125 2625 7125 3375
+2 1 1 1 12 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7125 2625 6300 2625
+2 1 1 1 12 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 6825 2925 7875 2925 7875 3375
+2 1 1 1 12 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 6300 2925 6825 2925 6825 3375
+2 1 1 1 12 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7875 2925 9150 2925
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster_avec_cache1.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster_avec_cache1.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster_avec_cache1.fig	(revision 16)
@@ -0,0 +1,106 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 6675 3300 8325 6000
+6 7800 3300 8250 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7800 3300 7800 3900 8250 3900 8250 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8250 3750 7800 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3600 8250 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3450 8250 3450
+-6
+6 6750 3300 7200 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 6750 3300 6750 3900 7200 3900 7200 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7200 3750 6750 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3600 7200 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3450 7200 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 7500 4650 750 150 7500 4650 6750 4500
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 8250 4950 7800 4950 7800 5400 8250 5400 8250 4950
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7725 5250 7275 5250 7275 5700 7725 5700 7725 5250
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7200 5550 6750 5550 6750 6000 7200 6000 7200 5550
+-6
+6 7875 3825 8175 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7875 3825 7875 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8025 3825 8025 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 8175 3825 8175 3900 8175 3975 8175 4050
+-6
+6 6825 3825 7125 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6825 3825 6825 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6975 3825 6975 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7125 3825 7125 3900 7125 3975 7125 4050
+-6
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 8250 5175 8400 5175 8400 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7725 5475 8550 5475 8550 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7200 5775 8700 5775 8700 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7125 4050 8700 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6975 4200 8550 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6825 4350 8400 4350
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6975 3000 6975 3375
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8025 3000 8025 3375
+2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
+	 9450 1650 9450 2250 6000 2250 6000 1650 9450 1650
+2 1 2 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9150 1350 9150 6300
+2 1 2 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6300 1350 6300 6300
+2 1 0 1 4 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8700 4050 8700 2775 8100 2775
+2 1 0 1 4 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8550 4200 8550 2925 8100 2925
+2 1 0 1 4 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8400 4350 8400 3075 8100 3075
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7800 2850 7800 2400
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 0 0 2
+	 6000 2400 9450 2400
+2 4 0 1 24 7 50 -1 -1 4.000 0 0 7 0 0 5
+	 8250 2700 8250 3150 6750 3150 6750 2700 8250 2700
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8250 2400 8250 1950
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 0 0 2
+	 6000 2550 9450 2550
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7200 2550 7200 2850
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6750 1950 6750 2550
+4 1 24 50 -1 0 12 0.0000 4 135 90 7725 1575 1\001
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster_avec_cache2.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster_avec_cache2.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-cluster_avec_cache2.fig	(revision 16)
@@ -0,0 +1,84 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 6675 3300 8325 6000
+6 7800 3300 8250 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7800 3300 7800 3900 8250 3900 8250 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8250 3750 7800 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3600 8250 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7800 3450 8250 3450
+-6
+6 6750 3300 7200 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 6750 3300 6750 3900 7200 3900 7200 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7200 3750 6750 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3600 7200 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6750 3450 7200 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 7500 4650 750 150 7500 4650 6750 4500
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 8250 4950 7800 4950 7800 5400 8250 5400 8250 4950
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7725 5250 7275 5250 7275 5700 7725 5700 7725 5250
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7200 5550 6750 5550 6750 6000 7200 6000 7200 5550
+-6
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 8250 5175 8400 5175 8400 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7725 5475 8550 5475 8550 4200
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7200 5775 8700 5775 8700 4050
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6975 3000 6975 3375
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8025 3000 8025 3375
+2 4 0 1 0 7 50 -1 -1 0.000 0 0 7 0 0 5
+	 9450 1650 9450 2250 6000 2250 6000 1650 9450 1650
+2 1 2 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 9150 1350 9150 6300
+2 1 2 1 12 7 50 -1 -1 3.000 0 0 -1 0 0 2
+	 6300 1350 6300 6300
+2 1 0 1 4 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8700 4050 8700 2775 8100 2775
+2 1 0 1 4 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8550 4200 8550 2925 8100 2925
+2 1 0 1 4 7 50 -1 -1 4.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 8400 4350 8400 3075 8100 3075
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7800 2850 7800 2400
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 0 0 2
+	 6000 2400 9450 2400
+2 4 0 1 24 7 50 -1 -1 4.000 0 0 7 0 0 5
+	 8250 2700 8250 3150 6750 3150 6750 2700 8250 2700
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 0 0 2
+	 6000 2550 9450 2550
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7200 2550 7200 2850
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6750 1950 6750 2550
+2 1 0 1 24 7 50 -1 -1 4.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 8250 2400 8250 1950
+4 1 24 50 -1 0 12 0.0000 4 135 90 7725 1575 2\001
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-schema_de_principe.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-schema_de_principe.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_Partie_executive-schema_de_principe.fig	(revision 16)
@@ -0,0 +1,133 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 4575 2925 6225 5925
+6 4650 3300 5100 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 4650 3300 4650 3900 5100 3900 5100 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5100 3750 4650 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4650 3600 5100 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4650 3450 5100 3450
+-6
+6 5700 3300 6150 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 5700 3300 5700 3900 6150 3900 6150 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6150 3750 5700 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5700 3600 6150 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5700 3450 6150 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 5400 4500 750 300 5400 4500 4650 4200
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 5925 3900 5925 3975 5925 4050 5925 4125 5925 4200 5925 4275
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 4875 3900 4875 3975 4875 4050 4875 4125 4875 4200 4875 4275
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 4875 4725 4875 4800 4875 4875 4875 4950 4875 5025 4875 5100
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 5925 4725 5925 4800 5925 4875 5925 4950 5925 5025 5925 5100
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 5925 2925 5925 3000 5925 3075 5925 3150 5925 3225 5925 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 4875 2925 4875 3000 4875 3075 4875 3150 4875 3225 4875 3300
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 5100 5100 4650 5100 4650 5550 5100 5550 5100 5100
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 6150 5100 5700 5100 5700 5550 6150 5550 6150 5100
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 4875 5550 4875 5625 4875 5700 4875 5775 4875 5850 4875 5925
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 5925 5550 5925 5625 5925 5700 5925 5775 5925 5850 5925 5925
+4 1 0 50 -1 0 12 0.0000 4 15 270 5400 3600 ......\001
+4 1 0 50 -1 0 12 0.0000 4 15 270 5400 5325 ......\001
+-6
+6 6975 2925 8625 5925
+6 7050 3300 7500 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 7050 3300 7050 3900 7500 3900 7500 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7500 3750 7050 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7050 3600 7500 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7050 3450 7500 3450
+-6
+6 8100 3300 8550 3900
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 4
+	 8100 3300 8100 3900 8550 3900 8550 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8550 3750 8100 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8100 3600 8550 3600
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 8100 3450 8550 3450
+-6
+1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 7800 4500 750 300 7800 4500 7050 4200
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 8325 3900 8325 3975 8325 4050 8325 4125 8325 4200 8325 4275
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 7275 3900 7275 3975 7275 4050 7275 4125 7275 4200 7275 4275
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 7275 4725 7275 4800 7275 4875 7275 4950 7275 5025 7275 5100
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 8325 4725 8325 4800 8325 4875 8325 4950 8325 5025 8325 5100
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 8325 2925 8325 3000 8325 3075 8325 3150 8325 3225 8325 3300
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 7275 2925 7275 3000 7275 3075 7275 3150 7275 3225 7275 3300
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7500 5100 7050 5100 7050 5550 7500 5550 7500 5100
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 8550 5100 8100 5100 8100 5550 8550 5550 8550 5100
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 7275 5550 7275 5625 7275 5700 7275 5775 7275 5850 7275 5925
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 6
+	3 0 1.00 60.00 120.00
+	 8325 5550 8325 5625 8325 5700 8325 5775 8325 5850 8325 5925
+4 1 0 50 -1 0 12 0.0000 4 15 270 7800 3600 ......\001
+4 1 0 50 -1 0 12 0.0000 4 15 270 7800 5325 ......\001
+-6
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4650 2850 6150 2850
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7050 2850 8550 2850
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7050 6000 8550 6000
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4650 6000 6150 6000
+4 1 0 50 -1 0 12 0.0000 4 15 270 6600 4500 ......\001
+4 1 1 50 -1 0 14 0.0000 4 150 270 5400 6300 m1\001
+4 1 1 50 -1 0 14 0.0000 4 150 270 7800 6300 mk\001
+4 1 1 50 -1 0 14 0.0000 4 150 210 7800 2700 nk\001
+4 1 1 50 -1 0 14 0.0000 4 150 210 5400 2700 n1\001
+4 1 0 50 -1 0 12 1.5708 4 135 330 4500 5325 Unit\001
+4 1 0 50 -1 0 12 1.5708 4 135 540 4500 3600 Station\001
+4 1 0 50 -1 0 12 1.5708 4 135 765 4275 5325 Execution\001
+4 1 0 50 -1 0 12 1.5708 4 180 690 4275 4500 Dispatch\001
+4 1 0 50 -1 0 12 1.5708 4 135 915 4275 3600 Reservation\001
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_paquetisation.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_paquetisation.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_paquetisation.fig	(revision 16)
@@ -0,0 +1,363 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 6525 3600 11700 4800
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 10725 3600 10725 3825 7125 3825
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 11025 3600 11025 4125 7125 4125
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 11325 3600 11325 4425 7125 4425
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 11625 3600 11625 4725 7125 4725
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 10800 3900 10650 3900 10650 3750 10800 3750 10800 3900
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 11100 4200 10950 4200 10950 4050 11100 4050 11100 4200
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 11400 4500 11250 4500 11250 4350 11400 4350 11400 4500
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 11700 4800 11550 4800 11550 4650 11700 4650 11700 4800
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 6525 3750 7125 3750 7125 4800 6525 4800 6525 3750
+4 1 0 49 -1 0 12 1.5708 4 135 585 6900 4275 Commit\001
+-6
+2 2 0 1 0 11 48 -1 20 0.000 0 0 -1 0 0 5
+	 4050 1350 4200 1350 4200 1500 4050 1500 4050 1350
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 3150 1050 3750 1050 3750 2100 3150 2100 3150 1050
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 4500 1050 5100 1050 5100 2100 4500 2100 4500 1050
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 3750 1125 4500 1125
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 3750 1425 4500 1425
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 3750 1725 4500 1725
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 3750 2025 4500 2025
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 5100 1275 5850 1275
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 5100 1875 5850 1875
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 5325 1500 5625 1500 5625 1050 5325 1050 5325 1500
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 5325 1650 5625 1650 5625 2100 5325 2100 5325 1650
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 4200 1950 4050 1950 4050 2100 4200 2100 4200 1950
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 4200 1650 4050 1650 4050 1800 4200 1800 4200 1650
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 4200 1050 4050 1050 4050 1200 4200 1200 4200 1050
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 5550 1275 5400 1275 5400 1425 5550 1425 5550 1275
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 5550 1125 5400 1125 5400 1275 5550 1275 5550 1125
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 5550 1725 5400 1725 5400 1875 5550 1875 5550 1725
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 5550 1875 5400 1875 5400 2025 5550 2025 5550 1875
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 5850 1050 6450 1050 6450 2100 5850 2100 5850 1050
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6450 1125 7200 1125
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6450 2025 7200 2025
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6450 1725 7200 1725
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6450 1425 7200 1425
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 6900 2100 6750 2100 6750 1950 6900 1950 6900 2100
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 6750 1800 6900 1800 6900 1650 6750 1650 6750 1800
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 6900 1500 6750 1500 6750 1350 6900 1350 6900 1500
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 6750 1200 6900 1200 6900 1050 6750 1050 6750 1200
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7200 1050 7800 1050 7800 2100 7200 2100 7200 1050
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7800 1275 8550 1275
+2 1 0 1 0 11 50 -1 20 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7800 1875 8550 1875
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 8100 2025 8250 2025 8250 1875 8100 1875 8100 2025
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 8100 1875 8250 1875 8250 1725 8100 1725 8100 1875
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 8100 1425 8250 1425 8250 1275 8100 1275 8100 1425
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 8100 1275 8250 1275 8250 1125 8100 1125 8100 1275
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 8025 2100 8325 2100 8325 1650 8025 1650 8025 2100
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 8025 1500 8325 1500 8325 1050 8025 1050 8025 1500
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 2025 9900 1500
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 1725 9900 1350
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 1425 9900 1200
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 9900 450 10500 450 10500 1500 9900 1500 9900 450
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 1125 9900 1050
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 525 9900 750
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 825 9900 900
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 225 9900 600
+2 1 0 1 0 4 49 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 9150 -75 9900 450
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 1875 9600 1875 9600 1725 9450 1725 9450 1875
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 1650 9600 1650 9600 1500 9450 1500 9450 1650
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 1425 9600 1425 9600 1275 9450 1275 9450 1425
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 1200 9600 1200 9600 1050 9450 1050 9450 1200
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 900 9600 900 9600 750 9450 750 9450 900
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 675 9600 675 9600 525 9450 525 9450 675
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 450 9600 450 9600 300 9450 300 9450 450
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9450 225 9600 225 9600 75 9450 75 9450 225
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 8550 1050 9150 1050 9150 2100 8550 2100 8550 1050
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 10500 1425 10725 1425 10725 1650
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 10500 525 11625 525 11625 1650
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 10500 1125 11025 1125 11025 1650
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 3
+	3 0 1.00 60.00 120.00
+	 10500 825 11325 825 11325 1650
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 11700 1650 11700 2250 10650 2250 10650 1650 11700 1650
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 11625 2250 11625 3000
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 11325 2250 11325 3000
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 11025 2250 11025 3000
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 10725 2250 10725 3000
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 11700 3000 11700 3600 10650 3600 10650 3000 11700 3000
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 10650 1500 10800 1500 10800 1350 10650 1350 10650 1500
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 10950 1200 11100 1200 11100 1050 10950 1050 10950 1200
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 11250 900 11400 900 11400 750 11250 750 11250 900
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 11550 600 11700 600 11700 450 11550 450 11550 600
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 10650 2625 10800 2625 10800 2475 10650 2475 10650 2625
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 10950 2625 11100 2625 11100 2475 10950 2475 10950 2625
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 11250 2625 11400 2625 11400 2475 11250 2475 11250 2625
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 11550 2625 11700 2625 11700 2475 11550 2475 11550 2625
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 7050 1125 7050 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6975 1425 6975 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6675 1725 6675 3750
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 6600 2025 6600 3750
+2 2 0 1 0 11 50 -1 -1 0.000 0 0 -1 0 0 5
+	 10425 2325 10425 2925 9375 2925 9375 2325 10425 2325
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 1 3
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 10650 1950 9900 1950 9900 2325
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 1 3
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 9900 2925 9900 3300 10650 3300
+2 1 2 1 0 7 50 -1 -1 3.000 0 0 -1 1 1 3
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 9375 2625 6150 2625 6150 2100
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9825 3375 9975 3375 9975 3225 9825 3225 9825 3375
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 9825 2025 9975 2025 9975 1875 9825 1875 9825 2025
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 6225 2700 6075 2700 6075 2550 6225 2550 6225 2700
+2 1 1 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 2
+	 11700 3000 12450 1200
+2 1 1 1 0 7 50 -1 -1 4.000 0 0 -1 0 0 2
+	 11700 3600 12450 5400
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13050 3150 12450 3600
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13125 3150 12900 3600
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13275 3150 13500 3600
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13350 3150 13950 3600
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 13125 3225 12975 3225 12975 3375 13125 3375 13125 3225
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 13425 3225 13275 3225 13275 3375 13425 3375 13425 3225
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 12750 1500 12750 1950
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13050 1500 13050 1950
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13350 1500 13350 1950
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13650 1500 13650 1950
+2 4 0 1 0 7 50 -1 -1 3.000 0 0 7 0 0 5
+	 13800 2400 13800 1950 12600 1950 12600 2400 13800 2400
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13425 2400 13650 2850
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13200 2400 13200 2850
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 12975 2400 12750 2850
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 12750 2400 12300 2850
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 12675 1725 12825 1725 12825 1575 12675 1575 12675 1725
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 12975 1725 13125 1725 13125 1575 12975 1575 12975 1725
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 13275 1725 13425 1725 13425 1575 13275 1575 13275 1725
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 13575 1725 13725 1725 13725 1575 13575 1575 13575 1725
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 13125 2625 13275 2625 13275 2475 13125 2475 13125 2625
+2 2 0 1 0 7 50 -1 -1 3.000 0 0 -1 0 0 5
+	 12750 3600 13050 3600 13050 3900 12750 3900 12750 3600
+2 2 0 1 0 7 50 -1 -1 3.000 0 0 -1 0 0 5
+	 12300 3600 12600 3600 12600 3900 12300 3900 12300 3600
+2 2 0 1 0 7 50 -1 -1 3.000 0 0 -1 0 0 5
+	 13350 3600 13650 3600 13650 3900 13350 3900 13350 3600
+2 2 0 1 0 7 50 -1 -1 3.000 0 0 -1 0 0 5
+	 13800 3600 14100 3600 14100 3900 13800 3900 13800 3600
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 12450 3900 12450 4350
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 12900 3900 12900 4350
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13500 3900 13500 4350
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13950 3900 13950 4350
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 12975 3975 12825 3975 12825 4125 12975 4125 12975 3975
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 12525 3975 12375 3975 12375 4125 12525 4125 12525 3975
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 13575 3975 13425 3975 13425 4125 13575 4125 13575 3975
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 14025 3975 13875 3975 13875 4125 14025 4125 14025 3975
+2 2 0 1 0 7 50 -1 -1 3.000 0 0 -1 0 0 5
+	 12300 4350 14100 4350 14100 4650 12300 4650 12300 4350
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13200 4650 13200 5100
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 12900 3225 12750 3225 12750 3375 12900 3375 12900 3225
+2 2 0 1 0 11 47 -1 20 0.000 0 0 -1 0 0 5
+	 13650 3225 13500 3225 13500 3375 13650 3375 13650 3225
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 13425 2625 13575 2625 13575 2475 13425 2475 13425 2625
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 12825 2625 12975 2625 12975 2475 12825 2475 12825 2625
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 12525 2625 12675 2625 12675 2475 12525 2475 12525 2625
+2 2 0 1 0 4 49 -1 20 0.000 0 0 -1 0 0 5
+	 13725 2625 13875 2625 13875 2475 13725 2475 13725 2625
+2 1 0 1 0 7 50 -1 -1 3.000 0 0 -1 1 0 2
+	3 0 1.00 60.00 120.00
+	 13643 2406 14100 2850
+2 4 0 1 0 7 50 -1 -1 3.000 0 0 7 0 0 5
+	 13500 3150 13500 2850 12900 2850 12900 3150 13500 3150
+2 2 0 1 0 14 48 -1 20 0.000 0 0 -1 0 0 5
+	 13275 4875 13125 4875 13125 4725 13275 4725 13275 4875
+4 1 0 49 -1 0 12 1.5708 4 180 645 4875 1575 Group_1\001
+4 1 0 49 -1 0 12 1.5708 4 135 495 3525 1575 Decod\001
+4 1 0 49 -1 0 12 1.5708 4 135 615 6225 1575 Rename\001
+4 1 0 49 -1 0 12 1.5708 4 180 645 7575 1575 Group_2\001
+4 1 0 49 -1 0 12 1.5708 4 135 420 8925 1575 Issue\001
+4 1 0 49 -1 0 12 1.5708 4 135 480 10275 975 Select\001
+4 1 0 49 -1 0 12 0.0000 4 135 915 11175 1875 Reservation\001
+4 1 0 49 -1 0 12 0.0000 4 135 540 11175 2100 Station\001
+4 1 0 49 -1 0 12 0.0000 4 135 630 11175 3375 Execute\001
+4 1 0 49 -1 0 12 0.0000 4 180 930 9900 2625 RegisterFile\001
+4 1 0 49 -1 0 12 0.0000 4 180 690 13200 2175 Dispatch\001
+4 1 0 49 -1 0 12 0.0000 4 180 645 13200 3000 Ungroup\001
+4 1 0 49 -1 0 12 0.0000 4 135 375 13200 4500 Wait\001
+4 1 24 50 -1 0 18 0.0000 4 195 135 10275 1875 1\001
+4 1 24 50 -1 0 18 0.0000 4 195 135 10275 3600 2\001
+4 1 24 50 -1 0 18 0.0000 4 195 135 13800 3000 3\001
+4 1 24 50 -1 0 18 0.0000 4 195 135 13650 4950 4\001
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_structure_associative_full_share.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_structure_associative_full_share.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_structure_associative_full_share.fig	(revision 16)
@@ -0,0 +1,105 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 4500 3225 4650 4125
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 4050 40 40 4575 4050 4535 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3900 40 40 4575 3900 4535 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3750 40 40 4575 3750 4535 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3600 40 40 4575 3600 4535 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3450 40 40 4575 3450 4535 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3300 40 40 4575 3300 4535 3300
+-6
+6 4050 3225 4200 4125
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4125 4050 40 40 4125 4050 4085 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4125 3900 40 40 4125 3900 4085 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4125 3750 40 40 4125 3750 4085 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4125 3600 40 40 4125 3600 4085 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4125 3450 40 40 4125 3450 4085 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4125 3300 40 40 4125 3300 4085 3300
+-6
+6 3600 3225 3750 4125
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3675 4050 40 40 3675 4050 3635 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3675 3900 40 40 3675 3900 3635 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3675 3750 40 40 3675 3750 3635 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3675 3600 40 40 3675 3600 3635 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3675 3450 40 40 3675 3450 3635 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3675 3300 40 40 3675 3300 3635 3300
+-6
+6 6300 3225 6450 4125
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6375 4050 40 40 6375 4050 6335 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6375 3900 40 40 6375 3900 6335 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6375 3750 40 40 6375 3750 6335 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6375 3600 40 40 6375 3600 6335 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6375 3450 40 40 6375 3450 6335 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6375 3300 40 40 6375 3300 6335 3300
+-6
+6 6750 3225 6900 4125
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6825 4050 40 40 6825 4050 6785 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6825 3900 40 40 6825 3900 6785 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6825 3750 40 40 6825 3750 6785 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6825 3600 40 40 6825 3600 6785 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6825 3450 40 40 6825 3450 6785 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 6825 3300 40 40 6825 3300 6785 3300
+-6
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3300 40 40 5025 3300 4985 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3450 40 40 5025 3450 4985 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3600 40 40 5025 3600 4985 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3750 40 40 5025 3750 4985 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3900 40 40 5025 3900 4985 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 4050 40 40 5025 4050 4985 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 4050 40 40 5475 4050 5435 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3900 40 40 5475 3900 5435 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3750 40 40 5475 3750 5435 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3600 40 40 5475 3600 5435 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3450 40 40 5475 3450 5435 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3300 40 40 5475 3300 5435 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3300 40 40 5925 3300 5885 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3450 40 40 5925 3450 5885 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3600 40 40 5925 3600 5885 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3750 40 40 5925 3750 5885 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3900 40 40 5925 3900 5885 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 4050 40 40 5925 4050 5885 4050
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4800 3150 4800 4350
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5250 3150 5250 4350
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5700 3150 5700 4350
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 1 2
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 3450 4650 7050 4650
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 1 2
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 2850 2850 7650 2850
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6150 3150 6150 4350
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 6600 3150 6600 4350
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 3450 3150 7050 3150 7050 4350 3450 4350 3450 3150
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4350 3150 4350 4350
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 3900 3150 3900 4350
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 3300 2400 3300 3450 6825 3450
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 3150 2400 3150 3750 6825 3750
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7350 2400 7350 3600 3675 3600
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7500 2400 7500 3900 3675 3900
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 7200 2400 7200 3300 3675 3300
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 3000 2400 3000 4050 6825 4050
+4 1 1 50 -1 -1 12 0.0000 4 135 120 5250 2775 E\001
+4 1 1 50 -1 -1 12 0.0000 4 135 135 5250 4875 N\001
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_structure_associative_semi_share.fig
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_structure_associative_semi_share.fig	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Schema/MORPHEO_structure_associative_semi_share.fig	(revision 16)
@@ -0,0 +1,109 @@
+#FIG 3.2
+Landscape
+Center
+Inches
+Letter  
+100.00
+Single
+-2
+1200 2
+6 7050 3150 7950 4350
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 7050 3150 7950 3150 7950 4350 7050 4350 7050 3150
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7500 3150 7500 4350
+-6
+6 2550 3150 3450 4350
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 2550 3150 3450 3150 3450 4350 2550 4350 2550 3150
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 3000 3150 3000 4350
+-6
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 2778 3448 40 40 2778 3448 2738 3448
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3225 3450 40 40 3225 3450 3185 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 2775 3750 40 40 2775 3750 2735 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3225 3750 40 40 3225 3750 3185 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 3225 4050 40 40 3225 4050 3185 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 2775 4050 40 40 2775 4050 2735 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 4050 40 40 4575 4050 4535 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3900 40 40 4575 3900 4535 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3750 40 40 4575 3750 4535 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3600 40 40 4575 3600 4535 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3450 40 40 4575 3450 4535 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 4575 3300 40 40 4575 3300 4535 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3300 40 40 5025 3300 4985 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3450 40 40 5025 3450 4985 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3600 40 40 5025 3600 4985 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3750 40 40 5025 3750 4985 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 3900 40 40 5025 3900 4985 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5025 4050 40 40 5025 4050 4985 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 4050 40 40 5475 4050 5435 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3900 40 40 5475 3900 5435 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3750 40 40 5475 3750 5435 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3600 40 40 5475 3600 5435 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3450 40 40 5475 3450 5435 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5475 3300 40 40 5475 3300 5435 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3300 40 40 5925 3300 5885 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3450 40 40 5925 3450 5885 3450
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3600 40 40 5925 3600 5885 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3750 40 40 5925 3750 5885 3750
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 3900 40 40 5925 3900 5885 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 5925 4050 40 40 5925 4050 5885 4050
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 7275 3900 40 40 7275 3900 7235 3900
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 7275 3600 40 40 7275 3600 7235 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 7275 3300 40 40 7275 3300 7235 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 7725 3300 40 40 7725 3300 7685 3300
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 7725 3600 40 40 7725 3600 7685 3600
+1 3 0 1 4 4 50 -1 20 0.000 1 0.0000 7725 3900 40 40 7725 3900 7685 3900
+2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
+	 4350 3150 6150 3150 6150 4350 4350 4350 4350 3150
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4800 3150 4800 4350
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5250 3150 5250 4350
+2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 5700 3150 5700 4350
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 1 2
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 4350 4650 6150 4650
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 1 2
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 7050 4650 7950 4650
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 1 2
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 3600 2700 4200 2700
+2 1 0 1 1 7 50 -1 -1 0.000 0 0 -1 1 1 2
+	3 0 1.00 60.00 120.00
+	3 0 1.00 60.00 120.00
+	 3600 2850 7050 2850
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 4050 2400 4050 3450 5925 3450
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 4050 3450 2775 3450
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 3900 2400 3900 3750 5925 3750
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 3900 3750 2775 3750
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 3750 2400 3750 4050 5925 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 3750 4050 2775 4050
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7725 3300 6450 3300
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7725 3600 6600 3600
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 2
+	 7725 3900 6750 3900
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 6450 2400 6450 3300 4575 3300
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 6600 2400 6600 3600 4575 3600
+2 1 0 1 4 7 50 -1 -1 0.000 0 0 -1 0 0 3
+	 6750 2400 6750 3900 4575 3900
+4 1 1 50 -1 -1 12 0.0000 4 135 165 5250 4875 M\001
+4 1 1 50 -1 -1 12 0.0000 4 135 135 7500 4875 K\001
+4 1 1 50 -1 -1 12 0.0000 4 135 120 5250 2775 E\001
+4 1 1 50 -1 -1 12 0.0000 4 135 150 4350 2700 E'\001
Index: /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Type/presentation-share_architectural_ressources_between_hardware_context
===================================================================
--- /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Type/presentation-share_architectural_ressources_between_hardware_context	(revision 16)
+++ /trunk/IPs/systemC/processor/Morpheo/Documentation/Source/Type/presentation-share_architectural_ressources_between_hardware_context	(revision 16)
@@ -0,0 +1,1 @@
+ppt
