/hg/icedtea6: 2009-09-08 Gary Benson <gbenson at redhat.com>
gbenson at icedtea.classpath.org
gbenson at icedtea.classpath.org
Tue Sep 8 03:43:58 PDT 2009
changeset 175266c8ad02 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=175266c8ad02
author: Gary Benson <gbenson at redhat.com>
date: Tue Sep 08 11:47:14 2009 +0100
2009-09-08 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/cpu/zero/vm/stack_zero.hpp: Whitespace
changes.
diffstat:
2 files changed, 4 insertions(+), 12 deletions(-)
ChangeLog | 4 ++++
ports/hotspot/src/cpu/zero/vm/stack_zero.hpp | 12 ------------
diffs (92 lines):
diff -r b13a59d17b81 -r 175266c8ad02 ChangeLog
--- a/ChangeLog Tue Sep 08 11:46:08 2009 +0100
+++ b/ChangeLog Tue Sep 08 11:47:14 2009 +0100
@@ -1,3 +1,7 @@ 2009-09-08 Gary Benson <gbenson at redhat
+2009-09-08 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/cpu/zero/vm/stack_zero.hpp: Whitespace changes.
+
2009-09-08 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.hpp
diff -r b13a59d17b81 -r 175266c8ad02 ports/hotspot/src/cpu/zero/vm/stack_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/stack_zero.hpp Tue Sep 08 11:46:08 2009 +0100
+++ b/ports/hotspot/src/cpu/zero/vm/stack_zero.hpp Tue Sep 08 11:47:14 2009 +0100
@@ -45,7 +45,6 @@ class ZeroStack {
_top = _base + (size >> LogBytesPerWord);
_sp = _top;
}
-
void teardown() {
assert(!needs_setup(), "not set up");
assert(_sp == _top, "stuff on stack at teardown");
@@ -58,7 +57,6 @@ class ZeroStack {
intptr_t *sp() const {
return _sp;
}
-
void set_sp(intptr_t *new_sp) {
assert(_top >= new_sp && new_sp >= _base, "bad stack pointer");
_sp = new_sp;
@@ -72,7 +70,6 @@ class ZeroStack {
assert(_sp > _base, "stack overflow");
*(--_sp) = value;
}
-
intptr_t pop() {
assert(_sp < _top, "stack underflow");
return *(_sp++);
@@ -88,11 +85,9 @@ class ZeroStack {
static ByteSize base_offset() {
return byte_offset_of(ZeroStack, _base);
}
-
static ByteSize top_offset() {
return byte_offset_of(ZeroStack, _top);
}
-
static ByteSize sp_offset() {
return byte_offset_of(ZeroStack, _sp);
}
@@ -139,7 +134,6 @@ class ZeroFrame {
intptr_t *addr_of_word(int offset) const {
return (intptr_t *) this - offset;
}
-
intptr_t value_of_word(int offset) const {
return *addr_of_word(offset);
}
@@ -158,15 +152,12 @@ class ZeroFrame {
bool is_entry_frame() const {
return type() == ENTRY_FRAME;
}
-
bool is_interpreter_frame() const {
return type() == INTERPRETER_FRAME;
}
-
bool is_shark_frame() const {
return type() == SHARK_FRAME;
}
-
bool is_deoptimizer_frame() const {
return type() == DEOPTIMIZER_FRAME;
}
@@ -176,17 +167,14 @@ class ZeroFrame {
assert(is_entry_frame(), "should be");
return (EntryFrame *) this;
}
-
InterpreterFrame *as_interpreter_frame() const {
assert(is_interpreter_frame(), "should be");
return (InterpreterFrame *) this;
}
-
SharkFrame *as_shark_frame() const {
assert(is_shark_frame(), "should be");
return (SharkFrame *) this;
}
-
DeoptimizerFrame *as_deoptimizer_frame() const {
assert(is_deoptimizer_frame(), "should be");
return (DeoptimizerFrame *) this;
More information about the distro-pkg-dev
mailing list