HomeSort by relevance Sort by last modified time
    Searched full:callee (Results 251 - 275 of 1069) sorted by null

<<11121314151617181920>>

  /external/llvm/test/CodeGen/X86/
avx-win64.ll 7 ; The ymm6-15 registers are still call-clobbered even if xmm6-15 are callee-saved.
8 ; Verify that callee-saved registers are not being used.
  /external/llvm/tools/lli/
RecordingMemoryManager.cpp 110 // callee's(eg. tools/lli) one, to invoke wrong duplicated ctors
111 // (and register wrong callee's dtors with atexit(3)).
  /external/v8/src/arm/
frames-arm.h 62 // Callee-saved registers preserved when switching from C to JavaScript
85 // Double registers d8 to d15 are callee-saved.
  /external/v8/test/mjsunit/
arguments-opt.js 89 assertEquals(A, A('callee'));
119 assertEquals(A, A(O('callee')));
arguments.js 113 return arguments.callee(arguments[0] - 1) + arguments[0];
163 assertEquals("function", typeof a.callee);
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipSession.aidl 110 * @param callee the SIP profile to make the call to
116 void makeCall(in SipProfile callee, String sessionDescription, int timeout);
  /external/llvm/docs/tutorial/
OCamlLangImpl3.rst 175 | Ast.Call (callee, args) ->
177 let callee =
178 match lookup_function callee the_module with
179 | Some callee -> callee
182 let params = params callee in
188 build_call callee args "calltmp" builder
819 | Ast.Call (callee, args) ->
821 let callee =
822 match lookup_function callee the_module wit
    [all...]
OCamlLangImpl6.rst 219 let callee = "binary" ^ (String.make 1 op) in
220 let callee =
221 match lookup_function callee the_module with
222 | Some callee -> callee
225 build_call callee [|lhs_val; rhs_val|] "binop" builder
392 let callee = "unary" ^ (String.make 1 op) in
393 let callee =
394 match lookup_function callee the_module with
395 | Some callee -> calle
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_test.h 112 // Returns a pointer to a particular sync profile. Callee owns the object
116 // Returns a pointer to a particular browser. Callee owns the object
120 // Returns a pointer to a particular sync client. Callee owns the object
124 // Returns a reference to the collection of sync clients. Callee owns the
131 // individual sync profiles. Callee owns the object and manages its lifetime.
  /external/llvm/lib/Target/Mips/
MipsRegisterInfo.td 234 // Callee save
251 // Callee save
261 // Callee save
267 // Callee save
293 // Callee save
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /art/compiler/dex/quick/arm/
arm_lir.h 33 * r5 : Callee save (promotion target)
34 * r6 : Callee save (promotion target)
35 * r7 : Callee save (promotion target)
36 * r8 : Callee save (promotion target)
38 * r10 : Callee save (promotion target)
39 * r11 : Callee save (promotion target)
74 * +========================+ {Note: start of callee's frame}
100 // First FP callee save.
431 kThumb2VPopCS, // vpop <list of callee save fp singles (s16+).
432 kThumb2VPushCS, // vpush <list callee save fp singles (s16+)
    [all...]
  /dalvik/vm/compiler/codegen/x86/
LowerInvoke.cpp 30 /* according to callee, decide the ArgsDoneType*/
574 // start of InvokeSingletonChainingCell for callee: -8(%esp)
    [all...]
  /external/llvm/include/llvm/Analysis/
CallGraph.h 40 // of all of the caller-callee relationships, which is useful for
221 /// CallGraph that reference this node in their callee list.
250 /// stealCalledFunctionsFrom - Move all the callee information from N to this
282 /// to the specified callee function. This takes more time to execute than
284 void removeAnyCallEdgeTo(CallGraphNode *Callee);
287 /// from this node to the specified callee function.
288 void removeOneAbstractEdgeTo(CallGraphNode *Callee);
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 41 // Get the entry block in the CFG of the callee.
55 // Construct an edge representing the starting location in the callee.
215 /// 3. Run Remove dead bindings to clean up the dead symbols from the callee.
243 // If the callee returns an expression, bind its value to CallExpr.
295 // Here, we call the Symbol Reaper with 0 statement and callee location
296 // context, telling it to clean up everything in the callee's context
297 // (and its children). We use the callee's function body as a diagnostic
310 // Step 4: Generate the CallExit and leave the callee's context.
436 // Construct a new stack frame for the callee.
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_clone.cpp 181 return new(mem_ctx) ir_call(this->callee, new_return_ref, &new_parameters);
402 (ir_function_signature *) hash_table_find(this->ht, ir->callee);
404 ir->callee = sig;
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.h 86 // is callee, 2nd is stack adjustment required immediately before branch.
92 // operands: the callee and the symbol to be relocated against.
181 bool IsEligibleForTailCallOptimization(SDValue Callee,
  /external/mesa3d/src/glsl/
ir_clone.cpp 181 return new(mem_ctx) ir_call(this->callee, new_return_ref, &new_parameters);
402 (ir_function_signature *) hash_table_find(this->ht, ir->callee);
404 ir->callee = sig;
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 151 // Determine the sizes of each callee-save spill areas and record which frame
152 // belongs to which callee-save spill areas.
218 // Otherwise, if this is not iOS, all the callee-saved registers go
266 // Adjust SP after all the callee-save spills.
276 // an inconsistent state (pointing to the middle of callee-saved area).
385 // Move SP to start of FP callee save spill area.
405 // Use the first callee-saved register as a scratch register.
440 // Tail call return: adjust the stack pointer and jump to callee.
604 // Add the callee-saved register as live-in unless it's LR and
    [all...]
  /art/compiler/dex/quick/mips/
README.mips 29 point registers 16-31. These are the callee-save registers, which therefore
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 126 // Method*, return address and callee save area size, local reference segment state
  /art/compiler/sea_ir/code_gen/
code_gen.cc 197 // TODO: Build callee LLVM function name.
201 llvm::Function *callee = llvm_data_->module_.getFunction(function_name); local
203 DCHECK(NULL != callee);
214 llvm::Value* return_value = llvm_data_->builder_.CreateCall(callee,
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 30 // Visits the arguments as saved to the stack by a Runtime::kRefAndArgs callee save frame.
33 // Offset to first (not the Method*) argument in a Runtime::kRefAndArgs callee save frame.
34 // Size of Runtime::kRefAndArgs callee save frame.
271 // which is responsible for recording callee save registers. We explicitly place into jobjects the
  /art/runtime/entrypoints/quick/
quick_throw_entrypoints.cc 26 // Deliver an exception that's pending on thread helping set up a callee save frame on the way.
  /art/runtime/
stack.h 426 // Callee saves are held at the top of the frame
486 * +========================+ {Note: start of callee's frame}
487 * | core callee-save spill | {variable sized}
489 * | fp callee-save spill |

Completed in 732 milliseconds

<<11121314151617181920>>