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

Side by Side Diff: src/compiler/code-stub-assembler.cc

Issue 1498833002: Move machine-type.h from src/compiler to src/. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 | « BUILD.gn ('k') | src/compiler/common-operator.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 #include "src/compiler/code-stub-assembler.h" 5 #include "src/compiler/code-stub-assembler.h"
6 6
7 #include <ostream> 7 #include <ostream>
8 8
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/compiler/graph.h" 10 #include "src/compiler/graph.h"
11 #include "src/compiler/instruction-selector.h" 11 #include "src/compiler/instruction-selector.h"
12 #include "src/compiler/linkage.h" 12 #include "src/compiler/linkage.h"
13 #include "src/compiler/machine-type.h"
14 #include "src/compiler/pipeline.h" 13 #include "src/compiler/pipeline.h"
15 #include "src/compiler/raw-machine-assembler.h" 14 #include "src/compiler/raw-machine-assembler.h"
16 #include "src/compiler/schedule.h" 15 #include "src/compiler/schedule.h"
17 #include "src/frames.h" 16 #include "src/frames.h"
18 #include "src/interface-descriptors.h" 17 #include "src/interface-descriptors.h"
19 #include "src/interpreter/bytecodes.h" 18 #include "src/interpreter/bytecodes.h"
19 #include "src/machine-type.h"
20 #include "src/macro-assembler.h" 20 #include "src/macro-assembler.h"
21 #include "src/zone.h" 21 #include "src/zone.h"
22 22
23 namespace v8 { 23 namespace v8 {
24 namespace internal { 24 namespace internal {
25 namespace compiler { 25 namespace compiler {
26 26
27 27
28 CodeStubAssembler::CodeStubAssembler(Isolate* isolate, Zone* zone, 28 CodeStubAssembler::CodeStubAssembler(Isolate* isolate, Zone* zone,
29 const CallInterfaceDescriptor& descriptor, 29 const CallInterfaceDescriptor& descriptor,
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 187
188 Graph* CodeStubAssembler::graph() { return raw_assembler_->graph(); } 188 Graph* CodeStubAssembler::graph() { return raw_assembler_->graph(); }
189 189
190 190
191 Zone* CodeStubAssembler::zone() { return raw_assembler_->zone(); } 191 Zone* CodeStubAssembler::zone() { return raw_assembler_->zone(); }
192 192
193 193
194 } // namespace compiler 194 } // namespace compiler
195 } // namespace internal 195 } // namespace internal
196 } // namespace v8 196 } // namespace v8
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/compiler/common-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698