blob: 8cbdfec87dd84c2a2ecf64643275ca8ac89201c3 [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
Dan Gohman8cf77132008-12-03 18:11:40 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner9562add2002-11-17 21:03:35 +000028#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohmanc76909a2009-09-25 20:36:54 +000029#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohman8cf77132008-12-03 18:11:40 +000030#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner9562add2002-11-17 21:03:35 +000031
Brian Gaeked0fde302003-11-11 22:41:34 +000032namespace llvm {
33
Reid Spencerfc989e12004-08-30 00:13:26 +000034/// X86AddressMode - This struct holds a generalized full x86 address mode.
35/// The base register can be a frame index, which will eventually be replaced
Chris Lattnerfb3d8442004-10-15 04:43:20 +000036/// with BP or SP and Disp being offsetted accordingly. The displacement may
37/// also include the offset of a global value.
Reid Spencerfc989e12004-08-30 00:13:26 +000038struct X86AddressMode {
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000039 enum {
40 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000041 FrameIndexBase
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000042 } BaseType;
Misha Brukman0e0a7a452005-04-21 23:38:14 +000043
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000044 union {
45 unsigned Reg;
46 int FrameIndex;
47 } Base;
Misha Brukman0e0a7a452005-04-21 23:38:14 +000048
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000049 unsigned Scale;
50 unsigned IndexReg;
Chris Lattnerdffb6e52009-09-15 18:27:02 +000051 int Disp;
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000052 GlobalValue *GV;
Chris Lattner35c28ec2009-07-01 03:27:19 +000053 unsigned GVOpFlags;
Misha Brukman0e0a7a452005-04-21 23:38:14 +000054
Chris Lattner35c28ec2009-07-01 03:27:19 +000055 X86AddressMode()
56 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) {
Chris Lattnere9fe2bc2005-01-17 23:25:45 +000057 Base.Reg = 0;
58 }
Reid Spencerfc989e12004-08-30 00:13:26 +000059};
60
Chris Lattner9562add2002-11-17 21:03:35 +000061/// addDirectMem - This function is used to add a direct memory reference to the
Chris Lattnera1826c22002-12-28 20:26:58 +000062/// current instruction -- that is, a dereference of an address in a register,
63/// with no scale, index or displacement. An example is: DWORD PTR [EAX].
64///
Anton Korobeynikovf366bec2009-07-16 14:03:08 +000065static inline const MachineInstrBuilder &
66addDirectMem(const MachineInstrBuilder &MIB, unsigned Reg) {
Brian Gaekeed6902c2002-12-13 09:28:50 +000067 // Because memory references are always represented with four
68 // values, this adds: Reg, [1, NoReg, 0] to the instruction.
Chris Lattner8b915b42006-05-04 18:16:01 +000069 return MIB.addReg(Reg).addImm(1).addReg(0).addImm(0);
Chris Lattner9562add2002-11-17 21:03:35 +000070}
71
Anton Korobeynikovf366bec2009-07-16 14:03:08 +000072static inline const MachineInstrBuilder &
73addLeaOffset(const MachineInstrBuilder &MIB, int Offset) {
Rafael Espindola094fad32009-04-08 21:14:34 +000074 return MIB.addImm(1).addReg(0).addImm(Offset);
75}
76
Anton Korobeynikovf366bec2009-07-16 14:03:08 +000077static inline const MachineInstrBuilder &
78addOffset(const MachineInstrBuilder &MIB, int Offset) {
Rafael Espindola094fad32009-04-08 21:14:34 +000079 return addLeaOffset(MIB, Offset).addReg(0);
80}
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000081
Chris Lattnera1826c22002-12-28 20:26:58 +000082/// addRegOffset - This function is used to add a memory reference of the form
83/// [Reg + Offset], i.e., one with no scale or index, but with a
84/// displacement. An example is: DWORD PTR [EAX + 4].
85///
Anton Korobeynikovf366bec2009-07-16 14:03:08 +000086static inline const MachineInstrBuilder &
87addRegOffset(const MachineInstrBuilder &MIB,
88 unsigned Reg, bool isKill, int Offset) {
Bill Wendling587daed2009-05-13 21:33:08 +000089 return addOffset(MIB.addReg(Reg, getKillRegState(isKill)), Offset);
Rafael Espindola094fad32009-04-08 21:14:34 +000090}
91
Anton Korobeynikovf366bec2009-07-16 14:03:08 +000092static inline const MachineInstrBuilder &
93addLeaRegOffset(const MachineInstrBuilder &MIB,
94 unsigned Reg, bool isKill, int Offset) {
Bill Wendling587daed2009-05-13 21:33:08 +000095 return addLeaOffset(MIB.addReg(Reg, getKillRegState(isKill)), Offset);
Misha Brukmanfaf0b8c2002-11-22 22:42:12 +000096}
97
Chris Lattner5dd350d2005-01-02 02:38:18 +000098/// addRegReg - This function is used to add a memory reference of the form:
99/// [Reg + Reg].
Anton Korobeynikovf366bec2009-07-16 14:03:08 +0000100static inline const MachineInstrBuilder &addRegReg(const MachineInstrBuilder &MIB,
Evan Cheng9f1c8312008-07-03 09:09:37 +0000101 unsigned Reg1, bool isKill1,
102 unsigned Reg2, bool isKill2) {
Bill Wendling587daed2009-05-13 21:33:08 +0000103 return MIB.addReg(Reg1, getKillRegState(isKill1)).addImm(1)
104 .addReg(Reg2, getKillRegState(isKill2)).addImm(0);
Chris Lattner5dd350d2005-01-02 02:38:18 +0000105}
106
Anton Korobeynikovf366bec2009-07-16 14:03:08 +0000107static inline const MachineInstrBuilder &
108addLeaAddress(const MachineInstrBuilder &MIB, const X86AddressMode &AM) {
Reid Spencerfc989e12004-08-30 00:13:26 +0000109 assert (AM.Scale == 1 || AM.Scale == 2 || AM.Scale == 4 || AM.Scale == 8);
110
111 if (AM.BaseType == X86AddressMode::RegBase)
112 MIB.addReg(AM.Base.Reg);
113 else if (AM.BaseType == X86AddressMode::FrameIndexBase)
114 MIB.addFrameIndex(AM.Base.FrameIndex);
115 else
116 assert (0);
Chris Lattner8b915b42006-05-04 18:16:01 +0000117 MIB.addImm(AM.Scale).addReg(AM.IndexReg);
Chris Lattnerfb3d8442004-10-15 04:43:20 +0000118 if (AM.GV)
Chris Lattner35c28ec2009-07-01 03:27:19 +0000119 return MIB.addGlobalAddress(AM.GV, AM.Disp, AM.GVOpFlags);
Chris Lattnerfb3d8442004-10-15 04:43:20 +0000120 else
Chris Lattner63b3d712006-05-04 17:21:20 +0000121 return MIB.addImm(AM.Disp);
Chris Lattner2e680372004-02-25 06:01:07 +0000122}
123
Anton Korobeynikovf366bec2009-07-16 14:03:08 +0000124static inline const MachineInstrBuilder &
125addFullAddress(const MachineInstrBuilder &MIB,
126 const X86AddressMode &AM) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000127 return addLeaAddress(MIB, AM).addReg(0);
128}
129
Chris Lattnera1826c22002-12-28 20:26:58 +0000130/// addFrameReference - This function is used to add a reference to the base of
131/// an abstract object on the stack frame of the current function. This
Chris Lattner987e8ba2003-01-13 00:45:53 +0000132/// reference has base register as the FrameIndex offset until it is resolved.
133/// This allows a constant offset to be specified as well...
Chris Lattnera1826c22002-12-28 20:26:58 +0000134///
Anton Korobeynikovf366bec2009-07-16 14:03:08 +0000135static inline const MachineInstrBuilder &
Chris Lattner987e8ba2003-01-13 00:45:53 +0000136addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
Dan Gohman8cf77132008-12-03 18:11:40 +0000137 MachineInstr *MI = MIB;
138 MachineFunction &MF = *MI->getParent()->getParent();
139 MachineFrameInfo &MFI = *MF.getFrameInfo();
140 const TargetInstrDesc &TID = MI->getDesc();
141 unsigned Flags = 0;
142 if (TID.mayLoad())
143 Flags |= MachineMemOperand::MOLoad;
144 if (TID.mayStore())
145 Flags |= MachineMemOperand::MOStore;
Evan Cheng491f54f2009-10-17 09:20:14 +0000146 const Value *SV = (MFI.isFixedObjectIndex(FI) ||
147 MFI.isSpillSlotObjectIndex(FI))
148 ? PseudoSourceValue::getFixedStack(FI) : PseudoSourceValue::getStack();
Dan Gohmanc76909a2009-09-25 20:36:54 +0000149 MachineMemOperand *MMO =
Evan Cheng491f54f2009-10-17 09:20:14 +0000150 MF.getMachineMemOperand(SV,
Dan Gohmanc76909a2009-09-25 20:36:54 +0000151 Flags, Offset,
152 MFI.getObjectSize(FI),
153 MFI.getObjectAlignment(FI));
Rafael Espindola094fad32009-04-08 21:14:34 +0000154 return addOffset(MIB.addFrameIndex(FI), Offset)
Dan Gohman8cf77132008-12-03 18:11:40 +0000155 .addMemOperand(MMO);
Chris Lattner987e8ba2003-01-13 00:45:53 +0000156}
157
158/// addConstantPoolReference - This function is used to add a reference to the
159/// base of a constant value spilled to the per-function constant pool. The
Dan Gohman5396c992008-09-30 01:21:32 +0000160/// reference uses the abstract ConstantPoolIndex which is retained until
161/// either machine code emission or assembly output. In PIC mode on x86-32,
162/// the GlobalBaseReg parameter can be used to make this a
163/// GlobalBaseReg-relative reference.
Chris Lattner987e8ba2003-01-13 00:45:53 +0000164///
Anton Korobeynikovf366bec2009-07-16 14:03:08 +0000165static inline const MachineInstrBuilder &
Dan Gohman5396c992008-09-30 01:21:32 +0000166addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
Chris Lattner89da6992009-06-27 01:31:51 +0000167 unsigned GlobalBaseReg, unsigned char OpFlags) {
Rafael Espindola094fad32009-04-08 21:14:34 +0000168 //FIXME: factor this
169 return MIB.addReg(GlobalBaseReg).addImm(1).addReg(0)
Chris Lattner89da6992009-06-27 01:31:51 +0000170 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0);
Chris Lattnera1826c22002-12-28 20:26:58 +0000171}
172
Brian Gaeked0fde302003-11-11 22:41:34 +0000173} // End llvm namespace
174
Chris Lattner9562add2002-11-17 21:03:35 +0000175#endif