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

Side by Side Diff: src/ic/ic.cc

Issue 497083002: Move handler compilers to handler-compiler (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix include 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/ic/ia32/ic-compiler-ia32.cc ('k') | src/ic/ic-compiler.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 "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api.h" 8 #include "src/api.h"
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
11 #include "src/conversions.h" 11 #include "src/conversions.h"
12 #include "src/execution.h" 12 #include "src/execution.h"
13 #include "src/ic/call-optimization.h" 13 #include "src/ic/call-optimization.h"
14 #include "src/ic/handler-compiler.h"
14 #include "src/ic/ic-inl.h" 15 #include "src/ic/ic-inl.h"
15 #include "src/ic/ic-compiler.h" 16 #include "src/ic/ic-compiler.h"
16 #include "src/ic/stub-cache.h" 17 #include "src/ic/stub-cache.h"
17 #include "src/prototype.h" 18 #include "src/prototype.h"
18 #include "src/runtime.h" 19 #include "src/runtime.h"
19 20
20 namespace v8 { 21 namespace v8 {
21 namespace internal { 22 namespace internal {
22 23
23 char IC::TransitionMarkFromState(IC::State state) { 24 char IC::TransitionMarkFromState(IC::State state) {
(...skipping 3167 matching lines...) Expand 10 before | Expand all | Expand 10 after
3191 static const Address IC_utilities[] = { 3192 static const Address IC_utilities[] = {
3192 #define ADDR(name) FUNCTION_ADDR(name), 3193 #define ADDR(name) FUNCTION_ADDR(name),
3193 IC_UTIL_LIST(ADDR) NULL 3194 IC_UTIL_LIST(ADDR) NULL
3194 #undef ADDR 3195 #undef ADDR
3195 }; 3196 };
3196 3197
3197 3198
3198 Address IC::AddressFromUtilityId(IC::UtilityId id) { return IC_utilities[id]; } 3199 Address IC::AddressFromUtilityId(IC::UtilityId id) { return IC_utilities[id]; }
3199 } 3200 }
3200 } // namespace v8::internal 3201 } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ic/ia32/ic-compiler-ia32.cc ('k') | src/ic/ic-compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698