mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-05 14:52:02 +00:00
Rename MemOperand to MachineMemOperand. This was suggested by
review feedback from Chris quite a while ago. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49348 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cb76b12a3a
commit
36b5c1338a
@ -17,7 +17,7 @@
|
|||||||
#define LLVM_CODEGEN_MACHINEINSTR_H
|
#define LLVM_CODEGEN_MACHINEINSTR_H
|
||||||
|
|
||||||
#include "llvm/CodeGen/MachineOperand.h"
|
#include "llvm/CodeGen/MachineOperand.h"
|
||||||
#include "llvm/CodeGen/MemOperand.h"
|
#include "llvm/CodeGen/MachineMemOperand.h"
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ class MachineInstr {
|
|||||||
// are determined at construction time).
|
// are determined at construction time).
|
||||||
|
|
||||||
std::vector<MachineOperand> Operands; // the operands
|
std::vector<MachineOperand> Operands; // the operands
|
||||||
std::vector<MemOperand> MemOperands; // information on memory references
|
std::vector<MachineMemOperand> MemOperands;// information on memory references
|
||||||
MachineInstr *Prev, *Next; // Links for MBB's intrusive list.
|
MachineInstr *Prev, *Next; // Links for MBB's intrusive list.
|
||||||
MachineBasicBlock *Parent; // Pointer to the owning basic block.
|
MachineBasicBlock *Parent; // Pointer to the owning basic block.
|
||||||
|
|
||||||
@ -100,11 +100,11 @@ public:
|
|||||||
/// Access to memory operands of the instruction
|
/// Access to memory operands of the instruction
|
||||||
unsigned getNumMemOperands() const { return MemOperands.size(); }
|
unsigned getNumMemOperands() const { return MemOperands.size(); }
|
||||||
|
|
||||||
const MemOperand& getMemOperand(unsigned i) const {
|
const MachineMemOperand& getMemOperand(unsigned i) const {
|
||||||
assert(i < getNumMemOperands() && "getMemOperand() out of range!");
|
assert(i < getNumMemOperands() && "getMemOperand() out of range!");
|
||||||
return MemOperands[i];
|
return MemOperands[i];
|
||||||
}
|
}
|
||||||
MemOperand& getMemOperand(unsigned i) {
|
MachineMemOperand& getMemOperand(unsigned i) {
|
||||||
assert(i < getNumMemOperands() && "getMemOperand() out of range!");
|
assert(i < getNumMemOperands() && "getMemOperand() out of range!");
|
||||||
return MemOperands[i];
|
return MemOperands[i];
|
||||||
}
|
}
|
||||||
@ -268,9 +268,9 @@ public:
|
|||||||
///
|
///
|
||||||
void RemoveOperand(unsigned i);
|
void RemoveOperand(unsigned i);
|
||||||
|
|
||||||
/// addMemOperand - Add a MemOperand to the machine instruction, referencing
|
/// addMemOperand - Add a MachineMemOperand to the machine instruction,
|
||||||
/// arbitrary storage.
|
/// referencing arbitrary storage.
|
||||||
void addMemOperand(const MemOperand &MO) {
|
void addMemOperand(const MachineMemOperand &MO) {
|
||||||
MemOperands.push_back(MO);
|
MemOperands.push_back(MO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// addMemOperand - Add a memory operand to the machine instruction.
|
/// addMemOperand - Add a memory operand to the machine instruction.
|
||||||
const MachineInstrBuilder &addMemOperand(const MemOperand &MO) const {
|
const MachineInstrBuilder &addMemOperand(const MachineMemOperand &MO) const {
|
||||||
MI->addMemOperand(MO);
|
MI->addMemOperand(MO);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
//===-- llvm/CodeGen/MemOperand.h - MemOperand class ------------*- C++ -*-===//
|
//==- llvm/CodeGen/MachineMemOperand.h - MachineMemOperand class -*- C++ -*-==//
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
@ -7,7 +7,7 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
// This file contains the declaration of the MemOperand class, which is a
|
// This file contains the declaration of the MachineMemOperand class, which is a
|
||||||
// description of a memory reference. It is used to help track dependencies
|
// description of a memory reference. It is used to help track dependencies
|
||||||
// in the backend.
|
// in the backend.
|
||||||
//
|
//
|
||||||
@ -21,14 +21,14 @@ namespace llvm {
|
|||||||
class Value;
|
class Value;
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
/// MemOperand - A description of a memory reference used in the backend.
|
/// MachineMemOperand - A description of a memory reference used in the backend.
|
||||||
/// Instead of holding a StoreInst or LoadInst, this class holds the address
|
/// Instead of holding a StoreInst or LoadInst, this class holds the address
|
||||||
/// Value of the reference along with a byte size and offset. This allows it
|
/// Value of the reference along with a byte size and offset. This allows it
|
||||||
/// to describe lowered loads and stores. Also, the special PseudoSourceValue
|
/// to describe lowered loads and stores. Also, the special PseudoSourceValue
|
||||||
/// objects can be used to represent loads and stores to memory locations
|
/// objects can be used to represent loads and stores to memory locations
|
||||||
/// that aren't explicit in the regular LLVM IR.
|
/// that aren't explicit in the regular LLVM IR.
|
||||||
///
|
///
|
||||||
class MemOperand {
|
class MachineMemOperand {
|
||||||
const Value *V;
|
const Value *V;
|
||||||
unsigned int Flags;
|
unsigned int Flags;
|
||||||
int64_t Offset;
|
int64_t Offset;
|
||||||
@ -46,9 +46,9 @@ public:
|
|||||||
MOVolatile = 4
|
MOVolatile = 4
|
||||||
};
|
};
|
||||||
|
|
||||||
/// MemOperand - Construct an MemOperand object with the specified
|
/// MachineMemOperand - Construct an MachineMemOperand object with the
|
||||||
/// address Value, flags, offset, size, and alignment.
|
/// specified address Value, flags, offset, size, and alignment.
|
||||||
MemOperand(const Value *v, unsigned int f, int64_t o, uint64_t s,
|
MachineMemOperand(const Value *v, unsigned int f, int64_t o, uint64_t s,
|
||||||
unsigned int a)
|
unsigned int a)
|
||||||
: V(v), Flags(f), Offset(o), Size(s), Alignment(a) {}
|
: V(v), Flags(f), Offset(o), Size(s), Alignment(a) {}
|
||||||
|
|
@ -365,7 +365,7 @@ namespace llvm {
|
|||||||
const TargetInstrDesc *II,
|
const TargetInstrDesc *II,
|
||||||
DenseMap<SDOperandImpl, unsigned> &VRBaseMap);
|
DenseMap<SDOperandImpl, unsigned> &VRBaseMap);
|
||||||
|
|
||||||
void AddMemOperand(MachineInstr *MI, const MemOperand &MO);
|
void AddMemOperand(MachineInstr *MI, const MachineMemOperand &MO);
|
||||||
|
|
||||||
void EmitCrossRCCopy(SUnit *SU, DenseMap<SUnit*, unsigned> &VRBaseMap);
|
void EmitCrossRCCopy(SUnit *SU, DenseMap<SUnit*, unsigned> &VRBaseMap);
|
||||||
|
|
||||||
|
@ -401,7 +401,7 @@ public:
|
|||||||
|
|
||||||
// getMemOperand - Construct a node to track a memory reference
|
// getMemOperand - Construct a node to track a memory reference
|
||||||
// through the backend.
|
// through the backend.
|
||||||
SDOperand getMemOperand(const MemOperand &MO);
|
SDOperand getMemOperand(const MachineMemOperand &MO);
|
||||||
|
|
||||||
/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
|
/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
|
||||||
/// specified operands. If the resultant node already exists in the DAG,
|
/// specified operands. If the resultant node already exists in the DAG,
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "llvm/ADT/APFloat.h"
|
#include "llvm/ADT/APFloat.h"
|
||||||
#include "llvm/ADT/APInt.h"
|
#include "llvm/ADT/APInt.h"
|
||||||
#include "llvm/CodeGen/ValueTypes.h"
|
#include "llvm/CodeGen/ValueTypes.h"
|
||||||
#include "llvm/CodeGen/MemOperand.h"
|
#include "llvm/CodeGen/MachineMemOperand.h"
|
||||||
#include "llvm/Support/DataTypes.h"
|
#include "llvm/Support/DataTypes.h"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
@ -530,9 +530,9 @@ namespace ISD {
|
|||||||
// make reference to a value in the LLVM IR.
|
// make reference to a value in the LLVM IR.
|
||||||
SRCVALUE,
|
SRCVALUE,
|
||||||
|
|
||||||
// MEMOPERAND - This is a node that contains a MemOperand which records
|
// MEMOPERAND - This is a node that contains a MachineMemOperand which
|
||||||
// information about a memory reference. This is used to make AliasAnalysis
|
// records information about a memory reference. This is used to make
|
||||||
// queries from the backend.
|
// AliasAnalysis queries from the backend.
|
||||||
MEMOPERAND,
|
MEMOPERAND,
|
||||||
|
|
||||||
// PCMARKER - This corresponds to the pcmarker intrinsic.
|
// PCMARKER - This corresponds to the pcmarker intrinsic.
|
||||||
@ -1645,7 +1645,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/// MemOperandSDNode - An SDNode that holds a MemOperand. This is
|
/// MemOperandSDNode - An SDNode that holds a MachineMemOperand. This is
|
||||||
/// used to represent a reference to memory after ISD::LOAD
|
/// used to represent a reference to memory after ISD::LOAD
|
||||||
/// and ISD::STORE have been lowered.
|
/// and ISD::STORE have been lowered.
|
||||||
///
|
///
|
||||||
@ -1653,13 +1653,13 @@ class MemOperandSDNode : public SDNode {
|
|||||||
virtual void ANCHOR(); // Out-of-line virtual method to give class a home.
|
virtual void ANCHOR(); // Out-of-line virtual method to give class a home.
|
||||||
protected:
|
protected:
|
||||||
friend class SelectionDAG;
|
friend class SelectionDAG;
|
||||||
/// Create a MemOperand node
|
/// Create a MachineMemOperand node
|
||||||
explicit MemOperandSDNode(const MemOperand &mo)
|
explicit MemOperandSDNode(const MachineMemOperand &mo)
|
||||||
: SDNode(ISD::MEMOPERAND, getSDVTList(MVT::Other)), MO(mo) {}
|
: SDNode(ISD::MEMOPERAND, getSDVTList(MVT::Other)), MO(mo) {}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// MO - The contained MemOperand.
|
/// MO - The contained MachineMemOperand.
|
||||||
const MemOperand MO;
|
const MachineMemOperand MO;
|
||||||
|
|
||||||
static bool classof(const MemOperandSDNode *) { return true; }
|
static bool classof(const MemOperandSDNode *) { return true; }
|
||||||
static bool classof(const SDNode *N) {
|
static bool classof(const SDNode *N) {
|
||||||
@ -1906,9 +1906,9 @@ public:
|
|||||||
/// isUnindexed - Return true if this is NOT a pre/post inc/dec load/store.
|
/// isUnindexed - Return true if this is NOT a pre/post inc/dec load/store.
|
||||||
bool isUnindexed() const { return AddrMode == ISD::UNINDEXED; }
|
bool isUnindexed() const { return AddrMode == ISD::UNINDEXED; }
|
||||||
|
|
||||||
/// getMemOperand - Return a MemOperand object describing the memory
|
/// getMemOperand - Return a MachineMemOperand object describing the memory
|
||||||
/// reference performed by this load or store.
|
/// reference performed by this load or store.
|
||||||
MemOperand getMemOperand() const;
|
MachineMemOperand getMemOperand() const;
|
||||||
|
|
||||||
static bool classof(const LSBaseSDNode *N) { return true; }
|
static bool classof(const LSBaseSDNode *N) { return true; }
|
||||||
static bool classof(const SDNode *N) {
|
static bool classof(const SDNode *N) {
|
||||||
|
@ -693,7 +693,7 @@ void MachineInstr::print(std::ostream &OS, const TargetMachine *TM) const {
|
|||||||
if (getNumMemOperands() > 0) {
|
if (getNumMemOperands() > 0) {
|
||||||
OS << ", Mem:";
|
OS << ", Mem:";
|
||||||
for (unsigned i = 0; i < getNumMemOperands(); i++) {
|
for (unsigned i = 0; i < getNumMemOperands(); i++) {
|
||||||
const MemOperand &MRO = getMemOperand(i);
|
const MachineMemOperand &MRO = getMemOperand(i);
|
||||||
const Value *V = MRO.getValue();
|
const Value *V = MRO.getValue();
|
||||||
|
|
||||||
assert((MRO.isLoad() || MRO.isStore()) &&
|
assert((MRO.isLoad() || MRO.isStore()) &&
|
||||||
|
@ -369,7 +369,7 @@ unsigned ScheduleDAG::CountResults(SDNode *Node) {
|
|||||||
unsigned ScheduleDAG::CountOperands(SDNode *Node) {
|
unsigned ScheduleDAG::CountOperands(SDNode *Node) {
|
||||||
unsigned N = ComputeMemOperandsEnd(Node);
|
unsigned N = ComputeMemOperandsEnd(Node);
|
||||||
while (N && isa<MemOperandSDNode>(Node->getOperand(N - 1).Val))
|
while (N && isa<MemOperandSDNode>(Node->getOperand(N - 1).Val))
|
||||||
--N; // Ignore MemOperand nodes
|
--N; // Ignore MEMOPERAND nodes
|
||||||
return N;
|
return N;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -656,7 +656,7 @@ void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op,
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScheduleDAG::AddMemOperand(MachineInstr *MI, const MemOperand &MO) {
|
void ScheduleDAG::AddMemOperand(MachineInstr *MI, const MachineMemOperand &MO) {
|
||||||
MI->addMemOperand(MO);
|
MI->addMemOperand(MO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -385,7 +385,7 @@ static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) {
|
|||||||
ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
|
ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
|
||||||
break;
|
break;
|
||||||
case ISD::MEMOPERAND: {
|
case ISD::MEMOPERAND: {
|
||||||
const MemOperand &MO = cast<MemOperandSDNode>(N)->MO;
|
const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
|
||||||
ID.AddPointer(MO.getValue());
|
ID.AddPointer(MO.getValue());
|
||||||
ID.AddInteger(MO.getFlags());
|
ID.AddInteger(MO.getFlags());
|
||||||
ID.AddInteger(MO.getOffset());
|
ID.AddInteger(MO.getOffset());
|
||||||
@ -1014,7 +1014,7 @@ SDOperand SelectionDAG::getSrcValue(const Value *V) {
|
|||||||
return SDOperand(N, 0);
|
return SDOperand(N, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
SDOperand SelectionDAG::getMemOperand(const MemOperand &MO) {
|
SDOperand SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
|
||||||
const Value *v = MO.getValue();
|
const Value *v = MO.getValue();
|
||||||
assert((!v || isa<PointerType>(v->getType())) &&
|
assert((!v || isa<PointerType>(v->getType())) &&
|
||||||
"SrcValue is not a pointer?");
|
"SrcValue is not a pointer?");
|
||||||
@ -3635,23 +3635,24 @@ GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
|
|||||||
TheGlobal = const_cast<GlobalValue*>(GA);
|
TheGlobal = const_cast<GlobalValue*>(GA);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getMemOperand - Return a MemOperand object describing the memory
|
/// getMemOperand - Return a MachineMemOperand object describing the memory
|
||||||
/// reference performed by this load or store.
|
/// reference performed by this load or store.
|
||||||
MemOperand LSBaseSDNode::getMemOperand() const {
|
MachineMemOperand LSBaseSDNode::getMemOperand() const {
|
||||||
int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
|
int Size = (MVT::getSizeInBits(getMemoryVT()) + 7) >> 3;
|
||||||
int Flags =
|
int Flags =
|
||||||
getOpcode() == ISD::LOAD ? MemOperand::MOLoad : MemOperand::MOStore;
|
getOpcode() == ISD::LOAD ? MachineMemOperand::MOLoad :
|
||||||
if (IsVolatile) Flags |= MemOperand::MOVolatile;
|
MachineMemOperand::MOStore;
|
||||||
|
if (IsVolatile) Flags |= MachineMemOperand::MOVolatile;
|
||||||
|
|
||||||
// Check if the load references a frame index, and does not have
|
// Check if the load references a frame index, and does not have
|
||||||
// an SV attached.
|
// an SV attached.
|
||||||
const FrameIndexSDNode *FI =
|
const FrameIndexSDNode *FI =
|
||||||
dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
|
dyn_cast<const FrameIndexSDNode>(getBasePtr().Val);
|
||||||
if (!getSrcValue() && FI)
|
if (!getSrcValue() && FI)
|
||||||
return MemOperand(PseudoSourceValue::getFixedStack(), Flags,
|
return MachineMemOperand(PseudoSourceValue::getFixedStack(), Flags,
|
||||||
FI->getIndex(), Size, Alignment);
|
FI->getIndex(), Size, Alignment);
|
||||||
else
|
else
|
||||||
return MemOperand(getSrcValue(), Flags,
|
return MachineMemOperand(getSrcValue(), Flags,
|
||||||
getSrcValueOffset(), Size, Alignment);
|
getSrcValueOffset(), Size, Alignment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2500,8 +2500,8 @@ SDOperand PPCTargetLowering::LowerSINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
|
|||||||
Op.getOperand(0));
|
Op.getOperand(0));
|
||||||
|
|
||||||
// STD the extended value into the stack slot.
|
// STD the extended value into the stack slot.
|
||||||
MemOperand MO(PseudoSourceValue::getFixedStack(),
|
MachineMemOperand MO(PseudoSourceValue::getFixedStack(),
|
||||||
MemOperand::MOStore, FrameIdx, 8, 8);
|
MachineMemOperand::MOStore, FrameIdx, 8, 8);
|
||||||
SDOperand Store = DAG.getNode(PPCISD::STD_32, MVT::Other,
|
SDOperand Store = DAG.getNode(PPCISD::STD_32, MVT::Other,
|
||||||
DAG.getEntryNode(), Ext64, FIdx,
|
DAG.getEntryNode(), Ext64, FIdx,
|
||||||
DAG.getMemOperand(MO));
|
DAG.getMemOperand(MO));
|
||||||
|
@ -1930,7 +1930,7 @@ MachineInstr* X86InstrInfo::foldMemoryOperand(MachineFunction &MF,
|
|||||||
|
|
||||||
unsigned Alignment = 0;
|
unsigned Alignment = 0;
|
||||||
for (unsigned i = 0, e = LoadMI->getNumMemOperands(); i != e; ++i) {
|
for (unsigned i = 0, e = LoadMI->getNumMemOperands(); i != e; ++i) {
|
||||||
const MemOperand &MRO = LoadMI->getMemOperand(i);
|
const MachineMemOperand &MRO = LoadMI->getMemOperand(i);
|
||||||
unsigned Align = MRO.getAlignment();
|
unsigned Align = MRO.getAlignment();
|
||||||
if (Align > Alignment)
|
if (Align > Alignment)
|
||||||
Alignment = Align;
|
Alignment = Align;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user