Searched defs:Caller (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp49 Function *Caller; member in class:__anon9968::LibCallOptimization
67 Caller = CI->getParent()->getParent();
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h76 CallSite Caller; // Holds the call that called subframes. member in struct:llvm::ExecutionContext
/external/llvm/lib/Transforms/IPO/
H A DInliner.cpp77 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) { argument
84 AttributeSet OldSSPAttr = AttributeSet::get(Caller->getContext(),
87 AttributeSet CallerAttr = Caller->getAttributes(),
92 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
93 Caller->addFnAttr(Attribute::StackProtectReq);
98 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
99 Caller->addFnAttr(Attribute::StackProtectStrong);
106 Caller->addFnAttr(Attribute::StackProtect);
121 Function *Caller = CS.getCaller(); local
128 AdjustCallerSSPLevel(Caller, Calle
238 Function *Caller = CS.getCaller(); local
277 Function *Caller = CS.getCaller(); local
449 Function *Caller = CS.getCaller(); local
[all...]
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp228 Function *Caller = FirstNewBlock->getParent(); local
245 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){
273 const Function *Caller = CS.getInstruction()->getParent()->getParent(); local
276 CallGraphNode *CallerNode = CG[Caller];
323 // Update the call graph by deleting the edge from Callee to Caller. We must
324 // do this after the loop above in case Caller and Callee are the same.
370 Function *Caller = TheCall->getParent()->getParent(); local
373 &*Caller->begin()->begin());
376 Function *MemCpyFn = Intrinsic::getDeclaration(Caller->getParent(),
513 Function *Caller local
[all...]
H A DSimplifyLibCalls.cpp39 Function *Caller; member in class:__anon9992::LibCallOptimization
63 Caller = CI->getParent()->getParent();
1218 Module *M = Caller->getParent();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp986 Instruction *Caller = CS.getInstruction();
994 Type *OldRetTy = Caller->getType();
1006 OldRetTy == TD->getIntPtrType(Caller->getContext())) &&
1008 NewRetTy == TD->getIntPtrType(Caller->getContext()))))
1011 if (!Caller->use_empty() &&
1016 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
1029 if (!Caller->use_empty())
1030 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
1074 ParamTy == TD->getIntPtrType(Caller->getContext())) &&
1076 ActTy == TD->getIntPtrType(Caller
1288 Instruction *Caller = CS.getInstruction(); local
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h515 : PathDiagnosticPiece(Call), Caller(callerD), Callee(0),
519 : PathDiagnosticPiece(Call), Caller(caller), Callee(0),
522 const Decl *Caller; member in class:clang::ento::PathDiagnosticCallPiece
541 const Decl *getCaller() const { return Caller; }
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp611 const Decl *Caller = CE->getLocationContext()->getDecl(); local
612 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
1445 const Decl *Caller = CE->getLocationContext()->getDecl(); local
1446 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
/external/clang/lib/AST/
H A DExprConstant.cpp273 CallStackFrame *Caller; member in struct:__anon3624::CallStackFrame
429 Frame = Frame->Caller;
585 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee),
594 Info.CurrentCall = Caller;
635 Frame = Frame->Caller, ++CallIdx) {
/external/clang/include/clang/Sema/
H A DSema.h7109 bool CheckCUDATarget(const FunctionDecl *Caller, const FunctionDecl *Callee) { argument
7110 return CheckCUDATarget(IdentifyCUDATarget(Caller),
/external/clang/lib/Sema/
H A DSemaOverload.cpp2592 /// for equality of their argument types. Caller has already checked that
5386 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext))
5387 if (CheckCUDATarget(Caller, Function)) {
8518 FunctionDecl *Caller = cast<FunctionDecl>(S.CurContext); local
8521 Sema::CUDAFunctionTarget CallerTarget = S.IdentifyCUDATarget(Caller),
9129 if (FunctionDecl *Caller = dyn_cast<FunctionDecl>(S.CurContext))
9130 if (S.CheckCUDATarget(Caller, FunDecl))

Completed in 1229 milliseconds