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

  /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/core/java/com/android/internal/os/
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
140 /// forwardResume - Forward the 'resume' instruction to the caller's landing pad
241 Function *Caller = FirstNewBlock->getParent();
250 for (Function::iterator I = FirstNewBlock, E = Caller->end(); I != E; ++I)
254 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){
275 /// into the caller, update the specified callgraph to reflect the changes we
283 const Function *Caller = CS.getInstruction()->getParent()->getParent();
286 CallGraphNode *CallerNode = CG[Caller];
288 // Since we inlined some uninlined call sites in the callee into the caller,
289 // add edges from the caller to all of the callees of the callee
    [all...]
SimplifyLibCalls.cpp 39 Function *Caller;
63 Caller = CI->getParent()->getParent();
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 546 : PathDiagnosticPiece(Call), Caller(callerD), Callee(0),
549 PathDiagnosticCallPiece(PathPieces &oldPath, const Decl *caller)
550 : PathDiagnosticPiece(Call), Caller(caller), Callee(0),
553 const Decl *Caller;
572 const Decl *getCaller() const { return Caller; }
603 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/AST/
ExprConstant.cpp 290 /// Parent - The caller of this stack frame.
291 CallStackFrame *Caller;
493 Frame = Frame->Caller;
694 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee),
703 Info.CurrentCall = Caller;
728 Frame = Frame->Caller, ++CallIdx) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 569 const Decl *Caller = CE->getLocationContext()->getDecl();
570 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]

Completed in 248 milliseconds