/external/llvm/lib/Target/AArch64/ |
AArch64ISelLowering.cpp | [all...] |
AArch64CallingConv.td | 182 // According to the PCS, X19-X30 are callee-saved, however only the low 64-bits 183 // of vector registers (8-15) are callee-saved. The order here is is picked up
|
/external/llvm/lib/Target/XCore/ |
XCoreISelLowering.cpp | [all...] |
XCoreFrameLowering.cpp | 255 // Add the callee-saved register as live-in. It's killed at the spill. 384 // A callee save register is used to hold the FP.
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_parser.yy | 504 ast_expression *callee = new(ctx) ast_expression($1); 505 $$ = new(ctx) ast_function_expression(callee); 511 ast_expression *callee = new(ctx) ast_expression($1); 512 $$ = new(ctx) ast_function_expression(callee); 549 ast_expression *callee = new(ctx) ast_expression($1); 550 $$ = new(ctx) ast_function_expression(callee); [all...] |
ast.h | 264 ast_function_expression(ast_expression *callee) 265 : ast_expression(ast_function_call, callee,
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy-jit.cpp | 172 std::string Callee; 175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 176 : Callee(callee), Args(args) {} 718 Function *CalleeF = TheModule->getFunction(Callee); 721 sprintf(error_str, "Unknown function referenced %s", Callee.c_str()); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy-jit.cpp | 157 std::string Callee; 160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 161 : Callee(callee), Args(args) {} 700 Function *CalleeF = TheModule->getFunction(Callee); 703 sprintf(error_str, "Unknown function referenced %s", Callee.c_str()); [all...] |
/external/llvm/lib/CodeGen/ |
ShrinkWrapping.cpp | 1 //===-- ShrinkWrapping.cpp - Reduce spills/restores of callee-saved regs --===// 11 // - Spills and restores of callee-saved registers (CSRs) are placed in the 30 // is used to prevent placement of callee-saved register spills/restores 62 cl::desc("Shrink wrap callee-saved register spills/restores")); 169 /// need save, restore code for callee-saved registers by doing a DF analysis 367 << ": uses no callee-saved registers\n"); [all...] |
/external/mesa3d/src/glsl/ |
glsl_parser.yy | 504 ast_expression *callee = new(ctx) ast_expression($1); 505 $$ = new(ctx) ast_function_expression(callee); 511 ast_expression *callee = new(ctx) ast_expression($1); 512 $$ = new(ctx) ast_function_expression(callee); 549 ast_expression *callee = new(ctx) ast_expression($1); 550 $$ = new(ctx) ast_function_expression(callee); [all...] |
ast.h | 264 ast_function_expression(ast_expression *callee) 265 : ast_expression(ast_function_call, callee,
|
/dalvik/vm/compiler/template/out/ |
CompilerTemplateAsm-armv5te-vfp.S | 46 Callee must save/restore r4+ (except r12) if it modifies them. 228 * runtime-resolved callee. 280 @ Start executing the callee 293 * Thumb code through the link register to transfer control to the callee 338 bx lr @ return to the callee-chaining cell 348 * Thumb code through the link register to transfer control to the callee 364 * - lr+4: to fully resolve the callee and may rechain. [all...] |
/art/compiler/jni/quick/ |
jni_compiler.cc | 96 // 1. Build the frame saving all callee saves 359 // 16. Remove activation - no need to restore callee save registers because we didn't clobber
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
call.cc | 75 // After this timeout, terminate the call because the callee isn't 187 // Callee didn't answer - terminate call
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_format_aos.c | 559 /* cast the callee pointer to the function's type */ 562 "cast callee");
|
/external/chromium_org/third_party/npapi/npspy/extern/plugin/ |
npruntime.h | 300 a reference count to the caller. That is, the callee adds a 317 NPIdentifiers back to the caller. The callee allocs the memory of
|
/external/chromium_org/tools/cygprofile/ |
cygprofile.cc | 382 // addresses of caller and callee codes. 397 // addresses of caller and callee codes.
|
/external/chromium_org/v8/test/webkit/fast/js/ |
arguments.js | 588 return arguments.callee; 602 return arguments.callee;
|
/external/clang/lib/CodeGen/ |
ItaniumCXXABI.cpp | 344 llvm::PHINode *Callee = Builder.CreatePHI(FTy->getPointerTo(), 2); 345 Callee->addIncoming(VirtualFn, FnVirtual); 346 Callee->addIncoming(NonVirtualFn, FnNonVirtual); 347 return Callee; [all...] |
/external/clang/lib/Sema/ |
TreeTransform.h | 241 /// and will be set by the callee when the number of expansions is known. 242 /// The callee must set this value when \c ShouldExpand is \c true; it may [all...] |
/external/clang/test/CodeGenCXX/ |
microsoft-abi-sret-and-byval.cpp | 104 // Test that dtors are invoked in the callee. 113 // Test that references aren't destroyed in the callee.
|
/external/llvm/lib/Target/Hexagon/ |
HexagonFrameLowering.cpp | 234 // We can only schedule double loads if we spill contiguous callee-saved regs 289 // We can only schedule double loads if we spill contiguous callee-saved regs
|
/external/llvm/lib/Target/Mips/ |
MipsISelLowering.h | 228 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const; 334 MipsCC::SpecialCallingConvType getSpecialCallingConv(SDValue Callee) const;
|
/external/llvm/test/Transforms/ObjCARC/ |
nested.ll | 10 declare void @callee() 232 call void @callee() 349 call void @callee() 368 call void @callee() 418 call void @callee() 475 call void @callee() 645 call void @callee() 713 call void @callee() [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_format_aos.c | 559 /* cast the callee pointer to the function's type */ 562 "cast callee");
|