7120448: Fix FP values for compiled frames in frame::describe

Fix for debug method frame::describe

Reviewed-by: never, kvn
This commit is contained in:
Bertrand Delsart 2012-01-18 16:18:31 +01:00
parent b9cba282ee
commit b11b6e4dda
6 changed files with 47 additions and 16 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
@ -72,6 +72,10 @@ inline intptr_t* frame::sender_sp() const {
return fp() + 1;
}
inline intptr_t* frame::real_fp() const {
return fp();
}
inline intptr_t* frame::link() const {
ShouldNotCallThis();
}