comparison src/cpu/x86/vm/frame_x86.hpp @ 4970:33df1aeaebbf

Merge with http://hg.openjdk.java.net/hsx/hsx24/hotspot/
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 27 Feb 2012 13:10:13 +0100
parents 3dbcd1013cc8 eaa9557116a2
children e522a00b91aa
comparison
equal deleted inserted replaced
4703:2cfb7fb2dce7 4970:33df1aeaebbf
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.