Searched defs:new_type (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.hpp589 KlassDepChange(KlassHandle new_type) argument
590 : _new_type(new_type)
601 klassOop new_type() { return _new_type(); } function in class:KlassDepChange
603 // involves_context(k) is true if k is new_type or any of the super types
H A DrelocInfo.cpp122 void relocInfo::change_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type, relocType new_type) { argument
127 itr->current()->set_type(new_type);
H A Ddependencies.cpp937 klassOop new_type = changes.new_type(); local
955 assert(!is_participant(new_type), "only old classes are participants");
961 assert(changes.involves_context(part) == Klass::cast(new_type)->is_subtype_of(part),
962 "correct marking of participants, b/c new_type is unique");
970 if (is_witness(new_type) &&
971 !ignore_witness(new_type)) {
972 return new_type;
1448 search_at = changes->new_type()->klass_part(); // just look at the new bit
1590 klassOop new_type local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.hpp306 // if the phase wishes to widen the new_type.
308 // Caller guarantees that old_type and new_type are no higher than limit_type.
309 virtual const Type* saturate(const Type* new_type, const Type* old_type, argument
364 virtual const Type* saturate(const Type* new_type, const Type* old_type, argument
366 { return new_type; }
423 virtual const Type* saturate(const Type* new_type, const Type* old_type,
425 // Usually returns new_type. Returns old_type if new_type is only a slight
532 virtual const Type* saturate(const Type* new_type, const Type* old_type,
534 // Returns new_type
[all...]
H A DphaseX.cpp1144 const Type* PhaseIterGVN::saturate(const Type* new_type, const Type* old_type, argument
1146 return new_type->narrow(old_type);
1599 const Type* PhaseCCP::saturate(const Type* new_type, const Type* old_type, argument
1601 const Type* wide_type = new_type->widen(old_type, limit_type);
1602 if (wide_type != new_type) { // did we widen?
1604 new_type = wide_type->filter(limit_type);
1606 return new_type;
H A Dnode.cpp964 void Node::raise_bottom_type(const Type* new_type) { argument
968 assert(new_type->higher_equal(n->type()), "new type must refine old type");
970 n->set_type(new_type);
974 assert(new_type->higher_equal(n->type()), "new type must refine old type");
976 n->set_type(new_type);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp676 Handle Reflection::new_type(Symbol* signature, KlassHandle k, TRAPS) { function in class:Reflection
815 Handle type = new_type(signature, holder, CHECK_NULL);
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp472 ciType* new_type = type_meet(t1, t2); local
473 if (!t1->equals(new_type)) {
474 set_type_at(c, new_type);
509 ciType* new_type = type_meet(t1, t2); local
510 if (!t1->equals(new_type)) {
511 set_type_at(c, new_type);
521 ciType* new_type = type_meet(tos_type, exc); local
522 if (!tos_type->equals(new_type)) {
523 set_type_at_tos(new_type);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.hpp322 void set_young_type(YoungType new_type) { argument
323 //assert(_young_type != new_type, "setting the same type" );
325 _young_type = new_type;

Completed in 74 milliseconds