bd4e47be4d3755b76bad420d525a721b3db4166e
[oota-llvm.git] / lib / Target / X86 / X86InstrInfo.def
1 //===-- X86InstructionInfo.def - X86 Instruction Information ----*- C++ -*-===//
2 //
3 // This file describes all of the instructions that the X86 backend uses.  It
4 // relys on an external 'I' macro being defined that takes the arguments
5 // specified below, and is used to make all of the information relevant to an
6 // instruction be in one place.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // NOTE: No include guards desired
11
12 #ifndef I
13 #errror "Must define I macro before including X86/X86InstructionInfo.def!"
14 #endif
15
16 // Arguments to be passed into the I macro
17 //  #1: Enum name - This ends up being the opcode symbol in the X86 namespace
18 //  #2: Opcode name, as used by the gnu assembler
19 //  #3: Instruction Flags - This should be a field or'd together that contains
20 //      constants from the MachineInstrInfo.h file.
21 //  #4: Target Specific Flags - Another bitfield containing X86 specific flags
22 //      that we are interested in for each instruction.  These should be flags
23 //      defined in X86InstrInfo.h in the X86II namespace.
24 //
25
26 // The first instruction must always be the PHI instruction: (FIXME, not yet)
27 I(PHI         , "phi",                0, 0)
28
29 // The second instruction must always be the noop instruction: (FIXME, not yet)
30 I(NOOP        , "nop",                0, X86II::Void) // nop          90
31
32 // Miscellaneous instructions
33 I(RET         , "ret",       M_RET_FLAG, X86II::Void) // ret          CB
34
35 // Move instructions
36 I(MOVir8      , "movb",               0, 0)           // R = imm8     B0+ rb
37 I(MOVir16     , "movw",               0, 0)           // R = imm16    B8+ rw
38 I(MOVir32     , "movl",               0, 0)           // R = imm32    B8+ rd
39
40 // Arithmetic instructions
41 I(ADDrr8      , "addb",               0, 0)           // R8  += R8    00/r
42 I(ADDrr16     , "addw",               0, 0)           // R16 += R16   01/r
43 I(ADDrr32     , "addl",               0, 0)           // R32 += R32   02/r
44
45
46 // At this point, I is dead, so undefine the macro
47 #undef I