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

Side by Side Diff: src/compiler/js-operator.cc

Issue 2063823006: [turbofan] Fix includes for JSOperatorBuilder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | src/type-feedback-vector.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 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/js-operator.h" 5 #include "src/compiler/js-operator.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/base/lazy-instance.h" 9 #include "src/base/lazy-instance.h"
10 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
11 #include "src/compiler/operator.h" 11 #include "src/compiler/operator.h"
12 #include "src/objects-inl.h" // TODO(mstarzinger): Temporary cycle breaker! 12 #include "src/handles-inl.h"
13 #include "src/type-feedback-vector-inl.h" 13 #include "src/type-feedback-vector.h"
14 14
15 namespace v8 { 15 namespace v8 {
16 namespace internal { 16 namespace internal {
17 namespace compiler { 17 namespace compiler {
18 18
19 VectorSlotPair::VectorSlotPair() {} 19 VectorSlotPair::VectorSlotPair() {}
20 20
21 21
22 int VectorSlotPair::index() const { 22 int VectorSlotPair::index() const {
23 return vector_.is_null() ? -1 : vector_->GetIndex(slot_); 23 return vector_.is_null() ? -1 : vector_->GetIndex(slot_);
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 return new (zone()) Operator1<Handle<ScopeInfo>>( // -- 830 return new (zone()) Operator1<Handle<ScopeInfo>>( // --
831 IrOpcode::kJSCreateScriptContext, Operator::kNoProperties, // opcode 831 IrOpcode::kJSCreateScriptContext, Operator::kNoProperties, // opcode
832 "JSCreateScriptContext", // name 832 "JSCreateScriptContext", // name
833 1, 1, 1, 1, 1, 2, // counts 833 1, 1, 1, 1, 1, 2, // counts
834 scpope_info); // parameter 834 scpope_info); // parameter
835 } 835 }
836 836
837 } // namespace compiler 837 } // namespace compiler
838 } // namespace internal 838 } // namespace internal
839 } // namespace v8 839 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/type-feedback-vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698