| 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 <errno.h> | 5 #include <errno.h> |
| 6 #include <stdlib.h> | 6 #include <stdlib.h> |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 #include <sys/stat.h> | 8 #include <sys/stat.h> |
| 9 | 9 |
| 10 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "src/api.h" | 25 #include "src/api.h" |
| 26 #include "src/base/cpu.h" | 26 #include "src/base/cpu.h" |
| 27 #include "src/base/debug/stack_trace.h" | 27 #include "src/base/debug/stack_trace.h" |
| 28 #include "src/base/logging.h" | 28 #include "src/base/logging.h" |
| 29 #include "src/base/platform/platform.h" | 29 #include "src/base/platform/platform.h" |
| 30 #include "src/base/platform/time.h" | 30 #include "src/base/platform/time.h" |
| 31 #include "src/base/sys-info.h" | 31 #include "src/base/sys-info.h" |
| 32 #include "src/basic-block-profiler.h" | 32 #include "src/basic-block-profiler.h" |
| 33 #include "src/interpreter/interpreter.h" | 33 #include "src/interpreter/interpreter.h" |
| 34 #include "src/msan.h" | 34 #include "src/msan.h" |
| 35 #include "src/objects-inl.h" |
| 35 #include "src/snapshot/natives.h" | 36 #include "src/snapshot/natives.h" |
| 36 #include "src/utils.h" | 37 #include "src/utils.h" |
| 37 #include "src/v8.h" | 38 #include "src/v8.h" |
| 38 | 39 |
| 39 #ifdef V8_INSPECTOR_ENABLED | 40 #ifdef V8_INSPECTOR_ENABLED |
| 40 #include "include/v8-inspector.h" | 41 #include "include/v8-inspector.h" |
| 41 #endif // V8_INSPECTOR_ENABLED | 42 #endif // V8_INSPECTOR_ENABLED |
| 42 | 43 |
| 43 #if !defined(_WIN32) && !defined(_WIN64) | 44 #if !defined(_WIN32) && !defined(_WIN64) |
| 44 #include <unistd.h> // NOLINT | 45 #include <unistd.h> // NOLINT |
| (...skipping 3035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3080 } | 3081 } |
| 3081 | 3082 |
| 3082 } // namespace v8 | 3083 } // namespace v8 |
| 3083 | 3084 |
| 3084 | 3085 |
| 3085 #ifndef GOOGLE3 | 3086 #ifndef GOOGLE3 |
| 3086 int main(int argc, char* argv[]) { | 3087 int main(int argc, char* argv[]) { |
| 3087 return v8::Shell::Main(argc, argv); | 3088 return v8::Shell::Main(argc, argv); |
| 3088 } | 3089 } |
| 3089 #endif | 3090 #endif |
| OLD | NEW |