comparison src/cpu/x86/vm/frame_x86.inline.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents d8041d695d19
children 89152779163c
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
1 /* 1 /*
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
245 assert(last_sp <= (intptr_t*) interpreter_frame_monitor_end(), "bad tos"); 245 assert(last_sp <= (intptr_t*) interpreter_frame_monitor_end(), "bad tos");
246 return last_sp; 246 return last_sp;
247 } 247 }
248 } 248 }
249 249
250 inline oop* frame::interpreter_frame_temp_oop_addr() const {
251 return (oop *)(fp() + interpreter_frame_oop_temp_offset);
252 }
253
254 #endif /* CC_INTERP */ 250 #endif /* CC_INTERP */
255 251
256 inline int frame::pd_oop_map_offset_adjustment() const { 252 inline int frame::pd_oop_map_offset_adjustment() const {
257 return 0; 253 return 0;
258 } 254 }