comparison src/cpu/x86/vm/frame_x86.hpp @ 4806:eaa9557116a2

7120448: Fix FP values for compiled frames in frame::describe Summary: fix for debug method frame::describe Reviewed-by: never, kvn
author bdelsart
date Wed, 18 Jan 2012 16:18:31 +0100
parents 167b70ff3abc
children 33df1aeaebbf da91efe96a93
comparison
equal deleted inserted replaced
4792:89d0a5d40008 4806:eaa9557116a2
1 /* 1 /*
2 * Copyright (c) 1997, 2011, 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.
186 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc); 186 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc);
187 187
188 frame(intptr_t* sp, intptr_t* fp); 188 frame(intptr_t* sp, intptr_t* fp);
189 189
190 // accessors for the instance variables 190 // accessors for the instance variables
191 // Note: not necessarily the real 'frame pointer' (see real_fp)
191 intptr_t* fp() const { return _fp; } 192 intptr_t* fp() const { return _fp; }
192 193
193 inline address* sender_pc_addr() const; 194 inline address* sender_pc_addr() const;
194 195
195 // return address of param, zero origin index. 196 // return address of param, zero origin index.