Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: src/runtime.cc

Issue 333013002: Check alpha-sorting of includes during presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/regexp-stack.cc ('k') | src/sampler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <stdlib.h> 5 #include <stdlib.h>
6 #include <limits> 6 #include <limits>
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/accessors.h" 10 #include "src/accessors.h"
11 #include "src/allocation-site-scopes.h" 11 #include "src/allocation-site-scopes.h"
12 #include "src/api.h" 12 #include "src/api.h"
13 #include "src/arguments.h" 13 #include "src/arguments.h"
14 #include "src/bootstrapper.h" 14 #include "src/bootstrapper.h"
15 #include "src/codegen.h" 15 #include "src/codegen.h"
16 #include "src/compilation-cache.h" 16 #include "src/compilation-cache.h"
17 #include "src/compiler.h" 17 #include "src/compiler.h"
18 #include "src/conversions.h" 18 #include "src/conversions.h"
19 #include "src/cpu.h" 19 #include "src/cpu.h"
20 #include "src/cpu-profiler.h" 20 #include "src/cpu-profiler.h"
21 #include "src/date.h"
21 #include "src/dateparser-inl.h" 22 #include "src/dateparser-inl.h"
22 #include "src/debug.h" 23 #include "src/debug.h"
23 #include "src/deoptimizer.h" 24 #include "src/deoptimizer.h"
24 #include "src/date.h"
25 #include "src/execution.h" 25 #include "src/execution.h"
26 #include "src/full-codegen.h" 26 #include "src/full-codegen.h"
27 #include "src/global-handles.h" 27 #include "src/global-handles.h"
28 #include "src/isolate-inl.h" 28 #include "src/isolate-inl.h"
29 #include "src/jsregexp.h"
30 #include "src/jsregexp-inl.h"
31 #include "src/json-parser.h" 29 #include "src/json-parser.h"
32 #include "src/json-stringifier.h" 30 #include "src/json-stringifier.h"
31 #include "src/jsregexp-inl.h"
32 #include "src/jsregexp.h"
33 #include "src/liveedit.h" 33 #include "src/liveedit.h"
34 #include "src/misc-intrinsics.h" 34 #include "src/misc-intrinsics.h"
35 #include "src/parser.h" 35 #include "src/parser.h"
36 #include "src/platform.h" 36 #include "src/platform.h"
37 #include "src/runtime.h"
37 #include "src/runtime-profiler.h" 38 #include "src/runtime-profiler.h"
38 #include "src/runtime.h"
39 #include "src/scopeinfo.h" 39 #include "src/scopeinfo.h"
40 #include "src/smart-pointers.h" 40 #include "src/smart-pointers.h"
41 #include "src/string-search.h" 41 #include "src/string-search.h"
42 #include "src/stub-cache.h" 42 #include "src/stub-cache.h"
43 #include "src/uri.h" 43 #include "src/uri.h"
44 #include "src/v8threads.h" 44 #include "src/v8threads.h"
45 #include "src/vm-state-inl.h" 45 #include "src/vm-state-inl.h"
46 46
47 #ifdef V8_I18N_SUPPORT 47 #ifdef V8_I18N_SUPPORT
48 #include "src/i18n.h" 48 #include "src/i18n.h"
(...skipping 15155 matching lines...) Expand 10 before | Expand all | Expand 10 after
15204 } 15204 }
15205 return NULL; 15205 return NULL;
15206 } 15206 }
15207 15207
15208 15208
15209 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { 15209 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) {
15210 return &(kIntrinsicFunctions[static_cast<int>(id)]); 15210 return &(kIntrinsicFunctions[static_cast<int>(id)]);
15211 } 15211 }
15212 15212
15213 } } // namespace v8::internal 15213 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/regexp-stack.cc ('k') | src/sampler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698