| /arkcompiler/runtime_core/tests/checked/ |
| D | cross_peephole.pa | 18 #! RUN force_jit: true, options: "--compiler-cross-arch=arm", entry: "_GLOBAL::main" 19 #! EVENT /Compilation,_GLOBAL::main,.*DROPPED/ 20 #! RUN force_jit: true, options: "--compiler-cross-arch=arm64", entry: "_GLOBAL::main" 21 #! EVENT /Compilation,_GLOBAL::main,.*DROPPED/ 26 #! RUN options: "", entry: "_GLOBAL::main" 27 #! EVENT "AotEntrypointFound,_GLOBAL::main" 29 #! RUN options: "", entry: "_GLOBAL::main" 30 #! EVENT "AotEntrypointFound,_GLOBAL::main" 36 #! RUN force_jit: true, options: "", entry: "_GLOBAL::main" 37 #! EVENT /Compilation,_GLOBAL::main,.*COMPILED/ [all …]
|
| D | const_array_test.pa | 19 …rue, options: "--compiler-regex=_GLOBAL::main --compiler-unfold-const-array-max-size=2", entry: "… 20 #! EVENT /Compilation,.*main.*/ 21 #! METHOD "_GLOBAL::main" 29 …rue, options: "--compiler-regex=_GLOBAL::main --compiler-unfold-const-array-max-size=4", entry: "… 30 #! EVENT /Compilation,.*main.*/ 31 #! METHOD "_GLOBAL::main" 39 #! RUN_PAOC options: "--compiler-regex=_GLOBAL::main --compiler-unfold-const-array-max-size=2" 40 #! RUN entry: "_GLOBAL::main" 43 #! RUN_PAOC options: "--compiler-regex=_GLOBAL::main --compiler-unfold-const-array-max-size=4" 44 #! RUN entry: "_GLOBAL::main" [all …]
|
| D | inline.pa | 19 …e_jit: true, options: "--compiler-regex=Test1::main --compiler-inlining-max-insts=8", entry: "Test… 20 #! EVENT /Inline,Test1::main,_GLOBAL::func,.*STATIC,LIMIT/ 21 #! EVENT_NEXT /Inline,Test1::main,_GLOBAL::small_func,.*STATIC,SUCCESS/ 24 …ce_jit: true, options: "--compiler-regex=Test1::main --compiler-inlining-max-size=6", entry: "Test… 25 #! EVENT /Inline,Test1::main,_GLOBAL::func,.*STATIC,LIMIT/ 26 #! EVENT_NEXT /Inline,Test1::main,_GLOBAL::small_func,.*STATIC,SUCCESS/ 44 .function i32 Test1.main() { 79 #! RUN force_jit: true, options: "--compiler-regex=_GLOBAL::main", entry: "_GLOBAL::main" 80 #! EVENT /Inline,_GLOBAL::main,_GLOBAL::farray,.*STATIC,SUCCESS/ 81 #! METHOD "_GLOBAL::main" [all …]
|
| D | disable_intrinsics.pa | 15 … RUN force_jit: true, options: "--compiler-encode-intrinsics=true", entry: "_GLOBAL::main" 16 #! EVENT /Compilation,.*_GLOBAL::main/ 17 #! METHOD "_GLOBAL::main" 21 #! ASM_METHOD "_GLOBAL::main" 25 …RUN force_jit: true, options: "--compiler-encode-intrinsics=false", entry: "_GLOBAL::main" 26 #! EVENT /Compilation,.*_GLOBAL::main/ 27 #! METHOD "_GLOBAL::main" 33 #! ASM_METHOD "_GLOBAL::main" 42 .function i64 main() {
|
| D | aot_cha.pa | 19 .function i32 AotChaTest.main() { 27 #! METHOD "AotChaTest::main" 30 … options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::main", result: 95 35 #! METHOD "AotChaTest::main" 38 … options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::main", result: 95 43 #! METHOD "AotChaTest::main" 46 … options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::main", abort: 6 51 #! METHOD "AotChaTest::main" 54 #! RUN options: "", entry: "AotChaTest::main", abort: 6
|
| D | remove_redundant_checks.pa | 18 #! RUN force_jit: true, options: "", entry: "_GLOBAL::main" 19 #! EVENT /Compilation,_GLOBAL::main,.*COMPILED/ 20 #! METHOD "_GLOBAL::main" 30 #! METHOD "_GLOBAL::main" 36 #! RUN options: "", entry: "_GLOBAL::main" 37 #! EVENT "AotEntrypointFound,_GLOBAL::main" 51 .function u1 main() {
|
| D | ifcvt.pa | 15 #! RUN force_jit: true, options: "", entry: "_GLOBAL::main" 16 #! EVENT /Compilation,_GLOBAL::main,.*COMPILED/ 17 #! METHOD "_GLOBAL::main" 34 #! METHOD "_GLOBAL::main" 41 #! RUN options: "", entry: "_GLOBAL::main" 42 #! EVENT "AotEntrypointFound,_GLOBAL::main" 50 .function i32 main () <> {
|
| D | disasm_and_log_demo.pa | 15 #! RUN force_jit: true, options: "--compiler-disasm-dump", entry: "_GLOBAL::main" 16 #! EVENT /Compilation,_GLOBAL::main,.*COMPILED/ 18 .function u1 main (){
|
| D | ref_check_elim_test.pa | 18 #! RUN force_jit: true, options: "", entry: "_GLOBAL::main" 19 #! EVENT /Compilation,_GLOBAL::main,.*COMPILED/ 20 #! METHOD "_GLOBAL::main" 30 .function u1 main() {
|
| D | monitor.pa | 25 #! RUN force_jit: true, options: "", entry: "_GLOBAL::main" 26 #! EVENT /Inline,_GLOBAL::main,_GLOBAL::foo,.*STATIC,SUCCESS/ 27 #! METHOD "_GLOBAL::main" 43 .function u1 main() {
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/ |
| D | runtime_adapter_test.cpp | 80 .function u1 main() { in TEST() 93 auto main = pointers.method[0]; in TEST() local 96 EXPECT_FALSE(adapter.IsMethodIntrinsic(main)); in TEST() 97 EXPECT_NE(adapter.GetBinaryFileForMethod(main), nullptr); in TEST() 98 EXPECT_EQ(adapter.GetMethodById(main, 0), nullptr); in TEST() 99 EXPECT_NE(adapter.GetMethodId(main), 0); in TEST() 100 EXPECT_EQ(adapter.GetMethodTotalArgumentType(main, 0), compiler::DataType::Type::ANY); in TEST() 102 EXPECT_EQ(adapter.GetMethodRegistersCount(main), 0); in TEST() 103 EXPECT_NE(adapter.GetMethodCode(main), nullptr); in TEST() 104 EXPECT_NE(adapter.GetMethodCodeSize(main), 0); in TEST() [all …]
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/tests/ |
| D | step_test.cpp | 35 .function void main() { in SetUpSourceFiles() 52 main_.Set(klass->GetDirectMethod(utf::CStringAsMutf8("main"))); in SetUpSourceFiles() 79 main_.Call([&](auto &main) { in TEST_F() argument 80 main.StepInto(); in TEST_F() 91 main.Step(); in TEST_F() 116 main_.Call([&](auto &main) { in TEST_F() argument 118 main.StepInto(); in TEST_F() 128 main.StepInto(); in TEST_F() 141 main_.Call([&](auto &main) { in TEST_F() argument 142 main.StepInto(); in TEST_F() [all …]
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | ir_builder_test.cpp | 48 std::string source = ".function " + curr_type + " main("; in CheckSimple() 65 ASSERT_TRUE(ParseToGraph(source.c_str(), "main")); in CheckSimple() 87 std::string source = ".function " + curr_type + " main(){\n"; in CheckSimpleWithImm() 104 ASSERT_TRUE(ParseToGraph(source.c_str(), "main")); in CheckSimpleWithImm() 132 std::string source = ".function i32 main("; in CheckCmp() 140 ASSERT_TRUE(ParseToGraph(source.c_str(), "main")); in CheckCmp() 164 std::string source = ".function i32 main("; in CheckFloatCmp() 172 ASSERT_TRUE(ParseToGraph(source.c_str(), "main")); in CheckFloatCmp() 227 std::string source = ".function void main("; in CheckCondJump() 234 ASSERT_TRUE(ParseToGraph(source.c_str(), "main")); in CheckCondJump() [all …]
|
| D | call_input_types_test.cpp | 38 .function i64 main() { in TEST_F() 49 ASSERT_TRUE(ParseToGraph(source, "main")); in TEST_F() 60 .function i64 main() { in TEST_F() 71 ASSERT_TRUE(ParseToGraph(source, "main")); in TEST_F()
|
| /arkcompiler/runtime_core/assembler/tests/ |
| D | mangling_tests.cpp | 33 std::string name = "Asm.main"; in TEST() 34 …ASSERT_EQ(MangleFunctionName(name, std::move(params), return_type), "Asm.main:type1;type2;type3;ty… in TEST() 39 std::string name = "Asm.main:type1;type2;type3;type4;"; in TEST() 40 ASSERT_EQ(DeMangleName(name), "Asm.main"); in TEST() 51 std::string name = "Asm.main"; in TEST() 52 … ASSERT_EQ(GetFunctionSignatureFromName(name, std::move(params)), "Asm.main:(type1,type2,type3)"); in TEST() 57 std::string name = "Asm.main:(type1,type2,type3,type4)"; in TEST() 58 ASSERT_EQ(GetFunctionNameFromSignature(name), "Asm.main"); in TEST()
|
| /arkcompiler/runtime_core/compiler/tools/ |
| D | ignore_checked_coverage.txt | 15 IGNORE literalarrays-01 FUNCS function main ARM32 16 IGNORE literalarrays-02 FUNCS function main ARM32 17 IGNORE literalarrays-03 FUNCS function main ARM32 18 IGNORE literalarrays-04 FUNCS function main ARM32
|
| /arkcompiler/toolchain/tooling/test/testcases/js/ |
| D | async_func.js | 24 print("main test 1"); 26 print("main test 2"); 27 print("main test 3"); 33 print("main test end!");
|
| /arkcompiler/runtime_core/tests/checked/verify_aot_tests/ |
| D | verify_aot_test.pa | 18 .function i32 VerifyAotTest.main() { 26 …panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "VerifyAotTest::main", result: 1 32 …panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "VerifyAotTest::main", result: 1 38 …-panda-files=../../verify_aot_tests_file2.checked/test.abc", entry: "VerifyAotTest::main", abort: 6 44 …-panda-files=../../verify_aot_tests_file2.checked/test.abc", entry: "VerifyAotTest::main", abort: 6 50 …-panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "VerifyAotTest::main", abort: 6 56 …-panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "VerifyAotTest::main", abort: 6 62 …-panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "VerifyAotTest::main", abort: 6
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | checkcast.yaml | 66 .function i32 main() { 111 .function i32 main() { 159 .function i32 main() { 204 .function i32 main() { 251 .function i32 main() { 296 .function i32 main() { 351 .function i32 main() { 397 .function i32 main() { 455 .function i32 main() { 495 .function i32 main() { [all …]
|
| D | throw.yaml | 61 .function i32 main() { 69 - values: ['main'] 92 .function i32 main() { 121 .function i32 main() { 143 .function i32 main() { 176 .function i32 main() { 211 .function i32 main() { 264 .function i32 main() { 315 .function i32 main() { 401 .function i32 main() { [all …]
|
| D | return.void.yaml | 45 .function i32 main() { 80 .function i32 main() { 115 .function i32 main() { 152 .function i32 main() { 192 .function i32 main() { 238 .function i32 main() { 277 .function i32 main() { 372 .function i32 main() { 394 .function i32 main() { 417 .function i32 main() { [all …]
|
| D | ldobj.64.yaml | 111 .function i32 main() { 138 .function i32 main() { 158 .function i32 main() { 191 .function i32 main() { 221 .function i32 main() { 258 .function i32 main() { 305 .function i32 main() { 362 .function i32 main() { 404 .function i32 main() { 446 .function i32 main() { [all …]
|
| /arkcompiler/runtime_core/compiler/tests/amd64/ |
| D | encoder64_test.cpp | 440 // Main test call in TestNeg() 453 // Main test loop: in TestNeg() 459 // Main check - compare parameter and in TestNeg() 492 // Main test call in TestNot() 505 // Main test loop: in TestNot() 512 // Main check - compare parameter and in TestNot() 536 // Main test call in TestMov() 549 // Main test loop: in TestMov() 555 // Main check - compare parameter and in TestMov() 582 // Main test call in TestMov2() [all …]
|
| /arkcompiler/runtime_core/runtime/tests/ |
| D | exception_test.cpp | 118 .function i32 ProvokeAbstractMethodException.main() <static> { in TEST_F() 160 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() 201 .function i32 ProvokeAbstractMethodException.main() <static> { in TEST_F() 243 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() 284 .function i32 ProvokeAbstractMethodException.main() <static> { in TEST_F() 329 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() 370 .function i32 ProvokeAbstractMethodException.main() <static> { in TEST_F() 415 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() 456 .function i32 ProvokeAbstractMethodException.main() <static> { in TEST_F() 502 Method *method = klass->GetDirectMethod(utf::CStringAsMutf8("main")); in TEST_F() [all …]
|
| /arkcompiler/runtime_core/compiler/tests/aarch32/ |
| D | encoder32_test.cpp | 437 // Main test call in TestNeg() 450 // Main test loop: in TestNeg() 456 // Main check - compare parameter and in TestNeg() 491 // Main test call in TestNot() 504 // Main test loop: in TestNot() 511 // Main check - compare parameter and in TestNot() 540 // Main test call in TestMov() 553 // Main test loop: in TestMov() 559 // Main check - compare parameter and in TestMov() 586 // Main test call in TestMov2() [all …]
|