OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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" | |
6 | |
7 #include "src/codegen.h" | 5 #include "src/codegen.h" |
8 #include "src/deoptimizer.h" | 6 #include "src/deoptimizer.h" |
9 #include "src/full-codegen/full-codegen.h" | 7 #include "src/full-codegen/full-codegen.h" |
10 #include "src/safepoint-table.h" | 8 #include "src/safepoint-table.h" |
11 | 9 |
12 namespace v8 { | 10 namespace v8 { |
13 namespace internal { | 11 namespace internal { |
14 | 12 |
15 | 13 |
16 int Deoptimizer::patch_size() { | 14 int Deoptimizer::patch_size() { |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 // No embedded constant pool support. | 404 // No embedded constant pool support. |
407 UNREACHABLE(); | 405 UNREACHABLE(); |
408 } | 406 } |
409 | 407 |
410 | 408 |
411 #undef __ | 409 #undef __ |
412 | 410 |
413 | 411 |
414 } // namespace internal | 412 } // namespace internal |
415 } // namespace v8 | 413 } // namespace v8 |
OLD | NEW |