/external/llvm/test/CodeGen/AArch64/ |
D | arm64-elf-calls.ll | 4 declare void @callee() 7 call void @callee() 10 ; CHECK: bl callee 11 ; CHECK-OBJ: R_AARCH64_CALL26 callee 15 tail call void @callee() 18 ; CHECK: b callee 19 ; CHECK-OBJ: R_AARCH64_JUMP26 callee
|
D | arm64-fastcc-tailcall.ll | 5 ; CHECK: b {{_callee|callee}} 11 tail call fastcc void @callee(i32* %p, i32 %a) optsize 17 define internal fastcc void @callee(i32* nocapture %p, i32 %a) nounwind optsize noinline ssp {
|
/external/v8/test/webkit/ |
D | named-function-expression.js | 65 (function closure() { return closure == arguments.callee && !this.closure; })(), 71 … (function closure() { closure = 1; return closure == arguments.callee && !this.closure; })(), 89 …(function closure() { function closure() { }; return closure != arguments.callee && !this.closure;… 125 …(function closure() { eval("function closure() { }"); return closure != arguments.callee && !this.… 137 …ure() { eval("var closure"); delete closure; return closure == arguments.callee && !this.closure; … 143 …l("function closure() { }"); delete closure; return closure == arguments.callee && !this.closure; … 149 …(function closure() { eval("closure = 1;"); return closure == arguments.callee && !this.closure; }…
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | genk-timing.py | 48 def updateTotalCallCount(self, callee): argument 52 if callee in self.comprehensiveCalledFunctionTable: 53 for child in self.comprehensiveCalledFunctionTable[callee]: 56 def updateFunctionCallMap(self, caller, callee): argument 60 if not callee in self.calledFunctionTable[caller]: 61 self.calledFunctionTable[caller].append(callee) 64 self.comprehensiveCalledFunctionTable[caller].append(callee) 66 def updateCalledFunctionList(self, callee): argument 69 self.updateTotalCallCount(callee) 71 if callee in self.calledFunctions: [all …]
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | genk-timing.py | 48 def updateTotalCallCount(self, callee): argument 52 if callee in self.comprehensiveCalledFunctionTable: 53 for child in self.comprehensiveCalledFunctionTable[callee]: 56 def updateFunctionCallMap(self, caller, callee): argument 60 if not callee in self.calledFunctionTable[caller]: 61 self.calledFunctionTable[caller].append(callee) 64 self.comprehensiveCalledFunctionTable[caller].append(callee) 66 def updateCalledFunctionList(self, callee): argument 69 self.updateTotalCallCount(callee) 71 if callee in self.calledFunctions: [all …]
|
/external/clang/test/SemaObjC/ |
D | nonnull.m | 34 …func1(0, cp2, i1); // expected-warning {{null passed to a callee that requires a non-null argumen… 35 …func1(cp1, 0, i1); // expected-warning {{null passed to a callee that requires a non-null argumen… 39 …func3(0, i2, cp3, i3); // expected-warning {{null passed to a callee that requires a non-null argu… 40 …func3(cp3, i2, 0, i3); // expected-warning {{null passed to a callee that requires a non-null arg… 42 func4(0, cp1); // expected-warning {{null passed to a callee that requires a non-null argument}} 43 func4(cp1, 0); // expected-warning {{null passed to a callee that requires a non-null argument}} 67 …_dispatch_queue_push_list(0); // expected-warning {{null passed to a callee that requires a non-nu… 94 …ithNonNullPointer:NULL:1:NULL]; // expected-warning 2 {{null passed to a callee that requires a no… 95 …[object doSomethingWithNonNullPointer:vp:1:NULL]; // expected-warning {{null passed to a callee th… 96 …ngClassyWithNonNullPointer:NULL]; // expected-warning {{null passed to a callee that requires a no… [all …]
|
/external/mesa3d/src/glsl/ |
D | ir_function_can_inline.cpp | 62 const ir_function_signature *callee = call->callee; in can_inline() local 63 if (!callee->is_defined) in can_inline() 66 v.run((exec_list *) &callee->body); in can_inline() 71 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); in can_inline()
|
D | link_functions.cpp | 71 const ir_function_signature *const callee = ir->callee; in visit_enter() local 72 assert(callee != NULL); in visit_enter() 73 const char *const name = callee->function_name(); in visit_enter() 79 find_matching_signature(name, &callee->parameters, &linked, 1, in visit_enter() 82 ir->callee = sig; in visit_enter() 116 f->exact_matching_signature(&callee->parameters); in visit_enter() 120 linked_sig = new(linked) ir_function_signature(callee->return_type); in visit_enter() 171 ir->callee = linked_sig; in visit_enter()
|
/external/llvm/test/Analysis/CallGraph/ |
D | 2008-09-09-DirectCall.ll | 4 ; CHECK: CS<{{.*}}> calls function 'callee' 6 ; CHECK: CS<{{.*}}> calls function 'callee' 8 define internal void @callee(...) { 15 call void (...) @callee( void (...)* @callee )
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | genk-timing.py | 53 def updateTotalCallCount(self, callee): argument 57 if callee in self.comprehensiveCalledFunctionTable: 58 for child in self.comprehensiveCalledFunctionTable[callee]: 61 def updateFunctionCallMap(self, caller, callee): argument 65 if not callee in self.calledFunctionTable[caller]: 66 self.calledFunctionTable[caller].append(callee) 69 self.comprehensiveCalledFunctionTable[caller].append(callee) 71 def updateCalledFunctionList(self, callee): argument 74 self.updateTotalCallCount(callee) 76 if callee in self.calledFunctions: [all …]
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
D | codegen.ml | 22 let callee = "unary" ^ (String.make 1 op) in 23 let callee = 24 match lookup_function callee the_module with 25 | Some callee -> callee 28 build_call callee [|operand|] "unop" builder 44 let callee = "binary" ^ (String.make 1 op) in 45 let callee = 46 match lookup_function callee the_module with 47 | Some callee -> callee 50 build_call callee [|lhs_val; rhs_val|] "binop" builder [all …]
|
/external/llvm/test/Analysis/BasicAA/ |
D | args-rets-allocas-loads.ll | 3 declare void @callee(double* %callee_arg) 28 call void @callee(double* %escape_alloca_a0) 29 call void @callee(double* %escape_alloca_a1) 235 ; CHECK-NEXT: Both ModRef: Ptr: double* %arg_a0 <-> call void @callee(double* %escape_alloca_a0) 236 ; CHECK-NEXT: Both ModRef: Ptr: double* %arg_a1 <-> call void @callee(double* %escape_alloca_a0) 237 ; CHECK-NEXT: NoModRef: Ptr: double* %noalias_arg_a0 <-> call void @callee(double* %escape_allo… 238 ; CHECK-NEXT: NoModRef: Ptr: double* %noalias_arg_a1 <-> call void @callee(double* %escape_allo… 239 ; CHECK-NEXT: Both ModRef: Ptr: double** %indirect_a0 <-> call void @callee(double* %escape_alloc… 240 ; CHECK-NEXT: Both ModRef: Ptr: double** %indirect_a1 <-> call void @callee(double* %escape_alloc… 241 ; CHECK-NEXT: Both ModRef: Ptr: double* %escape_alloca_a0 <-> call void @callee(double* %escape_a… [all …]
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
D | codegen.ml | 34 | Ast.Call (callee, args) -> 36 let callee = 37 match lookup_function callee the_module with 38 | Some callee -> callee 41 let params = params callee in 47 build_call callee args "calltmp" builder
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
D | codegen.ml | 34 | Ast.Call (callee, args) -> 36 let callee = 37 match lookup_function callee the_module with 38 | Some callee -> callee 41 let params = params callee in 47 build_call callee args "calltmp" builder
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | codegen.ml | 31 let callee = "unary" ^ (String.make 1 op) in 32 let callee = 33 match lookup_function callee the_module with 34 | Some callee -> callee 37 build_call callee [|operand|] "unop" builder 73 let callee = "binary" ^ (String.make 1 op) in 74 let callee = 75 match lookup_function callee the_module with 76 | Some callee -> callee 79 build_call callee [|lhs_val; rhs_val|] "binop" builder [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | tail-call.ll | 6 declare i32 @callee(i32 %i) 11 %r = tail call i32 @callee(i32 %i) 16 ; CHECK-TAIL: b callee 20 ; CHECK-NO-TAIL: bl callee
|
D | thumb-litpool.ll | 6 declare void @callee(i8*) 11 call void @callee(i8* @var) 13 call void @callee(i8* @var)
|
/external/llvm/test/Transforms/Inline/ |
D | recursive.ll | 8 ; Make sure that the callee is still here. 9 ; CHECK-LABEL: define i32 @callee( 10 define i32 @callee(i32 %param) { 29 %f = call i32 @callee(i32 %r)
|
/external/llvm/test/DebugInfo/ |
D | inline-no-debug-info.ll | 6 ; __attribute__((__nodebug__)) void callee() { a = 1; callee2(); } 7 ; void caller() { callee(); } 13 ; This instruction did not have a !dbg metadata in the callee. 16 ; This instruction came from callee with a !dbg metadata. 38 define void @callee() #0 { 48 tail call void @callee(), !dbg !12
|
/external/v8/test/mjsunit/regress/ |
D | regress-3185905.js | 29 var a = arguments.callee; 37 var a = arguments.callee; 45 var a = arguments.callee;
|
/external/llvm/test/CodeGen/ARM/Windows/ |
D | long-calls.ll | 4 declare arm_aapcs_vfpcc void @callee() 8 tail call void @callee() 17 ; CHECK: .long callee
|
/external/llvm/test/CodeGen/X86/ |
D | tailcall-largecode.ll | 3 declare fastcc i32 @callee(i32 %arg) 6 ; This is the large code model, so &callee may not fit into the jmp 8 ; CHECK: movabsq $callee, [[REGISTER:%r[a-z0-9]+]] 10 %res = tail call fastcc i32 @callee(i32 %arg) 22 ; callee-saved registers and won't be used for passing arguments. 54 ; while restoring callee-saved registers and won't be used for passing
|
/external/clang/test/Analysis/ |
D | shallow-mode.m | 18 + (void)callee; class 24 [MyClass callee]; 26 + (void)callee { class
|
/external/llvm/test/CodeGen/NVPTX/ |
D | call-with-alloca-buffer.ll | 6 ; extern "C" __attribute__((device)) void callee(float* f, char* buf); 14 ; callee(a, buf); 55 ; CHECK-NEXT: callee, 58 call void @callee(float* %a, i8* %arraydecay) #2 62 declare void @callee(float*, i8*)
|
/external/v8/test/webkit/fast/js/ |
D | caller-property-expected.txt | 33 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' … 35 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' … 37 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' … 39 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' … 42 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' … 43 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' … 46 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' … 47 …hould throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' …
|