Searched refs:old_type (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.hpp308 // 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
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->widen(old_type), which increments the widen bits until
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);
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp122 void relocInfo::change_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type, relocType new_type) { argument
126 assert(itr->type()==old_type, "wrong relocInfo type found");
135 void relocInfo::remove_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type) { argument
136 change_reloc_info_for_address(itr, pc, old_type, none);
H A DrelocInfo.hpp419 // Both methods takes old_type, so it is able to performe sanity checks on the information removed.
420 static void change_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type, relocType new_type);
421 static void remove_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type);

Completed in 275 milliseconds