forked from OSchip/llvm-project
This was the only user of TargetInstrInfo::ConstantTypeMustBeLoaded().
llvm-svn: 15293
This commit is contained in:
parent
1256571c0d
commit
28f75c2140
|
@ -154,6 +154,10 @@ static Instruction* DecomposeConstantExpr(ConstantExpr* CE,
|
|||
}
|
||||
}
|
||||
|
||||
static inline bool ConstantTypeMustBeLoaded(const Type* CVT) {
|
||||
assert(CVT->isPrimitiveType() || isa<PointerType>(CVT));
|
||||
return !(CVT->isIntegral() || isa<PointerType>(CVT));
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Instruction visitor methods to perform instruction-specific operations
|
||||
|
@ -177,7 +181,7 @@ PreSelection::visitOneOperand(Instruction &I, Value* Op, unsigned opNum,
|
|||
// load-time constant: factor it out so we optimize as best we can
|
||||
Instruction* computeConst = DecomposeConstantExpr(CE, insertBefore);
|
||||
I.setOperand(opNum, computeConst); // replace expr operand with result
|
||||
} else if (instrInfo.ConstantTypeMustBeLoaded(CV)) {
|
||||
} else if (ConstantTypeMustBeLoaded(CV->getType())) {
|
||||
// load address of constant into a register, then load the constant
|
||||
// this is now done during instruction selection
|
||||
// the constant will live in the MachineConstantPool later on
|
||||
|
|
Loading…
Reference in New Issue