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

Side by Side Diff: src/runtime.cc

Issue 304153016: Use full include paths everywhere (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/runtime.h ('k') | src/runtime-profiler.h » ('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 "v8.h" 8 #include "src/v8.h"
9 9
10 #include "accessors.h" 10 #include "src/accessors.h"
11 #include "allocation-site-scopes.h" 11 #include "src/allocation-site-scopes.h"
12 #include "api.h" 12 #include "src/api.h"
13 #include "arguments.h" 13 #include "src/arguments.h"
14 #include "bootstrapper.h" 14 #include "src/bootstrapper.h"
15 #include "codegen.h" 15 #include "src/codegen.h"
16 #include "compilation-cache.h" 16 #include "src/compilation-cache.h"
17 #include "compiler.h" 17 #include "src/compiler.h"
18 #include "conversions.h" 18 #include "src/conversions.h"
19 #include "cpu.h" 19 #include "src/cpu.h"
20 #include "cpu-profiler.h" 20 #include "src/cpu-profiler.h"
21 #include "dateparser-inl.h" 21 #include "src/dateparser-inl.h"
22 #include "debug.h" 22 #include "src/debug.h"
23 #include "deoptimizer.h" 23 #include "src/deoptimizer.h"
24 #include "date.h" 24 #include "src/date.h"
25 #include "execution.h" 25 #include "src/execution.h"
26 #include "full-codegen.h" 26 #include "src/full-codegen.h"
27 #include "global-handles.h" 27 #include "src/global-handles.h"
28 #include "isolate-inl.h" 28 #include "src/isolate-inl.h"
29 #include "jsregexp.h" 29 #include "src/jsregexp.h"
30 #include "jsregexp-inl.h" 30 #include "src/jsregexp-inl.h"
31 #include "json-parser.h" 31 #include "src/json-parser.h"
32 #include "json-stringifier.h" 32 #include "src/json-stringifier.h"
33 #include "liveedit.h" 33 #include "src/liveedit.h"
34 #include "misc-intrinsics.h" 34 #include "src/misc-intrinsics.h"
35 #include "parser.h" 35 #include "src/parser.h"
36 #include "platform.h" 36 #include "src/platform.h"
37 #include "runtime-profiler.h" 37 #include "src/runtime-profiler.h"
38 #include "runtime.h" 38 #include "src/runtime.h"
39 #include "scopeinfo.h" 39 #include "src/scopeinfo.h"
40 #include "smart-pointers.h" 40 #include "src/smart-pointers.h"
41 #include "string-search.h" 41 #include "src/string-search.h"
42 #include "stub-cache.h" 42 #include "src/stub-cache.h"
43 #include "uri.h" 43 #include "src/uri.h"
44 #include "v8threads.h" 44 #include "src/v8threads.h"
45 #include "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 "i18n.h" 48 #include "src/i18n.h"
49 #include "unicode/brkiter.h" 49 #include "unicode/brkiter.h"
50 #include "unicode/calendar.h" 50 #include "unicode/calendar.h"
51 #include "unicode/coll.h" 51 #include "unicode/coll.h"
52 #include "unicode/curramt.h" 52 #include "unicode/curramt.h"
53 #include "unicode/datefmt.h" 53 #include "unicode/datefmt.h"
54 #include "unicode/dcfmtsym.h" 54 #include "unicode/dcfmtsym.h"
55 #include "unicode/decimfmt.h" 55 #include "unicode/decimfmt.h"
56 #include "unicode/dtfmtsym.h" 56 #include "unicode/dtfmtsym.h"
57 #include "unicode/dtptngen.h" 57 #include "unicode/dtptngen.h"
58 #include "unicode/locid.h" 58 #include "unicode/locid.h"
(...skipping 15059 matching lines...) Expand 10 before | Expand all | Expand 10 after
15118 } 15118 }
15119 return NULL; 15119 return NULL;
15120 } 15120 }
15121 15121
15122 15122
15123 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { 15123 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) {
15124 return &(kIntrinsicFunctions[static_cast<int>(id)]); 15124 return &(kIntrinsicFunctions[static_cast<int>(id)]);
15125 } 15125 }
15126 15126
15127 } } // namespace v8::internal 15127 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/runtime.h ('k') | src/runtime-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698