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

Side by Side Diff: src/compiler/code-assembler.h

Issue 2145023002: [builtins] move builtin files to src/builtins/. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 4 years, 5 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
« no previous file with comments | « src/builtins/x87/builtins-x87.cc ('k') | src/counters.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_COMPILER_CODE_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ 6 #define V8_COMPILER_CODE_ASSEMBLER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 // Clients of this interface shouldn't depend on lots of compiler internals. 10 // Clients of this interface shouldn't depend on lots of compiler internals.
11 // Do not include anything from src/compiler here! 11 // Do not include anything from src/compiler here!
12 #include "src/allocation.h" 12 #include "src/allocation.h"
13 #include "src/builtins.h" 13 #include "src/builtins/builtins.h"
14 #include "src/heap/heap.h" 14 #include "src/heap/heap.h"
15 #include "src/machine-type.h" 15 #include "src/machine-type.h"
16 #include "src/runtime/runtime.h" 16 #include "src/runtime/runtime.h"
17 #include "src/zone-containers.h" 17 #include "src/zone-containers.h"
18 18
19 namespace v8 { 19 namespace v8 {
20 namespace internal { 20 namespace internal {
21 21
22 class Callable; 22 class Callable;
23 class CallInterfaceDescriptor; 23 class CallInterfaceDescriptor;
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 // Map of variables to the list of value nodes that have been added from each 447 // Map of variables to the list of value nodes that have been added from each
448 // merge path in their order of merging. 448 // merge path in their order of merging.
449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
450 }; 450 };
451 451
452 } // namespace compiler 452 } // namespace compiler
453 } // namespace internal 453 } // namespace internal
454 } // namespace v8 454 } // namespace v8
455 455
456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/builtins/x87/builtins-x87.cc ('k') | src/counters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698