blob: d34d4d757ed26e5a68b21e63cfcb0c716769b66c [file] [log] [blame]
Chris Lattner9562add2002-11-17 21:03:35 +00001//===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
2//
3// This file exposes functions that may be used with BuildMI from the
4// MachineInstrBuilder.h file to handle X86'isms in a clean way.
5//
6// The BuildMem function may be used with the BuildMI function to add entire
7// memory references in a single, typed, function call. X86 memory references
8// can be very complex expressions (described in the README), so wrapping them
9// up behind an easier to use interface makes sense. Descriptions of the
10// functions are included below.
11//
Brian Gaekeed6902c2002-12-13 09:28:50 +000012// For reference, the order of operands for memory references is:
13// (Operand), Base, Scale, Index, Displacement.
14//
Chris Lattner9562add2002-11-17 21:03:35 +000015//===----------------------------------------------------------------------===//
16
17#ifndef X86INSTRBUILDER_H
18#define X86INSTRBUILDER_H
19
20#include "llvm/CodeGen/MachineInstrBuilder.h"
21
22/// addDirectMem - This function is used to add a direct memory reference to the
Chris Lattnera1826c22002-12-28 20:26:58 +000023/// current instruction -- that is, a dereference of an address in a register,
24/// with no scale, index or displacement. An example is: DWORD PTR [EAX].
25///
Chris Lattner9562add2002-11-17 21:03:35 +000026inline const MachineInstrBuilder &addDirectMem(const MachineInstrBuilder &MIB,
27 unsigned Reg) {
Brian Gaekeed6902c2002-12-13 09:28:50 +000028 // Because memory references are always represented with four
29 // values, this adds: Reg, [1, NoReg, 0] to the instruction.
Chris Lattner1a57ccd2003-01-15 00:04:14 +000030 return MIB.addReg(Reg).addZImm(1).addReg(0).addSImm(0);
Chris Lattner9562add2002-11-17 21:03:35 +000031}
32
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000033
Chris Lattnera1826c22002-12-28 20:26:58 +000034/// addRegOffset - This function is used to add a memory reference of the form
35/// [Reg + Offset], i.e., one with no scale or index, but with a
36/// displacement. An example is: DWORD PTR [EAX + 4].
37///
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000038inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB,
Chris Lattnera1826c22002-12-28 20:26:58 +000039 unsigned Reg, int Offset) {
Chris Lattner1a57ccd2003-01-15 00:04:14 +000040 return MIB.addReg(Reg).addZImm(1).addReg(0).addSImm(Offset);
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000041}
42
Chris Lattnera1826c22002-12-28 20:26:58 +000043/// addFrameReference - This function is used to add a reference to the base of
44/// an abstract object on the stack frame of the current function. This
Chris Lattner987e8ba2003-01-13 00:45:53 +000045/// reference has base register as the FrameIndex offset until it is resolved.
46/// This allows a constant offset to be specified as well...
Chris Lattnera1826c22002-12-28 20:26:58 +000047///
48inline const MachineInstrBuilder &
Chris Lattner987e8ba2003-01-13 00:45:53 +000049addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
Chris Lattner1a57ccd2003-01-15 00:04:14 +000050 return MIB.addFrameIndex(FI).addZImm(1).addReg(0).addSImm(Offset);
Chris Lattner987e8ba2003-01-13 00:45:53 +000051}
52
53/// addConstantPoolReference - This function is used to add a reference to the
54/// base of a constant value spilled to the per-function constant pool. The
55/// reference has base register ConstantPoolIndex offset which is retained until
56/// either machine code emission or assembly output. This allows an optional
57/// offset to be added as well.
58///
59inline const MachineInstrBuilder &
60addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
61 int Offset = 0) {
Chris Lattner1a57ccd2003-01-15 00:04:14 +000062 return MIB.addConstantPoolIndex(CPI).addZImm(1).addReg(0).addSImm(Offset);
Chris Lattnera1826c22002-12-28 20:26:58 +000063}
64
Chris Lattner9562add2002-11-17 21:03:35 +000065#endif