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

/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);
122 Function *Caller = CS.getCaller(); local
129 AdjustCallerSSPLevel(Caller, Calle
261 Function *Caller = CS.getCaller(); local
300 Function *Caller = CS.getCaller(); local
472 Function *Caller = CS.getCaller(); local
[all...]
/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() &&
1017 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
1030 if (!Caller->use_empty())
1031 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
1076 ParamTy == TD->getIntPtrType(Caller->getContext())) &&
1078 ActTy == TD->getIntPtrType(Caller
1288 Instruction *Caller = CS.getInstruction(); local
[all...]
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp241 Function *Caller = FirstNewBlock->getParent(); local
250 for (Function::iterator I = FirstNewBlock, E = Caller->end(); I != E; ++I)
254 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){
283 const Function *Caller = CS.getInstruction()->getParent()->getParent(); local
286 CallGraphNode *CallerNode = CG[Caller];
333 // Update the call graph by deleting the edge from Callee to Caller. We must
334 // do this after the loop above in case Caller and Callee are the same.
380 Function *Caller = TheCall->getParent()->getParent(); local
383 &*Caller->begin()->begin());
386 Function *MemCpyFn = Intrinsic::getDeclaration(Caller
523 Function *Caller = OrigBB->getParent(); local
[all...]
H A DSimplifyLibCalls.cpp39 Function *Caller; member in class:__anon21730::LibCallOptimization
63 Caller = CI->getParent()->getParent();
1218 Module *M = Caller->getParent();
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h546 : PathDiagnosticPiece(Call), Caller(callerD), Callee(0),
550 : PathDiagnosticPiece(Call), Caller(caller), Callee(0),
553 const Decl *Caller; member in class:clang::ento::PathDiagnosticCallPiece
572 const Decl *getCaller() const { return Caller; }
/external/clang/lib/AST/
H A DExprConstant.cpp291 CallStackFrame *Caller; member in struct:__anon15117::CallStackFrame
493 Frame = Frame->Caller;
694 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee),
703 Info.CurrentCall = Caller;
728 Frame = Frame->Caller, ++CallIdx) {
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp569 const Decl *Caller = CE->getLocationContext()->getDecl(); local
570 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
1428 const Decl *Caller = CE->getLocationContext()->getDecl(); local
1429 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
1640 const Decl *Caller = CE->getLocationContext()->getDecl(); local
1641 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
/external/clang/include/clang/Sema/
H A DSema.h7436 bool CheckCUDATarget(const FunctionDecl *Caller, const FunctionDecl *Callee) { argument
7437 return CheckCUDATarget(IdentifyCUDATarget(Caller),
/external/clang/lib/Sema/
H A DSemaOverload.cpp2578 /// for equality of their argument types. Caller has already checked that
5496 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext))
5497 if (CheckCUDATarget(Caller, Function)) {
8700 FunctionDecl *Caller = cast<FunctionDecl>(S.CurContext); local
8703 Sema::CUDAFunctionTarget CallerTarget = S.IdentifyCUDATarget(Caller),
9421 if (FunctionDecl *Caller = dyn_cast<FunctionDecl>(S.CurContext))
9422 if (S.CheckCUDATarget(Caller, FunDecl))

Completed in 774 milliseconds