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

1 2 3

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ValueLatticeUtils.cpp 25 return F->hasExactDefinition() && !F->hasFnAttribute(Attribute::Naked);
  /external/llvm/lib/CodeGen/
TargetFrameLoweringImpl.cpp 82 // In Naked functions we aren't going to save any registers.
83 if (MF.getFunction()->hasFnAttribute(Attribute::Naked))
PrologEpilogInserter.cpp 205 if (!F->hasFnAttribute(Attribute::Naked))
548 if (!F->hasFnAttribute(Attribute::Naked))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Attributes.h 60 const Attributes Naked = 1<<24; ///< Naked function
94 NoRedZone | NoImplicitFloat | Naked | InlineHint | StackAlignment |
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
TargetFrameLoweringImpl.cpp 91 // In Naked functions we aren't going to save any registers.
92 if (MF.getFunction().hasFnAttribute(Attribute::Naked))
PrologEpilogInserter.cpp 206 if (!F.hasFnAttribute(Attribute::Naked))
528 if (!F.hasFnAttribute(Attribute::Naked)) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
ForceFunctionAttrs.cpp 37 .Case("naked", Attribute::Naked)
PruneEH.cpp 102 // Determine if we should scan for InlineAsm in a naked function as it
107 F->hasFnAttribute(Attribute::Naked) &&
DeadArgumentElimination.cpp 113 // Don't touch naked functions. The assembly might be using an argument, or
116 if (Fn.hasFnAttribute(Attribute::Naked)) {
262 // Don't touch naked functions. The assembly might be using an argument, or
265 if (Fn.hasFnAttribute(Attribute::Naked))
473 // Don't touch naked functions. The assembly might be using an argument, or
476 if (F.hasFnAttribute(Attribute::Naked)) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
ForceFunctionAttrs.cpp 37 .Case("naked", Attribute::Naked)
IPConstantPropagation.cpp 140 // Don't touch naked functions. The may contain asm returning
143 if (F.hasFnAttribute(Attribute::Naked))
PruneEH.cpp 98 // Determine if we should scan for InlineAsm in a naked function as it
103 F->hasFnAttribute(Attribute::Naked) &&
DeadArgumentElimination.cpp 132 // Don't touch naked functions. The assembly might be using an argument, or
135 if (Fn.hasFnAttribute(Attribute::Naked)) {
282 // Don't touch naked functions. The assembly might be using an argument, or
285 if (Fn.hasFnAttribute(Attribute::Naked))
491 // Don't touch naked functions. The assembly might be using an argument, or
494 if (F.hasFnAttribute(Attribute::Naked)) {
    [all...]
FunctionAttrs.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 32 // + Naked (boolean, whether the function is undecorated)
102 ExplicitRewriteDescriptor(StringRef S, StringRef T, const bool Naked)
103 : RewriteDescriptor(DT), Source(Naked ? StringRef("\01" + S.str()) : S),
307 bool Naked = false;
344 } else if (KeyValue.equals("naked")) {
348 Naked = StringRef(Undecorated).lower() == "true" || Undecorated == "1";
364 DL->push_back(new ExplicitRewriteFunctionDescriptor(Source, Target, Naked));
425 /*Naked*/false));
487 /*Naked*/false));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 32 // + Naked (boolean, whether the function is undecorated)
119 ExplicitRewriteDescriptor(StringRef S, StringRef T, const bool Naked)
120 : RewriteDescriptor(DT), Source(Naked ? StringRef("\01" + S.str()) : S),
327 bool Naked = false;
364 } else if (KeyValue.equals("naked")) {
368 Naked = StringRef(Undecorated).lower() == "true" || Undecorated == "1";
385 Source, Target, Naked));
448 /*Naked*/ false));
511 /*Naked*/ false));
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 279 FStub->addFnAttr(llvm::Attribute::Naked);
467 FStub->addFnAttr(llvm::Attribute::Naked);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 273 FStub->addFnAttr(Attribute::Naked);
458 FStub->addFnAttr(Attribute::Naked);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86RetpolineThunks.cpp 209 B.addAttribute(llvm::Attribute::Naked);
ShadowCallStack.cpp 196 Fn.getFunction().hasFnAttribute(Attribute::Naked))
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Attributes.cpp 75 if (Attrs & Attribute::Naked)
76 Result += "naked ";
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PrologEpilogInserter.cpp 99 if (!F->hasFnAttr(Attribute::Naked))
114 if (!F->hasFnAttr(Attribute::Naked))
220 // In Naked functions we aren't going to save any registers.
221 if (Fn.getFunction()->hasFnAttr(Attribute::Naked))
  /external/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 218 Naked = 0x00000080,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 227 Naked = 0x00000080,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
EnumTables.cpp 196 CV_ENUM_CLASS_ENT(FrameProcedureOptions, Naked),

Completed in 2379 milliseconds

1 2 3