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

/openjdk7/hotspot/src/share/vm/utilities/
H A DconstantTag.hpp52 jbyte _tag; member in class:VALUE_OBJ_CLASS_SPEC
54 bool is_klass() const { return _tag == JVM_CONSTANT_Class; }
55 bool is_field () const { return _tag == JVM_CONSTANT_Fieldref; }
56 bool is_method() const { return _tag == JVM_CONSTANT_Methodref; }
57 bool is_interface_method() const { return _tag == JVM_CONSTANT_InterfaceMethodref; }
58 bool is_string() const { return _tag == JVM_CONSTANT_String; }
59 bool is_int() const { return _tag == JVM_CONSTANT_Integer; }
60 bool is_float() const { return _tag == JVM_CONSTANT_Float; }
61 bool is_long() const { return _tag == JVM_CONSTANT_Long; }
62 bool is_double() const { return _tag
[all...]
H A DconstantTag.cpp37 switch (_tag) {
67 switch (_tag) {
H A Dtaskqueue.hpp150 Age(idx_t top, idx_t tag) { _fields._top = top; _fields._tag = tag; }
156 idx_t tag() const volatile { return _fields._tag; }
161 if (_fields._top == 0) ++_fields._tag;
175 idx_t _tag; member in struct:TaskQueueSuper::Age::fields
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.hpp70 CounterTag _tag; member in class:NamedCounter
78 _tag(tag) {}
83 CounterTag tag() const { return _tag; }
84 void set_tag(CounterTag tag) { _tag = tag; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp96 const ValueTag _tag; member in class:ValueType
99 ValueType(ValueTag tag, int size): _tag(tag), _size(size) {}
107 ValueTag tag() const { return _tag; } // the 'canonical' tag (useful for type matching)
H A Dc1_Instruction.hpp1938 Value _tag;
1944 , _tag(tag) {
1950 Value tag() const { return _tag; }
1956 virtual void input_values_do(ValueVisitor* f) { BlockEnd::input_values_do(f); f->visit(&_tag); }
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.hpp84 u1 _tag; member in struct:VALUE_OBJ_CLASS_SPEC::__anon284::__anon285
154 return _header._struct._tag;
222 return byte_offset_of(DataLayout, _header._struct._tag);
H A DmethodDataOop.cpp51 _header._struct._tag = tag;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp63 jlong _tag; // the tag member in class:JvmtiTagHashmapEntry
68 _tag = tag;
80 inline jlong tag() const { return _tag; }
84 _tag = tag;

Completed in 77 milliseconds