| 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/codegen.h" | 9 #include "src/codegen.h" |
| 10 #include "src/debug.h" | 10 #include "src/debug.h" |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 316 |
| 317 // Re-run JSFunction, edi is function, esi is context. | 317 // Re-run JSFunction, edi is function, esi is context. |
| 318 __ jmp(edx); | 318 __ jmp(edx); |
| 319 } | 319 } |
| 320 | 320 |
| 321 | 321 |
| 322 const bool LiveEdit::kFrameDropperSupported = true; | 322 const bool LiveEdit::kFrameDropperSupported = true; |
| 323 | 323 |
| 324 #undef __ | 324 #undef __ |
| 325 | 325 |
| 326 } } // namespace v8::internal | 326 } // namespace internal |
| 327 } // namespace v8 |
| 327 | 328 |
| 328 #endif // V8_TARGET_ARCH_X87 | 329 #endif // V8_TARGET_ARCH_X87 |
| OLD | NEW |