source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Constants.h @ 62

Last change on this file since 62 was 62, checked in by rosiere, 17 years ago

Modification en profondeur de Component-port_map.
Compilation ok pour Register_unit ... a tester (systemC et vhdl)

File size: 31.0 KB
Line 
1#ifndef morpheo_behavioural_Constants_h
2#define morpheo_behavioural_Constants_h
3
4namespace morpheo {
5namespace behavioural {
6
7  //=========================================================[ Type ]=====
8#define TYPE_MEMORY                              0x1      // 00001 
9
10  //====================================================[ Operation ]=====
11
12  //-------------------------------------------------------[ Memory ]-----
13#define OPERATION_MEMORY_LOAD_8_Z                0x0      // 000_0000
14#define OPERATION_MEMORY_LOAD_16_Z               0x20     // 010_0000
15#define OPERATION_MEMORY_LOAD_32_Z               0x40     // 100_0000
16#define OPERATION_MEMORY_LOAD_64_Z               0x60     // 110_0000
17#define OPERATION_MEMORY_LOAD_8_S                0x10     // 001_0000
18#define OPERATION_MEMORY_LOAD_16_S               0x30     // 011_0000
19#define OPERATION_MEMORY_LOAD_32_S               0x50     // 101_0000
20#define OPERATION_MEMORY_LOAD_64_S               0x70     // 111_0000
21
22#define OPERATION_MEMORY_STORE_8                 0x8      // 000_1000
23#define OPERATION_MEMORY_STORE_16                0x9      // 000_1001
24#define OPERATION_MEMORY_STORE_32                0xa      // 000_1010
25#define OPERATION_MEMORY_STORE_64                0xb      // 000_1011
26#define OPERATION_MEMORY_STORE_HEAD_OK           0xc      // 000_1100
27#define OPERATION_MEMORY_STORE_HEAD_KO           0xd      // 000_1101
28
29#define OPERATION_MEMORY_LOCK                    0x1      // 000_0001
30#define OPERATION_MEMORY_INVALIDATE              0x2      // 000_0010
31#define OPERATION_MEMORY_PREFETCH                0x3      // 000_0011
32#define OPERATION_MEMORY_FLUSH                   0x6      // 000_0110
33#define OPERATION_MEMORY_SYNCHRONIZATION         0x7      // 000_0111
34
35#define is_operation_memory_load(x)             \
36        ((x == OPERATION_MEMORY_LOAD_8_Z ) or   \
37         (x == OPERATION_MEMORY_LOAD_16_Z) or   \
38         (x == OPERATION_MEMORY_LOAD_32_Z) or   \
39         (x == OPERATION_MEMORY_LOAD_64_Z) or   \
40         (x == OPERATION_MEMORY_LOAD_8_S ) or   \
41         (x == OPERATION_MEMORY_LOAD_16_S) or   \
42         (x == OPERATION_MEMORY_LOAD_32_S) or   \
43         (x == OPERATION_MEMORY_LOAD_64_S) )
44
45#define is_operation_memory_store(x)                    \
46        ((x == OPERATION_MEMORY_STORE_8      ) or       \
47         (x == OPERATION_MEMORY_STORE_16     ) or       \
48         (x == OPERATION_MEMORY_STORE_32     ) or       \
49         (x == OPERATION_MEMORY_STORE_64     ) or       \
50         (x == OPERATION_MEMORY_STORE_HEAD_OK) or       \
51         (x == OPERATION_MEMORY_STORE_HEAD_KO))
52
53#define is_operation_memory_store_head(x)               \
54        ((x == OPERATION_MEMORY_STORE_HEAD_OK) or       \
55         (x == OPERATION_MEMORY_STORE_HEAD_KO))
56
57#define MEMORY_ACCESS_8                          0x0
58#define MEMORY_ACCESS_16                         0x1
59#define MEMORY_ACCESS_32                         0x2
60#define MEMORY_ACCESS_64                         0x3
61
62#define MASK_MEMORY_ACCESS_8                     0x0
63#define MASK_MEMORY_ACCESS_16                    0x1
64#define MASK_MEMORY_ACCESS_32                    0x3
65#define MASK_MEMORY_ACCESS_64                    0x7
66
67#define memory_access(x)                                                         \
68        (((x==OPERATION_MEMORY_LOAD_16_Z)or                                      \
69           (x==OPERATION_MEMORY_LOAD_16_S)or                                     \
70           (x==OPERATION_MEMORY_STORE_16 ))?MEMORY_ACCESS_16:                    \
71          (((x==OPERATION_MEMORY_LOAD_32_Z)or                                    \
72            (x==OPERATION_MEMORY_LOAD_32_S)or                                    \
73            (x==OPERATION_MEMORY_STORE_32 ))?MEMORY_ACCESS_32:                   \
74           (((x==OPERATION_MEMORY_LOAD_64_Z)or                                   \
75             (x==OPERATION_MEMORY_LOAD_64_S)or                                   \
76             (x==OPERATION_MEMORY_STORE_64 ))?MEMORY_ACCESS_64:MEMORY_ACCESS_8)))
77   
78#define mask_memory_access(x)                                                    \
79        (((x==OPERATION_MEMORY_LOAD_16_Z)or                                      \
80           (x==OPERATION_MEMORY_LOAD_16_S)or                                     \
81           (x==OPERATION_MEMORY_STORE_16 ))?MASK_MEMORY_ACCESS_16:               \
82          (((x==OPERATION_MEMORY_LOAD_32_Z)or                                    \
83            (x==OPERATION_MEMORY_LOAD_32_S)or                                    \
84            (x==OPERATION_MEMORY_STORE_32 ))?MASK_MEMORY_ACCESS_32:              \
85           (((x==OPERATION_MEMORY_LOAD_64_Z)or                                   \
86             (x==OPERATION_MEMORY_LOAD_64_S)or                                   \
87             (x==OPERATION_MEMORY_STORE_64 ))?MASK_MEMORY_ACCESS_64:MASK_MEMORY_ACCESS_8)))
88
89   
90  //====================================================[ Exception ]=====
91  // Exception - OpenRISC
92
93#define EXCEPTION_NONE                           0x00 // none exception
94#define EXCEPTION_RESET                          0x01 // software or hardware reset
95#define EXCEPTION_BUS_ERROR                      0x02 // Access at a invalid physical adress
96#define EXCEPTION_DATA_PAGE                      0x03 // No matching or page violation protection in pages tables
97#define EXCEPTION_INSTRUCTION_PAGE               0x04 // No matching or page violation protection in pages tables
98#define EXCEPTION_TICK_TIMER                     0x05 // Tick timer interruption
99#define EXCEPTION_ALIGNMENT                      0x06 // Load/Store access is not aligned
100#define EXCEPTION_ILLEGAL_INSTRUCTION            0x07 // Instruction is illegal (no implemented)
101#define EXCEPTION_INTERRUPT                      0x08 // External interruption
102#define EXCEPTION_DATA_TLB                       0x09 // DTLB miss
103#define EXCEPTION_INSTRUCTION_TLB                0x0a // ITLB miss
104#define EXCEPTION_RANGE                          0x0b // Overflow or access at a unimplemented register or context
105#define EXCEPTION_SYSCALL                        0x0c // System Call
106#define EXCEPTION_FLOATING_POINT                 0x0d // Caused by a floating instruction
107#define EXCEPTION_TRAP                           0x0e // L.trap or debug unit
108#define EXCEPTION_RESERVED_0                     0x0f // Reserved for a futur usage
109#define EXCEPTION_RESERVED_1                     0x10 // Reserved for a futur usage
110#define EXCEPTION_RESERVED_2                     0x11 // Reserved for a futur usage
111#define EXCEPTION_RESERVED_3                     0x12 // Reserved for a futur usage
112#define EXCEPTION_RESERVED_4                     0x13 // Reserved for a futur usage
113#define EXCEPTION_RESERVED_5                     0x14 // Reserved for a futur usage
114#define EXCEPTION_RESERVED_6                     0x15 // Reserved for implemented specific exceptions
115#define EXCEPTION_RESERVED_7                     0x16 // Reserved for implemented specific exceptions
116#define EXCEPTION_RESERVED_8                     0x17 // Reserved for implemented specific exceptions
117#define EXCEPTION_RESERVED_9                     0x18 // Reserved for implemented specific exceptions
118#define EXCEPTION_CUSTOM_0                       0x19 // Reserved for custom exceptions
119#define EXCEPTION_CUSTOM_1                       0x1a // Reserved for custom exceptions
120#define EXCEPTION_CUSTOM_2                       0x1b // Reserved for custom exceptions
121#define EXCEPTION_CUSTOM_3                       0x1c // Reserved for custom exceptions
122#define EXCEPTION_CUSTOM_4                       0x1d // Reserved for custom exceptions
123#define EXCEPTION_CUSTOM_5                       0x1e // Reserved for custom exceptions
124#define EXCEPTION_CUSTOM_6                       0x1f // Reserved for custom exceptions
125
126  // Exception Execution
127#define EXCEPTION_MEMORY_NONE                    0x0  // Load/Store access is not aligned
128#define EXCEPTION_MEMORY_ALIGNMENT               0x1  // Load/Store access is not aligned
129#define EXCEPTION_MEMORY_DATA_TLB                0x2  // DTLB miss
130#define EXCEPTION_MEMORY_DATA_PAGE               0x3  // No matching or page violation protection in pages tables
131#define EXCEPTION_MEMORY_BUS_ERROR               0x4  // Access at a invalid physical address
132#define EXCEPTION_MEMORY_MISS_SPECULATION        0x5  // Load miss speculation
133
134  //==================================================[ dcache_type ]=====
135#  define DCACHE_LOAD                    0x0      // 0000
136#  define DCACHE_LOCK                    0x1      // 0001
137#  define DCACHE_INVALIDATE              0x2      // 0010
138#  define DCACHE_PREFETCH                0x3      // 0011
139//#define DCACHE_                        0x4      // 0100
140//#define DCACHE_                        0x5      // 0101
141#  define DCACHE_FLUSH                   0x6      // 0110
142#  define DCACHE_SYNCHRONIZATION         0x7      // 0111
143
144#  define DCACHE_STORE_8                 0x8      // 1000
145#  define DCACHE_STORE_16                0x9      // 1001
146#  define DCACHE_STORE_32                0xa      // 1010
147#  define DCACHE_STORE_64                0xb      // 1011
148//#define DCACHE_                        0xc      // 1100
149//#define DCACHE_                        0xd      // 1101
150//#define DCACHE_                        0xe      // 1110
151//#define DCACHE_                        0xf      // 1111
152
153
154// just take the 4 less significative bits.
155#define operation_to_dcache_type(x) (x&0xf)
156
157  /*
158#define                 _size_instruction             32
159#define                 _size_instruction_log2        5
160
161  //----------------------------------------------------[ Operation ]-----
162// #define                 _nb_operation                 32
163// #define                 _size_operation               5
164
165#define                 _operation_none               0x0
166#define                 _operation_l_adds             0x1
167#define                 _operation_l_addu             0x2
168#define                 _operation_l_subs             0x3
169#define                 _operation_l_and              0x4
170#define                 _operation_l_or               0x5
171#define                 _operation_l_xor              0x6
172#define                 _operation_l_cmove            0x7
173#define                 _operation_l_read_imm         0x8
174#define                 _operation_l_movhi            0x9
175#define                 _operation_l_muls             0xa
176#define                 _operation_l_mulu             0xb
177#define                 _operation_l_divs             0xc
178#define                 _operation_l_divu             0xd
179#define                 _operation_l_exts             0xe
180#define                 _operation_l_extz             0xf
181#define                 _operation_l_ff1              0x10
182#define                 _operation_l_fl1              0x11
183#define                 _operation_l_sll              0x12
184#define                 _operation_l_sla              0x13
185#define                 _operation_l_srl              0x14
186#define                 _operation_l_ror              0x15
187#define                 _operation_l_cmp_eq           0x16
188#define                 _operation_l_cmp_ne           0x17
189#define                 _operation_l_cmp_ges          0x18
190#define                 _operation_l_cmp_geu          0x19
191#define                 _operation_l_cmp_gts          0x1a
192#define                 _operation_l_cmp_gtu          0x1b
193#define                 _operation_l_cmp_les          0x1c
194#define                 _operation_l_cmp_leu          0x1d
195#define                 _operation_l_cmp_lts          0x1e
196#define                 _operation_l_cmp_ltu          0x1f
197
198  //--------------------------------------------------[ destination ]-----
199#define                 _size_destination1            4
200
201#define                  cst_DESTINATION1_NONE        0x0
202#define                 mask_DESTINATION1_GPR         0x1
203#define                 mask_DESTINATION1_MEMORY      0x2
204#define                 mask_DESTINATION1_SPR         0x4
205#define                 mask_DESTINATION1_MAC_UNIT    0x8
206 
207#define                 _size_destination2  3
208
209#define                  cst_DESTINATION2_NONE        0x0
210#define                 mask_DESTINATION2_COMMIT      0x1
211#define                 mask_DESTINATION2_MEMORY      0x2
212#define                 mask_DESTINATION2_SPR         0x4
213 
214  //----------------------------------------------------[ exec_flag ]-----
215#define                 _size_exec_flag               2
216
217#define                 mask_EXEC_FLAG_NONE           0x1
218#define                 mask_EXEC_FLAG_CARRY          0x1
219#define                 mask_EXEC_FLAG_FLAG           0x1
220#define                 mask_EXEC_FLAG_OVERFLOW       0x2
221
222  //---------------------------------------------------[ exec_excep ]-----
223#define                  _size_exec_excep             1
224
225#define                 mask_EXEC_EXCEP_NONE          0x0
226#define                 mask_EXEC_EXCEP_RANGE         0x1
227 
228  //----------------------------------------------------[ Condition ]-----
229#define                 _size_condition               3
230   
231#define                  cst_CONDITION_UNCONDITIONAL  0x0           // None condition (jump)
232#define                 mask_CONDITION_CONDITIONAL    0x2           
233#define                 mask_CONDITION_CONDITIONAL_NF 0x0           // Branch if Flag is clear
234#define                 mask_CONDITION_CONDITIONAL_F  0x1           // Branch if Flag is set   
235#define                 mask_CONDITION_REG            0x4           // Branch if a register is read
236#define                 mask_CONDITION_STACK          0x8           // Branch with pop  in stack pointer
237
238  //-------------------------------------------------[ branch_state ]-----
239#define                 cst_BRANCH_STATE_NONE         0x0           // 0 0
240#define                 cst_BRANCH_STATE_NSPEC_TAKE   0x1           // 0 1  -> incondionnal
241#define                 cst_BRANCH_STATE_SPEC_NTAKE   0x2           // 1 0
242#define                 cst_BRANCH_STATE_SPEC_TAKE    0x3           // 1 1
243  */
244
245  /*
246#define M_CPU_SIZE_INST       32
247
248//----------------------------------------------------
249// Exception type
250//----------------------------------------------------
251
252#define M_CPU_LOG2_NB_EXCP    5
253#define M_CPU_NB_EXCP         32
254
255#define EXCP_NO               0x00          // none exception
256#define EXCP_RESET            0x01          // software or hardware reset
257#define EXCP_BERR             0x02          // Access at a invalid physical adress
258#define EXCP_D_PAGE           0x03          // No matching or page violation protection in pages tables
259#define EXCP_I_PAGE           0x04          // No matching or page violation protection in pages tables
260#define EXCP_TICK_TIMER       0x05          // Tick timer interruption
261#define EXCP_ALIGNMENT        0x06          // Load/Store access is not aligned
262#define EXCP_ILL_INST         0x07          // Instruction is illegal (no implemented)
263#define EXCP_IRQ              0x08          // External interruption
264#define EXCP_D_TLB            0x09          // DTLB miss
265#define EXCP_I_TLB            0x0a          // ITLB miss
266#define EXCP_RANGE            0x0b          // Overflow or access at a unimplemented register or context
267#define EXCP_SYSCALL          0x0c          // System Call
268#define EXCP_FP               0x0d          // Caused by a floating instruction
269#define EXCP_TRAP             0x0e          // L.trap or debug unit
270#define EXCP_RES0             0x0f          // Reserved for a futur usage
271#define EXCP_RES1             0x10          // Reserved for a futur usage
272#define EXCP_RES2             0x11          // Reserved for a futur usage
273#define EXCP_RES3             0x12          // Reserved for a futur usage
274#define EXCP_RES4             0x13          // Reserved for a futur usage
275#define EXCP_RES5             0x14          // Reserved for a futur usage
276#define EXCP_RES6             0x15          // Reserved for implemented specific exceptions
277#define EXCP_RES7             0x16          // Reserved for implemented specific exceptions
278#define EXCP_RES8             0x17          // Reserved for implemented specific exceptions
279#define EXCP_RES9             0x18          // Reserved for implemented specific exceptions
280#define EXCP_CUST0            0x19          // Reserved for custom exceptions
281#define EXCP_CUST1            0x1a          // Reserved for custom exceptions
282#define EXCP_CUST2            0x1b          // Reserved for custom exceptions
283#define EXCP_CUST3            0x1c          // Reserved for custom exceptions
284#define EXCP_CUST4            0x1d          // Reserved for custom exceptions
285#define EXCP_CUST5            0x1e          // Reserved for custom exceptions
286#define EXCP_CUST6            0x1f          // Reserved for custom exceptions
287
288//----------------------------------------------------
289// Flags
290//----------------------------------------------------
291
292#define M_CPU_NB_FLAG         3
293
294// Integer flags
295#define FLAG_F                0x1           // Conditionnal branch flag
296#define FLAG_CY               0x2           // Carry was produced by last arithmétic operation
297#define FLAG_OV               0x4           // Overflow occured during last arithmetic operation
298
299// Floating flags
300#define FLAG_OVF              0x004         // Overflow occured during last arithmetic operation
301#define FLAG_UNF              0x008         // Underflow flags
302#define FLAG_SNF              0x010         // Result SNAN
303#define FLAG_QNF              0x020         // Result QNAN
304#define FLAG_ZF               0x040         // Result is nul
305#define FLAG_IXF              0x080         // Result is inexact
306#define FLAG_IVF              0x100         // Result is invalid
307#define FLAG_INF              0x200         // Result is infinite
308#define FLAG_DZF              0x400         // Division by zero
309
310// Position of flag in "rename register SR" (NOT IN "SR")
311#define FLAG_POS_F            0x0           // Conditionnal branch flag
312#define FLAG_POS_CY           0x1           // Carry was produced by last arithmétic operation
313#define FLAG_POS_OV           0x0           // Overflow occured during last arithmetic operation
314
315//----------------------------------------------------
316// Instruction type
317//----------------------------------------------------
318
319#define M_CPU_LOG2_NB_TYPE    4
320
321#define TYPE_NOP              0x0
322#define TYPE_ALU_F            0x1           // Instruction ALU with    flag using (ADD, SUB, ADDC ...)
323#define TYPE_ALU_NF           0x2           // Instruction ALU without flag using (AND, OR ...)
324#define TYPE_MAC              0x3           // Instruction ALU with    utilisation of register HI/LO
325#define TYPE_J                0x4           // Branch instruction
326#define TYPE_SPR_READ         0x5           // Instruction special : l.mfspr
327#define TYPE_SPR_WRITE        0x6           // Instruction special : l.mtspr
328#define TYPE_SPECIAL          0x7           // Instruction execute in decode stage
329#define TYPE_CUSTOM           0x8           // Instruction Custom
330
331#define TYPE_LOAD_Z           0x9           // Load  access (extended by zero)
332#define TYPE_LOAD_S           0xa           // Load  access (sign extended)
333#define TYPE_STORE            0xc           // Store access
334
335//----------------------------------------------------
336// Condition to branch
337//----------------------------------------------------
338
339#define M_CPU_LOG2_NB_COND    4
340
341#define COND_NONE             0x0           // None condition (jump)
342#define COND_F                0x2           // Branch if Flag is set
343#define COND_NF               0x3           // Branch if Flag is clear
344#define COND_REG              0x4           // Branch if a register is read
345#define COND_STACK            0x8           // Branch with pop  in stack pointer
346
347//----------------------------------------------------
348// Event : State and Type
349//----------------------------------------------------
350
351#define EVENT_STATE_NO_EVENT  0             // no event : current case
352#define EVENT_STATE_EVENT     1             // Have a event : make necessary to manage the event
353#define EVENT_STATE_WAITEND   2             // Wait end of manage event (restaure a good context)
354#define EVENT_STATE_END       3             // CPU can continue
355
356#define EVENT_TYPE_MISS       0             // miss of speculation
357#define EVENT_TYPE_EXCP       1             // exception or interruption occure
358
359// SPEC? TAKE?
360#define BRANCH_STATE_NONE         0  // 0     0
361#define BRANCH_STATE_NSPEC_TAKE   1  // 0     1  -> incondionnal
362#define BRANCH_STATE_SPEC_NTAKE   2  // 1     0
363#define BRANCH_STATE_SPEC_TAKE    3  // 1     1
364
365//----------------------------------------------------
366// Name to particular register
367//----------------------------------------------------
368
369//~~~~~~~~~~~~~~~~~~~~~~~~~~
370// GENERAL PURPOSE REGISTER
371//~~~~~~~~~~~~~~~~~~~~~~~~~~
372#define M_CPU_LOG2_NB_GPR_LOG 5
373#define M_CPU_NB_GPR_LOG      (1<<M_CPU_LOG2_NB_GPR_LOG)
374
375#define GPR_LOG_LR            0x09          // Link register
376#define REG_PHY_SR            0x00          // Status register
377
378//~~~~~~~~~~~~~~~~~~~~~~~~~~
379// SPECIAL PURPOSE REGISTER
380//~~~~~~~~~~~~~~~~~~~~~~~~~~
381#define M_CPU_LOG2_NB_SPR_LOG 1
382#define M_CPU_NB_SPR_LOG      (1<<M_CPU_LOG2_NB_SPR_LOG)
383#define M_CPU_SPR_SIZE_DATA   2             // Size of the most great register
384
385#define SPR_LOG_SR_F          0x00          // Status register bit F                   (size = 1)
386#define SPR_LOG_SR_CY_OV      0x01          // Status register bit overflow and carry  (size = 2)
387//#define SPR_LOG_SR_LO         0x02          // MAC LSB                                 (size = 32)
388//#define SPR_LOG_SR_HI         0x03          // MAC MSB                                 (size = 32)
389  */
390
391  /*
392//----------------------------------------------------
393// Code Operation (before decode)
394//----------------------------------------------------
395
396// Codop                        - [31:26]      Instructions with immediat
397#define OPCOD_L_J             0x00          // 000_000
398#define OPCOD_L_JAL           0x01          // 000_001
399#define OPCOD_L_BNF           0x03          // 000_011
400#define OPCOD_L_BF            0x04          // 000_100
401#define OPCOD_L_RFE           0x09          // 001_001
402#define OPCOD_L_JR            0x11          // 010_001
403#define OPCOD_L_JALR          0x12          // 010_010
404#define OPCOD_L_MACI          0x13          // 010_011
405#define OPCOD_L_CUST1         0x1c          // 011_100
406#define OPCOD_L_CUST2         0x1d          // 011_101
407#define OPCOD_L_CUST3         0x1e          // 011_110
408#define OPCOD_L_CUST4         0x1f          // 011_111
409#define OPCOD_L_CUST5         0x3c          // 111_100
410#define OPCOD_L_CUST6         0x3d          // 111_101
411#define OPCOD_L_CUST7         0x3e          // 111_110
412#define OPCOD_L_CUST8         0x3f          // 111_111
413#define OPCOD_L_LD            0x20          // 100_000
414#define OPCOD_L_LWZ           0x21          // 100_001
415#define OPCOD_L_LWS           0x22          // 100_010
416#define OPCOD_L_LBZ           0x23          // 100_011
417#define OPCOD_L_LBS           0x24          // 100_100
418#define OPCOD_L_LHZ           0x25          // 100_101
419#define OPCOD_L_LHS           0x26          // 100_110
420#define OPCOD_L_ADDI          0x27          // 100_111
421#define OPCOD_L_ADDIC         0x28          // 101_000
422#define OPCOD_L_ANDI          0x29          // 101_001
423#define OPCOD_L_ORI           0x2a          // 101_010
424#define OPCOD_L_XORI          0x2b          // 101_011
425#define OPCOD_L_MULI          0x2c          // 101_100
426#define OPCOD_L_MFSPR         0x2d          // 101_101
427#define OPCOD_L_MTSPR         0x30          // 110_000
428#define OPCOD_L_SD            0x32          // 110_010
429#define OPCOD_L_SW            0x35          // 110_101
430#define OPCOD_L_SB            0x36          // 110_110
431#define OPCOD_L_SH            0x37          // 110_111
432
433#define OPCOD_INST_LV         0x0a          // 001_010         // Instruction ORVDX64
434#define OPCOD_INST_LF         0x33          // 110_011         // Instruction ORFPX32/64
435
436#define OPCOD_SPECIAL         0x38          // 111_000         // Instructions Register-Register
437#define OPCOD_SPECIAL_1       0x39          // 111_001         // Instructions "set flag" with register
438#define OPCOD_SPECIAL_2       0x2f          // 101_111         // Instructions "set flag" with immediat
439#define OPCOD_SPECIAL_6       0x2e          // 101_110         // Instruction Shift/Rotate with immediat
440#define OPCOD_SPECIAL_7       0x31          // 110_001         // Instructions multiply with HI-LO
441#define OPCOD_SPECIAL_8       0x06          // 000_110         // Instructions acces at HI-LO
442
443// OPCOD_SPECIAL   instructions - [9:8] [3:0]  Instructions Register-Register
444#define OPCOD_L_ADD           0x00          // 00_0000
445#define OPCOD_L_ADDC          0x01          // 00_0001
446#define OPCOD_L_SUB           0x02          // 00_0010
447#define OPCOD_L_AND           0x03          // 00_0011
448#define OPCOD_L_OR            0x04          // 00_0100
449#define OPCOD_L_XOR           0x05          // 00_0101
450#define OPCOD_L_CMOV          0x0e          // 00_1110
451#define OPCOD_L_FF1           0x0f          // 00_1111
452#define OPCOD_L_FL1           0x1f          // 01_1111
453#define OPCOD_L_MUL           0x36          // 11_0110
454#define OPCOD_L_DIV           0x39          // 11_1001
455#define OPCOD_L_DIVU          0x3a          // 11_1010
456#define OPCOD_L_MULU          0x3b          // 11_1011
457
458#define OPCOD_SPECIAL_3       0xc           // 1100          // Instructions extend
459#define OPCOD_SPECIAL_4       0xd           // 1101          // Instructions extend (64b)
460#define OPCOD_SPECIAL_5       0x8           // 1000          // Instruction Shift/Rotate with register
461
462// OPCOD_SPECIAL_1 instructions - [25:21]      Instructions "set flag" with register
463#define OPCOD_L_SFEQ          0x00          // 00000
464#define OPCOD_L_SFNE          0x01          // 00001
465#define OPCOD_L_SFGTU         0x02          // 00010
466#define OPCOD_L_SFGEU         0x03          // 00011
467#define OPCOD_L_SFLTU         0x04          // 00100
468#define OPCOD_L_SFLEU         0x05          // 00101
469#define OPCOD_L_SFGTS         0x0a          // 01010
470#define OPCOD_L_SFGES         0x0b          // 01011
471#define OPCOD_L_SFLTS         0x0c          // 01100
472#define OPCOD_L_SFLES         0x0d          // 01101
473
474// OPCOD_SPECIAL_2 instructions - [25:21]      Instructions "set flag" with immediat
475#define OPCOD_L_SFEQI         0x00          // 00000
476#define OPCOD_L_SFNEI         0x01          // 00001
477#define OPCOD_L_SFGTUI        0x02          // 00010
478#define OPCOD_L_SFGEUI        0x03          // 00011
479#define OPCOD_L_SFLTUI        0x04          // 00100
480#define OPCOD_L_SFLEUI        0x05          // 00101
481#define OPCOD_L_SFGTSI        0x0a          // 01010
482#define OPCOD_L_SFGESI        0x0b          // 01011
483#define OPCOD_L_SFLTSI        0x0c          // 01100
484#define OPCOD_L_SFLESI        0x0d          // 01101
485
486// OPCOD_SPECIAL_3 instructions - [9:6]          Instructions extend
487#define OPCOD_L_EXTHS         0x0           // 0000
488#define OPCOD_L_EXTHZ         0x2           // 0010
489#define OPCOD_L_EXTBS         0x1           // 0001
490#define OPCOD_L_EXTBZ         0x3           // 0011
491
492// OPCOD_SPECIAL_4 instructions - [9:6]        Instructions extend (64b)
493#define OPCOD_L_EXTWS         0x0           // 0000
494#define OPCOD_L_EXTWZ         0x1           // 0001
495
496// OPCOD_SPECIAL_5 instructions - [7:6]        Instruction Shift/Rotate with register
497#define OPCOD_L_SLL           0x0           // 00
498#define OPCOD_L_SRL           0x1           // 01
499#define OPCOD_L_SRA           0x2           // 10
500#define OPCOD_L_ROR           0x3           // 11
501
502// OPCOD_SPECIAL_6 instructions - [7:6]        Instruction Shift/Rotate with immediat
503#define OPCOD_L_SLLI          0x0           // 00
504#define OPCOD_L_SRLI          0x1           // 01
505#define OPCOD_L_SRAI          0x2           // 10
506#define OPCOD_L_RORI          0x3           // 11
507
508// OPCOD_SPECIAL_7 instructions - [3:0]        Instructions multiply with HI-LO
509#define OPCOD_L_MAC           0x1           // 0001
510#define OPCOD_L_MSB           0x2           // 0010
511
512// OPCOD_SPECIAL_8 instructions - [17]         Instructions acces at HI-LO
513#define OPCOD_L_MOVHI         0x0           // 0
514#define OPCOD_L_MACRC         0x1           // 1
515
516// Particular case                             Instructions systems
517#define OPCOD_L_MSYNC         0x22000000
518#define OPCOD_L_CSYNC         0x23000000
519#define OPCOD_L_PSYNC         0x22800000
520#define OPCOD_L_NOP           0x1500
521#define OPCOD_L_SYS           0x2000
522#define OPCOD_L_TRAP          0x2100
523
524//----------------------------------------------------
525// Code Operation (after decode)
526//----------------------------------------------------
527
528typedef enum
529  {
530    // ##### WARNING : This opcode must be the first#####
531    INST_L_NO_IMPLEMENTED ,         // Operation is not implemented
532
533    INST_L_ADD            ,         // L.ADD    , L.ADDI   , L.ADDC   , L.ADDIC
534    INST_L_AND            ,         // L.AND    , L.ANDI
535    INST_L_OR             ,         // L.OR     , L.ORI
536    INST_L_XOR            ,         // L.XOR    , L.XORI
537    INST_L_CMOV           ,         // L.CMOV
538    INST_L_SUB            ,         // L.SUB
539    INST_L_FF1            ,         // L.FF1
540    INST_L_EXTBS          ,         // L.EXTBS
541    INST_L_EXTBZ          ,         // L.EXTBZ
542    INST_L_EXTHS          ,         // L.EXTHS
543    INST_L_EXTHZ          ,         // L.EXTHZ
544    INST_L_EXTWS          ,         // L.EXTWS
545    INST_L_EXTWZ          ,         // L.EXTWZ
546    INST_L_e              ,         //
547    INST_L_f              ,         //
548    INST_L_MUL            ,         // L.MUL    , L.MULI
549    INST_L_MULU           ,         // L.MULU
550    INST_L_DIV            ,         // L.DIV
551    INST_L_DIVU           ,         // L.DIVU
552    INST_L_SLL            ,         // L.SLL    , L.SLLI
553    INST_L_SRL            ,         // L.SRL    , L.SRLI
554    INST_L_SRA            ,         // L.SRA    , L.SRAI
555    INST_L_ROR            ,         // L.ROR    , L.RORI
556    INST_L_SFGES          ,         // L.SFGES  , L.SFGESI
557    INST_L_SFGEU          ,         // L.SFGEU  , L.SFGEUI
558    INST_L_SFGTS          ,         // L.SFGTS  , L.SFGTSI
559    INST_L_SFGTU          ,         // L.SFGTU  , L.SFGTUI
560    INST_L_SFLES          ,         // L.SFLES  , L.SFLESI
561    INST_L_SFLEU          ,         // L.SFLEU  , L.SFLEUI
562    INST_L_SFLTS          ,         // L.SFLTS  , L.SFLTSI
563    INST_L_SFLTU          ,         // L.SFLTU  , L.SFLTUI
564    INST_L_SFEQ           ,         // L.SFEQ   , L.SFEQI
565    INST_L_SFNE           ,         // L.SFNE   , L.SFNEI
566    INST_L_READ           ,         // L.BNF    , L.BF     , L.JR
567    INST_L_MOVHI          ,         // L.MOVI
568    INST_L_CSYNC          ,         // L.CSYNC
569    INST_L_MSYNC          ,         // L.MSYNC
570    INST_L_PSYNC          ,         // L.PSYNC
571    INST_L_RFE            ,         // L.RFE
572    INST_L_MAC            ,         // L.MAC    , L.MACI
573    INST_L_MSB            ,         // L.MSB
574    INST_L_MACRC          ,         // L.MACRC
575    INST_L_2b             ,         //
576    INST_L_MEMB           ,         // L.LBS    , L.LBZ    , L.SB 
577    INST_L_MEMH           ,         // L.LHS    , L.LHZ    , L.SH
578    INST_L_MEMW           ,         // L.LWS    , L.LWZ    , L.SW 
579    INST_L_MEMD           ,         // L.LD                , L.SD 
580    INST_L_CUST1          ,         // L.CUST1
581    INST_L_CUST2          ,         // L.CUST2
582    INST_L_CUST3          ,         // L.CUST3
583    INST_L_CUST4          ,         // L.CUST4
584    INST_L_CUST5          ,         // L.CUST5
585    INST_L_CUST6          ,         // L.CUST6
586    INST_L_CUST7          ,         // L.CUST7
587    INST_L_CUST8          ,         // L.CUST8
588    INST_L_38             ,         //
589    INST_L_39             ,         //
590    INST_L_3a             ,         //
591    INST_L_3b             ,         //
592    INST_L_3c             ,         // 
593    INST_L_3d             ,         // 
594    INST_L_3e             ,         // 
595    INST_NOP                        // L.NOP
596  } opcod_t;
597
598#define LOG2_NB_INST_L        6
599#define      NB_INST_L        64 // +1 -> INST_L_NO_IMPLEMENTED
600//#define      NB_INST_L        (INST_L_NO_IMPLEMENTED+1)
601  */
602
603}; // end namespace behavioural
604}; // end namespace morpheo             
605
606#endif
Note: See TracBrowser for help on using the repository browser.