Searched refs:is_oop (Results 1 - 25 of 63) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.inline.hpp42 assert (obj->is_oop(), "expected an oop while scanning weak refs");
75 assert (obj->is_oop(), "expected an oop while scanning weak refs");
H A DreferenceProcessor.cpp483 : _referent->is_oop(),
488 assert(_ref->is_oop(), "Dropping a bad reference");
693 assert(iter.obj()->is_oop(UseConcMarkSweepGC), "Adding a bad reference");
1126 assert(da ? referent->is_oop() : referent->is_oop_or_null(),
1280 assert(obj->is_oop(), "Discovered a bad reference");
H A Dspace.cpp672 assert(oop(obj_addr)->is_oop(), "Should be an oop"); \
715 assert(obj->is_oop(), "expected an oop");
805 assert(oop(last)->is_oop(),
819 assert(p == current_top || oop(p)->is_oop(),
821 "current_top: " PTR_FORMAT ", is_oop: %s",
822 p, current_top, BOOL_TO_STR(oop(p)->is_oop())));
/openjdk7/hotspot/src/share/vm/prims/
H A DprivilegedStack.cpp44 assert(_privileged_context == NULL || _privileged_context->is_oop(), "must be an oop");
45 assert(protection_domain() == NULL || protection_domain()->is_oop(), "must be an oop");
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsOopClosures.inline.hpp36 assert(newOop->is_oop(), "Expected an oop");
H A DconcurrentMarkSweepGeneration.cpp1292 assert(obj->is_oop(), "Will dereference klass pointer below");
1425 assert(old->is_oop(), "Will use and dereference old klass ptr below");
1431 assert(obj->is_oop() && obj->size() == (int)word_sz, "Error, incorrect size computed for promoted object");
4187 assert(new_oop->is_oop(), "Should be an oop");
4230 assert(obj_to_scan->is_oop(), "Should be an oop");
5302 assert(mr.is_empty() || oop(mr.start())->is_oop(),
5439 assert(obj_to_scan->is_oop(), "Oops, not an oop!");
5893 assert(obj_to_scan->is_oop(), "Oops, not an oop!");
6687 assert(obj->is_oop(), "expected an oop");
6711 assert(obj->is_oop(), "expecte
[all...]
H A DpromotionInfo.cpp303 // the last promoted object may fail the mark() != NULL test of is_oop().
304 guarantee(curObj->next() == NULL || oop(curObj)->is_oop(), "must be an oop");
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolKlass.cpp61 assert(klass()->is_oop(), "Can't be null, else handlizing of c below won't work");
86 assert(pool->is_oop() && pool->is_parsable(), "Else size() below is unreliable");
381 if (entry.is_oop()) {
454 if (entry.is_oop()) {
459 if (entry.is_oop()) {
466 if (entry.is_oop()) {
475 if (entry.is_oop()) {
484 assert(entry.get_oop()->is_oop(), "should be some valid oop");
H A DconstantPoolOop.cpp59 if (entry.is_oop()) {
196 assert(entry.is_oop() && entry.get_oop()->is_klass(), "must be resolved at this point");
207 if (entry.is_oop()) {
250 if (entry.is_oop()) {
412 if (entry.is_oop()) {
1251 if (entry.is_oop()) {
1272 if (entry.is_oop()) {
H A DinstanceRefKlass.cpp499 guarantee(referent->is_oop(), "referent field heap failed");
504 guarantee(next->is_oop(), "next field verify failed");
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.cpp755 bool is_oop = newptr ? ((oop)newptr)->is_oop() : false; local
758 newptr, is_oop?"oop":" ", (wasoop && !is_oop) ? "STALE" : ((wasoop==false&&is_oop==false&&oldptr !=newptr)?"STOMP":" "));
762 bool is_oop = newptr ? ((oop)(intptr_t)newptr)->is_oop() : false; local
765 newptr, is_oop?"oop":" ", (wasoop && !is_oop) ? "STALE" : ((wasoop==false&&is_oop
[all...]
H A Dhandles.cpp50 assert(SharedSkipVerify || obj->is_oop(), "sanity check");
73 // assert((*bottom)->is_oop(), "handle should point to oop");
H A DjavaCalls.cpp465 SignatureChekker(Symbol* signature, BasicType return_type, bool is_static, bool* is_oop, intptr_t* value, Thread* thread) : SignatureIterator(signature) { argument
466 _is_oop = is_oop;
H A Dvframe.cpp282 if (oop_mask.is_oop(i)) {
349 if (oop_mask.is_oop(i + nof_locals)) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1SATBCardTableModRefBS.cpp54 assert(pre_val->is_oop(true), "Error");
H A DconcurrentMark.hpp770 assert(p != NULL && p->is_oop(), "expected an oop");
785 assert(p != NULL && p->is_oop(), "expected an oop");
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.hpp150 bool is_oop (int offset) { return (entry_at(offset) & (1 << oop_bit_number )) != 0; } function in class:InterpreterOopMap
H A DoopMapCache.cpp158 void offset_do(int offset) { if (!_entry->is_oop(offset)) _failed = true; }
271 if (is_oop(i)) tty->print("%d ", i);
318 bool v1 = is_oop(i) ? true : false;
332 bool v1 = is_oop(max_locals + j) ? true : false;
467 assert(from->method()->is_oop(), "MethodOop is bad");
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.hpp265 FieldNode(Compile *C, Node* n, EscapeState es, int offs, bool is_oop): argument
267 _offset(offs), _is_oop(is_oop),
271 bool is_oop() const { return _is_oop;} function in class:FieldNode
459 assert(!from->is_Field() || from->as_Field()->is_oop(), "sanity");
H A Dregalloc.cpp103 //------------------------------is_oop-----------------------------------------
104 bool PhaseRegAlloc::is_oop( const Node *n ) const { function in class:PhaseRegAlloc
H A Dregalloc.hpp106 bool is_oop( const Node *n ) const;
H A Descape.cpp138 } else if (ptn->is_Field() && ptn->as_Field()->is_oop()) {
297 ptnode_adr(adr->_idx)->as_Field()->is_oop()), "sanity");
678 adr_ptn->as_Field()->is_oop(), "node should be registered");
694 assert(adr_ptn->as_Field()->is_oop(), "should be oop field");
1148 if (ptn->is_Field() && ptn->as_Field()->is_oop() &&
1180 e->as_Field()->is_oop()) {
1218 if (use->is_Field() && use->as_Field()->is_oop()) {
1278 assert(field->is_oop(), "sanity");
1314 if (f == field || !f->as_Field()->is_oop())
1337 if (f == field || !f->as_Field()->is_oop())
1863 bool is_oop = is_oop_field(n, offset, &unsafe); local
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkRuntime.cpp139 assert(object->is_oop(), "should be");
190 if (valueOop->is_oop(true))
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp1866 // is_oop - true => oop array, so generate store check code
1882 address generate_disjoint_int_oop_copy(bool aligned, bool is_oop, address* entry, argument
1911 if (is_oop) {
1941 if (is_oop) {
1960 // is_oop - true => oop array, so generate store check code
1972 address generate_conjoint_int_oop_copy(bool aligned, bool is_oop, address nooverlap_target, argument
1999 if (is_oop) {
2025 if (is_oop) {
2038 if (is_oop) {
2053 // is_oop
2065 generate_disjoint_long_oop_copy(bool aligned, bool is_oop, address *entry, const char *name, bool dest_uninitialized = false) argument
2156 generate_conjoint_long_oop_copy(bool aligned, bool is_oop, address nooverlap_target, address *entry, const char *name, bool dest_uninitialized = false) argument
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.hpp98 bool is_oop() { return mask_bits(value(), type_mask_in_place) == oop_value; } function in class:OopMapValue

Completed in 113 milliseconds

123