| 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_X64 | 7 #if V8_TARGET_ARCH_X64 |
| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 Register map_reg = StoreTransitionDescriptor::MapRegister(); | 328 Register map_reg = StoreTransitionDescriptor::MapRegister(); |
| 329 DCHECK(!map_reg.is(scratch)); | 329 DCHECK(!map_reg.is(scratch)); |
| 330 __ LoadWeakValue(map_reg, cell, miss); | 330 __ LoadWeakValue(map_reg, cell, miss); |
| 331 if (transition->CanBeDeprecated()) { | 331 if (transition->CanBeDeprecated()) { |
| 332 __ movl(scratch, FieldOperand(map_reg, Map::kBitField3Offset)); | 332 __ movl(scratch, FieldOperand(map_reg, Map::kBitField3Offset)); |
| 333 __ andl(scratch, Immediate(Map::Deprecated::kMask)); | 333 __ andl(scratch, Immediate(Map::Deprecated::kMask)); |
| 334 __ j(not_zero, miss); | 334 __ j(not_zero, miss); |
| 335 } | 335 } |
| 336 } | 336 } |
| 337 | 337 |
| 338 | 338 void NamedStoreHandlerCompiler::GenerateConstantCheck(Object* constant, |
| 339 void NamedStoreHandlerCompiler::GenerateConstantCheck(Register map_reg, | |
| 340 int descriptor, | |
| 341 Register value_reg, | 339 Register value_reg, |
| 342 Register scratch, | |
| 343 Label* miss_label) { | 340 Label* miss_label) { |
| 344 DCHECK(!map_reg.is(scratch)); | 341 __ Cmp(value_reg, handle(constant, isolate())); |
| 345 DCHECK(!map_reg.is(value_reg)); | |
| 346 DCHECK(!value_reg.is(scratch)); | |
| 347 __ LoadInstanceDescriptors(map_reg, scratch); | |
| 348 __ movp(scratch, | |
| 349 FieldOperand(scratch, DescriptorArray::GetValueOffset(descriptor))); | |
| 350 __ cmpp(value_reg, scratch); | |
| 351 __ j(not_equal, miss_label); | 342 __ j(not_equal, miss_label); |
| 352 } | 343 } |
| 353 | 344 |
| 354 | 345 |
| 355 void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type, | 346 void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type, |
| 356 Register value_reg, | 347 Register value_reg, |
| 357 Label* miss_label) { | 348 Label* miss_label) { |
| 358 __ JumpIfSmi(value_reg, miss_label); | 349 __ JumpIfSmi(value_reg, miss_label); |
| 359 HeapType::Iterator<Map> it = field_type->Classes(); | 350 HeapType::Iterator<Map> it = field_type->Classes(); |
| 360 if (!it.Done()) { | 351 if (!it.Done()) { |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 // Return the generated code. | 693 // Return the generated code. |
| 703 return GetCode(kind(), Code::NORMAL, name); | 694 return GetCode(kind(), Code::NORMAL, name); |
| 704 } | 695 } |
| 705 | 696 |
| 706 | 697 |
| 707 #undef __ | 698 #undef __ |
| 708 } | 699 } |
| 709 } // namespace v8::internal | 700 } // namespace v8::internal |
| 710 | 701 |
| 711 #endif // V8_TARGET_ARCH_X64 | 702 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |