blob: 6359542819f468447405203047e3bb43b6059627 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86InstrBuilder.h - Functions to aid building x86 insts -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
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//
19// For reference, the order of operands for memory references is:
20// (Operand), Base, Scale, Index, Displacement.
21//
22//===----------------------------------------------------------------------===//
23
24#ifndef X86INSTRBUILDER_H
25#define X86INSTRBUILDER_H
26
Dan Gohmane1b10cd2008-12-03 18:11:40 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohmane1b10cd2008-12-03 18:11:40 +000029#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030
31namespace llvm {
32
33/// X86AddressMode - This struct holds a generalized full x86 address mode.
34/// The base register can be a frame index, which will eventually be replaced
35/// with BP or SP and Disp being offsetted accordingly. The displacement may
36/// also include the offset of a global value.
37struct X86AddressMode {
38 enum {
39 RegBase,
40 FrameIndexBase
41 } BaseType;
42
43 union {
44 unsigned Reg;
45 int FrameIndex;
46 } Base;
47
48 unsigned Scale;
49 unsigned IndexReg;
50 unsigned Disp;
51 GlobalValue *GV;
Chris Lattnerd617fe72009-07-01 03:27:19 +000052 unsigned GVOpFlags;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053
Chris Lattnerd617fe72009-07-01 03:27:19 +000054 X86AddressMode()
55 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056 Base.Reg = 0;
57 }
58};
59
60/// addDirectMem - This function is used to add a direct memory reference to the
61/// 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///
64inline const MachineInstrBuilder &addDirectMem(const MachineInstrBuilder &MIB,
65 unsigned Reg) {
66 // Because memory references are always represented with four
67 // values, this adds: Reg, [1, NoReg, 0] to the instruction.
68 return MIB.addReg(Reg).addImm(1).addReg(0).addImm(0);
69}
70
Rafael Espindolabca99f72009-04-08 21:14:34 +000071inline const MachineInstrBuilder &addLeaOffset(const MachineInstrBuilder &MIB,
72 int Offset) {
73 return MIB.addImm(1).addReg(0).addImm(Offset);
74}
75
76inline const MachineInstrBuilder &addOffset(const MachineInstrBuilder &MIB,
77 int Offset) {
78 return addLeaOffset(MIB, Offset).addReg(0);
79}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080
81/// 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///
85inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB,
Evan Chenge52c1912008-07-03 09:09:37 +000086 unsigned Reg, bool isKill,
87 int Offset) {
Bill Wendling2b739762009-05-13 21:33:08 +000088 return addOffset(MIB.addReg(Reg, getKillRegState(isKill)), Offset);
Rafael Espindolabca99f72009-04-08 21:14:34 +000089}
90
91inline const MachineInstrBuilder &addLeaRegOffset(const MachineInstrBuilder &MIB,
92 unsigned Reg, bool isKill,
93 int Offset) {
Bill Wendling2b739762009-05-13 21:33:08 +000094 return addLeaOffset(MIB.addReg(Reg, getKillRegState(isKill)), Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095}
96
97/// addRegReg - This function is used to add a memory reference of the form:
98/// [Reg + Reg].
99inline const MachineInstrBuilder &addRegReg(const MachineInstrBuilder &MIB,
Evan Chenge52c1912008-07-03 09:09:37 +0000100 unsigned Reg1, bool isKill1,
101 unsigned Reg2, bool isKill2) {
Bill Wendling2b739762009-05-13 21:33:08 +0000102 return MIB.addReg(Reg1, getKillRegState(isKill1)).addImm(1)
103 .addReg(Reg2, getKillRegState(isKill2)).addImm(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104}
105
Rafael Espindolabca99f72009-04-08 21:14:34 +0000106inline const MachineInstrBuilder &addLeaAddress(const MachineInstrBuilder &MIB,
107 const X86AddressMode &AM) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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);
116 MIB.addImm(AM.Scale).addReg(AM.IndexReg);
117 if (AM.GV)
Chris Lattnerd617fe72009-07-01 03:27:19 +0000118 return MIB.addGlobalAddress(AM.GV, AM.Disp, AM.GVOpFlags);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119 else
120 return MIB.addImm(AM.Disp);
121}
122
Rafael Espindolabca99f72009-04-08 21:14:34 +0000123inline const MachineInstrBuilder &addFullAddress(const MachineInstrBuilder &MIB,
124 const X86AddressMode &AM) {
125 return addLeaAddress(MIB, AM).addReg(0);
126}
127
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128/// addFrameReference - This function is used to add a reference to the base of
129/// an abstract object on the stack frame of the current function. This
130/// reference has base register as the FrameIndex offset until it is resolved.
131/// This allows a constant offset to be specified as well...
132///
133inline const MachineInstrBuilder &
134addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
Dan Gohmane1b10cd2008-12-03 18:11:40 +0000135 MachineInstr *MI = MIB;
136 MachineFunction &MF = *MI->getParent()->getParent();
137 MachineFrameInfo &MFI = *MF.getFrameInfo();
138 const TargetInstrDesc &TID = MI->getDesc();
139 unsigned Flags = 0;
140 if (TID.mayLoad())
141 Flags |= MachineMemOperand::MOLoad;
142 if (TID.mayStore())
143 Flags |= MachineMemOperand::MOStore;
144 MachineMemOperand MMO(PseudoSourceValue::getFixedStack(FI),
145 Flags,
146 MFI.getObjectOffset(FI) + Offset,
147 MFI.getObjectSize(FI),
148 MFI.getObjectAlignment(FI));
Rafael Espindolabca99f72009-04-08 21:14:34 +0000149 return addOffset(MIB.addFrameIndex(FI), Offset)
Dan Gohmane1b10cd2008-12-03 18:11:40 +0000150 .addMemOperand(MMO);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000151}
152
153/// addConstantPoolReference - This function is used to add a reference to the
154/// base of a constant value spilled to the per-function constant pool. The
Dan Gohmanf644a762008-09-30 01:21:32 +0000155/// reference uses the abstract ConstantPoolIndex which is retained until
156/// either machine code emission or assembly output. In PIC mode on x86-32,
157/// the GlobalBaseReg parameter can be used to make this a
158/// GlobalBaseReg-relative reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159///
160inline const MachineInstrBuilder &
Dan Gohmanf644a762008-09-30 01:21:32 +0000161addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
Chris Lattner83707ca2009-06-27 01:31:51 +0000162 unsigned GlobalBaseReg, unsigned char OpFlags) {
Rafael Espindolabca99f72009-04-08 21:14:34 +0000163 //FIXME: factor this
164 return MIB.addReg(GlobalBaseReg).addImm(1).addReg(0)
Chris Lattner83707ca2009-06-27 01:31:51 +0000165 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166}
167
168} // End llvm namespace
169
170#endif