Searched refs:tag_at (Results 1 - 23 of 23) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp129 constantTag t = tag_at(which);
343 constantTag tag_at(int which) const { return (constantTag)tags()->byte_at_acquire(which); } function in class:constantPoolOopDesc
347 constantTag tag = tag_at(which);
355 constantTag tag = tag_at(which);
372 guarantee(tag_at(which).is_klass(), "Corrupted constant pool");
382 assert(tag_at(which).is_unresolved_klass(), "Corrupted constant pool");
390 assert(tag_at(which).is_int(), "Corrupted constant pool");
395 assert(tag_at(which).is_long(), "Corrupted constant pool");
402 assert(tag_at(which).is_float(), "Corrupted constant pool");
407 assert(tag_at(whic
[all...]
H A DconstantPoolOop.cpp75 if (this_oop->tag_at(which).is_unresolved_klass()) {
76 if (this_oop->tag_at(which).is_unresolved_klass_in_error()) {
121 if (this_oop->tag_at(which).is_klass()) {
134 else if (!this_oop->tag_at(which).is_unresolved_klass_in_error()) {
188 do_resolve = this_oop->tag_at(which).is_unresolved_klass();
330 assert(tag_at(pool_index).is_name_and_type(), "");
336 if (tag_at(which).is_invoke_dynamic()) {
338 assert(tag_at(pool_index).is_name_and_type(), "");
342 assert(tag_at(i).is_field_or_method(), "Corrupted constant pool");
343 assert(!tag_at(
[all...]
H A DconstantPoolKlass.cpp326 cp->tag_at(index).print_on(st);
328 switch (cp->tag_at(index).value()) {
451 constantTag tag = cp->tag_at(i);
532 if (cp->tag_at(i).is_unresolved_klass()) {
H A DcpCacheOop.cpp411 if (cpool->tag_at(holder_index).is_klass()) {
H A DmethodOop.cpp535 if( constants()->tag_at(klass_index).is_unresolved_klass() ) {
551 if (constants()->tag_at(klass_index).is_unresolved_klass()) return false;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp47 int tag = _pool->tag_at(i).value();
158 assert(_pool->tag_at(cp_index).is_method(), "wrong index");
222 assert(_pool->tag_at(pool_index).is_invoke_dynamic(), "wrong index");
237 constantTag tag = _pool->tag_at(cp_index).value();
H A Dbytecode.cpp217 constantTag tag = _method->constants()->tag_at(index);
H A DbytecodeTracer.cpp295 constantTag tag = constants->tag_at(i);
340 constantTag tag = constants->tag_at(i);
H A DbytecodeInterpreter.cpp1944 if (!constants->tag_at(index).is_unresolved_klass()) {
2033 if (METHOD->constants()->tag_at(index).is_unresolved_klass()) {
2068 if (METHOD->constants()->tag_at(index).is_unresolved_klass()) {
2100 switch (constants->tag_at(index).value()) {
2137 switch (constants->tag_at(index).value()) {
H A DinterpreterRuntime.cpp117 constantTag tag = pool->tag_at(index);
245 // assert( cpool->tag_at(which).is_unresolved_klass(), "should only come here to quicken bytecodes" );
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp209 constantTag tag_old = _old_cp->tag_at(cpi_old);
210 constantTag tag_new = _new_cp->tag_at(cpi_new);
384 constantTag tag_old = _old_cp->tag_at(cpi_old);
385 constantTag tag_new = _new_cp->tag_at(cpi_new);
H A DjvmtiRedefineClasses.cpp194 switch (scratch_cp->tag_at(scratch_i).value()) {
428 switch (scratch_cp->tag_at(scratch_i).value()) {
488 jbyte bad_value = scratch_cp->tag_at(scratch_i).value();
785 jbyte t1 = cp1->tag_at(index1).value();
790 jbyte t2 = cp2->tag_at(index2).value();
814 jbyte t1 = cp1->tag_at(index1).value();
819 jbyte t2 = cp2->tag_at(index2).value();
1041 scratch_cp->tag_at(old_index).value(), old_index, new_index));
1090 jbyte old_tag = old_cp->tag_at(old_i).value();
1136 switch (scratch_cp->tag_at(scratch_
[all...]
H A Djvm.cpp1878 constantTag tag = cp->tag_at(index);
1893 constantTag tag = cp->tag_at(index);
1904 constantTag tag = cp->tag_at(index);
1955 constantTag tag = cp->tag_at(index);
2007 constantTag tag = cp->tag_at(index);
2032 constantTag tag = cp->tag_at(index);
2045 constantTag tag = cp->tag_at(index);
2058 constantTag tag = cp->tag_at(index);
2071 constantTag tag = cp->tag_at(index);
2084 constantTag tag = cp->tag_at(inde
[all...]
H A DjvmtiTagMap.cpp2923 constantTag tag = pool->tag_at(i).value();
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp323 if (valid_cp_range(index, cp->length()) && cp->tag_at(index).is_utf8())
354 jbyte tag = cp->tag_at(index).value();
373 cp->tag_at(name_and_type_ref_index).is_name_and_type(),
390 (index < length && cp->tag_at(index).is_invalid()),
400 cp->tag_at(name_ref_index).is_utf8(),
405 cp->tag_at(signature_ref_index).is_utf8(),
421 cp->tag_at(class_index).is_utf8(),
435 cp->tag_at(string_index).is_utf8(),
450 constantTag tag = cp->tag_at(ref_index);
490 cp->tag_at(ref_inde
[all...]
H A DclassFileParser.hpp334 ? cp->tag_at(index).is_klass_or_reference()
335 : cp->tag_at(index).is_klass_reference());
H A DstackMapTable.cpp185 (!_cp->tag_at(class_index).is_klass() &&
186 !_cp->tag_at(class_index).is_unresolved_klass())) {
H A Dverifier.cpp1866 unsigned int tag = cp->tag_at(index).value();
1878 constantTag tag = cp->tag_at(index);
1964 constantTag tag = cp->tag_at(index);
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp68 return constants()->tag_at(initial_value_index());
H A Ddeoptimization.cpp1188 if (constant_pool->tag_at(index).is_unresolved_klass()) {
1193 if (!constant_pool->tag_at(index).is_symbol()) return;
1298 if (constants->tag_at(unloaded_class_index).is_unresolved_klass()) {
1303 } else if (constants->tag_at(unloaded_class_index).is_symbol()) {
/openjdk7/hotspot/src/share/vm/ci/
H A DciEnv.cpp459 if (cpool->tag_at(i).is_klass()) {
511 constantTag tag = cpool->tag_at(index);
519 assert(cpool->tag_at(index).is_unresolved_klass(), "wrong tag");
591 constantTag tag = cpool->tag_at(index);
H A DciStreams.cpp256 return _method->get_methodOop()->constants()->tag_at(index);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp9906 int tag_at(int i) const { return (_value >> (i*2)) & 3; } function in class:TagWord
9949 int tag_for_st(int i) const { return _tag_word.tag_at((_status_word.top() + i) & register_mask); }
9970 printf(" %s\n", tag_as_string(_tag_word.tag_at(i)));

Completed in 231 milliseconds