| /arkcompiler/ets_frontend/ets2panda/test/parser/ets/import_tests/diamond/ |
| D | test2-expected.txt | 13 "program": "test2.ets" 18 "program": "test2.ets" 33 "program": "test2.ets" 38 "program": "test2.ets" 50 "program": "test2.ets" 55 "program": "test2.ets" 63 "program": "test2.ets" 68 "program": "test2.ets" 77 "program": "test2.ets" 82 "program": "test2.ets" [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/serialization/ |
| D | list.std_serialization_json_static.yaml | 24 test2: {d: -1}, 30 test2: '"-1"', 46 test2: {d: -1}, 52 test2: '"-1"', 68 test2: {d: -1}, 74 test2: '"-1"', 90 test2: {d: -1}, 96 test2: '"-1"', 112 test2: {d: -1}, 118 test2: '"-1"', [all …]
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_2/ |
| D | expect_output.txt | 14 Test2 start. 17 Test2 obj.x : 1 18 Test2 end. 21 Test2 start. 22 …ine function name: #*#ChangePrototypeValue@lazy_deopt_2 caller function name: #*#Test2@lazy_deopt_2 24 [trace] Lazy Deoptimization occurred on function: "Test2" 28 Test2 obj.x : 2 29 Test2 end.
|
| D | lazy_deopt_2.js | 19 * After the JIT code for function 'Test2' is compiled, 22 * 2. Test2 call ChangePrototypeValue inlined. 28 // triggering lazy deoptimization of the JIT-compiled 'Test2' function. 48 function Test2(obj, shouldChange) { class 49 print("Test2 start."); 51 print("Test2 obj.x :", obj.x); 52 print("Test2 end."); 65 Test2(c, false); 67 ArkTools.jitCompileAsync(Test2); 68 print(ArkTools.waitJitCompileFinish(Test2)); [all …]
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_18/ |
| D | expect_output.txt | 14 Test2 start. 17 Test2 obj.x : 1 18 Test2 end. 21 Test2 start. 22 …e function name: #*#ChangePrototypeValue@lazy_deopt_18 caller function name: #*#Test2@lazy_deopt_18 24 [trace] Lazy Deoptimization occurred on function: "Test2" 28 Test2 obj.x : 1 29 Test2 end.
|
| D | lazy_deopt_18.js | 19 * After the JIT code for function 'Test2' is compiled, 22 * 2. Test2 call ChangePrototypeValue inlined. 29 // triggering lazy deoptimization of the JIT-compiled 'Test2' function. 49 function Test2(obj, shouldChange) { class 50 print("Test2 start."); 52 print("Test2 obj.x :", obj.x); 53 print("Test2 end."); 67 Test2(c, false); 69 ArkTools.jitCompileAsync(Test2); 70 print(ArkTools.waitJitCompileFinish(Test2)); [all …]
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_9/ |
| D | lazy_deopt_9.js | 21 * 2. Function Test2 is used to deopt itself by "print("Test2 obj2:", obj2.y)\ 23 * 3. Test2 call ChangePrototypeValue not inlined. 24 * 4. Test call Test2 not inlined. 27 // Function to test lazy deoptimization; triggers a change in the return address of Test2. 43 // Function Test2 - performs lazy deoptimization and deoptimization. 46 function Test2(obj, obj2, shouldChange) { class 47 print("Test2 start."); 49 // Trigger Test2 deopt. 50 print("Test2 obj2:", obj2.y); 56 print("Test2 end."); [all …]
|
| D | expect_output.txt | 15 Test2 start. 16 Test2 obj2: 2 20 Test2 end. 27 Test2 start. 29 Test2 obj2: 1 35 Test2 end.
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_10/ |
| D | lazy_deopt_10.js | 19 * After the JIT code for function 'Test2' is compiled, 22 * 2. Test2 call ChangePrototypeValue inlined. 31 // triggering lazy deoptimization of the JIT-compiled 'Test2' function. 49 function Test2(obj, shouldChange) { class 50 print("Test2 start."); 52 print("Test2 obj.x :", obj.x); 53 print("Test2 end."); 66 Test2(c, false); 68 ArkTools.jitCompileAsync(Test2); 69 print(ArkTools.waitJitCompileFinish(Test2)); [all …]
|
| D | expect_output.txt | 14 Test2 start. 18 Test2 obj.x : 1 19 Test2 end. 22 Test2 start. 25 [trace] Lazy Deoptimization occurred on function: "Test2" 30 Test2 obj.x : 2 31 Test2 end.
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_3/ |
| D | expect_output.txt | 14 Test2 start. 17 Test2 obj.x : 1 18 Test2 end. 21 Test2 start. 23 [trace] Lazy Deoptimization occurred on function: "Test2" 27 Test2 obj.x : 2 28 Test2 end.
|
| D | lazy_deopt_3.js | 19 * After the JIT code for function 'Test2' is compiled, 22 * 2. Test2 call ChangePrototypeValue which is not inlined. 30 // triggering lazy deoptimization of the JIT-compiled 'Test2' function. 45 function Test2(obj, shouldChange) { class 46 print("Test2 start."); 48 print("Test2 obj.x :", obj.x); 49 print("Test2 end."); 62 Test2(c, false); 64 ArkTools.jitCompileAsync(Test2); 65 print(ArkTools.waitJitCompileFinish(Test2)); [all …]
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_8/ |
| D | lazy_deopt_8.js | 21 * 2. Function Test2 is used to trigger lazy deoptimization by modifying the prototype, 22 * and then deopt itself by "print("Test2 obj2:", obj2.y)". 23 * 3. Test2 call ChangePrototypeValue not inlined. 24 * 4. Test call Test2 not inlined. 27 // Function to test lazy deoptimization; triggers a change in the return address of Test2. 43 // Function Test2 - performs lazy deoptimization and deoptimization. 46 function Test2(obj, obj2, shouldChange) { class 47 print("Test2 start."); 52 // Trigger Test2 deopt. 53 print("Test2 obj2:", obj2.y); [all …]
|
| D | expect_output.txt | 15 Test2 start. 18 Test2 obj2: 2 20 Test2 end. 27 Test2 start. 28 …ine function name: #*#ChangePrototypeValue@lazy_deopt_8 caller function name: #*#Test2@lazy_deopt_8 34 Test2 obj2: 1 36 Test2 end.
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_11/ |
| D | expect_output.txt | 14 Test2 start. 18 Test2 obj.x : 1 19 Test2 end. 22 Test2 start. 25 [trace] Lazy Deoptimization occurred on function: "Test2" 30 Test2 obj.x : 2 31 Test2 end.
|
| D | lazy_deopt_11.js | 19 * After the JIT code for function 'Test2' is compiled, 22 * 2. Test2 call ChangePrototypeValue inlined. 31 // triggering lazy deoptimization of the JIT-compiled 'Test2' function. 54 function Test2(obj, shouldChange) { class 55 print("Test2 start."); 57 print("Test2 obj.x :", obj.x); 58 print("Test2 end."); 71 Test2(c, false); 73 ArkTools.jitCompileAsync(Test2); 74 print(ArkTools.waitJitCompileFinish(Test2)); [all …]
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_13/ |
| D | expect_output.txt | 14 Test2 start. 18 Test2 obj.x : 1 19 Test2 end. 22 Test2 start. 25 [trace] Lazy Deoptimization occurred on function: "Test2" 31 Test2 obj.x : undefined 32 Test2 end.
|
| D | lazy_deopt_13.js | 19 * After the JIT code for function 'Test2' is compiled, 22 * 2. Test2 call ChangePrototypeValue inlined. 31 // triggering lazy deoptimization of the JIT-compiled 'Test2' function. 56 function Test2(obj, shouldChange) { class 57 print("Test2 start."); 60 print("Test2 obj.x :", obj.x); 61 print("Test2 end."); 74 Test2(c, false); 76 ArkTools.jitCompileAsync(Test2); 77 print(ArkTools.waitJitCompileFinish(Test2)); [all …]
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_12/ |
| D | expect_output.txt | 14 Test2 start. 18 Test2 obj.x : 1 19 Test2 end. 22 Test2 start. 25 [trace] Lazy Deoptimization occurred on function: "Test2" 31 Test2 obj.x : 2 32 Test2 end.
|
| D | lazy_deopt_12.js | 19 * After the JIT code for function 'Test2' is compiled, 22 * 2. Test2 call ChangePrototypeValue inlined. 40 // triggering lazy deoptimization of the JIT-compiled 'Test2' function. 58 function Test2(obj, shouldChange) { class 59 print("Test2 start."); 61 print("Test2 obj.x :", obj.x); 62 print("Test2 end."); 75 Test2(c, false); 77 ArkTools.jitCompileAsync(Test2); 78 print(ArkTools.waitJitCompileFinish(Test2)); [all …]
|
| /arkcompiler/ets_runtime/test/jittest/lazy_deopt_14/ |
| D | expect_output.txt | 14 Test2 start. 20 Test2 obj.x : 1 21 Test2 end. 25 Test2 start. 28 [trace] Lazy Deoptimization occurred on function: "Test2" 39 Test2 obj.x : undefined 40 Test2 end.
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ts_import_ets/ts/ |
| D | test2.ts | 16 export * from '../ets/test2'; // arkts-no-ts-import-ets 17 export * as name1 from '../ets/test2'; // arkts-no-ts-import-ets 18 export { A } from '../ets/test2'; // arkts-no-ts-import-ets 19 export { A as name2 } from '../ets/test2'; // arkts-no-ts-import-ets 20 export { default, /* ..., */ } from '../ets/test2'; // arkts-no-ts-import-ets 21 export { default as name3 } from '../ets/test2'; // arkts-no-ts-import-ets
|
| /arkcompiler/runtime_core/libabckit/tests/clean_scenarios/c_api/dynamic/branch_eliminator/ |
| D | README.md | 17 test2() { 19 print('Mybar.test2: Config.isDebug is false'); 21 print('Mybar.test2: Config.isDebug is true'); 34 test2() { 35 print('Mybar.test2: Config.isDebug is false');
|
| /arkcompiler/runtime_core/libabckit/tests/clean_scenarios/cpp_api/dynamic/branch_eliminator/ |
| D | README.md | 17 test2() { 19 print('Mybar.test2: Config.isDebug is false'); 21 print('Mybar.test2: Config.isDebug is true'); 34 test2() { 35 print('Mybar.test2: Config.isDebug is false');
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/core/ |
| D | list.std_core_array_reverse.yaml | 26 test2: { arr: "[true, false]" }, 33 test2: "[false, true]", 50 test2: { arr: "[1 as byte, 2 as byte]" }, 57 test2: "[2 as byte, 1 as byte]", 74 test2: { arr: "[1 as short, 2 as short]" }, 81 test2: "[2 as short, 1 as short]", 98 test2: { arr: "[1 as int, 2 as int]" }, 105 test2: "[2 as int, 1 as int]", 122 test2: { arr: "[1 as int, 2 as int]" }, 129 test2: "[2 as int, 1 as int]", [all …]
|