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

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
zerop-1.s 2 # Naked comments aren't supported when no operands are supplied; this
  /external/llvm/lib/CodeGen/
TargetFrameLoweringImpl.cpp 72 // In Naked functions we aren't going to save any registers.
73 if (MF.getFunction()->hasFnAttribute(Attribute::Naked))
PrologEpilogInserter.cpp 193 if (!F->hasFnAttribute(Attribute::Naked))
208 if (!F->hasFnAttribute(Attribute::Naked))
    [all...]
  /external/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 32 // + Naked (boolean, whether the function is undecorated)
103 ExplicitRewriteDescriptor(StringRef S, StringRef T, const bool Naked)
104 : RewriteDescriptor(DT), Source(Naked ? StringRef("\01" + S.str()) : S),
308 bool Naked = false;
345 } else if (KeyValue.equals("naked")) {
349 Naked = StringRef(Undecorated).lower() == "true" || Undecorated == "1";
365 DL->push_back(new ExplicitRewriteFunctionDescriptor(Source, Target, Naked));
426 /*Naked*/false));
488 /*Naked*/false));
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 279 FStub->addFnAttr(llvm::Attribute::Naked);
475 FStub->addFnAttr(llvm::Attribute::Naked);
MipsAsmPrinter.cpp 350 bool IsNakedFunction = MF->getFunction()->hasFnAttribute(Attribute::Naked);
    [all...]
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 101 // Determine if we should scan for InlineAsm in a naked function as it
106 F->hasFnAttribute(Attribute::Naked) &&
DeadArgumentElimination.cpp 194 // Don't touch naked functions. The assembly might be using an argument, or
197 if (Fn.hasFnAttribute(Attribute::Naked)) {
340 // Don't touch naked functions. The assembly might be using an argument, or
343 if (Fn.hasFnAttribute(Attribute::Naked))
541 // Don't touch naked functions. The assembly might be using an argument, or
544 if (F.hasFnAttribute(Attribute::Naked)) {
    [all...]
FunctionAttrs.cpp     [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyPEI.cpp 208 if (!F->hasFnAttribute(Attribute::Naked))
223 if (!F->hasFnAttribute(Attribute::Naked))
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 106 | Naked
767 | Attribute.Naked -> Int32.shift_left 1l 24
805 checkattr Attribute.Naked;
    [all...]
llvm.mli 157 | Naked
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 215 if (hasAttribute(Attribute::Naked))
216 return "naked";
429 case Attribute::Naked: return 1 << 24;
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 830 // Naked functions have stack size 0, although getStackSize may not reflect
831 // that because we didn't call all the pieces that compute it for naked
833 if (!MF.getFunction()->hasFnAttribute(Attribute::Naked)) {
    [all...]
PPCFrameLowering.cpp 508 // Naked functions have no stack frame pushed, so we don't have a frame
510 if (MF.getFunction()->hasFnAttribute(Attribute::Naked))
    [all...]
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 520 HANDLE_ATTR(Naked);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 824 // Naked implies noinline: we should not be inlining such functions.
825 B.addAttribute(llvm::Attribute::Naked);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 193 case Attribute::Naked:
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 1462 milliseconds