| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 2392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2403 } | 2403 } |
| 2404 } | 2404 } |
| 2405 | 2405 |
| 2406 | 2406 |
| 2407 void LCodeGen::EmitLoadFieldOrConstantFunction(Register result, | 2407 void LCodeGen::EmitLoadFieldOrConstantFunction(Register result, |
| 2408 Register object, | 2408 Register object, |
| 2409 Handle<Map> type, | 2409 Handle<Map> type, |
| 2410 Handle<String> name, | 2410 Handle<String> name, |
| 2411 LEnvironment* env) { | 2411 LEnvironment* env) { |
| 2412 LookupResult lookup(isolate()); | 2412 LookupResult lookup(isolate()); |
| 2413 type->LookupTransitionOrDescriptor(NULL, *name, &lookup); | 2413 type->LookupDescriptor(NULL, *name, &lookup); |
| 2414 ASSERT(lookup.IsFound() || lookup.IsCacheable()); | 2414 ASSERT(lookup.IsFound() || lookup.IsCacheable()); |
| 2415 if (lookup.IsField()) { | 2415 if (lookup.IsField()) { |
| 2416 int index = lookup.GetLocalFieldIndexFromMap(*type); | 2416 int index = lookup.GetLocalFieldIndexFromMap(*type); |
| 2417 int offset = index * kPointerSize; | 2417 int offset = index * kPointerSize; |
| 2418 if (index < 0) { | 2418 if (index < 0) { |
| 2419 // Negative property indices are in-object properties, indexed | 2419 // Negative property indices are in-object properties, indexed |
| 2420 // from the end of the fixed part of the object. | 2420 // from the end of the fixed part of the object. |
| 2421 __ mov(result, FieldOperand(object, offset + type->instance_size())); | 2421 __ mov(result, FieldOperand(object, offset + type->instance_size())); |
| 2422 } else { | 2422 } else { |
| 2423 // Non-negative property indices are in the properties array. | 2423 // Non-negative property indices are in the properties array. |
| (...skipping 2908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5332 FixedArray::kHeaderSize - kPointerSize)); | 5332 FixedArray::kHeaderSize - kPointerSize)); |
| 5333 __ bind(&done); | 5333 __ bind(&done); |
| 5334 } | 5334 } |
| 5335 | 5335 |
| 5336 | 5336 |
| 5337 #undef __ | 5337 #undef __ |
| 5338 | 5338 |
| 5339 } } // namespace v8::internal | 5339 } } // namespace v8::internal |
| 5340 | 5340 |
| 5341 #endif // V8_TARGET_ARCH_IA32 | 5341 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |