| /arkcompiler/runtime_core/static_core/docs/coroutines/ |
| D | coro_seq.plantuml | 6 CoroutineManager -> "Coroutine: main": Create 7 CoroutineManager -> "Coroutine: main": Invoke "main" 8 activate "Coroutine: main" 9 "Coroutine: main" -> CoroutineManager: Launch 11 CoroutineManager -> CoroutineManager: Suspend("Coroutine: main") 12 deactivate "Coroutine: main" 15 deactivate "Coroutine: main" 18 CoroutineManager -> CoroutineManager: Resume("Coroutine: main") 19 activate "Coroutine: main" 20 deactivate "Coroutine: main"
|
| D | coroutines.md | 87 The main coroutine is created in a special way during runtime initialization. Runtime doesn't creat… 88 Entrypoint method for the main coroutine is specified in the command line arguments. 92 …creates an instance of CoroutineManager and the main coroutine. The main coroutine starts executin… 93 Suppose the main function executes a *launch foo()* instruction i.e. start an asynchronous operatio… 94 instance of coroutine and a Promise. Next CoroutineManager suspends the main coroutine and puts it … 97 At this moment CoroutineManager schedules the next ready to run coroutine (the main coroutine). 212 async function main() { 213 print("enter main"); 215 print("exit main"); 218 main(); [all …]
|
| /arkcompiler/runtime_core/libabckit/tests/apps/deveco-hello-world/ |
| D | filesInfo.rel.txt | 1 …ry/src/main/ets/entrybackupability/EntryBackupAbility.ts;&entry/src/main/ets/entrybackupability/En… 2 modules/entry/src/main/ets/entryability/EntryAbility.ts;&entry/src/main/ets/entryability/EntryAbili… 3 modules/entry/src/main/ets/pages/Index.ts;&entry/src/main/ets/pages/Index&;esm;entry|entry|1.0.0|sr…
|
| /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 | 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() {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/05.accessible/ |
| D | type_name_const.params.yaml | 21 function main() { 29 function main() { 37 function main() { 45 function main() { 53 function main() { 61 function main() { 69 function main() { 77 function main() { 85 function main() { 94 function main() { [all …]
|
| D | type_name_variable.params.yaml | 20 function main() { 28 function main() { 36 function main() { 44 function main() { 52 function main() { 60 function main() { 68 function main() { 76 function main() { 84 function main() { 93 function main() { [all …]
|
| D | type_name_params.params.yaml | 20 function main() { 28 function main() { 36 function main() { 44 function main() { 52 function main() { 60 function main() { 68 function main() { 76 function main() { 84 function main() { 93 function main() { [all …]
|
| D | type_declaration_areas.params.yaml | 24 function main() { 29 function main() { 36 function main() { 53 function main() { 58 function main() { 69 function main() { 78 function main() { 88 function main() { 98 function main() { 107 function main() { [all …]
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
| D | runtime_adapter_test.cpp | 80 .function u1 main() { in TEST() 93 auto main = pointers.method[0U]; 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, 0U), nullptr); in TEST() 99 EXPECT_NE(adapter.GetMethodId(main), 0U); in TEST() 100 EXPECT_EQ(adapter.GetMethodTotalArgumentType(main, 0U), compiler::DataType::Type::ANY); in TEST() 102 EXPECT_EQ(adapter.GetMethodRegistersCount(main), 0U); in TEST() 103 EXPECT_NE(adapter.GetMethodCode(main), nullptr); in TEST() 104 EXPECT_NE(adapter.GetMethodCodeSize(main), 0U); in TEST() [all …]
|
| /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/static_core/tests/checked/ |
| D | inline.pa | 19 …"--compiler-regex=Test1::main --compiler-inlining-max-insts=8 --compiler-inlining-always-inline-bc… 20 #! EVENT /Inline,Test1::main,_GLOBAL::func,.*STATIC,LIMIT/ 21 #! EVENT_NEXT /Inline,Test1::main,_GLOBAL::small_func,.*STATIC,SUCCESS/ 24 #! RUN_PAOC options: "--compiler-regex=Test1::main --compiler-inlining-max-insts=8 --compiler-i… 25 #! EVENT /Inline,Test1::main,_GLOBAL::func,.*STATIC,LIMIT/ 26 #! EVENT_NEXT /Inline,Test1::main,_GLOBAL::small_func,.*STATIC,SUCCESS/ 27 #! RUN entry: "Test1::main" 30 …"--compiler-regex=Test1::main --compiler-inlining-max-insts=8 --compiler-inlining-always-inline-bc… 31 #! EVENT /Inline,Test1::main,_GLOBAL::func,.*STATIC,LIMIT/ 32 #! EVENT_NEXT /Inline,Test1::main,_GLOBAL::small_func,.*STATIC,SUCCESS/ [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 | 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 44 #! METHOD "AotChaTest::main" 48 … options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::main", result: 95 54 #! METHOD "AotChaTest::main" 58 … options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::main", abort: 6 63 #! METHOD "AotChaTest::main" [all …]
|
| D | scalar_replacement.pa | 19 #! RUN force_jit: true, options: "--compiler-regex=_GLOBAL::main", entry: "_GLOBAL::main",… 20 #! METHOD "_GLOBAL::main" 25 #! RUN_PAOC options: "--compiler-regex=_GLOBAL::main" 26 #! METHOD "_GLOBAL::main" 29 #! RUN options: "", entry: "_GLOBAL::main", result: 42 31 .function i32 main() {
|
| 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/ 32 #! RUN force_jit: true, options: "", entry: "_GLOBAL::main" 33 #! EVENT /Compilation,_GLOBAL::main,.*COMPILED/ 34 #! METHOD "_GLOBAL::main" 45 #! METHOD "_GLOBAL::main" 65 .function u1 main (){
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | ets_floor.ets | 17 … force_jit: true, options: "--compiler-regex='.*main.*'", entry: "ets_floor.ETSGLOBAL::main" 18 //! METHOD "ets_floor.ETSGLOBAL::main" 21 //! ASM_METHOD "ets_floor.ETSGLOBAL::main" 27 //! RUN_PAOC options: "--compiler-regex='.*main.*'" 28 //! METHOD "ets_floor.ETSGLOBAL::main" 31 //! ASM_METHOD "ets_floor.ETSGLOBAL::main" 34 //! RUN entry: "ets_floor.ETSGLOBAL::main" 38 //! RUN_LLVM options: "--compiler-regex='.*main.*'" 39 //! RUN entry: "ets_floor.ETSGLOBAL::main" 41 function main(): int {
|
| D | ets_round.ets | 17 … force_jit: true, options: "--compiler-regex='.*main.*'", entry: "ets_round.ETSGLOBAL::main" 18 //! METHOD "ets_round.ETSGLOBAL::main" 21 //! ASM_METHOD "ets_round.ETSGLOBAL::main" 27 //! RUN_PAOC options: "--compiler-regex='.*main.*'" 28 //! METHOD "ets_round.ETSGLOBAL::main" 31 //! ASM_METHOD "ets_round.ETSGLOBAL::main" 34 //! RUN entry: "ets_round.ETSGLOBAL::main" 38 //! RUN_LLVM options: "--compiler-regex='.*main.*'" 39 //! RUN entry: "ets_round.ETSGLOBAL::main" 41 function main(): int {
|
| D | ets_trunc.ets | 17 … force_jit: true, options: "--compiler-regex='.*main.*'", entry: "ets_trunc.ETSGLOBAL::main" 18 //! METHOD "ets_trunc.ETSGLOBAL::main" 21 //! ASM_METHOD "ets_trunc.ETSGLOBAL::main" 27 //! RUN_PAOC options: "--compiler-regex='.*main.*'" 28 //! METHOD "ets_trunc.ETSGLOBAL::main" 31 //! ASM_METHOD "ets_trunc.ETSGLOBAL::main" 34 //! RUN entry: "ets_trunc.ETSGLOBAL::main" 38 //! RUN_LLVM options: "--compiler-regex='.*main.*'" 39 //! RUN entry: "ets_trunc.ETSGLOBAL::main" 41 function main(): int {
|
| D | ets_mod.ets | 17 … force_jit: true, options: "--compiler-regex='.*main.*'", entry: "ets_mod.ETSGLOBAL::main" 18 //! METHOD "ets_mod.ETSGLOBAL::main" 24 //! RUN_AOT options: "--compiler-regex='.*main.*'" 25 //! METHOD "ets_mod.ETSGLOBAL::main" 28 //! RUN entry: "ets_mod.ETSGLOBAL::main" 30 function main(): int {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/import/ |
| D | CMakeLists.txt | 21 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 28 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 42 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 49 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 56 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 63 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 70 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 77 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 84 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 91 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/08.class_initializer/ |
| D | class_initializer_order.params.yaml | 16 - main: |- 19 - main: |- 22 - main: |- 25 - main: |- 28 - main: |- 32 - main: |- 36 - main: |-
|
| /arkcompiler/runtime_core/taihe/test/ani_on_off/user/ |
| D | main.ets | 27 console.error("main finsih test ERROR ", error) 38 console.error("main finsih test ERROR ", error) 49 console.error("main finsih test ERROR ", error) 60 console.error("main finsih test ERROR ", error) 71 console.error("main finsih test ERROR ", error) 82 console.error("main finsih test ERROR ", error) 93 console.error("main finsih test ERROR ", error) 104 console.error("main finsih test ERROR ", error) 114 console.error("main finsih test ERROR ", error) 124 console.error("main finsih test ERROR ", error) [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/generic_static/ts_to_sts/ |
| D | CMakeLists.txt | 21 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 28 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 35 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 42 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 49 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 56 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 63 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 70 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js 77 JS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.js
|