src/cpu/x86/vm/c1_FrameMap_x86.cpp

changeset 1934
e9ff18c4ace7
parent 1907
c18cbe5936b8
parent 1919
61b2245abf36
child 1939
b812ff5abc73
equal deleted inserted replaced
1917:dfe27f03244a 1934:e9ff18c4ace7
1 /* 1 /*
2 * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2010, 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.
307 LIR_Opr FrameMap::stack_pointer() { 307 LIR_Opr FrameMap::stack_pointer() {
308 return FrameMap::rsp_opr; 308 return FrameMap::rsp_opr;
309 } 309 }
310 310
311 311
312 // JSR 292
313 LIR_Opr FrameMap::method_handle_invoke_SP_save_opr() {
314 assert(rbp == rbp_mh_SP_save, "must be same register");
315 return rbp_opr;
316 }
317
318
312 bool FrameMap::validate_frame() { 319 bool FrameMap::validate_frame() {
313 return true; 320 return true;
314 } 321 }

mercurial