| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/x87/codegen-x87.h" |
| 6 |
| 5 #if V8_TARGET_ARCH_X87 | 7 #if V8_TARGET_ARCH_X87 |
| 6 | 8 |
| 7 #include "src/codegen.h" | 9 #include "src/codegen.h" |
| 8 #include "src/heap/heap.h" | 10 #include "src/heap/heap.h" |
| 9 #include "src/macro-assembler.h" | 11 #include "src/macro-assembler.h" |
| 10 | 12 |
| 11 namespace v8 { | 13 namespace v8 { |
| 12 namespace internal { | 14 namespace internal { |
| 13 | 15 |
| 14 | 16 |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 CodePatcher patcher(sequence, young_length); | 623 CodePatcher patcher(sequence, young_length); |
| 622 patcher.masm()->call(stub->instruction_start(), RelocInfo::NONE32); | 624 patcher.masm()->call(stub->instruction_start(), RelocInfo::NONE32); |
| 623 } | 625 } |
| 624 } | 626 } |
| 625 | 627 |
| 626 | 628 |
| 627 } // namespace internal | 629 } // namespace internal |
| 628 } // namespace v8 | 630 } // namespace v8 |
| 629 | 631 |
| 630 #endif // V8_TARGET_ARCH_X87 | 632 #endif // V8_TARGET_ARCH_X87 |
| OLD | NEW |