comparison src/cpu/zero/vm/frame_zero.inline.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 f95d63e2154a
children da91efe96a93
comparison
equal deleted inserted replaced
4792:89d0a5d40008 4806:eaa9557116a2
1 /* 1 /*
2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
3 * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc. 3 * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * 5 *
6 * This code is free software; you can redistribute it and/or modify it 6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as 7 * under the terms of the GNU General Public License version 2 only, as
68 68
69 // Accessors 69 // Accessors
70 70
71 inline intptr_t* frame::sender_sp() const { 71 inline intptr_t* frame::sender_sp() const {
72 return fp() + 1; 72 return fp() + 1;
73 }
74
75 inline intptr_t* frame::real_fp() const {
76 return fp();
73 } 77 }
74 78
75 inline intptr_t* frame::link() const { 79 inline intptr_t* frame::link() const {
76 ShouldNotCallThis(); 80 ShouldNotCallThis();
77 } 81 }