Home
last modified time | relevance | path

Searched refs:imode (Results 1 – 24 of 24) sorted by relevance

/trueos/contrib/gcc/
HDoptabs.c2400 enum machine_mode imode) in lowpart_subreg_maybe_copy() argument
2403 ret = lowpart_subreg (omode, val, imode); in lowpart_subreg_maybe_copy()
2406 val = force_reg (imode, val); in lowpart_subreg_maybe_copy()
2407 ret = lowpart_subreg (omode, val, imode); in lowpart_subreg_maybe_copy()
2422 enum machine_mode imode; in expand_absneg_bit() local
2441 imode = int_mode_for_mode (mode); in expand_absneg_bit()
2442 if (imode == BLKmode) in expand_absneg_bit()
2449 imode = word_mode; in expand_absneg_bit()
2486 temp = expand_binop (imode, code == ABS ? and_optab : xor_optab, in expand_absneg_bit()
2488 immed_double_const (lo, hi, imode), in expand_absneg_bit()
[all …]
HDstmt.c2955 enum machine_mode imode = TYPE_MODE (index_type); in emit_case_nodes() local
2959 mode = imode; in emit_case_nodes()
2972 convert_modes (mode, imode, in emit_case_nodes()
2989 (mode, imode, in emit_case_nodes()
3001 (mode, imode, in emit_case_nodes()
3025 convert_modes (mode, imode, in emit_case_nodes()
3034 convert_modes (mode, imode, in emit_case_nodes()
3051 (mode, imode, in emit_case_nodes()
3086 (mode, imode, in emit_case_nodes()
3101 (mode, imode, in emit_case_nodes()
[all …]
HDexpr.c1619 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_src)); in emit_group_load_1() local
1620 if (imode == BLKmode) in emit_group_load_1()
1623 src = gen_reg_rtx (imode); in emit_group_load_1()
1624 if (imode != BLKmode) in emit_group_load_1()
1628 if (imode != BLKmode) in emit_group_load_1()
1629 src = gen_lowpart (imode, src); in emit_group_load_1()
1870 enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_dst)); in emit_group_store() local
1871 if (imode == BLKmode) in emit_group_store()
1874 dst = gen_reg_rtx (imode); in emit_group_store()
1876 if (imode != BLKmode) in emit_group_store()
[all …]
HDemit-rtl.c606 validate_subreg (enum machine_mode omode, enum machine_mode imode, in validate_subreg() argument
609 unsigned int isize = GET_MODE_SIZE (imode); in validate_subreg()
632 else if ((COMPLEX_MODE_P (imode) || VECTOR_MODE_P (imode)) in validate_subreg()
633 && GET_MODE_INNER (imode) == omode) in validate_subreg()
640 else if (VECTOR_MODE_P (omode) && GET_MODE_INNER (omode) == imode) in validate_subreg()
645 else if (FLOAT_MODE_P (imode) || FLOAT_MODE_P (omode)) in validate_subreg()
664 if ((COMPLEX_MODE_P (imode) || VECTOR_MODE_P (imode)) in validate_subreg()
665 && GET_MODE_INNER (imode) == omode) in validate_subreg()
667 else if (REG_CANNOT_CHANGE_MODE_P (regno, imode, omode)) in validate_subreg()
671 return subreg_offset_representable_p (regno, imode, offset, omode); in validate_subreg()
[all …]
HDexpmed.c476 enum machine_mode imode = int_mode_for_mode (GET_MODE (op0)); in store_bit_field() local
477 if (imode != GET_MODE (op0)) in store_bit_field()
480 op0 = adjust_address (op0, imode, 0); in store_bit_field()
483 gcc_assert (imode != BLKmode); in store_bit_field()
484 op0 = gen_lowpart (imode, op0); in store_bit_field()
1186 enum machine_mode imode = int_mode_for_mode (GET_MODE (op0)); in extract_bit_field() local
1187 if (imode != GET_MODE (op0)) in extract_bit_field()
1190 op0 = adjust_address (op0, imode, 0); in extract_bit_field()
1193 gcc_assert (imode != BLKmode); in extract_bit_field()
1194 op0 = gen_lowpart (imode, op0); in extract_bit_field()
[all …]
HDcombine.c5891 enum machine_mode imode; in expand_field_assignment() local
5898 imode = mode_for_size (GET_MODE_BITSIZE (compute_mode), MODE_INT, 0); in expand_field_assignment()
5899 if (imode == BLKmode) in expand_field_assignment()
5902 compute_mode = imode; in expand_field_assignment()
5903 inner = gen_lowpart (imode, inner); in expand_field_assignment()
9413 enum machine_mode imode = GET_MODE (x); in gen_lowpart_for_combine() local
9415 unsigned int isize = GET_MODE_SIZE (imode); in gen_lowpart_for_combine()
9418 if (omode == imode) in gen_lowpart_for_combine()
9431 && ! ((imode == VOIDmode in gen_lowpart_for_combine()
9447 imode = GET_MODE (x); in gen_lowpart_for_combine()
[all …]
HDsimplify-rtx.c2227 enum machine_mode imode = GET_MODE (XEXP (op0, 0)); in simplify_binary_operation_1() local
2228 tem = simplify_gen_binary (AND, imode, XEXP (op0, 0), in simplify_binary_operation_1()
2230 imode)); in simplify_binary_operation_1()
2231 return simplify_gen_unary (ZERO_EXTEND, mode, tem, imode); in simplify_binary_operation_1()
2474 enum machine_mode imode = GET_MODE (XEXP (op0, 0)); in simplify_binary_operation_1() local
2477 if (CLZ_DEFINED_VALUE_AT_ZERO (imode, zero_val) in simplify_binary_operation_1()
2478 && zero_val == GET_MODE_BITSIZE (imode) in simplify_binary_operation_1()
2480 return simplify_gen_relational (EQ, mode, imode, in simplify_binary_operation_1()
HDbuiltins.c5307 enum machine_mode fmode, imode, rmode; in expand_builtin_signbit() local
5339 imode = int_mode_for_mode (fmode); in expand_builtin_signbit()
5340 if (imode == BLKmode) in expand_builtin_signbit()
5342 temp = gen_lowpart (imode, temp); in expand_builtin_signbit()
5346 imode = word_mode; in expand_builtin_signbit()
5359 temp = force_reg (imode, temp); in expand_builtin_signbit()
5378 if (imode != rmode) in expand_builtin_signbit()
5389 temp = expand_shift (RSHIFT_EXPR, imode, temp, in expand_builtin_signbit()
HDvarasm.c2266 enum machine_mode omode, imode; in assemble_integer() local
2273 imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0); in assemble_integer()
2277 rtx partial = simplify_subreg (omode, x, imode, i); in assemble_integer()
HDcse.c3281 enum machine_mode imode = GET_MODE (SUBREG_REG (x)); in fold_rtx_subreg() local
3285 && GET_MODE_SIZE (imode) <= UNITS_PER_WORD in fold_rtx_subreg()
3286 && (elt = lookup (SUBREG_REG (x), HASH (SUBREG_REG (x), imode), in fold_rtx_subreg()
3287 imode)) != 0) in fold_rtx_subreg()
HDFSFChangeLog953 (output_move_[hq]imode): Likewise.
HDChangeLog-19987412 (output_move_[hq]imode): Likewise.
HDChangeLog-200443 MEM, adjust imode and isize.
/trueos/sys/mips/cavium/octe/
HDethernet-rgmii.c255 if (((priv->imode == CVMX_HELPER_INTERFACE_MODE_GMII) && (priv->port == 0)) || in cvm_oct_rgmii_init()
256 (priv->imode == CVMX_HELPER_INTERFACE_MODE_RGMII)) { in cvm_oct_rgmii_init()
284 if (((priv->imode == CVMX_HELPER_INTERFACE_MODE_GMII) && (priv->port == 0)) || in cvm_oct_rgmii_uninit()
285 (priv->imode == CVMX_HELPER_INTERFACE_MODE_RGMII)) { in cvm_oct_rgmii_uninit()
HDethernet.c347 cvmx_helper_interface_mode_t imode = cvmx_helper_interface_get_mode(interface); in cvm_oct_init_module() local
370 priv->imode = imode; in cvm_oct_init_module()
378 switch (priv->imode) { in cvm_oct_init_module()
HDcavium-ethernet.h54 …int imode; /* Type of port. This is one of the enums in cvmx_helper_i… member
/trueos/contrib/tcsh/
HDed.inputl.c91 struct varent *imode = adrof(STRinputmode); in Inputl() local
109 if (imode && imode->vec != NULL) { in Inputl()
110 if (!Strcmp(*(imode->vec), STRinsert)) in Inputl()
112 else if (!Strcmp(*(imode->vec), STRoverwrite)) in Inputl()
HDed.init.c148 struct varent *imode; in ed_Setup() local
174 if ((imode = adrof(STRinputmode)) != NULL && imode->vec != NULL) { in ed_Setup()
175 if (!Strcmp(*(imode->vec), STRinsert)) in ed_Setup()
177 else if (!Strcmp(*(imode->vec), STRoverwrite)) in ed_Setup()
/trueos/sys/contrib/octeon-sdk/
HDcvmx-dfa-defs.h1601 uint64_t imode : 1; /**< NCB-Inbound Arbiter member
1606 uint64_t imode : 1;
1641 uint64_t imode : 1; /**< NCB-Inbound Arbiter member
1646 uint64_t imode : 1;
2912 uint64_t imode : 1; /**< NCB-Inbound Arbiter member
2957 uint64_t imode : 1;
4886 uint64_t imode : 1; /**< NCB-Inbound Arbiter member
4891 uint64_t imode : 1;
4932 uint64_t imode : 1; /**< NCB-Inbound Arbiter member
4937 uint64_t imode : 1;
HDcvmx-srio.c1568 cvmx_helper_interface_mode_t imode; in cvmx_srio_omsg_desc() local
1579 imode = cvmx_helper_interface_get_mode (intf_num); in cvmx_srio_omsg_desc()
1580 if (imode != CVMX_HELPER_INTERFACE_MODE_SRIO) in cvmx_srio_omsg_desc()
/trueos/contrib/binutils/gas/config/
HDtc-arc.c406 int imode = 0; in arc_extoper() local
466 imode = 0; in arc_extoper()
473 imode = ARC_REGISTER_READONLY; in arc_extoper()
487 imode = ARC_REGISTER_WRITEONLY; in arc_extoper()
507 imode |= arc_get_noshortcut_flag (); in arc_extoper()
573 ext_oper->operand.flags = imode; in arc_extoper()
/trueos/sys/compat/ndis/
HDsubr_ndis.c2259 ndis_interrupt_mode imode) in NdisMRegisterInterrupt() argument
2290 ivec, ilevel, 0, imode, shared, 0, FALSE); in NdisMRegisterInterrupt()
HDsubr_ntoskrnl.c1320 uint8_t imode, uint8_t shared, uint32_t affinity, uint8_t savefloat) argument
/trueos/contrib/gcc/config/i386/
HDi386.c12225 enum machine_mode imode = int_mode_for_mode (mode); in ix86_split_to_parts() local
12229 operand = simplify_subreg (imode, operand, GET_MODE (operand), 0); in ix86_split_to_parts()
12231 mode = imode; in ix86_split_to_parts()