OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Naked
(Results
1 - 12
of
12
) sorted by null
/external/llvm/include/llvm/
Attributes.h
60
const Attributes
Naked
= 1<<24; ///<
Naked
function
95
NoRedZone | NoImplicitFloat |
Naked
| InlineHint | StackAlignment |
/external/llvm/lib/VMCore/
Attributes.cpp
73
if (Attrs & Attribute::
Naked
)
74
Result += "
naked
";
/external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp
96
if (!F->hasFnAttr(Attribute::
Naked
))
111
if (!F->hasFnAttr(Attribute::
Naked
))
217
// In
Naked
functions we aren't going to save any registers.
218
if (Fn.getFunction()->hasFnAttr(Attribute::
Naked
))
/external/llvm/bindings/ocaml/llvm/
llvm.ml
94
|
Naked
560
| Attribute.
Naked
-> 1 lsl 24
[
all
...]
llvm.mli
139
|
Naked
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp
616
//
Naked
functions have stack size 0, although getStackSize may not reflect that
617
// because we didn't call all the pieces that compute it for
naked
functions.
618
if (!MF.getFunction()->hasFnAttr(Attribute::
Naked
))
PPCFrameLowering.cpp
242
//
Naked
functions have no stack frame pushed, so we don't have a frame
244
if (MF.getFunction()->hasFnAttr(Attribute::
Naked
))
[
all
...]
PPCISelLowering.cpp
[
all
...]
/external/llvm/utils/TableGen/
LLVMCConfigurationEmitter.cpp
[
all
...]
/external/clang/lib/CodeGen/
CodeGenModule.cpp
475
F->addFnAttr(llvm::Attribute::
Naked
);
[
all
...]
/external/llvm/lib/Target/CppBackend/
CPPBackend.cpp
481
HANDLE_ATTR(
Naked
);
[
all
...]
/external/llvm/lib/AsmParser/
LLParser.cpp
921
case lltok::kw_naked: Attrs |= Attribute::
Naked
; break;
[
all
...]
Completed in 91 milliseconds