| /src/external/gpl3/gcc/dist/gcc/c/ |
| c-fold.cc | 154 tree orig_op0, orig_op1, orig_op2; local 260 orig_op0 = op0 = TREE_OPERAND (expr, 0); 266 if (op0 != orig_op0) 278 orig_op0 = op0 = TREE_OPERAND (expr, 0); 296 if (op0 != orig_op0 || op1 != orig_op1) 352 orig_op0 = op0 = TREE_OPERAND (expr, 0); 369 if (op0 != orig_op0 || op1 != orig_op1 || in_init) 381 && TREE_CODE (orig_op0) != INTEGER_CST 382 && (TREE_CODE (TREE_TYPE (orig_op0)) == INTEGER_TYPE 383 || TREE_CODE (TREE_TYPE (orig_op0)) == BITINT_TYPE [all...] |
| c-typeck.cc | 4441 tree orig_op0 = op0; 4512 TREE_TYPE (TREE_TYPE (orig_op0)))) 12597 tree orig_op0, tree orig_op1, bool convert_p) 12677 op0 = orig_op0; 12680 op0_int_operands = EXPR_INT_CONST_OPERANDS (orig_op0); 12689 int_const_or_overflow = (TREE_CODE (orig_op0) == INTEGER_CST 12692 && !TREE_OVERFLOW (orig_op0) 12726 && reject_gcc_builtin (op0, EXPR_LOCATION (orig_op0))) 12800 enum stv_conv convert_flag = scalar_to_vector (location, code, orig_op0, 12981 op0 = c_objc_common_truthvalue_conversion (location, orig_op0); 4426 tree orig_op0 = op0; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/c/ |
| c-fold.cc | 154 tree orig_op0, orig_op1, orig_op2; local 260 orig_op0 = op0 = TREE_OPERAND (expr, 0); 266 if (op0 != orig_op0) 278 orig_op0 = op0 = TREE_OPERAND (expr, 0); 296 if (op0 != orig_op0 || op1 != orig_op1) 352 orig_op0 = op0 = TREE_OPERAND (expr, 0); 369 if (op0 != orig_op0 || op1 != orig_op1 || in_init) 381 && TREE_CODE (orig_op0) != INTEGER_CST 382 && TREE_CODE (TREE_TYPE (orig_op0)) == INTEGER_TYPE 385 && !TYPE_OVERFLOW_WRAPS (TREE_TYPE (orig_op0)) [all...] |
| c-typeck.cc | 3997 tree orig_op0 = op0; 4068 TREE_TYPE (TREE_TYPE (orig_op0)))) 11755 tree orig_op0, tree orig_op1, bool convert_p) 11835 op0 = orig_op0; 11838 op0_int_operands = EXPR_INT_CONST_OPERANDS (orig_op0); 11847 int_const_or_overflow = (TREE_CODE (orig_op0) == INTEGER_CST 11850 && !TREE_OVERFLOW (orig_op0) 11884 && reject_gcc_builtin (op0, EXPR_LOCATION (orig_op0))) 11958 enum stv_conv convert_flag = scalar_to_vector (location, code, orig_op0, 12074 shorten = (TYPE_UNSIGNED (TREE_TYPE (orig_op0)) 3984 tree orig_op0 = op0; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| typeck.cc | 5195 enum tree_code code, tree orig_op0, tree orig_op1, 5268 op0 = resolve_nondeduced_context (orig_op0, complain); 5408 if ((null_node_p (orig_op0) || null_node_p (orig_op1)) 5414 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1) 5417 || (!null_ptr_cst_p (orig_op0) 5806 tree stripped_orig_op0 = tree_strip_any_location_wrapper (orig_op0); 5816 && TREE_CODE (TREE_TYPE (orig_op0)) == ARRAY_TYPE 5853 && null_ptr_cst_p (orig_op0)) 5865 if (char_type_p (TREE_TYPE (orig_op0))) 5881 else if (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1) [all...] |
| constexpr.cc | 5963 tree orig_op0 = TREE_OPERAND (t, 0); 5979 orig_op0, &empty_base); 5983 tree op0 = cxx_eval_constant_expression (ctx, orig_op0, 6020 if (lval == vc_glvalue && op0 != orig_op0)
|
| /src/external/gpl3/gcc.old/dist/gcc/c-family/ |
| c-warn.cc | 2253 checking based on the original operand trees ORIG_OP0 and ORIG_OP1, 2264 tree orig_op0, tree orig_op1, 2268 if (error_operand_p (orig_op0) || error_operand_p (orig_op1)) 2271 int op0_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op0)); 2289 sop = orig_op0, uop = orig_op1; 2291 sop = orig_op1, uop = orig_op0; 2325 "signedness: %qT and %qT", TREE_TYPE (orig_op0),
|
| c-common.h | 1453 tree orig_op0, tree orig_op1,
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| typeck.cc | 4940 enum tree_code code, tree orig_op0, tree orig_op1, 5005 op0 = resolve_nondeduced_context (orig_op0, complain); 5077 if ((null_node_p (orig_op0) || null_node_p (orig_op1)) 5083 (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1) 5086 || (!null_ptr_cst_p (orig_op0) 5483 tree stripped_orig_op0 = tree_strip_any_location_wrapper (orig_op0); 5493 && TREE_CODE (TREE_TYPE (orig_op0)) == ARRAY_TYPE 5530 && null_ptr_cst_p (orig_op0)) 5542 if (char_type_p (TREE_TYPE (orig_op0))) 5558 else if (null_ptr_cst_p (orig_op0) && null_ptr_cst_p (orig_op1) [all...] |
| constexpr.cc | 5324 tree orig_op0 = TREE_OPERAND (t, 0); local 5340 orig_op0, &empty_base); 5344 tree op0 = cxx_eval_constant_expression (ctx, orig_op0, 5381 if (lval && op0 != orig_op0)
|
| /src/external/gpl3/gcc/dist/gcc/ |
| regcprop.cc | 564 rtx orig_op0 = XEXP (x, 0); local 566 RTX_CODE code0 = GET_CODE (orig_op0); 568 rtx op0 = orig_op0;
|
| reload.cc | 5602 rtx orig_op0 = XEXP (x, 0); 5604 RTX_CODE code0 = GET_CODE (orig_op0); 5606 rtx op0 = orig_op0; 5616 subreg_regno_offset (REGNO (SUBREG_REG (orig_op0)), 5617 GET_MODE (SUBREG_REG (orig_op0)), 5618 SUBREG_BYTE (orig_op0), 5619 GET_MODE (orig_op0)))); 5654 find_reloads_address_1 (mode, as, orig_op0, 1, PLUS, SCRATCH, 5666 find_reloads_address_1 (mode, as, orig_op0, 0, PLUS, code1, 5682 find_reloads_address_1 (mode, as, orig_op0, 0, PLUS, code1 5583 rtx orig_op0 = XEXP (x, 0); local [all...] |
| regrename.cc | 1313 rtx orig_op0 = XEXP (x, 0); local 1315 RTX_CODE code0 = GET_CODE (orig_op0); 1317 rtx op0 = orig_op0;
|
| optabs.cc | 5144 rtx orig_op0 = XEXP (comparison, 0); 5150 if (CONSTANT_P (orig_op0) && optimize 5152 && (rtx_cost (orig_op0, mode, COMPARE, 0, 5157 if (rtx_equal_p (orig_op0, op2)) 5158 op2p = XEXP (comparison, 0) = force_reg (cmpmode, orig_op0); 5159 else if (rtx_equal_p (orig_op0, op3)) 5160 op3p = XEXP (comparison, 0) = force_reg (cmpmode, orig_op0); 5127 rtx orig_op0 = XEXP (comparison, 0); local
|
| expr.cc | 11932 rtx orig_op0, memloc; 11977 orig_op0 = op0 12129 if (op0 == orig_op0) 12137 if (op0 == orig_op0) 12300 if (op0 == orig_op0) 12307 && (MEM_P (orig_op0) || CONSTANT_P (orig_op0)))) 12414 rtx orig_op0 12425 if (MEM_P (orig_op0)) 12427 op0 = orig_op0; 11912 rtx orig_op0, memloc; local 12394 rtx orig_op0 local [all...] |
| cfgexpand.cc | 4806 rtx orig_op0; local 4811 orig_op0 = op0 = expand_debug_expr (tem); 4868 if (op0 == orig_op0)
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| regcprop.cc | 554 rtx orig_op0 = XEXP (x, 0); local 556 RTX_CODE code0 = GET_CODE (orig_op0); 558 rtx op0 = orig_op0;
|
| reload.cc | 5603 rtx orig_op0 = XEXP (x, 0); 5605 RTX_CODE code0 = GET_CODE (orig_op0); 5607 rtx op0 = orig_op0; 5617 subreg_regno_offset (REGNO (SUBREG_REG (orig_op0)), 5618 GET_MODE (SUBREG_REG (orig_op0)), 5619 SUBREG_BYTE (orig_op0), 5620 GET_MODE (orig_op0)))); 5655 find_reloads_address_1 (mode, as, orig_op0, 1, PLUS, SCRATCH, 5667 find_reloads_address_1 (mode, as, orig_op0, 0, PLUS, code1, 5683 find_reloads_address_1 (mode, as, orig_op0, 0, PLUS, code1 5584 rtx orig_op0 = XEXP (x, 0); local [all...] |
| regrename.cc | 1313 rtx orig_op0 = XEXP (x, 0); local 1315 RTX_CODE code0 = GET_CODE (orig_op0); 1317 rtx op0 = orig_op0;
|
| expr.cc | 11120 rtx orig_op0, memloc; 11131 orig_op0 = op0 11309 if (op0 == orig_op0) 11317 if (op0 == orig_op0) 11480 if (op0 == orig_op0) 11487 && (MEM_P (orig_op0) || CONSTANT_P (orig_op0)))) 11591 rtx orig_op0 11602 if (MEM_P (orig_op0)) 11604 op0 = orig_op0; 11100 rtx orig_op0, memloc; local 11571 rtx orig_op0 local [all...] |
| cfgexpand.cc | 4774 rtx orig_op0; local 4779 orig_op0 = op0 = expand_debug_expr (tem); 4836 if (op0 == orig_op0)
|
| /src/external/gpl3/gcc/dist/gcc/c-family/ |
| c-warn.cc | 2341 checking based on the original operand trees ORIG_OP0 and ORIG_OP1, 2352 tree orig_op0, tree orig_op1, 2356 if (error_operand_p (orig_op0) || error_operand_p (orig_op1)) 2359 int op0_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op0)); 2377 sop = orig_op0, uop = orig_op1; 2379 sop = orig_op1, uop = orig_op0; 2413 "signedness: %qT and %qT", TREE_TYPE (orig_op0),
|
| c-common.h | 1614 tree orig_op0, tree orig_op1,
|
| /src/external/gpl3/gcc/dist/gcc/config/ia64/ |
| ia64.cc | 1226 rtx orig_op0 = op0; 1323 orig_op0, 1, OPTAB_DIRECT); 1324 if (orig_op0 == op0) 1326 if (GET_MODE (orig_op0) == Pmode) 1328 return gen_lowpart (GET_MODE (orig_op0), op0); 1222 rtx orig_op0 = op0; local
|
| /src/external/gpl3/gcc.old/dist/gcc/config/ia64/ |
| ia64.cc | 1216 rtx orig_op0 = op0; 1313 orig_op0, 1, OPTAB_DIRECT); 1314 if (orig_op0 == op0) 1316 if (GET_MODE (orig_op0) == Pmode) 1318 return gen_lowpart (GET_MODE (orig_op0), op0); 1212 rtx orig_op0 = op0; local
|