Lines Matching defs:access
52 FieldOf(l->access()),
66 FieldOf(s->access()),
203 DCHECK(!instr->access().IsInobject() ||
204 instr->access().existing_inobject_property());
206 int field = FieldOf(instr->access());
230 if (instr->access().IsInobject() &&
231 !instr->access().existing_inobject_property()) {
236 int field = FieldOf(instr->access());
278 int field = FieldOf(s->access());
288 HObjectAccess access = instr->access();
289 if (access.IsInobject()) {
290 int offset = access.offset();
292 // Kill the field containing the first word of the access.
298 int size = access.representation().size();
396 // Compute the field index for the given object access; -1 if not tracked.
397 int FieldOf(HObjectAccess access) {
398 return access.IsInobject() ? FieldOf(access.offset()) : -1;