OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TheFn
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/IR/
IRBuilder.cpp
70
Value *
TheFn
= Intrinsic::getDeclaration(M, Intrinsic::memset, Tys);
72
CallInst *CI = createCallHelper(
TheFn
, Ops, this);
90
Value *
TheFn
= Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
92
CallInst *CI = createCallHelper(
TheFn
, Ops, this);
114
Value *
TheFn
= Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
116
CallInst *CI = createCallHelper(
TheFn
, Ops, this);
136
Value *
TheFn
= Intrinsic::getDeclaration(M, Intrinsic::lifetime_start);
137
return createCallHelper(
TheFn
, Ops, this);
151
Value *
TheFn
= Intrinsic::getDeclaration(M, Intrinsic::lifetime_end);
152
return createCallHelper(
TheFn
, Ops, this)
[
all
...]
/external/llvm/lib/AsmParser/
LLParser.cpp
136
Function *
TheFn
= nullptr;
139
TheFn
= M->getFunction(Fn.StrVal);
141
TheFn
= dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
143
if (!
TheFn
)
147
if (ResolveForwardRefBlockAddresses(
TheFn
,
196
bool LLParser::ResolveForwardRefBlockAddresses(Function *
TheFn
,
212
TheFn
->getValueSymbolTable().lookup(Refs[i].first.StrVal));
220
BlockAddress *BA = BlockAddress::get(
TheFn
, Res);
[
all
...]
Completed in 203 milliseconds