comparison src/share/vm/runtime/stackValue.cpp @ 7066:7d815d842ee0

Merge.
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 23 Nov 2012 11:50:27 +0100
parents e522a00b91aa
children b8f261ba79c6
comparison
equal deleted inserted replaced
7065:cfacf5d5bade 7066:7d815d842ee0
1 /* 1 /*
2 * Copyright (c) 1997, 2010, 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.
159 value.p = (intptr_t) CONST64(0xDEADDEAFDEADDEAF); 159 value.p = (intptr_t) CONST64(0xDEADDEAFDEADDEAF);
160 value.ji = (jint)((ConstantIntValue*)sv)->value(); 160 value.ji = (jint)((ConstantIntValue*)sv)->value();
161 return new StackValue(value.p); 161 return new StackValue(value.p);
162 } else if (sv->is_constant_oop()) { 162 } else if (sv->is_constant_oop()) {
163 // constant oop 163 // constant oop
164 return new StackValue(((ConstantOopReadValue *)sv)->value()); 164 return new StackValue(sv->as_ConstantOopReadValue()->value());
165 #ifdef _LP64 165 #ifdef _LP64
166 } else if (sv->is_constant_double()) { 166 } else if (sv->is_constant_double()) {
167 // Constant double in a single stack slot 167 // Constant double in a single stack slot
168 union { intptr_t p; double d; } value; 168 union { intptr_t p; double d; } value;
169 value.p = (intptr_t) CONST64(0xDEADDEAFDEADDEAF); 169 value.p = (intptr_t) CONST64(0xDEADDEAFDEADDEAF);