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

  /external/llvm/lib/Analysis/
InlineCost.cpp 260 /// any caller
405 // Each argument passed in has a cost at both the caller and the callee
481 Function *Caller = TheCall->getParent()->getParent();
510 // Get information about the caller.
511 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
515 CallerFI.analyzeFunction(Caller, TD);
517 // Recompute the CalleeFI pointer, getting Caller could have invalidated
522 // Don't inline a callee with dynamic alloca into a caller without them.
596 /// growCachedCostInfo - update the cached cost info for Caller after Callee has
599 InlineCostAnalyzer::growCachedCostInfo(Function *Caller, Function *Callee)
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 76 CallSite Caller; // Holds the call that called subframes.
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_server.cpp 172 struct Caller : public FunctionCall {
179 } caller; local
183 EXPECT_EQ(ret, MessageLoop(caller, msg, msg.glFinish));
test_socket.cpp 117 struct Caller : public FunctionCall {
124 } caller; local
132 EXPECT_NE(ret, MessageLoop(caller, msg, msg.glFinish));
148 struct Caller : public FunctionCall {
153 } caller; local
162 EXPECT_EQ((int *)ret, MessageLoop(caller, msg, msg.glCreateShader));
183 struct Caller : public FunctionCall {
197 } caller; local
199 hooks.gl.glCreateShader = caller.CreateShader;
200 hooks.gl.glCreateProgram = caller.CreateProgram
265 } caller; local
356 } caller; local
428 } caller; local
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 73 /// available from other functions inlined into the caller. If we are able to
80 Function *Caller = CS.getCaller();
88 // calling function, then bump up the caller's stack protection level.
90 Caller->addFnAttr(Attribute::StackProtectReq);
92 !Caller->hasFnAttr(Attribute::StackProtectReq))
93 Caller->addFnAttr(Attribute::StackProtect);
201 Function *Caller = CS.getCaller();
202 if (Caller && !Caller->isDeclaration() &&
203 Caller->hasFnAttr(Attribute::OptimizeForSize) &
    [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/InstCombine/
InstCombineCalls.cpp 178 // If the caller function is nounwind, mark the call as nounwind, even if the
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 50 Function *Caller;
68 Caller = CI->getParent()->getParent();
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 306 /// forwardResume - Forward the 'resume' instruction to the caller's landing
470 /// forwardResume - Forward the 'resume' instruction to the caller's landing pad
611 Function *Caller = FirstNewBlock->getParent();
628 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){
665 /// into the caller, update the specified callgraph to reflect the changes we
673 const Function *Caller = CS.getInstruction()->getParent()->getParent();
676 CallGraphNode *CallerNode = CG[Caller];
678 // Since we inlined some uninlined call sites in the callee into the caller,
679 // add edges from the caller to all of the callees of the callee.
710 // destination. This can also happen if the call graph node of the caller
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]

Completed in 199 milliseconds