/external/llvm/lib/Analysis/ |
InlineCost.cpp | 253 /// any caller 398 // Each argument passed in has a cost at both the caller and the callee 474 Function *Caller = TheCall->getParent()->getParent(); 503 // Get information about the caller. 504 FunctionInfo &CallerFI = CachedFunctionInfo[Caller]; 508 CallerFI.analyzeFunction(Caller); 510 // Recompute the CalleeFI pointer, getting Caller could have invalidated 515 // Don't inline a callee with dynamic alloca into a caller without them. 589 /// growCachedCostInfo - update the cached cost info for Caller after Callee has 592 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 | 179 // 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 | 520 Function *Caller = FirstNewBlock->getParent(); 537 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){ 570 /// into the caller, update the specified callgraph to reflect the changes we 578 const Function *Caller = CS.getInstruction()->getParent()->getParent(); 581 CallGraphNode *CallerNode = CG[Caller]; 583 // Since we inlined some uninlined call sites in the callee into the caller, 584 // add edges from the caller to all of the callees of the callee. 615 // destination. This can also happen if the call graph node of the caller 628 // Update the call graph by deleting the edge from Callee to Caller. We must 629 // do this after the loop above in case Caller and Callee are the same [all...] |