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

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

Issue 2522543008: Merged: Squashed multiple commits. (Closed)
Patch Set: Created 4 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/js-operator.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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 Reduction Reduce(Node* node) final; 42 Reduction Reduce(Node* node) final;
43 43
44 private: 44 private:
45 friend class JSBinopReduction; 45 friend class JSBinopReduction;
46 46
47 Reduction ReduceJSAdd(Node* node); 47 Reduction ReduceJSAdd(Node* node);
48 Reduction ReduceJSComparison(Node* node); 48 Reduction ReduceJSComparison(Node* node);
49 Reduction ReduceJSLoadNamed(Node* node); 49 Reduction ReduceJSLoadNamed(Node* node);
50 Reduction ReduceJSLoadProperty(Node* node); 50 Reduction ReduceJSLoadProperty(Node* node);
51 Reduction ReduceJSStoreProperty(Node* node); 51 Reduction ReduceJSStoreProperty(Node* node);
52 Reduction ReduceJSInstanceOf(Node* node); 52 Reduction ReduceJSOrdinaryHasInstance(Node* node);
53 Reduction ReduceJSLoadContext(Node* node); 53 Reduction ReduceJSLoadContext(Node* node);
54 Reduction ReduceJSStoreContext(Node* node); 54 Reduction ReduceJSStoreContext(Node* node);
55 Reduction ReduceJSEqualTypeOf(Node* node, bool invert); 55 Reduction ReduceJSEqualTypeOf(Node* node, bool invert);
56 Reduction ReduceJSEqual(Node* node, bool invert); 56 Reduction ReduceJSEqual(Node* node, bool invert);
57 Reduction ReduceJSStrictEqual(Node* node, bool invert); 57 Reduction ReduceJSStrictEqual(Node* node, bool invert);
58 Reduction ReduceJSToBoolean(Node* node); 58 Reduction ReduceJSToBoolean(Node* node);
59 Reduction ReduceJSToInteger(Node* node); 59 Reduction ReduceJSToInteger(Node* node);
60 Reduction ReduceJSToLength(Node* node); 60 Reduction ReduceJSToLength(Node* node);
61 Reduction ReduceJSToNumberInput(Node* input); 61 Reduction ReduceJSToNumberInput(Node* input);
62 Reduction ReduceJSToNumber(Node* node); 62 Reduction ReduceJSToNumber(Node* node);
(...skipping 30 matching lines...) Expand all
93 TypeCache const& type_cache_; 93 TypeCache const& type_cache_;
94 }; 94 };
95 95
96 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 96 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
97 97
98 } // namespace compiler 98 } // namespace compiler
99 } // namespace internal 99 } // namespace internal
100 } // namespace v8 100 } // namespace v8
101 101
102 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 102 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698