| 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/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_X87 | 7 #if V8_TARGET_ARCH_X87 |
| 8 | 8 |
| 9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
| 10 #include "src/code-factory.h" | 10 #include "src/code-factory.h" |
| 11 #include "src/code-stubs.h" | 11 #include "src/code-stubs.h" |
| 12 #include "src/codegen.h" | 12 #include "src/codegen.h" |
| 13 #include "src/cpu-profiler.h" |
| 13 #include "src/deoptimizer.h" | 14 #include "src/deoptimizer.h" |
| 14 #include "src/hydrogen-osr.h" | 15 #include "src/hydrogen-osr.h" |
| 15 #include "src/ic/ic.h" | 16 #include "src/ic/ic.h" |
| 16 #include "src/ic/stub-cache.h" | 17 #include "src/ic/stub-cache.h" |
| 17 #include "src/x87/lithium-codegen-x87.h" | 18 #include "src/x87/lithium-codegen-x87.h" |
| 18 | 19 |
| 19 namespace v8 { | 20 namespace v8 { |
| 20 namespace internal { | 21 namespace internal { |
| 21 | 22 |
| 22 | 23 |
| (...skipping 6356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6379 CallRuntime(Runtime::kPushBlockContext, 2, instr); | 6380 CallRuntime(Runtime::kPushBlockContext, 2, instr); |
| 6380 RecordSafepoint(Safepoint::kNoLazyDeopt); | 6381 RecordSafepoint(Safepoint::kNoLazyDeopt); |
| 6381 } | 6382 } |
| 6382 | 6383 |
| 6383 | 6384 |
| 6384 #undef __ | 6385 #undef __ |
| 6385 | 6386 |
| 6386 } } // namespace v8::internal | 6387 } } // namespace v8::internal |
| 6387 | 6388 |
| 6388 #endif // V8_TARGET_ARCH_X87 | 6389 #endif // V8_TARGET_ARCH_X87 |
| OLD | NEW |