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

/openjdk7/hotspot/src/share/vm/ci/
H A DciInstance.cpp71 BasicType field_btype = field->type()->basic_type(); local
74 switch(field_btype) {
76 return ciConstant(field_btype, obj->byte_field(offset));
79 return ciConstant(field_btype, obj->char_field(offset));
82 return ciConstant(field_btype, obj->short_field(offset));
85 return ciConstant(field_btype, obj->bool_field(offset));
88 return ciConstant(field_btype, obj->int_field(offset));
112 return ciConstant(field_btype, ciNullObject::make());
114 return ciConstant(field_btype, CURRENT_ENV->get_object(o));

Completed in 310 milliseconds