Home | History | Annotate | Download | only in crankshaft

Lines Matching defs:access

53                FieldOf(l->access()),
67 FieldOf(s->access()),
204 DCHECK(!instr->access().IsInobject() ||
205 instr->access().existing_inobject_property());
207 int field = FieldOf(instr->access());
231 if (instr->access().IsInobject() &&
232 !instr->access().existing_inobject_property()) {
237 int field = FieldOf(instr->access());
279 int field = FieldOf(s->access());
289 HObjectAccess access = instr->access();
290 if (access.IsInobject()) {
291 int offset = access.offset();
293 // Kill the field containing the first word of the access.
299 int size = access.representation().size();
397 // Compute the field index for the given object access; -1 if not tracked.
398 int FieldOf(HObjectAccess access) {
399 return access.IsInobject() ? FieldOf(access.offset()) : -1;