OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:addFnAttr
(Results
1 - 8
of
8
) sorted by null
/external/llvm/include/llvm/
Function.h
177
///
addFnAttr
- Add function attributes to this function.
179
void
addFnAttr
(Attributes N) {
219
if (DoesNotAccessMemory)
addFnAttr
(Attribute::ReadNone);
228
if (OnlyReadsMemory)
addFnAttr
(Attribute::ReadOnly);
237
if (DoesNotReturn)
addFnAttr
(Attribute::NoReturn);
246
if (DoesNotThrow)
addFnAttr
(Attribute::NoUnwind);
257
addFnAttr
(Attribute::UWTable);
/external/llvm/lib/Transforms/IPO/
Inliner.cpp
90
Caller->
addFnAttr
(Attribute::StackProtectReq);
93
Caller->
addFnAttr
(Attribute::StackProtect);
/external/clang/lib/CodeGen/
CodeGenModule.cpp
469
F->
addFnAttr
(llvm::Attribute::NoUnwind);
472
F->
addFnAttr
(llvm::Attribute::AlwaysInline);
475
F->
addFnAttr
(llvm::Attribute::Naked);
478
F->
addFnAttr
(llvm::Attribute::NoInline);
484
F->
addFnAttr
(llvm::Attribute::StackProtect);
486
F->
addFnAttr
(llvm::Attribute::StackProtectReq);
[
all
...]
CodeGenFunction.cpp
262
Fn->
addFnAttr
(llvm::Attribute::InlineHint);
[
all
...]
TargetInfo.cpp
757
Fn->
addFnAttr
(llvm::Attribute::constructStackAlignmentFromInt(16));
[
all
...]
CGClass.cpp
[
all
...]
/frameworks/compile/slang/
slang_rs_backend.cpp
353
HelperFunction->
addFnAttr
(llvm::Attribute::NoInline);
/external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp
[
all
...]
Completed in 253 milliseconds