2005-10-16 05:39:50 +00:00
|
|
|
//===-- PPCInstrBuilder.h - Aides for building PPC insts --------*- C++ -*-===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file exposes functions that may be used with BuildMI from the
|
|
|
|
// MachineInstrBuilder.h file to simplify generating frame and constant pool
|
|
|
|
// references.
|
|
|
|
//
|
|
|
|
// For reference, the order of operands for memory references is:
|
2004-07-07 20:01:36 +00:00
|
|
|
// (Operand), Dest Reg, Base Reg, and either Reg Index or Immediate
|
|
|
|
// Displacement.
|
2004-06-21 16:55:25 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-07-07 20:01:36 +00:00
|
|
|
#ifndef POWERPC_INSTRBUILDER_H
|
|
|
|
#define POWERPC_INSTRBUILDER_H
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// 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 as the FrameIndex offset until it is resolved.
|
|
|
|
/// This allows a constant offset to be specified as well...
|
|
|
|
///
|
2004-07-07 20:01:36 +00:00
|
|
|
inline const MachineInstrBuilder&
|
2005-04-21 23:30:14 +00:00
|
|
|
addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0,
|
2004-07-07 20:01:36 +00:00
|
|
|
bool mem = true) {
|
|
|
|
if (mem)
|
|
|
|
return MIB.addSImm(Offset).addFrameIndex(FI);
|
|
|
|
else
|
|
|
|
return MIB.addFrameIndex(FI).addSImm(Offset);
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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.
|
|
|
|
///
|
2004-07-07 20:01:36 +00:00
|
|
|
inline const MachineInstrBuilder&
|
2004-06-21 16:55:25 +00:00
|
|
|
addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI,
|
|
|
|
int Offset = 0) {
|
|
|
|
return MIB.addSImm(Offset).addConstantPoolIndex(CPI);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|