| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_MIPS64 | 7 #if V8_TARGET_ARCH_MIPS64 |
| 8 | 8 |
| 9 #include "src/ic/call-optimization.h" | 9 #include "src/ic/call-optimization.h" |
| 10 #include "src/ic/handler-compiler.h" | 10 #include "src/ic/handler-compiler.h" |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 } | 478 } |
| 479 | 479 |
| 480 // Go to the next object in the prototype chain. | 480 // Go to the next object in the prototype chain. |
| 481 current = prototype; | 481 current = prototype; |
| 482 current_map = handle(current->map()); | 482 current_map = handle(current->map()); |
| 483 } | 483 } |
| 484 | 484 |
| 485 // Log the check depth. | 485 // Log the check depth. |
| 486 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); | 486 LOG(isolate(), IntEvent("check-maps-depth", depth + 1)); |
| 487 | 487 |
| 488 if (depth != 0 || check == CHECK_ALL_MAPS) { | 488 if (!current_map->IsJSGlobalObjectMap() && |
| 489 (depth != 0 || check == CHECK_ALL_MAPS)) { |
| 489 // Check the holder map. | 490 // Check the holder map. |
| 490 __ ld(scratch1, FieldMemOperand(reg, HeapObject::kMapOffset)); | 491 __ ld(scratch1, FieldMemOperand(reg, HeapObject::kMapOffset)); |
| 491 Handle<WeakCell> cell = Map::WeakCellForMap(current_map); | 492 Handle<WeakCell> cell = Map::WeakCellForMap(current_map); |
| 492 __ GetWeakValue(scratch2, cell); | 493 __ GetWeakValue(scratch2, cell); |
| 493 __ Branch(miss, ne, scratch2, Operand(scratch1)); | 494 __ Branch(miss, ne, scratch2, Operand(scratch1)); |
| 494 } | 495 } |
| 495 | 496 |
| 496 // Perform security check for access to the global object. | 497 // Perform security check for access to the global object. |
| 497 DCHECK(current_map->IsJSGlobalProxyMap() || | 498 DCHECK(current_map->IsJSGlobalProxyMap() || |
| 498 !current_map->is_access_check_needed()); | 499 !current_map->is_access_check_needed()); |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 // Return the generated code. | 744 // Return the generated code. |
| 744 return GetCode(kind(), Code::NORMAL, name); | 745 return GetCode(kind(), Code::NORMAL, name); |
| 745 } | 746 } |
| 746 | 747 |
| 747 | 748 |
| 748 #undef __ | 749 #undef __ |
| 749 } | 750 } |
| 750 } // namespace v8::internal | 751 } // namespace v8::internal |
| 751 | 752 |
| 752 #endif // V8_TARGET_ARCH_MIPS64 | 753 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |