OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/allocation-site-scopes.h" | 8 #include "src/allocation-site-scopes.h" |
9 #include "src/api.h" | 9 #include "src/api.h" |
10 #include "src/arguments.h" | 10 #include "src/arguments.h" |
11 #include "src/bootstrapper.h" | 11 #include "src/bootstrapper.h" |
| 12 #include "src/code-stubs.h" |
12 #include "src/codegen.h" | 13 #include "src/codegen.h" |
13 #include "src/code-stubs.h" | |
14 #include "src/cpu-profiler.h" | 14 #include "src/cpu-profiler.h" |
| 15 #include "src/date.h" |
15 #include "src/debug.h" | 16 #include "src/debug.h" |
16 #include "src/deoptimizer.h" | 17 #include "src/deoptimizer.h" |
17 #include "src/date.h" | |
18 #include "src/elements.h" | 18 #include "src/elements.h" |
19 #include "src/execution.h" | 19 #include "src/execution.h" |
| 20 #include "src/field-index-inl.h" |
20 #include "src/field-index.h" | 21 #include "src/field-index.h" |
21 #include "src/field-index-inl.h" | |
22 #include "src/full-codegen.h" | 22 #include "src/full-codegen.h" |
23 #include "src/hydrogen.h" | 23 #include "src/hydrogen.h" |
24 #include "src/isolate-inl.h" | 24 #include "src/isolate-inl.h" |
25 #include "src/log.h" | 25 #include "src/log.h" |
26 #include "src/lookup.h" | 26 #include "src/lookup.h" |
| 27 #include "src/macro-assembler.h" |
| 28 #include "src/mark-compact.h" |
27 #include "src/objects-inl.h" | 29 #include "src/objects-inl.h" |
28 #include "src/objects-visiting-inl.h" | 30 #include "src/objects-visiting-inl.h" |
29 #include "src/macro-assembler.h" | |
30 #include "src/mark-compact.h" | |
31 #include "src/safepoint-table.h" | 31 #include "src/safepoint-table.h" |
32 #include "src/string-search.h" | 32 #include "src/string-search.h" |
33 #include "src/string-stream.h" | 33 #include "src/string-stream.h" |
34 #include "src/utils.h" | 34 #include "src/utils.h" |
35 | 35 |
36 #ifdef ENABLE_DISASSEMBLER | 36 #ifdef ENABLE_DISASSEMBLER |
37 #include "src/disasm.h" | 37 #include "src/disasm.h" |
38 #include "src/disassembler.h" | 38 #include "src/disassembler.h" |
39 #endif | 39 #endif |
40 | 40 |
(...skipping 16969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
17010 #define ERROR_MESSAGES_TEXTS(C, T) T, | 17010 #define ERROR_MESSAGES_TEXTS(C, T) T, |
17011 static const char* error_messages_[] = { | 17011 static const char* error_messages_[] = { |
17012 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) | 17012 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) |
17013 }; | 17013 }; |
17014 #undef ERROR_MESSAGES_TEXTS | 17014 #undef ERROR_MESSAGES_TEXTS |
17015 return error_messages_[reason]; | 17015 return error_messages_[reason]; |
17016 } | 17016 } |
17017 | 17017 |
17018 | 17018 |
17019 } } // namespace v8::internal | 17019 } } // namespace v8::internal |
OLD | NEW |