!10216 fix: parseInt is not correct handle exception after inlining

Merge pull request !10216 from Lasting/fix/parseint
This commit is contained in:
openharmony_ci 2024-11-18 04:04:28 +00:00 committed by Gitee
commit 231d3fe285
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
8 changed files with 103 additions and 15 deletions

View File

@ -684,8 +684,9 @@ void NativeInlineLowering::TryInlineNumberParseInt(GateRef gate, size_t argc, bo
if (EnableTrace()) {
AddTraceLogs(gate, id);
}
// this may return exception
GateRef ret = builder_.NumberParseInt(arg, radix);
acc_.ReplaceHirAndDeleteIfException(gate, builder_.GetStateDepend(), ret);
acc_.ReplaceGate(gate, builder_.GetStateDepend(), ret);
}
void NativeInlineLowering::TryInlineNumberIsSafeInteger(GateRef gate, size_t argc, bool skipThis)

View File

@ -1992,12 +1992,14 @@ void TypedNativeInlineLowering::LowerNumberParseInt(GateRef gate)
builder_.Bind(&slowPath);
{
GateRef glue = acc_.GetGlueFromArgList();
result = builder_.CallRuntime(glue, RTSTUB_ID(ParseInt), Gate::InvalidGateRef, { msg, arg2 }, gate);
// this may return exception
result = builder_.CallRuntime(glue, RTSTUB_ID(ParseInt), Gate::InvalidGateRef, {msg, arg2}, gate);
builder_.Jump(&exit);
}
builder_.Bind(&exit);
acc_.ReplaceGate(gate, builder_.GetStateDepend(), *result);
ReplaceGateWithPendingException(
gate, acc_.GetGlueFromArgList(), builder_.GetState(), builder_.GetDepend(), *result);
}
void TypedNativeInlineLowering::LowerNumberParseFloat(GateRef gate)

View File

@ -345,6 +345,7 @@ group("ark_aot_ts_test") {
"sendablefunc",
"sendablecontext",
"createarraywithbuffer2",
"createarraywithbuffer3",
"builtins_number",
"builtins_number2",
"builtins_parseint",

View File

@ -0,0 +1,21 @@
# Copyright (c) 2024 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.
import("//arkcompiler/ets_runtime/test/test_helper.gni")
host_aot_test_action("createarraywithbuffer3") {
deps = []
is_enable_pgo = true
is_enable_opt_inlining = true
is_enable_native_inline = true
}

View File

@ -0,0 +1,33 @@
/*
* Copyright (c) 2024 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.
*/
declare function print(str: any): string;
declare var ArkTools: any;
function foo() {
class a {
toString() {
// @ts-ignore
new Proxy(undefined, {});
}
}
// @ts-ignore
parseInt(new a());
[0];
}
print(ArkTools.isAOTCompiled(foo));
try {
foo();
} catch (e) {
print(e);
}

View File

@ -0,0 +1,15 @@
# Copyright (c) 2024 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.
true
TypeError: ProxyCreate: target is not Object

View File

@ -0,0 +1,15 @@
# Copyright (c) 2024 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.
false
TypeError: ProxyCreate: target is not Object

View File

@ -1249,7 +1249,7 @@ template("host_aot_js_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -1530,7 +1530,7 @@ template("host_aot_js_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -1804,7 +1804,7 @@ template("host_aot_js_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -2173,7 +2173,7 @@ template("host_aot_js_assert_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -2614,7 +2614,7 @@ template("host_aot_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -2708,7 +2708,7 @@ template("host_aot_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -3051,7 +3051,7 @@ template("host_aot_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -3147,7 +3147,7 @@ template("host_aot_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -3480,7 +3480,7 @@ template("host_aot_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -3578,7 +3578,7 @@ template("host_aot_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -4016,7 +4016,7 @@ template("host_aot_assert_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&
@ -4110,7 +4110,7 @@ template("host_aot_assert_test_action") {
if (defined(invoker.is_enable_native_inline) &&
invoker.is_enable_native_inline) {
_aot_compile_options_ += " --compiler-enable-native-inline"
_aot_compile_options_ += " --compiler-enable-native-inline=true"
}
if (defined(invoker.is_enable_opt_loop_peeling) &&