|
1 | 1 | /*
|
2 |
| - * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 1998, 2021, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
23 | 23 | */
|
24 | 24 |
|
25 | 25 | #include "precompiled.hpp"
|
| 26 | +#include "memory/resourceArea.hpp" |
| 27 | +#include "oops/oop.hpp" |
26 | 28 | #include "runtime/handles.inline.hpp"
|
27 | 29 | #include "utilities/preserveException.hpp"
|
28 | 30 |
|
29 |
| -// TODO: These three classes should be refactored |
30 |
| - |
31 |
| -PreserveExceptionMark::PreserveExceptionMark(Thread*& thread) { |
32 |
| - thread = Thread::current(); |
33 |
| - _thread = thread; |
| 31 | +PreserveExceptionMark::PreserveExceptionMark(Thread* thread) { |
| 32 | + _thread = thread; |
34 | 33 | _preserved_exception_oop = Handle(thread, _thread->pending_exception());
|
35 | 34 | _preserved_exception_line = _thread->exception_line();
|
36 | 35 | _preserved_exception_file = _thread->exception_file();
|
37 |
| - _thread->clear_pending_exception(); // Needed to avoid infinite recursion |
| 36 | + _thread->clear_pending_exception(); // Pending exceptions are checked in the destructor |
38 | 37 | }
|
39 | 38 |
|
40 | 39 |
|
41 | 40 | PreserveExceptionMark::~PreserveExceptionMark() {
|
42 | 41 | if (_thread->has_pending_exception()) {
|
43 | 42 | oop exception = _thread->pending_exception();
|
44 | 43 | _thread->clear_pending_exception(); // Needed to avoid infinite recursion
|
45 |
| - exception->print(); |
46 |
| - fatal("PreserveExceptionMark destructor expects no pending exceptions"); |
47 |
| - } |
48 |
| - if (_preserved_exception_oop() != NULL) { |
49 |
| - _thread->set_pending_exception(_preserved_exception_oop(), _preserved_exception_file, _preserved_exception_line); |
| 44 | + ResourceMark rm(_thread); |
| 45 | + assert(false, "PreserveExceptionMark destructor expects no pending exceptions %s", |
| 46 | + exception->print_string()); |
50 | 47 | }
|
51 |
| -} |
52 |
| - |
53 |
| - |
54 |
| -// This code is cloned from PreserveExceptionMark, except that: |
55 |
| -// returned pending exceptions do not cause a crash. |
56 |
| -// thread is passed in, not set (not a reference parameter) |
57 |
| -// and bug 6431341 has been addressed. |
58 |
| - |
59 |
| -CautiouslyPreserveExceptionMark::CautiouslyPreserveExceptionMark(Thread* thread) { |
60 |
| - _thread = thread; |
61 |
| - _preserved_exception_oop = Handle(thread, _thread->pending_exception()); |
62 |
| - _preserved_exception_line = _thread->exception_line(); |
63 |
| - _preserved_exception_file = _thread->exception_file(); |
64 |
| - _thread->clear_pending_exception(); // Pending exceptions are checked in the destructor |
65 |
| -} |
66 | 48 |
|
67 |
| - |
68 |
| -CautiouslyPreserveExceptionMark::~CautiouslyPreserveExceptionMark() { |
69 |
| - assert(!_thread->has_pending_exception(), "unexpected exception generated"); |
70 |
| - if (_thread->has_pending_exception()) { |
71 |
| - _thread->clear_pending_exception(); |
72 |
| - } |
73 | 49 | if (_preserved_exception_oop() != NULL) {
|
74 | 50 | _thread->set_pending_exception(_preserved_exception_oop(), _preserved_exception_file, _preserved_exception_line);
|
75 | 51 | }
|
76 | 52 | }
|
77 | 53 |
|
78 |
| - |
79 | 54 | void WeakPreserveExceptionMark::preserve() {
|
80 | 55 | _preserved_exception_oop = Handle(_thread, _thread->pending_exception());
|
81 | 56 | _preserved_exception_line = _thread->exception_line();
|
|
0 commit comments