mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 21:34:23 +00:00
minor cleanups to LSBaseSDNode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47469 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
becda48f88
commit
59a8cdd36d
@ -1353,7 +1353,7 @@ protected:
|
|||||||
}
|
}
|
||||||
public:
|
public:
|
||||||
|
|
||||||
int getIndex() const { return JTI; }
|
int getIndex() const { return JTI; }
|
||||||
|
|
||||||
static bool classof(const JumpTableSDNode *) { return true; }
|
static bool classof(const JumpTableSDNode *) { return true; }
|
||||||
static bool classof(const SDNode *N) {
|
static bool classof(const SDNode *N) {
|
||||||
@ -1615,29 +1615,17 @@ public:
|
|||||||
const Value *SV, int SVO, unsigned Align, bool Vol)
|
const Value *SV, int SVO, unsigned Align, bool Vol)
|
||||||
: SDNode(NodeTy, VTs),
|
: SDNode(NodeTy, VTs),
|
||||||
AddrMode(AM), MemoryVT(VT),
|
AddrMode(AM), MemoryVT(VT),
|
||||||
SrcValue(SV), SVOffset(SVO), Alignment(Align), IsVolatile(Vol)
|
SrcValue(SV), SVOffset(SVO), Alignment(Align), IsVolatile(Vol) {
|
||||||
{
|
|
||||||
for (unsigned i = 0; i != NumOperands; ++i)
|
for (unsigned i = 0; i != NumOperands; ++i)
|
||||||
Ops[i] = Operands[i];
|
Ops[i] = Operands[i];
|
||||||
InitOperands(Ops, NumOperands);
|
InitOperands(Ops, NumOperands);
|
||||||
assert(Align != 0 && "Loads and stores should have non-zero aligment");
|
assert(Align != 0 && "Loads and stores should have non-zero aligment");
|
||||||
assert((getOffset().getOpcode() == ISD::UNDEF || isIndexed()) &&
|
|
||||||
"Only indexed loads and stores have a non-undef offset operand");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const SDOperand getChain() const {
|
const SDOperand &getChain() const { return getOperand(0); }
|
||||||
return getOperand(0);
|
const SDOperand &getBasePtr() const {
|
||||||
}
|
|
||||||
const SDOperand getBasePtr() const {
|
|
||||||
return getOperand(getOpcode() == ISD::LOAD ? 1 : 2);
|
return getOperand(getOpcode() == ISD::LOAD ? 1 : 2);
|
||||||
}
|
}
|
||||||
const SDOperand getOffset() const {
|
|
||||||
return getOperand(getOpcode() == ISD::LOAD ? 2 : 3);
|
|
||||||
}
|
|
||||||
const SDOperand getValue() const {
|
|
||||||
assert(getOpcode() == ISD::STORE);
|
|
||||||
return getOperand(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
const Value *getSrcValue() const { return SrcValue; }
|
const Value *getSrcValue() const { return SrcValue; }
|
||||||
int getSrcValueOffset() const { return SVOffset; }
|
int getSrcValueOffset() const { return SVOffset; }
|
||||||
@ -1679,10 +1667,15 @@ protected:
|
|||||||
const Value *SV, int O=0, unsigned Align=0, bool Vol=false)
|
const Value *SV, int O=0, unsigned Align=0, bool Vol=false)
|
||||||
: LSBaseSDNode(ISD::LOAD, ChainPtrOff, 3,
|
: LSBaseSDNode(ISD::LOAD, ChainPtrOff, 3,
|
||||||
VTs, AM, LVT, SV, O, Align, Vol),
|
VTs, AM, LVT, SV, O, Align, Vol),
|
||||||
ExtType(ETy) { }
|
ExtType(ETy) {
|
||||||
|
assert((getOffset().getOpcode() == ISD::UNDEF || isIndexed()) &&
|
||||||
|
"Only indexed loads and stores have a non-undef offset operand");
|
||||||
|
}
|
||||||
public:
|
public:
|
||||||
|
|
||||||
ISD::LoadExtType getExtensionType() const { return ExtType; }
|
ISD::LoadExtType getExtensionType() const { return ExtType; }
|
||||||
|
const SDOperand &getBasePtr() const { return getOperand(1); }
|
||||||
|
const SDOperand &getOffset() const { return getOperand(2); }
|
||||||
|
|
||||||
static bool classof(const LoadSDNode *) { return true; }
|
static bool classof(const LoadSDNode *) { return true; }
|
||||||
static bool classof(const SDNode *N) {
|
static bool classof(const SDNode *N) {
|
||||||
@ -1704,10 +1697,16 @@ protected:
|
|||||||
const Value *SV, int O=0, unsigned Align=0, bool Vol=false)
|
const Value *SV, int O=0, unsigned Align=0, bool Vol=false)
|
||||||
: LSBaseSDNode(ISD::STORE, ChainValuePtrOff, 4,
|
: LSBaseSDNode(ISD::STORE, ChainValuePtrOff, 4,
|
||||||
VTs, AM, SVT, SV, O, Align, Vol),
|
VTs, AM, SVT, SV, O, Align, Vol),
|
||||||
IsTruncStore(isTrunc) { }
|
IsTruncStore(isTrunc) {
|
||||||
|
assert((getOffset().getOpcode() == ISD::UNDEF || isIndexed()) &&
|
||||||
|
"Only indexed loads and stores have a non-undef offset operand");
|
||||||
|
}
|
||||||
public:
|
public:
|
||||||
|
|
||||||
bool isTruncatingStore() const { return IsTruncStore; }
|
bool isTruncatingStore() const { return IsTruncStore; }
|
||||||
|
const SDOperand &getValue() const { return getOperand(1); }
|
||||||
|
const SDOperand &getBasePtr() const { return getOperand(2); }
|
||||||
|
const SDOperand &getOffset() const { return getOperand(3); }
|
||||||
|
|
||||||
static bool classof(const StoreSDNode *) { return true; }
|
static bool classof(const StoreSDNode *) { return true; }
|
||||||
static bool classof(const SDNode *N) {
|
static bool classof(const SDNode *N) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user