Searched refs:imag_p (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12-stable/contrib/gcc/ |
| D | tree-complex.c | 420 get_component_var (tree var, bool imag_p) in get_component_var() argument 422 size_t decl_index = DECL_UID (var) * 2 + imag_p; in get_component_var() 428 imag_p ? "CI" : "CR", in get_component_var() 429 imag_p ? "$imag" : "$real", in get_component_var() 430 imag_p ? IMAGPART_EXPR : REALPART_EXPR); in get_component_var() 440 get_component_ssa_name (tree ssa_name, bool imag_p) in get_component_ssa_name() argument 446 if (lattice == (imag_p ? ONLY_REAL : ONLY_IMAG)) in get_component_ssa_name() 455 ssa_name_index = SSA_NAME_VERSION (ssa_name) * 2 + imag_p; in get_component_ssa_name() 459 ret = get_component_var (SSA_NAME_VAR (ssa_name), imag_p); in get_component_ssa_name() 483 set_component_ssa_name (tree ssa_name, bool imag_p, tree value) in set_component_ssa_name() argument [all …]
|
| D | expr.c | 2717 write_complex_part (rtx cplx, rtx val, bool imag_p) in write_complex_part() argument 2725 emit_move_insn (XEXP (cplx, imag_p), val); in write_complex_part() 2741 imag_p ? GET_MODE_SIZE (imode) : 0), in write_complex_part() 2760 imag_p ? GET_MODE_SIZE (imode) : 0); in write_complex_part() 2771 store_bit_field (cplx, ibitsize, imag_p ? ibitsize : 0, imode, val); in write_complex_part() 2778 read_complex_part (rtx cplx, bool imag_p) in read_complex_part() argument 2784 return XEXP (cplx, imag_p); in read_complex_part() 2796 tree part = imag_p ? TREE_IMAGPART (decl) : TREE_REALPART (decl); in read_complex_part() 2809 imag_p ? GET_MODE_SIZE (imode) : 0); in read_complex_part() 2825 imag_p ? GET_MODE_SIZE (imode) : 0); in read_complex_part() [all …]
|