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

Side by Side Diff: src/code-stubs.h

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/builtins.cc ('k') | src/code-stubs.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 #ifndef V8_CODE_STUBS_H_ 5 #ifndef V8_CODE_STUBS_H_
6 #define V8_CODE_STUBS_H_ 6 #define V8_CODE_STUBS_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
11 #include "src/globals.h" 11 #include "src/globals.h"
12 #include "src/ic/ic.h"
12 #include "src/macro-assembler.h" 13 #include "src/macro-assembler.h"
13 #include "src/ostreams.h" 14 #include "src/ostreams.h"
14 15
15 namespace v8 { 16 namespace v8 {
16 namespace internal { 17 namespace internal {
17 18
18 // List of code stubs used on all platforms. 19 // List of code stubs used on all platforms.
19 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \ 20 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \
20 V(CallFunction) \ 21 V(CallFunction) \
21 V(CallConstruct) \ 22 V(CallConstruct) \
(...skipping 2504 matching lines...) Expand 10 before | Expand all | Expand 10 after
2526 2527
2527 2528
2528 class CallDescriptors { 2529 class CallDescriptors {
2529 public: 2530 public:
2530 static void InitializeForIsolate(Isolate* isolate); 2531 static void InitializeForIsolate(Isolate* isolate);
2531 }; 2532 };
2532 2533
2533 } } // namespace v8::internal 2534 } } // namespace v8::internal
2534 2535
2535 #endif // V8_CODE_STUBS_H_ 2536 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698