Searched refs:ConstantLongValue (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DConstantLongValue.java29 /** A ConstantLongValue describes a constant long; i.e., the
33 public class ConstantLongValue extends ScopeValue { class in inherits:ScopeValue
36 public ConstantLongValue(long value) { method in class:ConstantLongValue
49 ConstantLongValue(DebugInfoReadStream stream) { method in class:ConstantLongValue
H A DScopeValue.java71 return new ConstantLongValue(stream);
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp84 case CONSTANT_LONG_CODE: result = new ConstantLongValue(stream); break;
168 // ConstantLongValue
170 ConstantLongValue::ConstantLongValue(DebugInfoReadStream* stream) { function in class:ConstantLongValue
174 void ConstantLongValue::write_on(DebugInfoWriteStream* stream) {
179 void ConstantLongValue::print_on(outputStream* st) const {
H A DdebugInfo.hpp150 class ConstantLongValue: public ScopeValue { class in inherits:ScopeValue
154 ConstantLongValue(jlong value) { _value = value; } function in class:ConstantLongValue
160 ConstantLongValue(DebugInfoReadStream* stream);
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.cpp160 value.jl = ((ConstantLongValue *)sv)->value();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DCompiledVFrame.java301 return new StackValue(((ConstantLongValue) sv).getValue() & 0xFFFFFFFF);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java1324 ConstantLongValue longValue = (ConstantLongValue) sv;
/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp748 array->append(new ConstantLongValue(t->is_ptr()->get_con()));
781 array->append(new ConstantLongValue(d));
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp2263 assert(((ConstantLongValue*)v1)->value() == ((ConstantLongValue*)v2)->value(), "");
2538 scope_values->append(new ConstantLongValue(c->as_jlong_bits()));
2553 scope_values->append(new ConstantLongValue(c->as_jint()));

Completed in 60 milliseconds