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

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

Issue 718193003: [turbofan] Avoid useless bit masking in typed lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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/js-graph.h" 9 #include "src/compiler/js-graph.h"
10 #include "src/compiler/machine-operator.h" 10 #include "src/compiler/machine-operator.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 JSOperatorBuilder* javascript() { return jsgraph_->javascript(); } 52 JSOperatorBuilder* javascript() { return jsgraph_->javascript(); }
53 CommonOperatorBuilder* common() { return jsgraph_->common(); } 53 CommonOperatorBuilder* common() { return jsgraph_->common(); }
54 SimplifiedOperatorBuilder* simplified() { return &simplified_; } 54 SimplifiedOperatorBuilder* simplified() { return &simplified_; }
55 MachineOperatorBuilder* machine() { return jsgraph_->machine(); } 55 MachineOperatorBuilder* machine() { return jsgraph_->machine(); }
56 56
57 JSGraph* jsgraph_; 57 JSGraph* jsgraph_;
58 SimplifiedOperatorBuilder simplified_; 58 SimplifiedOperatorBuilder simplified_;
59 Type* zero_range_; 59 Type* zero_range_;
60 Type* one_range_; 60 Type* one_range_;
61 Type* zero_thirtyone_range_;
61 }; 62 };
62 63
63 } // namespace compiler 64 } // namespace compiler
64 } // namespace internal 65 } // namespace internal
65 } // namespace v8 66 } // namespace v8
66 67
67 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 68 #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