OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 20 matching lines...) Expand all Loading... |
31 #include "v8.h" | 31 #include "v8.h" |
32 | 32 |
33 #include "accessors.h" | 33 #include "accessors.h" |
34 #include "allocation-site-scopes.h" | 34 #include "allocation-site-scopes.h" |
35 #include "api.h" | 35 #include "api.h" |
36 #include "arguments.h" | 36 #include "arguments.h" |
37 #include "bootstrapper.h" | 37 #include "bootstrapper.h" |
38 #include "codegen.h" | 38 #include "codegen.h" |
39 #include "compilation-cache.h" | 39 #include "compilation-cache.h" |
40 #include "compiler.h" | 40 #include "compiler.h" |
| 41 #include "conversions.h" |
41 #include "cpu.h" | 42 #include "cpu.h" |
42 #include "cpu-profiler.h" | 43 #include "cpu-profiler.h" |
43 #include "dateparser-inl.h" | 44 #include "dateparser-inl.h" |
44 #include "debug.h" | 45 #include "debug.h" |
45 #include "deoptimizer.h" | 46 #include "deoptimizer.h" |
46 #include "date.h" | 47 #include "date.h" |
47 #include "execution.h" | 48 #include "execution.h" |
48 #include "full-codegen.h" | 49 #include "full-codegen.h" |
49 #include "global-handles.h" | 50 #include "global-handles.h" |
50 #include "isolate-inl.h" | 51 #include "isolate-inl.h" |
51 #include "jsregexp.h" | 52 #include "jsregexp.h" |
52 #include "jsregexp-inl.h" | 53 #include "jsregexp-inl.h" |
53 #include "json-parser.h" | 54 #include "json-parser.h" |
54 #include "json-stringifier.h" | 55 #include "json-stringifier.h" |
55 #include "liveedit.h" | 56 #include "liveedit.h" |
56 #include "misc-intrinsics.h" | 57 #include "misc-intrinsics.h" |
57 #include "parser.h" | 58 #include "parser.h" |
58 #include "platform.h" | 59 #include "platform.h" |
59 #include "runtime-profiler.h" | 60 #include "runtime-profiler.h" |
60 #include "runtime.h" | 61 #include "runtime.h" |
61 #include "scopeinfo.h" | 62 #include "scopeinfo.h" |
62 #include "smart-pointers.h" | 63 #include "smart-pointers.h" |
63 #include "string-search.h" | 64 #include "string-search.h" |
64 #include "stub-cache.h" | 65 #include "stub-cache.h" |
65 #include "uri.h" | 66 #include "uri.h" |
66 #include "v8conversions.h" | |
67 #include "v8threads.h" | 67 #include "v8threads.h" |
68 #include "vm-state-inl.h" | 68 #include "vm-state-inl.h" |
69 | 69 |
70 #ifdef V8_I18N_SUPPORT | 70 #ifdef V8_I18N_SUPPORT |
71 #include "i18n.h" | 71 #include "i18n.h" |
72 #include "unicode/brkiter.h" | 72 #include "unicode/brkiter.h" |
73 #include "unicode/calendar.h" | 73 #include "unicode/calendar.h" |
74 #include "unicode/coll.h" | 74 #include "unicode/coll.h" |
75 #include "unicode/curramt.h" | 75 #include "unicode/curramt.h" |
76 #include "unicode/datefmt.h" | 76 #include "unicode/datefmt.h" |
(...skipping 15067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15144 } | 15144 } |
15145 return NULL; | 15145 return NULL; |
15146 } | 15146 } |
15147 | 15147 |
15148 | 15148 |
15149 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { | 15149 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { |
15150 return &(kIntrinsicFunctions[static_cast<int>(id)]); | 15150 return &(kIntrinsicFunctions[static_cast<int>(id)]); |
15151 } | 15151 } |
15152 | 15152 |
15153 } } // namespace v8::internal | 15153 } } // namespace v8::internal |
OLD | NEW |