HomeSort by relevance Sort by last modified time
    Searched defs:isLeafProc (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Target/Sparc/
SparcMachineFunctionInfo.h 32 /// IsLeafProc - True if the function is a leaf procedure.
33 bool IsLeafProc;
37 IsLeafProc(false) {}
40 IsLeafProc(false) {}
51 void setLeafProc(bool rhs) { IsLeafProc = rhs; }
52 bool isLeafProc() const { return IsLeafProc; }
SparcFrameLowering.cpp 51 if (FuncInfo->isLeafProc()) {
103 if (!FuncInfo->isLeafProc()) {
161 bool SparcFrameLowering::isLeafProc(MachineFunction &MF) const
211 if (!DisableLeafProc && isLeafProc(MF)) {

Completed in 26 milliseconds