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

  /external/llvm/include/llvm/Transforms/
Instrumentation.h 51 // Add the 'noredzone' attribute to added runtime library calls.
52 bool NoRedZone;
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 54 Options.NoRedZone = false;
589 if (Options.NoRedZone)
590 F->addFnAttr(Attribute::NoRedZone);
741 if (Options.NoRedZone)
742 WriteoutF->addFnAttr(Attribute::NoRedZone);
790 if (Options.NoRedZone)
791 Fn->addFnAttr(Attribute::NoRedZone);
846 if (Options.NoRedZone)
847 FlushF->addFnAttr(Attribute::NoRedZone);
  /external/llvm/include/llvm/IR/
Attributes.h 87 NoRedZone, ///< Disable redzone
  /external/clang/lib/CodeGen/
BackendUtil.cpp 316 Options.NoRedZone = CodeGenOpts.DisableRedZone;
CGCall.cpp     [all...]
  /external/llvm/lib/IR/
Attributes.cpp 193 if (hasAttribute(Attribute::NoRedZone))
194 return "noredzone";
366 case Attribute::NoRedZone: return 1 << 22;
    [all...]
Verifier.cpp 739 I->getKindAsEnum() == Attribute::NoRedZone ||
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 222 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoRedZone);
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 693 Attribute::NoRedZone) &&
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 200 case Attribute::NoRedZone:
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 505 HANDLE_ATTR(NoRedZone);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 565 *Kind = Attribute::NoRedZone;
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 922 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
    [all...]

Completed in 120 milliseconds