Searched refs:new_op (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/glsl/ |
D | opt_algebraic.cpp | 208 enum ir_expression_operation new_op = ir_unop_logic_not; in handle_expression() local 214 case ir_binop_less: new_op = ir_binop_gequal; break; in handle_expression() 215 case ir_binop_greater: new_op = ir_binop_lequal; break; in handle_expression() 216 case ir_binop_lequal: new_op = ir_binop_greater; break; in handle_expression() 217 case ir_binop_gequal: new_op = ir_binop_less; break; in handle_expression() 218 case ir_binop_equal: new_op = ir_binop_nequal; break; in handle_expression() 219 case ir_binop_nequal: new_op = ir_binop_equal; break; in handle_expression() 220 case ir_binop_all_equal: new_op = ir_binop_any_nequal; break; in handle_expression() 221 case ir_binop_any_nequal: new_op = ir_binop_all_equal; break; in handle_expression() 229 if (new_op != ir_unop_logic_not) { in handle_expression() [all …]
|
/external/v8/src/compiler/ |
D | node-properties.h | 106 static void ChangeOp(Node* node, const Operator* new_op);
|
D | node-properties.cc | 233 void NodeProperties::ChangeOp(Node* node, const Operator* new_op) { in ChangeOp() argument 234 node->set_op(new_op); in ChangeOp()
|
D | js-create-lowering.cc | 303 const Operator* new_op = common()->Call(desc); in ReduceJSCreateArguments() local 307 NodeProperties::ChangeOp(node, new_op); in ReduceJSCreateArguments() 316 const Operator* new_op = common()->Call(desc); in ReduceJSCreateArguments() local 319 NodeProperties::ChangeOp(node, new_op); in ReduceJSCreateArguments() 328 const Operator* new_op = common()->Call(desc); in ReduceJSCreateArguments() local 331 NodeProperties::ChangeOp(node, new_op); in ReduceJSCreateArguments()
|
D | raw-machine-assembler.cc | 478 const Operator* new_op = common()->ResizeMergeOrPhi(op, phi->InputCount()); in AppendPhiInput() local 480 NodeProperties::ChangeOp(phi, new_op); in AppendPhiInput()
|
D | simplified-lowering.cc | 1080 void ChangeToPureOp(Node* node, const Operator* new_op) { in ChangeToPureOp() argument 1087 node->TrimInputCount(new_op->ValueInputCount()); in ChangeToPureOp() 1092 NodeProperties::ChangeOp(node, new_op); in ChangeToPureOp() 1095 void ChangeToInt32OverflowOp(Node* node, const Operator* new_op) { in ChangeToInt32OverflowOp() argument 1096 NodeProperties::ChangeOp(node, new_op); in ChangeToInt32OverflowOp()
|