< prev index next >

src/hotspot/share/code/debugInfo.hpp

Print this page

        

*** 144,156 **** // A ConstantIntValue describes a constant int; i.e., the corresponding logical entity // is either a source constant or its computation has been constant-folded. class ConstantIntValue: public ScopeValue { private: ! jint _value; public: ! ConstantIntValue(jint value) { _value = value; } jint value() const { return _value; } bool is_constant_int() const { return true; } bool equals(ScopeValue* other) const { return false; } // Serialization of debugging information --- 144,156 ---- // A ConstantIntValue describes a constant int; i.e., the corresponding logical entity // is either a source constant or its computation has been constant-folded. class ConstantIntValue: public ScopeValue { private: ! int _value; public: ! ConstantIntValue(int value) { _value = value; } jint value() const { return _value; } bool is_constant_int() const { return true; } bool equals(ScopeValue* other) const { return false; } // Serialization of debugging information
< prev index next >