diff options
author | 2019-05-22 17:08:35 +0000 | |
---|---|---|
committer | 2019-05-22 17:29:29 +0000 | |
commit | e2ddce3dec02cf7c9eb5efb2e29c250a5e909995 (patch) | |
tree | df9ee07990149cceffe0496807c0e88f534211ec /test/1966-get-set-local-objects-no-table/src/Main.java | |
parent | 6045bc202f2c470b63c40a5a25db369b5a049c28 (diff) |
Revert^2 "Add verifier fallback for JVMTI Get/SetLocalVariable"
This reverts commit 99cbfb55fc7ac0f65b1ccdc7076219fcee383b92.
This unreverts commit e48fd0b4780efadc6b3433fe7a56aa5be2a84325.
We were incorrectly bounds-checking the register number. We were
treating it as unsigned when it was actual signed. Previously this
wouldn't matter since normally the debug-info won't have any
information for negative slots but by falling back to the verifier
we hit some check failures.
Reason for revert: Fixed underlying issue with bad bounds check.
Bug: 131711256
Change-Id: I0b859ce322f3b23f937b72d735db8f6870c40602
Diffstat (limited to 'test/1966-get-set-local-objects-no-table/src/Main.java')
-rw-r--r-- | test/1966-get-set-local-objects-no-table/src/Main.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/1966-get-set-local-objects-no-table/src/Main.java b/test/1966-get-set-local-objects-no-table/src/Main.java new file mode 100644 index 0000000000..198f319421 --- /dev/null +++ b/test/1966-get-set-local-objects-no-table/src/Main.java @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * 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. + */ + +public class Main { + public static void main(String[] args) throws Exception { + art.Test1966.run(); + } +} |