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

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

Issue 1514413002: [Interpreter] Generate valid FrameStates in the Bytecode Graph Builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_materialize_sf
Patch Set: Add checks that environment doesn't change after state nodes are attached 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 | « src/compiler/instruction.cc ('k') | 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/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
(...skipping 17 matching lines...) Expand all
28 class SimplifiedOperatorBuilder; 28 class SimplifiedOperatorBuilder;
29 29
30 30
31 // Lowers JS-level operators to simplified operators based on types. 31 // Lowers JS-level operators to simplified operators based on types.
32 class JSTypedLowering final : public AdvancedReducer { 32 class JSTypedLowering final : public AdvancedReducer {
33 public: 33 public:
34 // Flags that control the mode of operation. 34 // Flags that control the mode of operation.
35 enum Flag { 35 enum Flag {
36 kNoFlags = 0u, 36 kNoFlags = 0u,
37 kDeoptimizationEnabled = 1u << 0, 37 kDeoptimizationEnabled = 1u << 0,
38 kDisableBinaryOpReduction = 1u << 1,
38 }; 39 };
39 typedef base::Flags<Flag> Flags; 40 typedef base::Flags<Flag> Flags;
40 41
41 JSTypedLowering(Editor* editor, CompilationDependencies* dependencies, 42 JSTypedLowering(Editor* editor, CompilationDependencies* dependencies,
42 Flags flags, JSGraph* jsgraph, Zone* zone); 43 Flags flags, JSGraph* jsgraph, Zone* zone);
43 ~JSTypedLowering() final {} 44 ~JSTypedLowering() final {}
44 45
45 Reduction Reduce(Node* node) final; 46 Reduction Reduce(Node* node) final;
46 47
47 private: 48 private:
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 TypeCache const& type_cache_; 127 TypeCache const& type_cache_;
127 }; 128 };
128 129
129 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 130 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
130 131
131 } // namespace compiler 132 } // namespace compiler
132 } // namespace internal 133 } // namespace internal
133 } // namespace v8 134 } // namespace v8
134 135
135 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 136 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698