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

Side by Side Diff: src/compiler/js-typed-lowering.h

Issue 1213803008: [turbofan] Right hand side of shifts needs ToUint32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « no previous file | src/compiler/js-typed-lowering.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 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 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 #include "src/compiler/opcodes.h" 9 #include "src/compiler/opcodes.h"
10 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 JSOperatorBuilder* javascript() const; 80 JSOperatorBuilder* javascript() const;
81 CommonOperatorBuilder* common() const; 81 CommonOperatorBuilder* common() const;
82 SimplifiedOperatorBuilder* simplified() { return &simplified_; } 82 SimplifiedOperatorBuilder* simplified() { return &simplified_; }
83 MachineOperatorBuilder* machine() const; 83 MachineOperatorBuilder* machine() const;
84 84
85 // Limits up to which context allocations are inlined. 85 // Limits up to which context allocations are inlined.
86 static const int kBlockContextAllocationLimit = 16; 86 static const int kBlockContextAllocationLimit = 16;
87 87
88 JSGraph* jsgraph_; 88 JSGraph* jsgraph_;
89 SimplifiedOperatorBuilder simplified_; 89 SimplifiedOperatorBuilder simplified_;
90 Type* zero_range_;
91 Type* one_range_;
92 Type* zero_thirtyone_range_;
93 Type* shifted_int32_ranges_[4]; 90 Type* shifted_int32_ranges_[4];
94 }; 91 };
95 92
96 } // namespace compiler 93 } // namespace compiler
97 } // namespace internal 94 } // namespace internal
98 } // namespace v8 95 } // namespace v8
99 96
100 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 97 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698