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

  /external/llvm/include/llvm/Transforms/
Instrumentation.h 68 // Add the 'noredzone' attribute to added runtime library calls.
69 bool NoRedZone;
90 InstrProfOptions() : NoRedZone(false) {}
92 // Add the 'noredzone' attribute to added runtime library calls.
93 bool NoRedZone;
  /external/swiftshader/third_party/LLVM/include/llvm/
Attributes.h 57 const Attributes NoRedZone = 1<<22; /// disable redzone
94 NoRedZone | NoImplicitFloat | Naked | InlineHint | StackAlignment |
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 511 if (Options.NoRedZone)
512 RegisterF->addFnAttr(Attribute::NoRedZone);
560 if (Options.NoRedZone)
561 User->addFnAttr(Attribute::NoRedZone);
616 if (Options.NoRedZone)
617 F->addFnAttr(Attribute::NoRedZone);
GCOVProfiling.cpp 59 Options.NoRedZone = false;
689 if (Options.NoRedZone)
690 F->addFnAttr(Attribute::NoRedZone);
839 if (Options.NoRedZone)
840 WriteoutF->addFnAttr(Attribute::NoRedZone);
900 if (Options.NoRedZone)
901 Fn->addFnAttr(Attribute::NoRedZone);
    [all...]
  /external/llvm/lib/Transforms/IPO/
ForceFunctionAttrs.cpp 43 .Case("noredzone", Attribute::NoRedZone)
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFrameLowering.cpp 77 MF.getFunction()->hasFnAttribute(Attribute::NoRedZone);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Attributes.cpp 71 if (Attrs & Attribute::NoRedZone)
72 Result += "noredzone ";
  /external/clang/lib/CodeGen/
BackendUtil.cpp 472 Options.NoRedZone = CodeGenOpts.DisableRedZone;
483 Options.NoRedZone = CodeGenOpts.DisableRedZone;
    [all...]
CGCall.cpp     [all...]
  /external/llvm/lib/IR/
Attributes.cpp 279 if (hasAttribute(Attribute::NoRedZone))
280 return "noredzone";
492 case Attribute::NoRedZone: return 1 << 22;
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 124 if (MF.getFunction()->hasFnAttribute(Attribute::NoRedZone))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCFrameLowering.cpp 188 bool DisableRedZone = MF.getFunction()->hasFnAttr(Attribute::NoRedZone);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FrameLowering.cpp 638 if (Is64Bit && !Fn->hasFnAttr(Attribute::NoRedZone) &&
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 444 bool DisableRedZone = MF.getFunction()->hasFnAttribute(Attribute::NoRedZone);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
CPPBackend.cpp 469 HANDLE_ATTR(NoRedZone);
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp 923 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 626 case Attribute::NoRedZone:
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 2692 milliseconds