Searched defs:_adr_type (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.hpp121 const TypePtr* const _adr_type; // non-null only for Type::MEMORY nodes. member in class:PhiNode
126 // Size is bigger to hold the _adr_type field.
145 _adr_type(at),
188 virtual const TypePtr *adr_type() const { verify_adr_type(true); return _adr_type; }
H A Dcallnode.hpp327 _adr_type(adr_type)
334 const TypePtr* _adr_type; // What type of memory does this node produce? member in class:SafePointNode
431 virtual const TypePtr *adr_type() const { return _adr_type; }
642 _adr_type = adr_type;
H A Dmachnode.hpp635 const TypePtr* _adr_type; // memory effects of call or return member in class:MachReturnNode
638 _adr_type = TypePtr::BOTTOM; // the default: all of memory
641 void set_adr_type(const TypePtr* atp) { _adr_type = atp; }
H A Dmemnode.hpp44 const TypePtr* _adr_type; // What kind of memory is being addressed? member in class:MemNode
58 debug_only(_adr_type=at; adr_type();)
63 debug_only(_adr_type=at; adr_type();)
68 debug_only(_adr_type=at; adr_type();)
99 return _adr_type;
650 const TypePtr* _adr_type; // What kind of memory is being addressed? member in class:LoadStoreNode
659 virtual const class TypePtr *adr_type() const { return _adr_type; } // returns bottom_type of address
897 const TypePtr* _adr_type; member in class:MemBarNode
905 virtual const class TypePtr *adr_type() const { return _adr_type; }
H A Dcompile.hpp120 const TypePtr* _adr_type; // normalized address type member in class:Compile::AliasType
130 const TypePtr* adr_type() const { return _adr_type; }
150 struct AliasCacheEntry { const TypePtr* _adr_type; int _index; }; // simple duple type member in struct:Compile::AliasCacheEntry
H A Dmemnode.cpp54 DEBUG_ONLY(cross_check = _adr_type);
63 const TypePtr* _adr_type = NULL; local
65 _adr_type = in(Address)->bottom_type()->isa_ptr();
67 dump_adr_type(this, _adr_type, st);
70 if( C->alias_type(_adr_type)->is_volatile() )
2580 _adr_type(at)
2816 _adr_type(C->get_adr_type(alias_idx))

Completed in 95 milliseconds