Chris Lattner | 9562add | 2002-11-17 21:03:35 +0000 | [diff] [blame] | 1 | //===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===// |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 9562add | 2002-11-17 21:03:35 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file exposes functions that may be used with BuildMI from the |
| 11 | // MachineInstrBuilder.h file to handle X86'isms in a clean way. |
| 12 | // |
| 13 | // The BuildMem function may be used with the BuildMI function to add entire |
| 14 | // memory references in a single, typed, function call. X86 memory references |
| 15 | // can be very complex expressions (described in the README), so wrapping them |
| 16 | // up behind an easier to use interface makes sense. Descriptions of the |
| 17 | // functions are included below. |
| 18 | // |
Brian Gaeke | ed6902c | 2002-12-13 09:28:50 +0000 | [diff] [blame] | 19 | // For reference, the order of operands for memory references is: |
| 20 | // (Operand), Base, Scale, Index, Displacement. |
| 21 | // |
Chris Lattner | 9562add | 2002-11-17 21:03:35 +0000 | [diff] [blame] | 22 | //===----------------------------------------------------------------------===// |
| 23 | |
| 24 | #ifndef X86INSTRBUILDER_H |
| 25 | #define X86INSTRBUILDER_H |
| 26 | |
| 27 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 28 | |
| 29 | /// addDirectMem - This function is used to add a direct memory reference to the |
Chris Lattner | a1826c2 | 2002-12-28 20:26:58 +0000 | [diff] [blame] | 30 | /// current instruction -- that is, a dereference of an address in a register, |
| 31 | /// with no scale, index or displacement. An example is: DWORD PTR [EAX]. |
| 32 | /// |
Chris Lattner | 9562add | 2002-11-17 21:03:35 +0000 | [diff] [blame] | 33 | inline const MachineInstrBuilder &addDirectMem(const MachineInstrBuilder &MIB, |
| 34 | unsigned Reg) { |
Brian Gaeke | ed6902c | 2002-12-13 09:28:50 +0000 | [diff] [blame] | 35 | // Because memory references are always represented with four |
| 36 | // values, this adds: Reg, [1, NoReg, 0] to the instruction. |
Chris Lattner | 1a57ccd | 2003-01-15 00:04:14 +0000 | [diff] [blame] | 37 | return MIB.addReg(Reg).addZImm(1).addReg(0).addSImm(0); |
Chris Lattner | 9562add | 2002-11-17 21:03:35 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Misha Brukman | faf0b8c | 2002-11-22 22:42:12 +0000 | [diff] [blame] | 40 | |
Chris Lattner | a1826c2 | 2002-12-28 20:26:58 +0000 | [diff] [blame] | 41 | /// addRegOffset - This function is used to add a memory reference of the form |
| 42 | /// [Reg + Offset], i.e., one with no scale or index, but with a |
| 43 | /// displacement. An example is: DWORD PTR [EAX + 4]. |
| 44 | /// |
Misha Brukman | faf0b8c | 2002-11-22 22:42:12 +0000 | [diff] [blame] | 45 | inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB, |
Chris Lattner | a1826c2 | 2002-12-28 20:26:58 +0000 | [diff] [blame] | 46 | unsigned Reg, int Offset) { |
Chris Lattner | 1a57ccd | 2003-01-15 00:04:14 +0000 | [diff] [blame] | 47 | return MIB.addReg(Reg).addZImm(1).addReg(0).addSImm(Offset); |
Misha Brukman | faf0b8c | 2002-11-22 22:42:12 +0000 | [diff] [blame] | 48 | } |
| 49 | |
Chris Lattner | a1826c2 | 2002-12-28 20:26:58 +0000 | [diff] [blame] | 50 | /// addFrameReference - This function is used to add a reference to the base of |
| 51 | /// an abstract object on the stack frame of the current function. This |
Chris Lattner | 987e8ba | 2003-01-13 00:45:53 +0000 | [diff] [blame] | 52 | /// reference has base register as the FrameIndex offset until it is resolved. |
| 53 | /// This allows a constant offset to be specified as well... |
Chris Lattner | a1826c2 | 2002-12-28 20:26:58 +0000 | [diff] [blame] | 54 | /// |
| 55 | inline const MachineInstrBuilder & |
Chris Lattner | 987e8ba | 2003-01-13 00:45:53 +0000 | [diff] [blame] | 56 | addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) { |
Chris Lattner | 1a57ccd | 2003-01-15 00:04:14 +0000 | [diff] [blame] | 57 | return MIB.addFrameIndex(FI).addZImm(1).addReg(0).addSImm(Offset); |
Chris Lattner | 987e8ba | 2003-01-13 00:45:53 +0000 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | /// addConstantPoolReference - This function is used to add a reference to the |
| 61 | /// base of a constant value spilled to the per-function constant pool. The |
| 62 | /// reference has base register ConstantPoolIndex offset which is retained until |
| 63 | /// either machine code emission or assembly output. This allows an optional |
| 64 | /// offset to be added as well. |
| 65 | /// |
| 66 | inline const MachineInstrBuilder & |
| 67 | addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI, |
Misha Brukman | 2e385b4 | 2003-10-22 03:10:26 +0000 | [diff] [blame^] | 68 | int Offset = 0) { |
Chris Lattner | 1a57ccd | 2003-01-15 00:04:14 +0000 | [diff] [blame] | 69 | return MIB.addConstantPoolIndex(CPI).addZImm(1).addReg(0).addSImm(Offset); |
Chris Lattner | a1826c2 | 2002-12-28 20:26:58 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Chris Lattner | 9562add | 2002-11-17 21:03:35 +0000 | [diff] [blame] | 72 | #endif |