Lines Matching defs:optype

187   tree optype = TREE_TYPE (operation);
194 tmpv = create_tmp_var (optype, "PROF");
195 tmp1 = create_tmp_var (optype, "PROF");
196 stmt1 = build2 (MODIFY_EXPR, optype, tmpv, fold_convert (optype, value));
197 stmt2 = build2 (MODIFY_EXPR, optype, tmp1, op2);
207 tmp2 = create_tmp_var (optype, "PROF");
209 stmt1 = build2 (MODIFY_EXPR, optype, tmp2,
210 build2 (TREE_CODE (operation), optype, op1, tmpv));
216 stmt1 = build2 (MODIFY_EXPR, optype, tmp2,
217 build2 (TREE_CODE (operation), optype, op1, op2));
350 tree optype = TREE_TYPE (operation);
353 tree result = create_tmp_var (optype, "PROF");
358 tmp2 = create_tmp_var (optype, "PROF");
359 tmp3 = create_tmp_var (optype, "PROF");
360 stmt2 = build2 (MODIFY_EXPR, optype, tmp2,
361 build2 (PLUS_EXPR, optype, op2, build_int_cst (optype, -1)));
362 stmt3 = build2 (MODIFY_EXPR, optype, tmp3,
363 build2 (BIT_AND_EXPR, optype, tmp2, op2));
366 tmp3, build_int_cst (optype, 0)),
376 stmt1 = build2 (MODIFY_EXPR, optype, result,
377 build2 (BIT_AND_EXPR, optype, op1, tmp2));
383 stmt1 = build2 (MODIFY_EXPR, optype, result,
384 build2 (TREE_CODE (operation), optype, op1, op2));
514 tree optype = TREE_TYPE (operation);
517 tree result = create_tmp_var (optype, "PROF");
522 tmp1 = create_tmp_var (optype, "PROF");
523 stmt1 = build2 (MODIFY_EXPR, optype, result, op1);
524 stmt2 = build2 (MODIFY_EXPR, optype, tmp1, op2);
538 stmt1 = build2 (MODIFY_EXPR, optype, result,
539 build2 (MINUS_EXPR, optype, result, tmp1));
552 stmt1 = build2 (MODIFY_EXPR, optype, result,
553 build2 (TREE_CODE (operation), optype, result, tmp1));