blob: 87c63421bc8905ba30a6c0416f5ae0cabfbc4b43 [file] [log] [blame]
Chris Lattner9562add2002-11-17 21:03:35 +00001//===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman0e0a7a452005-04-21 23:38:14 +00007//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattner9562add2002-11-17 21:03:35 +00009//
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 Gaekeed6902c2002-12-13 09:28:50 +000019// For reference, the order of operands for memory references is:
20// (Operand), Base, Scale, Index, Displacement.
21//
Chris Lattner9562add2002-11-17 21:03:35 +000022//===----------------------------------------------------------------------===//
23
24#ifndef X86INSTRBUILDER_H
25#define X86INSTRBUILDER_H
26
27#include "llvm/CodeGen/MachineInstrBuilder.h"
28
Brian Gaeked0fde302003-11-11 22:41:34 +000029namespace llvm {
30
Reid Spencerfc989e12004-08-30 00:13:26 +000031/// X86AddressMode - This struct holds a generalized full x86 address mode.
32/// The base register can be a frame index, which will eventually be replaced
Chris Lattnerfb3d8442004-10-15 04:43:20 +000033/// with BP or SP and Disp being offsetted accordingly. The displacement may
34/// also include the offset of a global value.
Reid Spencerfc989e12004-08-30 00:13:26 +000035struct X86AddressMode {
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000036 enum {
37 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000038 FrameIndexBase
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000039 } BaseType;
Misha Brukman0e0a7a452005-04-21 23:38:14 +000040
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000041 union {
42 unsigned Reg;
43 int FrameIndex;
44 } Base;
Misha Brukman0e0a7a452005-04-21 23:38:14 +000045
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000046 unsigned Scale;
47 unsigned IndexReg;
48 unsigned Disp;
49 GlobalValue *GV;
Misha Brukman0e0a7a452005-04-21 23:38:14 +000050
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000051 X86AddressMode() : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0) {
52 Base.Reg = 0;
53 }
Reid Spencerfc989e12004-08-30 00:13:26 +000054};
55
Chris Lattner9562add2002-11-17 21:03:35 +000056/// addDirectMem - This function is used to add a direct memory reference to the
Chris Lattnera1826c22002-12-28 20:26:58 +000057/// current instruction -- that is, a dereference of an address in a register,
58/// with no scale, index or displacement. An example is: DWORD PTR [EAX].
59///
Chris Lattner9562add2002-11-17 21:03:35 +000060inline const MachineInstrBuilder &addDirectMem(const MachineInstrBuilder &MIB,
61 unsigned Reg) {
Brian Gaekeed6902c2002-12-13 09:28:50 +000062 // Because memory references are always represented with four
63 // values, this adds: Reg, [1, NoReg, 0] to the instruction.
Chris Lattner8b915b42006-05-04 18:16:01 +000064 return MIB.addReg(Reg).addImm(1).addReg(0).addImm(0);
Chris Lattner9562add2002-11-17 21:03:35 +000065}
66
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000067
Chris Lattnera1826c22002-12-28 20:26:58 +000068/// addRegOffset - This function is used to add a memory reference of the form
69/// [Reg + Offset], i.e., one with no scale or index, but with a
70/// displacement. An example is: DWORD PTR [EAX + 4].
71///
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000072inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB,
Evan Cheng9f1c8312008-07-03 09:09:37 +000073 unsigned Reg, bool isKill,
74 int Offset) {
75 return MIB.addReg(Reg, false, false, isKill)
76 .addImm(1).addReg(0).addImm(Offset);
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000077}
78
Chris Lattner5dd350d2005-01-02 02:38:18 +000079/// addRegReg - This function is used to add a memory reference of the form:
80/// [Reg + Reg].
81inline const MachineInstrBuilder &addRegReg(const MachineInstrBuilder &MIB,
Evan Cheng9f1c8312008-07-03 09:09:37 +000082 unsigned Reg1, bool isKill1,
83 unsigned Reg2, bool isKill2) {
84 return MIB.addReg(Reg1, false, false, isKill1).addImm(1)
85 .addReg(Reg2, false, false, isKill2).addImm(0);
Chris Lattner5dd350d2005-01-02 02:38:18 +000086}
87
Chris Lattner2e680372004-02-25 06:01:07 +000088inline const MachineInstrBuilder &addFullAddress(const MachineInstrBuilder &MIB,
Reid Spencerfc989e12004-08-30 00:13:26 +000089 const X86AddressMode &AM) {
90 assert (AM.Scale == 1 || AM.Scale == 2 || AM.Scale == 4 || AM.Scale == 8);
91
92 if (AM.BaseType == X86AddressMode::RegBase)
93 MIB.addReg(AM.Base.Reg);
94 else if (AM.BaseType == X86AddressMode::FrameIndexBase)
95 MIB.addFrameIndex(AM.Base.FrameIndex);
96 else
97 assert (0);
Chris Lattner8b915b42006-05-04 18:16:01 +000098 MIB.addImm(AM.Scale).addReg(AM.IndexReg);
Chris Lattnerfb3d8442004-10-15 04:43:20 +000099 if (AM.GV)
Chris Lattnerea50fab2006-05-04 01:15:02 +0000100 return MIB.addGlobalAddress(AM.GV, AM.Disp);
Chris Lattnerfb3d8442004-10-15 04:43:20 +0000101 else
Chris Lattner63b3d712006-05-04 17:21:20 +0000102 return MIB.addImm(AM.Disp);
Chris Lattner2e680372004-02-25 06:01:07 +0000103}
104
Chris Lattnera1826c22002-12-28 20:26:58 +0000105/// addFrameReference - This function is used to add a reference to the base of
106/// an abstract object on the stack frame of the current function. This
Chris Lattner987e8ba2003-01-13 00:45:53 +0000107/// reference has base register as the FrameIndex offset until it is resolved.
108/// This allows a constant offset to be specified as well...
Chris Lattnera1826c22002-12-28 20:26:58 +0000109///
110inline const MachineInstrBuilder &
Chris Lattner987e8ba2003-01-13 00:45:53 +0000111addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
Chris Lattner8b915b42006-05-04 18:16:01 +0000112 return MIB.addFrameIndex(FI).addImm(1).addReg(0).addImm(Offset);
Chris Lattner987e8ba2003-01-13 00:45:53 +0000113}
114
115/// addConstantPoolReference - This function is used to add a reference to the
116/// base of a constant value spilled to the per-function constant pool. The
Dan Gohman5396c992008-09-30 01:21:32 +0000117/// reference uses the abstract ConstantPoolIndex which is retained until
118/// either machine code emission or assembly output. In PIC mode on x86-32,
119/// the GlobalBaseReg parameter can be used to make this a
120/// GlobalBaseReg-relative reference.
Chris Lattner987e8ba2003-01-13 00:45:53 +0000121///
122inline const MachineInstrBuilder &
Dan Gohman5396c992008-09-30 01:21:32 +0000123addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
124 unsigned GlobalBaseReg = 0) {
125 return MIB.addReg(GlobalBaseReg).addImm(1).addReg(0).addConstantPoolIndex(CPI);
Chris Lattnera1826c22002-12-28 20:26:58 +0000126}
127
Brian Gaeked0fde302003-11-11 22:41:34 +0000128} // End llvm namespace
129
Chris Lattner9562add2002-11-17 21:03:35 +0000130#endif