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

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

Add Load store queue -> but not terminated and tested
Add article to sympa 2007 -> but no started

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