Home | History | Annotate | Download | only in ia32

Lines Matching defs:access

2231   // classes and it doesn't have to because you can't access it with natives
2280 // Deoptimize if the object needs to be access checked.
2413 HObjectAccess access = instr->hydrogen()->access();
2414 int offset = access.offset();
2416 if (access.IsExternalMemory()) {
2422 __ Load(result, operand, access.representation());
2434 if (!access.IsInobject()) {
2438 __ Load(result, FieldOperand(object, offset), access.representation());
3524 HObjectAccess access = instr->hydrogen()->access();
3525 int offset = access.offset();
3527 if (access.IsExternalMemory()) {
3550 DCHECK(access.IsInobject());
3572 if (!access.IsInobject()) {
3599 Register temp = access.IsInobject() ? ToRegister(instr->temp()) : object;