Searched defs:FieldAccess (Results 1 – 3 of 3) sorted by relevance
36 struct FieldAccess { struct37 BaseTaggedness base_is_tagged; // specifies if the base pointer is tagged.38 int offset; // offset of the field, without tag.39 Handle<Name> name; // debugging only.40 Type* type; // type of the field.41 MachineType machine_type; // machine type of the field.43 int tag() const { return base_is_tagged == kTaggedBase ? kHeapObjectTag : 0; } in tag()
26 public class FieldAccess extends Expr { class29 protected FieldAccess(int pos, CodeIterator i, CtClass declaring, in FieldAccess() method in FieldAccess
761 public static class FieldAccess { class in JDWPConstants