heap allocator
7 *
8 * This code is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 * version 2 for more details (a copy is included in the LICENSE file that
12 * accompanied this code).
13 *
14 * You should have received a copy of the GNU General Public License version
15 * 2 along with this work; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
19 * or visit www.oracle.com if you need additional information or have any
20 * questions.
21 *
22 */
23
24 #include "precompiled.hpp"
25 #include "gc/shared/collectedHeap.hpp"
26 #include "gc/shared/collectedHeap.inline.hpp"
27 #include "memory/resourceArea.hpp"
28 #include "runtime/atomic.hpp"
29 #include "runtime/frame.inline.hpp"
30 #include "runtime/handles.inline.hpp"
31 #include "runtime/init.hpp"
32 #include "runtime/interfaceSupport.inline.hpp"
33 #include "runtime/orderAccess.hpp"
34 #include "runtime/os.inline.hpp"
35 #include "runtime/thread.inline.hpp"
36 #include "runtime/safepointVerifiers.hpp"
37 #include "runtime/vframe.hpp"
38 #include "runtime/vmThread.hpp"
39 #include "utilities/preserveException.hpp"
40
41 // Implementation of InterfaceSupport
42
43 #ifdef ASSERT
44 VMEntryWrapper::VMEntryWrapper() {
45 if (VerifyLastFrame) {
|
7 *
8 * This code is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 * version 2 for more details (a copy is included in the LICENSE file that
12 * accompanied this code).
13 *
14 * You should have received a copy of the GNU General Public License version
15 * 2 along with this work; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
19 * or visit www.oracle.com if you need additional information or have any
20 * questions.
21 *
22 */
23
24 #include "precompiled.hpp"
25 #include "gc/shared/collectedHeap.hpp"
26 #include "gc/shared/collectedHeap.inline.hpp"
27 #include "logging/log.hpp"
28 #include "memory/resourceArea.hpp"
29 #include "runtime/atomic.hpp"
30 #include "runtime/frame.inline.hpp"
31 #include "runtime/handles.inline.hpp"
32 #include "runtime/init.hpp"
33 #include "runtime/interfaceSupport.inline.hpp"
34 #include "runtime/orderAccess.hpp"
35 #include "runtime/os.inline.hpp"
36 #include "runtime/thread.inline.hpp"
37 #include "runtime/safepointVerifiers.hpp"
38 #include "runtime/vframe.hpp"
39 #include "runtime/vmThread.hpp"
40 #include "utilities/preserveException.hpp"
41
42 // Implementation of InterfaceSupport
43
44 #ifdef ASSERT
45 VMEntryWrapper::VMEntryWrapper() {
46 if (VerifyLastFrame) {
|