blob: bbcc32c58c19a6361fb890eac686a6f6594596dc [file] [log] [blame]
Chris Lattnerc682b4a2002-11-17 21:03:35 +00001//===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
Misha Brukmanc88330a2005-04-21 23:38:14 +00002//
John Criswell29265fe2003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanc88330a2005-04-21 23:38:14 +00007//
John Criswell29265fe2003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattnerc682b4a2002-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 Gaekeeaeacc52002-12-13 09:28:50 +000019// For reference, the order of operands for memory references is:
20// (Operand), Base, Scale, Index, Displacement.
21//
Chris Lattnerc682b4a2002-11-17 21:03:35 +000022//===----------------------------------------------------------------------===//
23
24#ifndef X86INSTRBUILDER_H
25#define X86INSTRBUILDER_H
26
Dan Gohman78407ac2008-12-03 18:11:40 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerc682b4a2002-11-17 21:03:35 +000028#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman78407ac2008-12-03 18:11:40 +000029#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattnerc682b4a2002-11-17 21:03:35 +000030
Brian Gaeke960707c2003-11-11 22:41:34 +000031namespace llvm {
32
Reid Spencer8aca0b42004-08-30 00:13:26 +000033/// X86AddressMode - This struct holds a generalized full x86 address mode.
34/// The base register can be a frame index, which will eventually be replaced
Chris Lattnerdf7b9842004-10-15 04:43:20 +000035/// with BP or SP and Disp being offsetted accordingly. The displacement may
36/// also include the offset of a global value.
Reid Spencer8aca0b42004-08-30 00:13:26 +000037struct X86AddressMode {
Chris Lattnerb93409f2005-01-17 23:25:45 +000038 enum {
39 RegBase,
Chris Lattneraa2372562006-05-24 17:04:05 +000040 FrameIndexBase
Chris Lattnerb93409f2005-01-17 23:25:45 +000041 } BaseType;
Misha Brukmanc88330a2005-04-21 23:38:14 +000042
Chris Lattnerb93409f2005-01-17 23:25:45 +000043 union {
44 unsigned Reg;
45 int FrameIndex;
46 } Base;
Misha Brukmanc88330a2005-04-21 23:38:14 +000047
Chris Lattnerb93409f2005-01-17 23:25:45 +000048 unsigned Scale;
49 unsigned IndexReg;
50 unsigned Disp;
51 GlobalValue *GV;
Chris Lattnerf95fa1b2009-07-01 03:27:19 +000052 unsigned GVOpFlags;
Misha Brukmanc88330a2005-04-21 23:38:14 +000053
Chris Lattnerf95fa1b2009-07-01 03:27:19 +000054 X86AddressMode()
55 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) {
Chris Lattnerb93409f2005-01-17 23:25:45 +000056 Base.Reg = 0;
57 }
Reid Spencer8aca0b42004-08-30 00:13:26 +000058};
59
Chris Lattnerc682b4a2002-11-17 21:03:35 +000060/// addDirectMem - This function is used to add a direct memory reference to the
Chris Lattneref5a8f92002-12-28 20:26:58 +000061/// current instruction -- that is, a dereference of an address in a register,
62/// with no scale, index or displacement. An example is: DWORD PTR [EAX].
63///
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +000064static inline const MachineInstrBuilder &
65addDirectMem(const MachineInstrBuilder &MIB, unsigned Reg) {
Brian Gaekeeaeacc52002-12-13 09:28:50 +000066 // Because memory references are always represented with four
67 // values, this adds: Reg, [1, NoReg, 0] to the instruction.
Chris Lattner469647b2006-05-04 18:16:01 +000068 return MIB.addReg(Reg).addImm(1).addReg(0).addImm(0);
Chris Lattnerc682b4a2002-11-17 21:03:35 +000069}
70
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +000071static inline const MachineInstrBuilder &
72addLeaOffset(const MachineInstrBuilder &MIB, int Offset) {
Rafael Espindola3b2df102009-04-08 21:14:34 +000073 return MIB.addImm(1).addReg(0).addImm(Offset);
74}
75
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +000076static inline const MachineInstrBuilder &
77addOffset(const MachineInstrBuilder &MIB, int Offset) {
Rafael Espindola3b2df102009-04-08 21:14:34 +000078 return addLeaOffset(MIB, Offset).addReg(0);
79}
Misha Brukman4ea94a42002-11-22 22:42:12 +000080
Chris Lattneref5a8f92002-12-28 20:26:58 +000081/// addRegOffset - This function is used to add a memory reference of the form
82/// [Reg + Offset], i.e., one with no scale or index, but with a
83/// displacement. An example is: DWORD PTR [EAX + 4].
84///
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +000085static inline const MachineInstrBuilder &
86addRegOffset(const MachineInstrBuilder &MIB,
87 unsigned Reg, bool isKill, int Offset) {
Bill Wendlingf7b83c72009-05-13 21:33:08 +000088 return addOffset(MIB.addReg(Reg, getKillRegState(isKill)), Offset);
Rafael Espindola3b2df102009-04-08 21:14:34 +000089}
90
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +000091static inline const MachineInstrBuilder &
92addLeaRegOffset(const MachineInstrBuilder &MIB,
93 unsigned Reg, bool isKill, int Offset) {
Bill Wendlingf7b83c72009-05-13 21:33:08 +000094 return addLeaOffset(MIB.addReg(Reg, getKillRegState(isKill)), Offset);
Misha Brukman4ea94a42002-11-22 22:42:12 +000095}
96
Chris Lattnere7228732005-01-02 02:38:18 +000097/// addRegReg - This function is used to add a memory reference of the form:
98/// [Reg + Reg].
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +000099static inline const MachineInstrBuilder &addRegReg(const MachineInstrBuilder &MIB,
Evan Cheng7d98a482008-07-03 09:09:37 +0000100 unsigned Reg1, bool isKill1,
101 unsigned Reg2, bool isKill2) {
Bill Wendlingf7b83c72009-05-13 21:33:08 +0000102 return MIB.addReg(Reg1, getKillRegState(isKill1)).addImm(1)
103 .addReg(Reg2, getKillRegState(isKill2)).addImm(0);
Chris Lattnere7228732005-01-02 02:38:18 +0000104}
105
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +0000106static inline const MachineInstrBuilder &
107addLeaAddress(const MachineInstrBuilder &MIB, const X86AddressMode &AM) {
Reid Spencer8aca0b42004-08-30 00:13:26 +0000108 assert (AM.Scale == 1 || AM.Scale == 2 || AM.Scale == 4 || AM.Scale == 8);
109
110 if (AM.BaseType == X86AddressMode::RegBase)
111 MIB.addReg(AM.Base.Reg);
112 else if (AM.BaseType == X86AddressMode::FrameIndexBase)
113 MIB.addFrameIndex(AM.Base.FrameIndex);
114 else
115 assert (0);
Chris Lattner469647b2006-05-04 18:16:01 +0000116 MIB.addImm(AM.Scale).addReg(AM.IndexReg);
Chris Lattnerdf7b9842004-10-15 04:43:20 +0000117 if (AM.GV)
Chris Lattnerf95fa1b2009-07-01 03:27:19 +0000118 return MIB.addGlobalAddress(AM.GV, AM.Disp, AM.GVOpFlags);
Chris Lattnerdf7b9842004-10-15 04:43:20 +0000119 else
Chris Lattnerfef7a2d2006-05-04 17:21:20 +0000120 return MIB.addImm(AM.Disp);
Chris Lattner4b3514c2004-02-25 06:01:07 +0000121}
122
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +0000123static inline const MachineInstrBuilder &
124addFullAddress(const MachineInstrBuilder &MIB,
125 const X86AddressMode &AM) {
Rafael Espindola3b2df102009-04-08 21:14:34 +0000126 return addLeaAddress(MIB, AM).addReg(0);
127}
128
Chris Lattneref5a8f92002-12-28 20:26:58 +0000129/// addFrameReference - This function is used to add a reference to the base of
130/// an abstract object on the stack frame of the current function. This
Chris Lattner78785632003-01-13 00:45:53 +0000131/// reference has base register as the FrameIndex offset until it is resolved.
132/// This allows a constant offset to be specified as well...
Chris Lattneref5a8f92002-12-28 20:26:58 +0000133///
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +0000134static inline const MachineInstrBuilder &
Chris Lattner78785632003-01-13 00:45:53 +0000135addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
Dan Gohman78407ac2008-12-03 18:11:40 +0000136 MachineInstr *MI = MIB;
137 MachineFunction &MF = *MI->getParent()->getParent();
138 MachineFrameInfo &MFI = *MF.getFrameInfo();
139 const TargetInstrDesc &TID = MI->getDesc();
140 unsigned Flags = 0;
141 if (TID.mayLoad())
142 Flags |= MachineMemOperand::MOLoad;
143 if (TID.mayStore())
144 Flags |= MachineMemOperand::MOStore;
145 MachineMemOperand MMO(PseudoSourceValue::getFixedStack(FI),
146 Flags,
147 MFI.getObjectOffset(FI) + Offset,
148 MFI.getObjectSize(FI),
149 MFI.getObjectAlignment(FI));
Rafael Espindola3b2df102009-04-08 21:14:34 +0000150 return addOffset(MIB.addFrameIndex(FI), Offset)
Dan Gohman78407ac2008-12-03 18:11:40 +0000151 .addMemOperand(MMO);
Chris Lattner78785632003-01-13 00:45:53 +0000152}
153
154/// addConstantPoolReference - This function is used to add a reference to the
155/// base of a constant value spilled to the per-function constant pool. The
Dan Gohman8392f0c2008-09-30 01:21:32 +0000156/// reference uses the abstract ConstantPoolIndex which is retained until
157/// either machine code emission or assembly output. In PIC mode on x86-32,
158/// the GlobalBaseReg parameter can be used to make this a
159/// GlobalBaseReg-relative reference.
Chris Lattner78785632003-01-13 00:45:53 +0000160///
Anton Korobeynikov12b4b7c2009-07-16 14:03:08 +0000161static inline const MachineInstrBuilder &
Dan Gohman8392f0c2008-09-30 01:21:32 +0000162addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
Chris Lattnera3260c02009-06-27 01:31:51 +0000163 unsigned GlobalBaseReg, unsigned char OpFlags) {
Rafael Espindola3b2df102009-04-08 21:14:34 +0000164 //FIXME: factor this
165 return MIB.addReg(GlobalBaseReg).addImm(1).addReg(0)
Chris Lattnera3260c02009-06-27 01:31:51 +0000166 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0);
Chris Lattneref5a8f92002-12-28 20:26:58 +0000167}
168
Brian Gaeke960707c2003-11-11 22:41:34 +0000169} // End llvm namespace
170
Chris Lattnerc682b4a2002-11-17 21:03:35 +0000171#endif