Searched refs:LocationValue (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DLocationValue.java33 public class LocationValue extends ScopeValue { class in inherits:ScopeValue
36 public LocationValue(Location location) { method in class:LocationValue
49 LocationValue(DebugInfoReadStream stream) { method in class:LocationValue
H A DScopeValue.java39 <LI> LocationValue: describes a value in a given location (in frame or register)
65 return new LocationValue(stream);
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp81 case LOCATION_CODE: result = new LocationValue(stream); break;
93 // LocationValue
95 LocationValue::LocationValue(DebugInfoReadStream* stream) { function in class:LocationValue
99 void LocationValue::write_on(DebugInfoWriteStream* stream) {
104 void LocationValue::print_on(outputStream* st) const {
H A DdebugInfo.hpp40 // - LocationValue describes a value in a given location (in frame or register)
63 class LocationValue: public ScopeValue { class in inherits:ScopeValue
67 LocationValue(Location location) { _location = location; } function in class:LocationValue
72 LocationValue(DebugInfoReadStream* stream);
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.cpp35 Location loc = ((LocationValue *)sv)->location();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCacheDecache.hpp130 static LocationValue* slot2lv(int offset, Location::Type type) {
131 return new LocationValue(slot2loc(offset, type));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DCompiledVFrame.java191 Location loc = ((LocationValue) sv).getLocation();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp2225 Location location = ((LocationValue*)value)->location();
2240 Location location = ((LocationValue*)value->owner())->location();
2254 assert_equal(((LocationValue*)v1)->location(), ((LocationValue*)v2)->location());
2475 LocationValue* _illegal_value = new (ResourceObj::C_HEAP, mtCompiler) LocationValue(Location());
2488 ScopeValue* object_scope_value = new LocationValue(loc);
2496 LocationValue* LinearScan::location_for_name(int name, Location::Type loc_type) {
2501 return new LocationValue(loc);
2594 sv = new LocationValue(Locatio
[all...]
H A Dc1_LinearScan.hpp354 LocationValue* location_for_name(int name, Location::Type loc_type);
/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp582 static LocationValue *new_loc_value( PhaseRegAlloc *ra, OptoReg::Name regnum, Location::Type l_type ) {
586 ? new LocationValue(Location::new_reg_loc(l_type, OptoReg::as_VMReg(regnum)) )
587 : new LocationValue(Location::new_stk_loc(l_type, ra->reg2offset(regnum)));
797 array->append(new LocationValue(Location()));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java1342 LocationValue lvalue = (LocationValue) sv;
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp861 class LocationValue;

Completed in 138 milliseconds