Lines Matching refs:Operator
33 class V8_EXPORT_PRIVATE Operator : public NON_EXPORTED_BASE(ZoneObject) { in NON_EXPORTED_BASE()
64 Operator(Opcode opcode, Properties properties, const char* mnemonic, in NON_EXPORTED_BASE()
68 virtual ~Operator() {} in NON_EXPORTED_BASE()
82 virtual bool Equals(const Operator* that) const { in NON_EXPORTED_BASE()
146 DISALLOW_COPY_AND_ASSIGN(Operator); in NON_EXPORTED_BASE()
149 DEFINE_OPERATORS_FOR_FLAGS(Operator::Properties)
151 std::ostream& operator<<(std::ostream& os, const Operator& op);
167 class Operator1 : public Operator {
173 : Operator(opcode, properties, mnemonic, value_in, effect_in, control_in, in Operator() function
181 bool Equals(const Operator* other) const final { in Equals()
214 inline T const& OpParameter(const Operator* op) { in OpParameter()