| 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_IA32 | 7 #if V8_TARGET_ARCH_X87 |
| 8 | 8 |
| 9 #include "src/ic/access-compiler.h" | 9 #include "src/ic/access-compiler.h" |
| 10 | 10 |
| 11 namespace v8 { | 11 namespace v8 { |
| 12 namespace internal { | 12 namespace internal { |
| 13 | 13 |
| 14 #define __ ACCESS_MASM(masm) | 14 #define __ ACCESS_MASM(masm) |
| 15 | 15 |
| 16 void PropertyAccessCompiler::GenerateTailCall(MacroAssembler* masm, | 16 void PropertyAccessCompiler::GenerateTailCall(MacroAssembler* masm, |
| 17 Handle<Code> code) { | 17 Handle<Code> code) { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 Register name = StoreIC::NameRegister(); | 34 Register name = StoreIC::NameRegister(); |
| 35 DCHECK(ebx.is(KeyedStoreIC::MapRegister())); | 35 DCHECK(ebx.is(KeyedStoreIC::MapRegister())); |
| 36 static Register registers[] = {receiver, name, ebx, edi, no_reg}; | 36 static Register registers[] = {receiver, name, ebx, edi, no_reg}; |
| 37 return registers; | 37 return registers; |
| 38 } | 38 } |
| 39 | 39 |
| 40 #undef __ | 40 #undef __ |
| 41 } | 41 } |
| 42 } // namespace v8::internal | 42 } // namespace v8::internal |
| 43 | 43 |
| 44 #endif // V8_TARGET_ARCH_IA32 | 44 #endif // V8_TARGET_ARCH_X87 |
| OLD | NEW |