diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-01-29 00:49:23 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-01-29 00:49:23 +0000 |
commit | 053a1f232023b15c21bdd8e89f67de21d8aea285 (patch) | |
tree | 30cc483c1055da9667de55c49b7ef3673f6266b4 /gcc | |
parent | 45e7df858b408b0277ee3580f6a67696d5cfd8b4 (diff) | |
download | gcc-053a1f232023b15c21bdd8e89f67de21d8aea285.zip gcc-053a1f232023b15c21bdd8e89f67de21d8aea285.tar.gz gcc-053a1f232023b15c21bdd8e89f67de21d8aea285.tar.bz2 |
runtime: use the call instruction's PC for panic-in-runtime detection
If a panic happens in the runtime we turn that into a fatal error.
We use the caller's PC to determine if the panic call is inside
the runtime. getcallerpc returns the PC immediately after the
call instruction. If the call is the very last instruction of a
function, it may not find this PC belong to a runtime function,
giving false result. We need to back off the PC by 1 to the call
instruction.
The gc runtime doesn't do this because the gc compiler always
emit an instruction following a panic call, presumably an UNDEF
instruction which turns into an architecture-specific illegal
instruction. Our compiler doesn't do this.
Reviewed-on: https://go-review.googlesource.com/c/159437
From-SVN: r268358
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 4bdcf96..0eff5eb 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -5ccb2d8593963e06ec3a35d362b384e82301d9f0 +c2cac0ba0a92e74d5675c3c9f4e53d2567dbc903 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. |