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

Side by Side Diff: src/compiler/raw-machine-assembler.cc

Issue 1239793002: [interpreter] Add basic framework for bytecode handler code generation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review comments Created 5 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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/raw-machine-assembler.h"
6
5 #include "src/code-factory.h" 7 #include "src/code-factory.h"
6 #include "src/compiler/pipeline.h" 8 #include "src/compiler/pipeline.h"
7 #include "src/compiler/raw-machine-assembler.h"
8 #include "src/compiler/scheduler.h" 9 #include "src/compiler/scheduler.h"
9 10
10 namespace v8 { 11 namespace v8 {
11 namespace internal { 12 namespace internal {
12 namespace compiler { 13 namespace compiler {
13 14
14 RawMachineAssembler::RawMachineAssembler(Isolate* isolate, Graph* graph, 15 RawMachineAssembler::RawMachineAssembler(Isolate* isolate, Graph* graph,
15 CallDescriptor* call_descriptor, 16 CallDescriptor* call_descriptor,
16 MachineType word, 17 MachineType word,
17 MachineOperatorBuilder::Flags flags) 18 MachineOperatorBuilder::Flags flags)
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 : CurrentBlock(); 250 : CurrentBlock();
250 if (op->opcode() != IrOpcode::kReturn) { 251 if (op->opcode() != IrOpcode::kReturn) {
251 schedule()->AddNode(block, node); 252 schedule()->AddNode(block, node);
252 } 253 }
253 return node; 254 return node;
254 } 255 }
255 256
256 } // namespace compiler 257 } // namespace compiler
257 } // namespace internal 258 } // namespace internal
258 } // namespace v8 259 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698