summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86InstrBuilder.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-13 00:45:53 +0000
committerChris Lattner <sabre@nondot.org>2003-01-13 00:45:53 +0000
commit987e8baf12226901fc87da382e1e4eedb7f850f8 (patch)
tree4c021352dd4cc6a0e625e0edb59c96919ac84866 /lib/Target/X86/X86InstrBuilder.h
parent31ad5dd67feb7c4324c993ae30590ddb6c9701d2 (diff)
downloadllvm-987e8baf12226901fc87da382e1e4eedb7f850f8.tar.gz
llvm-987e8baf12226901fc87da382e1e4eedb7f850f8.tar.bz2
llvm-987e8baf12226901fc87da382e1e4eedb7f850f8.tar.xz
Add support for frame and constant pool references
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5228 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrBuilder.h')
-rw-r--r--lib/Target/X86/X86InstrBuilder.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/lib/Target/X86/X86InstrBuilder.h b/lib/Target/X86/X86InstrBuilder.h
index 9f2e49921d..7163c996df 100644
--- a/lib/Target/X86/X86InstrBuilder.h
+++ b/lib/Target/X86/X86InstrBuilder.h
@@ -42,12 +42,24 @@ inline const MachineInstrBuilder &addRegOffset(const MachineInstrBuilder &MIB,
/// addFrameReference - This function is used to add a reference to the base of
/// an abstract object on the stack frame of the current function. This
-/// reference has base register <noreg> and a FrameIndex offset until it is
-/// resolved.
+/// reference has base register as the FrameIndex offset until it is resolved.
+/// This allows a constant offset to be specified as well...
///
inline const MachineInstrBuilder &
-addFrameReference(const MachineInstrBuilder &MIB, int FI) {
- return MIB.addReg(0).addZImm(1).addMReg(0).addFrameIndex(FI);
+addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0) {
+ return MIB.addFrameIndex(FI).addZImm(1).addMReg(0).addSImm(Offset);
+}
+
+/// addConstantPoolReference - This function is used to add a reference to the
+/// base of a constant value spilled to the per-function constant pool. The
+/// reference has base register ConstantPoolIndex offset which is retained until
+/// either machine code emission or assembly output. This allows an optional
+/// offset to be added as well.
+///
+inline const MachineInstrBuilder &
+addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
+ int Offset = 0) {
+ return MIB.addConstantPoolIndex(CPI).addZImm(1).addMReg(0).addSImm(Offset);
}
#endif