Home
last modified time | relevance | path

Searched refs:CallsUnwindInit (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetFrameLoweringImpl.cpp138 bool CallsUnwindInit = MF.callsUnwindInit(); in determineCalleeSaves() local
142 if (CallsUnwindInit || MRI.isPhysRegModified(Reg)) in determineCalleeSaves()
H A DMIRPrinter.cpp204 YamlMF.CallsUnwindInit = MF.callsUnwindInit(); in print()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h373 bool CallsUnwindInit = false;
1184 bool callsUnwindInit() const { return CallsUnwindInit; }
1185 void setCallsUnwindInit(bool b) { CallsUnwindInit = b; }
H A DMIRYamlMapping.h734 bool CallsUnwindInit = false;
774 YamlIO.mapOptional("callsUnwindInit", MF.CallsUnwindInit, false);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp495 MF.setCallsUnwindInit(YamlMF.CallsUnwindInit); in initializeMachineFunction()