Lines Matching defs:properties
65 Operator(Opcode opcode, Properties properties, const char* mnemonic,
96 return (properties() & property) == property;
99 Properties properties() const { return properties_; }
110 static size_t ZeroIfEliminatable(Properties properties) {
111 return (properties & kEliminatable) == kEliminatable ? 0 : 1;
114 static size_t ZeroIfNoThrow(Properties properties) {
115 return (properties & kNoThrow) == kNoThrow ? 0 : 2;
118 static size_t ZeroIfPure(Properties properties) {
119 return (properties & kPure) == kPure ? 0 : 1;
170 Operator1(Opcode opcode, Properties properties, const char* mnemonic,
174 : Operator(opcode, properties, mnemonic, value_in, effect_in, control_in,