huangyu c658ccf319 Update runtime_core code
Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/I5G96F
Test: Test262 suit, ark unittest, rk3568 XTS, ark previewer demo

Signed-off-by: huangyu <huangyu76@huawei.com>
Change-Id: I3f63d129a07deaa27a390f556dcaa5651c098185
2022-07-17 10:20:32 +08:00

99 lines
2.2 KiB
Plaintext

# Copyright (c) 2021-2022 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#! CHECKER All methods found
#! RUN_PAOC options: "--compiler-inlining false"
#! RUN options: "", entry: "_GLOBAL::main", result: 52
#! EVENT_NOT /Inline.*/
#! EVENT "AotEntrypointFound,_GLOBAL::func1"
#! EVENT "AotEntrypointFound,_GLOBAL::func2"
#! EVENT "AotEntrypointFound,_GLOBAL::func3"
#! CHECKER Various methods compiled
#! RUN_PAOC options: "--compiler-inlining false --compiler-regex '(_GLOBAL::func[13]|Test::f[23])'"
#! RUN options: "", entry: "_GLOBAL::main2", result: 58
#! EVENT "AotEntrypointFound,_GLOBAL::func1"
#! EVENT "AotEntrypointFound,_GLOBAL::func3"
#! EVENT_NOT "AotEntrypointFound,_GLOBAL::func2"
#! EVENT "AotEntrypointFound,Test::f2"
#! EVENT "AotEntrypointFound,Test::f3"
#! EVENT_NOT "AotEntrypointFound,Test::f1"
.record Test {}
.function i32 Test.f1() {
ldai 1
return
}
.function i32 Test.f2() {
ldai 2
return
}
.function i32 Test.f3() {
ldai 3
return
}
.function i32 func1(i32 a0) {
ldai 2
add2 a0
return
}
.function i32 func2(i32 a0) {
ldai 2
mul2 a0
return
}
.function i32 func3(i32 a0) {
call.short func1, a0
sta a0
call.short func2, a0
return
}
.function i32 main() {
movi v1, 10
call.short func1, v1
sta v1
call.short func2, v1
sta v1
call.short func3, v1
return
}
.function i32 main2() {
call.short main, v1
sta v1
call.short Test.f1
add2 v1
sta v1
call.short Test.f2
add2 v1
sta v1
call.short Test.f3
add2 v1
sta v1
return
}