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

Side by Side Diff: src/runtime.cc

Issue 483683005: Move IC code into a subdir and move ic-compilation related code from stub-cache into ic-compiler (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix BUILD.gn Created 6 years, 4 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/isolate.cc ('k') | src/serialize.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"
(...skipping 22 matching lines...) Expand all
33 #include "src/jsregexp.h" 33 #include "src/jsregexp.h"
34 #include "src/liveedit.h" 34 #include "src/liveedit.h"
35 #include "src/misc-intrinsics.h" 35 #include "src/misc-intrinsics.h"
36 #include "src/parser.h" 36 #include "src/parser.h"
37 #include "src/prototype.h" 37 #include "src/prototype.h"
38 #include "src/runtime.h" 38 #include "src/runtime.h"
39 #include "src/runtime-profiler.h" 39 #include "src/runtime-profiler.h"
40 #include "src/scopeinfo.h" 40 #include "src/scopeinfo.h"
41 #include "src/smart-pointers.h" 41 #include "src/smart-pointers.h"
42 #include "src/string-search.h" 42 #include "src/string-search.h"
43 #include "src/stub-cache.h"
44 #include "src/uri.h" 43 #include "src/uri.h"
45 #include "src/utils.h" 44 #include "src/utils.h"
46 #include "src/v8threads.h" 45 #include "src/v8threads.h"
47 #include "src/vm-state-inl.h" 46 #include "src/vm-state-inl.h"
48 #include "third_party/fdlibm/fdlibm.h" 47 #include "third_party/fdlibm/fdlibm.h"
49 48
50 #ifdef V8_I18N_SUPPORT 49 #ifdef V8_I18N_SUPPORT
51 #include "src/i18n.h" 50 #include "src/i18n.h"
52 #include "unicode/brkiter.h" 51 #include "unicode/brkiter.h"
53 #include "unicode/calendar.h" 52 #include "unicode/calendar.h"
(...skipping 15590 matching lines...) Expand 10 before | Expand all | Expand 10 after
15644 } 15643 }
15645 return NULL; 15644 return NULL;
15646 } 15645 }
15647 15646
15648 15647
15649 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { 15648 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) {
15650 return &(kIntrinsicFunctions[static_cast<int>(id)]); 15649 return &(kIntrinsicFunctions[static_cast<int>(id)]);
15651 } 15650 }
15652 15651
15653 } } // namespace v8::internal 15652 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698