blob: fb144ce896a4355a738371de31c9177a1e7f22ab [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2013 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef V8_COMPILER_OPERATOR_H_
6#define V8_COMPILER_OPERATOR_H_
7
Emily Bernierd0a1eb72015-03-24 16:35:39 -04008#include <ostream> // NOLINT(readability/streams)
9
Ben Murdochb8a8cc12014-11-26 15:28:44 +000010#include "src/base/flags.h"
Emily Bernierd0a1eb72015-03-24 16:35:39 -040011#include "src/base/functional.h"
12#include "src/zone.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000013
14namespace v8 {
15namespace internal {
16namespace compiler {
17
18// An operator represents description of the "computation" of a node in the
19// compiler IR. A computation takes values (i.e. data) as input and produces
20// zero or more values as output. The side-effects of a computation must be
21// captured by additional control and data dependencies which are part of the
22// IR graph.
23// Operators are immutable and describe the statically-known parts of a
24// computation. Thus they can be safely shared by many different nodes in the
25// IR graph, or even globally between graphs. Operators can have "static
26// parameters" which are compile-time constant parameters to the operator, such
27// as the name for a named field access, the ID of a runtime function, etc.
28// Static parameters are private to the operator and only semantically
29// meaningful to the operator itself.
30class Operator : public ZoneObject {
31 public:
32 typedef uint8_t Opcode;
33
34 // Properties inform the operator-independent optimizer about legal
35 // transformations for nodes that have this operator.
36 enum Property {
37 kNoProperties = 0,
38 kReducible = 1 << 0, // Participates in strength reduction.
39 kCommutative = 1 << 1, // OP(a, b) == OP(b, a) for all inputs.
40 kAssociative = 1 << 2, // OP(a, OP(b,c)) == OP(OP(a,b), c) for all inputs.
41 kIdempotent = 1 << 3, // OP(a); OP(a) == OP(a).
42 kNoRead = 1 << 4, // Has no scheduling dependency on Effects
43 kNoWrite = 1 << 5, // Does not modify any Effects and thereby
44 // create new scheduling dependencies.
45 kNoThrow = 1 << 6, // Can never generate an exception.
46 kFoldable = kNoRead | kNoWrite,
47 kEliminatable = kNoWrite | kNoThrow,
48 kPure = kNoRead | kNoWrite | kNoThrow | kIdempotent
49 };
50 typedef base::Flags<Property, uint8_t> Properties;
51
Emily Bernierd0a1eb72015-03-24 16:35:39 -040052 // Constructor.
53 Operator(Opcode opcode, Properties properties, const char* mnemonic,
54 size_t value_in, size_t effect_in, size_t control_in,
55 size_t value_out, size_t effect_out, size_t control_out);
56
57 virtual ~Operator() {}
Ben Murdochb8a8cc12014-11-26 15:28:44 +000058
59 // A small integer unique to all instances of a particular kind of operator,
60 // useful for quick matching for specific kinds of operators. For fast access
61 // the opcode is stored directly in the operator object.
62 Opcode opcode() const { return opcode_; }
63
64 // Returns a constant string representing the mnemonic of the operator,
65 // without the static parameters. Useful for debugging.
66 const char* mnemonic() const { return mnemonic_; }
67
68 // Check if this operator equals another operator. Equivalent operators can
69 // be merged, and nodes with equivalent operators and equivalent inputs
70 // can be merged.
Emily Bernierd0a1eb72015-03-24 16:35:39 -040071 virtual bool Equals(const Operator* that) const {
72 return this->opcode() == that->opcode();
73 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +000074
75 // Compute a hashcode to speed up equivalence-set checking.
76 // Equal operators should always have equal hashcodes, and unequal operators
77 // should have unequal hashcodes with high probability.
Emily Bernierd0a1eb72015-03-24 16:35:39 -040078 virtual size_t HashCode() const { return base::hash<Opcode>()(opcode()); }
Ben Murdochb8a8cc12014-11-26 15:28:44 +000079
80 // Check whether this operator has the given property.
81 bool HasProperty(Property property) const {
82 return (properties() & property) == property;
83 }
84
Ben Murdochb8a8cc12014-11-26 15:28:44 +000085 Properties properties() const { return properties_; }
86
Emily Bernierd0a1eb72015-03-24 16:35:39 -040087 // TODO(titzer): convert return values here to size_t.
88 int ValueInputCount() const { return value_in_; }
89 int EffectInputCount() const { return effect_in_; }
90 int ControlInputCount() const { return control_in_; }
91
92 int ValueOutputCount() const { return value_out_; }
93 int EffectOutputCount() const { return effect_out_; }
94 int ControlOutputCount() const { return control_out_; }
95
96 static inline size_t ZeroIfPure(Properties properties) {
97 return (properties & kPure) == kPure ? 0 : 1;
98 }
99
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000100 // TODO(titzer): API for input and output types, for typechecking graph.
101 protected:
102 // Print the full operator into the given stream, including any
103 // static parameters. Useful for debugging and visualizing the IR.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400104 virtual void PrintTo(std::ostream& os) const;
105 friend std::ostream& operator<<(std::ostream& os, const Operator& op);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000106
107 private:
108 Opcode opcode_;
109 Properties properties_;
110 const char* mnemonic_;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400111 uint32_t value_in_;
112 uint16_t effect_in_;
113 uint16_t control_in_;
114 uint16_t value_out_;
115 uint8_t effect_out_;
116 uint8_t control_out_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000117
118 DISALLOW_COPY_AND_ASSIGN(Operator);
119};
120
121DEFINE_OPERATORS_FOR_FLAGS(Operator::Properties)
122
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400123std::ostream& operator<<(std::ostream& os, const Operator& op);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000124
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000125
126// A templatized implementation of Operator that has one static parameter of
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400127// type {T}.
128template <typename T, typename Pred = std::equal_to<T>,
129 typename Hash = base::hash<T>>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000130class Operator1 : public Operator {
131 public:
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400132 Operator1(Opcode opcode, Properties properties, const char* mnemonic,
133 size_t value_in, size_t effect_in, size_t control_in,
134 size_t value_out, size_t effect_out, size_t control_out,
135 T parameter, Pred const& pred = Pred(), Hash const& hash = Hash())
136 : Operator(opcode, properties, mnemonic, value_in, effect_in, control_in,
137 value_out, effect_out, control_out),
138 parameter_(parameter),
139 pred_(pred),
140 hash_(hash) {}
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000141
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400142 T const& parameter() const { return parameter_; }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000143
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400144 bool Equals(const Operator* other) const FINAL {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000145 if (opcode() != other->opcode()) return false;
146 const Operator1<T>* that = static_cast<const Operator1<T>*>(other);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400147 return this->pred_(this->parameter(), that->parameter());
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000148 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400149 size_t HashCode() const FINAL {
150 return base::hash_combine(this->opcode(), this->hash_(this->parameter()));
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000151 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400152 virtual void PrintParameter(std::ostream& os) const {
153 os << "[" << this->parameter() << "]";
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000154 }
155
156 protected:
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400157 void PrintTo(std::ostream& os) const FINAL {
158 os << mnemonic();
159 PrintParameter(os);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000160 }
161
162 private:
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400163 T const parameter_;
164 Pred const pred_;
165 Hash const hash_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000166};
167
168
169// Helper to extract parameters from Operator1<*> operator.
170template <typename T>
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400171inline T const& OpParameter(const Operator* op) {
172 return static_cast<const Operator1<T>*>(op)->parameter();
173}
174
175// NOTE: We have to be careful to use the right equal/hash functions below, for
176// float/double we always use the ones operating on the bit level.
177template <>
178inline float const& OpParameter(const Operator* op) {
179 return static_cast<const Operator1<float, base::bit_equal_to<float>,
180 base::bit_hash<float>>*>(op)->parameter();
181}
182
183template <>
184inline double const& OpParameter(const Operator* op) {
185 return static_cast<const Operator1<double, base::bit_equal_to<double>,
186 base::bit_hash<double>>*>(op)->parameter();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000187}
188
189} // namespace compiler
190} // namespace internal
191} // namespace v8
192
193#endif // V8_COMPILER_OPERATOR_H_