/arkcompiler/ets_frontend/es2panda/test/compiler/interpreter/lexicalEnv/ |
D | safe_hole1.js | 34 let v6 = v4(); 35 if (v6 != null && typeof v6 == "object") Object.defineProperty(v6, test_func8(v6, 104270),{ 36 value: v6
|
D | safe_hole2.js | 28 let v6 = v4(); 33 Reflect.set([null], 0, 0, v6); 38 f0(v7 !== v6);
|
D | safe_hole3.js | 28 f0.aarEq = function f2(v5, v6, v7 = `Expected «${v6}» to be «${v5}».`){}; argument
|
/arkcompiler/runtime_core/tests/benchmarks/ |
D | math-spectral-norm.pa | 61 movi.64 v6, 0 #loop_counter 67 fstarr.64 v1, v6 69 fstarr.64 v2, v6 71 fstarr.64 v3, v6 72 inci v6, 1 73 lda v6 76 movi v6, 0 82 inci v6, 1 83 lda v6 86 movi v6, 0 [all …]
|
D | access-nbody.pa | 50 fmovi.64 v6, 0.01 83 call.short advance, v4, v6 144 sta.64 v6 170 sta.64 v6 196 sta.64 v6 222 sta.64 v6 240 fmovi.64 v6, 0.0 278 sta.64 v6 #m 280 fmul2.64 v6 284 fmul2.64 v6 [all …]
|
D | bitops-nsieve-bits.pa | 28 sta v6 #lenarr 31 jeq v6, loop_exit 100 sta v6 103 starr a0, v6
|
D | math-partial-sums.pa | 49 sta.64 v6 50 call.short Math.absF64, v6, v6 51 sta.64 v6 53 fcmpl.64 v6
|
D | access-binary-trees.pa | 78 newobj v6, TreeNode 79 call TreeNode.Construct, v6, v4, v5, a0 80 lda.obj v6 109 sta.obj v6 110 call.short TreeNode.itemCheck, v6
|
/arkcompiler/runtime_core/tests/irtoc-interpreter-tests/ |
D | access-nsieve.pa | 22 movi v6, 0x13881 23 newarr v5, v6, u1[] 24 mov v6, v4 60 jump_label_3: add v9, v6 64 sta v6 65 mov v7, v6 66 mov v6, v8 69 lda v6
|
/arkcompiler/runtime_core/tests/cts-assembly/ |
D | obj-14.pa | 20 # String[] v6 = new String[5]; 23 # v6[i] = s[0]; 26 # // we expect that v6[i] is still reachable 27 # printString(v6[i]); 72 # v6 = new String[v0] 73 newarr v6, v0, panda.String[] 92 # v6[v2] = v5 94 starr.obj v6, v2 112 ldarr.obj v6
|
/arkcompiler/runtime_core/compiler/docs/ |
D | vn_doc.md | 80 0.u64 Parameter arg 0 -> (v10, v6, v7, v13) 81 1.u64 Parameter arg 1 -> (v10, v6, v7, v13) 97 14.b CallStatic v6, v7, v8, v9, v10, v11, v12, v13 110 0.u64 Parameter arg 0 -> (v10, v6, v7, v13) 111 1.u64 Parameter arg 1 -> (v10, v6, v7, v13) 127 14.b CallStatic v6, v7, v8, v9, v7, v9, v8, v6 137 0.u64 Parameter arg 0 -> (v6, v7) 138 1.u64 Parameter arg 1 -> (v6, v7) 150 14.b CallStatic v6, v7, v8, v9, v7, v9, v8, v6
|
D | lowering_doc.md | 51 …0.u64 Parameter arg 0 -> (v9, v8, v7, v6, v4, v5, v17, v17, v18, v18, v19, v20, … 56 3.i64 Constant 0x5f5e100 -> (v9, v6, v10) 76 …10. SaveState v0(vr0), v1(vr1), v2(vr2), v3(vr3), v4(vr4), v5(vr5), v6(vr6), … 86 …0.u64 Parameter arg 0 -> (v27, v26, v25, v24, v9, v6, v17, v17, v18, v18, v19, v… 91 3.i64 Constant 0x5f5e100 -> (v9, v6) 111 … v0(vr0), v20(vr19), v19(vr18), v18(vr17), v24(vr4), v25(vr5), v6(vr6), v26(vr7), v27(…
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | inferenceOptionalProperties.ts | 95 let v6: Required<Partial<{ a: string, b: string | undefined }>>; variable 96 AssertType(v6, "Required<Partial<{ a: string; b: union; }>>"); 100 let v6: { a: string, b: string | undefined }; variable 101 AssertType(v6, "Required<Partial<{ a: string; b: union; }>>");
|
D | inferenceOptionalPropertiesStrict.ts | 95 let v6: Required<Partial<{ a: string, b: string | undefined }>>; variable 96 AssertType(v6, "Required<Partial<{ a: string; b: union; }>>"); 100 let v6: { a: string, b: string | undefined }; variable 101 AssertType(v6, "Required<Partial<{ a: string; b: union; }>>");
|
D | capturedLetConstInLoop4.ts | 23 AssertType(v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6 + v7 + v8, "string"); 24 AssertType(v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6 + v7, "string"); 25 AssertType(v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6, "string"); 39 AssertType(v6, "any"); 42 return v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6 + v7 + v8; 198 let v6 = x; variable 199 AssertType(v6, "any"); 203 AssertType((function() { return x + y + v6}), "() => any"); 204 AssertType(function() { return x + y + v6}, "() => any"); 205 AssertType(x + y + v6, "any"); [all …]
|
D | capturedLetConstInLoop4_ES6.ts | 23 AssertType(v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6 + v7 + v8, "string"); 24 AssertType(v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6 + v7, "string"); 25 AssertType(v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6, "string"); 39 AssertType(v6, "any"); 42 return v0 + v00 + v1 + v2 + v3 + v4 + v5 + v6 + v7 + v8; 198 let v6 = x; variable 199 AssertType(v6, "any"); 203 AssertType((function() { return x + y + v6}), "() => any"); 204 AssertType(function() { return x + y + v6}, "() => any"); 205 AssertType(x + y + v6, "any"); [all …]
|
/arkcompiler/ets_runtime/test/moduletest/fortest/ |
D | fortest.js | 78 forEach(function (v6) { argument 80 Reflect.construct(v6, [], v0);
|
/arkcompiler/ets_runtime/test/moduletest/calltype/ |
D | calltype.js | 107 function f1(v5, v6) { argument 108 return new c1(v5, v6)
|
/arkcompiler/runtime_core/tests/regression/ |
D | math-partial-sums.pa | 50 sta.64 v6 51 call.short Math.absF64, v6, v6 52 sta.64 v6 54 fcmpl.64 v6
|
/arkcompiler/runtime_core/tests/irtoc-interpreter-tests/irtoc-opcode-suite/ |
D | fmul2.pa | 29 sta v6 30 and v5, v6
|
D | fsub2.64.pa | 29 sta v6 30 and v5, v6
|
D | fmul2.64.pa | 29 sta v6 30 and v5, v6
|
D | fdiv2.64.pa | 29 sta v6 30 and v5, v6
|
D | fmod2.64.pa | 29 sta v6 30 and v5, v6
|
D | fsub2.pa | 29 sta v6 30 and v5, v6
|