of exception handling builtin sjlj targets in functions turns out not to
be necessary. Marking the intrinsic implementation in the .td file as
defining all registers is sufficient to get the context saved properly by
the containing function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71743
91177308-0d34-0410-b5e6-
96231b3b80d8
const Function *Fn;
const TargetMachine &Target;
- // HasBuiltinSetjmp - true if the function uses builtin_setjmp. Used to
- // adjust callee-saved register tracking.
- bool HasBuiltinSetjmp;
-
// RegInfo - Information about each register in use in the function.
MachineRegisterInfo *RegInfo;
///
const TargetMachine &getTarget() const { return Target; }
- /// doesHaveBuiltinSetjmp - Return whether this function uses builtin_setjmp
- ///
- bool doesHaveBuiltinSetjmp() const { return HasBuiltinSetjmp; }
-
- /// setHasBuiltinSetjmp - Mark whether this function uses builtin_setjmp
- ///
- void setHasBuiltinSetjmp (bool flag) { HasBuiltinSetjmp = flag; }
-
/// getRegInfo - Return information about the registers currently in use.
///
MachineRegisterInfo &getRegInfo() { return *RegInfo; }
MachineRegisterInfo(*TM.getRegisterInfo());
else
RegInfo = 0;
- HasBuiltinSetjmp = false;
MFInfo = 0;
FrameInfo = new (Allocator.Allocate<MachineFrameInfo>())
MachineFrameInfo(*TM.getFrameInfo());
std::vector<CalleeSavedInfo> CSI;
for (unsigned i = 0; CSRegs[i]; ++i) {
unsigned Reg = CSRegs[i];
- if (Fn.getRegInfo().isPhysRegUsed(Reg) || Fn.doesHaveBuiltinSetjmp()) {
+ if (Fn.getRegInfo().isPhysRegUsed(Reg)) {
// If the reg is modified, save it!
CSI.push_back(CalleeSavedInfo(Reg, CSRegClasses[i]));
} else {
case Intrinsic::longjmp:
return "_longjmp"+!TLI.usesUnderscoreLongJmp();
break;
- case Intrinsic::builtinsetjmp:
- // Mark this function has using builtin_setjmp so context gets preserved
- DAG.getMachineFunction().setHasBuiltinSetjmp(true);
- // Turn it into a target intrinsic node for the codegen
- visitTargetIntrinsic(I, Intrinsic);
- return 0;
case Intrinsic::memcpy: {
SDValue Op1 = getValue(I.getOperand(1));
SDValue Op2 = getValue(I.getOperand(2));