HomeSort by relevance Sort by last modified time
    Searched refs:hasCalls (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 122 if (StackSize || MFI->hasCalls()) {
175 if (StackSize || MFI->hasCalls()) {
218 if (StackSize || MFI->hasCalls())
374 if (FFI->hasCalls())
381 FFI->hasCalls() ||
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 41 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
52 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
62 CodeInfo->ContainsCalls |= hasCalls;
227 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
246 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
305 CodeInfo->ContainsCalls |= hasCalls;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 171 /// HasCalls - Set to true if this function has any function calls.
172 bool HasCalls;
225 HasCalls = false;
429 /// hasCalls - Return true if the current function has any function calls.
430 bool hasCalls() const { return HasCalls; }
431 void setHasCalls(bool V) { HasCalls = V; }
  /external/llvm/lib/Target/
TargetMachine.cpp 261 return MFI->hasCalls();
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 326 if (MF.getFrameInfo()->hasCalls())
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 622 if (MFI->hasCalls())
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 40 return ((DisableFramePointerElim(MF) && MFI->hasCalls()) ||
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 358 if (!MFI->hasCalls()) {
    [all...]

Completed in 812 milliseconds