HomeSort by relevance Sort by last modified time
    Searched defs:Caller (Results 1 - 11 of 11) sorted by null

  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 49 Function *Caller;
67 Caller = CI->getParent()->getParent();
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 76 CallSite Caller; // Holds the call that called subframes.
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 43 STATISTIC(NumCallerCallersAnalyzed, "Number of caller-callers analyzed");
76 /// calling function, then bump up the caller's stack protection level.
77 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) {
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)
    [all...]
  /frameworks/base/services/java/com/android/server/am/
TransferPipe.java 51 interface Caller {
73 static void go(Caller caller, IInterface iface, FileDescriptor out,
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
78 static void go(Caller caller, IInterface iface, FileDescriptor out,
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 80 /// forwardResume - Forward the 'resume' instruction to the caller's landing
139 /// forwardResume - Forward the 'resume' instruction to the caller's landing pad
228 Function *Caller = FirstNewBlock->getParent();
245 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){
265 /// into the caller, update the specified callgraph to reflect the changes we
273 const Function *Caller = CS.getInstruction()->getParent()->getParent();
276 CallGraphNode *CallerNode = CG[Caller];
278 // Since we inlined some uninlined call sites in the callee into the caller,
279 // add edges from the caller to all of the callees of the callee.
310 // destination. This can also happen if the call graph node of the caller
    [all...]
SimplifyLibCalls.cpp 39 Function *Caller;
63 Caller = CI->getParent()->getParent();
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 515 : PathDiagnosticPiece(Call), Caller(callerD), Callee(0),
518 PathDiagnosticCallPiece(PathPieces &oldPath, const Decl *caller)
519 : PathDiagnosticPiece(Call), Caller(caller), Callee(0),
522 const Decl *Caller;
541 const Decl *getCaller() const { return Caller; }
572 const Decl *caller);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 205 // If the caller function is nounwind, mark the call as nounwind, even if the
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 611 const Decl *Caller = CE->getLocationContext()->getDecl();
612 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 272 /// Parent - The caller of this stack frame.
273 CallStackFrame *Caller;
429 Frame = Frame->Caller;
585 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee),
594 Info.CurrentCall = Caller;
635 Frame = Frame->Caller, ++CallIdx) {
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]

Completed in 537 milliseconds