Lines Matching defs:Location
32 // A Location describes a concrete machine variable location
43 class Location VALUE_OBJ_CLASS_SPEC {
76 // Create a bit-packed Location
77 Location(Where where_, Type type_, unsigned offset_) {
93 static Location new_stk_loc( Type t, int offset ) { return Location(on_stack,t,offset>>LogBytesPerInt); }
95 static Location new_reg_loc( Type t, VMReg reg ) { return Location(in_register, t, reg->value()); }
97 Location() { set(on_stack,invalid,0); }
117 Location(DebugInfoReadStream* stream);