Searched refs:equiv (Results 1 - 21 of 21) sorted by relevance

/freebsd-10-stable/usr.bin/tr/
H A Dextern.h45 wint_t equiv[NCHARS_SB]; /* equivalence set */ member in struct:__anon12006
H A Dstr.c152 case '=': /* "[=equiv=]" */
198 s->equiv[0] = backslash(s, NULL);
206 s->equiv[0] = wc;
221 src[0] = (char)s->equiv[0];
229 s->equiv[p++] = i;
231 s->equiv[p] = OOBCH;
236 s->set = s->equiv;
/freebsd-10-stable/contrib/gcc/
H A Dtree-ssa-uncprop.c298 static htab_t equiv; variable
353 slot = htab_find_slot (equiv, &equiv_hash_elt, NO_INSERT);
371 slot = htab_find_slot (equiv, equiv_hash_elt, INSERT);
394 equiv = htab_create (1024, equiv_hash, equiv_eq, equiv_free);
428 htab_delete (equiv);
456 /* Pop the topmost value off the equiv stack. */
489 struct edge_equivalency *equiv = (struct edge_equivalency *) e->aux; local
490 record_equiv (equiv->rhs, equiv->lhs);
511 slot = htab_find_slot (equiv,
525 tree equiv = VEC_index (tree, elt->equivalences, j); local
539 struct edge_equivalency *equiv = (struct edge_equivalency *) e->aux; local
592 struct edge_equivalency *equiv = (struct edge_equivalency *) e->aux; local
[all...]
H A Dtree-ssa-propagate.h103 bitmap equiv; member in struct:value_range_d
H A Dtree-vrp.c302 tree max, bitmap equiv)
327 gcc_assert (equiv == NULL || bitmap_empty_p (equiv));
336 if (vr->equiv == NULL)
337 vr->equiv = BITMAP_ALLOC (NULL);
339 if (equiv != vr->equiv)
341 if (equiv && !bitmap_empty_p (equiv))
342 bitmap_copy (vr->equiv, equi
301 set_value_range(value_range_t *vr, enum value_range_type t, tree min, tree max, bitmap equiv) argument
375 set_value_range_to_value(value_range_t *vr, tree val, bitmap equiv) argument
546 add_equivalence(bitmap equiv, tree var) argument
[all...]
H A Doptabs.c3246 maybe_encapsulate_block (rtx first, rtx last, rtx equiv)
3248 if (!flag_non_call_exceptions || !may_trap_p (equiv))
3302 emit_no_conflict_block (rtx insns, rtx target, rtx op0, rtx op1, rtx equiv)
3374 if (equiv)
3375 set_unique_reg_note (last, REG_EQUAL, equiv);
3394 maybe_encapsulate_block (first, last, equiv);
3426 emit_libcall_block (rtx insns, rtx target, rtx result, rtx equiv)
3438 if (flag_non_call_exceptions && may_trap_p (equiv))
3530 set_unique_reg_note (last, REG_EQUAL, copy_rtx (equiv));
3549 maybe_encapsulate_block (first, last, equiv);
3233 maybe_encapsulate_block(rtx first, rtx last, rtx equiv) argument
3289 emit_no_conflict_block(rtx insns, rtx target, rtx op0, rtx op1, rtx equiv) argument
3412 emit_libcall_block(rtx insns, rtx target, rtx result, rtx equiv) argument
3908 rtx value, target, insns, equiv; local
[all...]
H A Dreload1.c5797 rtx equiv
5802 if (equiv != 0)
5804 if (REG_P (equiv))
5805 regno = REGNO (equiv);
5812 gcc_assert (GET_CODE (equiv) == SUBREG);
5813 regno = subreg_regno (equiv);
5814 equiv = gen_rtx_REG (rld[r].mode, regno);
5823 equiv = 0;
5829 if (equiv != 0)
5848 equiv
5774 rtx equiv local
[all...]
H A Dreload.c5714 rtx equiv = (MEM_P (XEXP (x, 0))
5718 if (insn && NONJUMP_INSN_P (insn) && equiv
5719 && memory_operand (equiv, GET_MODE (equiv))
5725 (equiv, Pmode))
5727 (equiv, Pmode))))
5695 rtx equiv = (MEM_P (XEXP (x, 0)) local
H A Dbuiltins.c1925 rtx equiv = gen_rtx_SQRT (mode, operand);
1926 set_unique_reg_note (last, REG_EQUAL, equiv);
1924 rtx equiv = gen_rtx_SQRT (mode, operand); local
H A Dcombine.c12621 unmentioned_reg_p (rtx equiv, rtx expr)
12623 return for_each_rtx (&equiv, unmentioned_reg_p_1, expr);
12570 unmentioned_reg_p(rtx equiv, rtx expr) argument
/freebsd-10-stable/share/man/man5/
H A DMakefile30 hosts.equiv.5 \
72 MLINKS+=hosts.equiv.5 rhosts.5
/freebsd-10-stable/contrib/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.c797 * @param equiv - The instruction that is 16-bit
799 static BOOL is16BitEquivalent(const char* orig, const char* equiv) { argument
803 if (orig[i] == '\0' && equiv[i] == '\0')
805 if (orig[i] == '\0' || equiv[i] == '\0')
807 if (orig[i] != equiv[i]) {
808 if ((orig[i] == 'Q' || orig[i] == 'L') && equiv[i] == 'W')
810 if ((orig[i] == '6' || orig[i] == '3') && equiv[i] == '1')
812 if ((orig[i] == '4' || orig[i] == '2') && equiv[i] == '6')
/freebsd-10-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dmerge.c136 int (*equiv)(tdesc_t *, tdesc_t *, equiv_data_t *); member in struct:tdesc_ops
358 int (*equiv)(tdesc_t *, tdesc_t *, equiv_data_t *);
393 if ((equiv = tdesc_ops[ctdp->t_type].equiv) != NULL)
394 return (equiv(ctdp, mtdp, ed));
/freebsd-10-stable/gnu/usr.bin/cc/cc_int/
H A DMakefile59 struct-equiv.o targhooks.o timevar.o toplev.o tracer.o tree.o tree-dump.o \
/freebsd-10-stable/etc/
H A DMakefile21 hosts.equiv \
/freebsd-10-stable/contrib/binutils/gas/
H A Dread.c330 {"equiv", s_set, 1},
3023 /* Handle the .equ, .equiv, .eqv, and .set directives. If EQUIV is 1,
3024 then this is .equiv, and it is an error if the symbol is already
3029 s_set (int equiv)
3064 assign_symbol (name, equiv);
3026 s_set(int equiv) argument
/freebsd-10-stable/contrib/gcc/doc/include/
H A Dtexinfo.tex85 \let\ptexequiv=\equiv
3330 \definedummyword{equiv}%
3469 \def\equiv{==}%
4824 % @point{}, @result{}, @expansion{}, @print{}, @equiv{}.
4833 \def\equiv{\leavevmode\lower.1ex\hbox to 1em{\hfil$\ptexequiv$\hfil}}
4880 \let\equiv=\ptexequiv
/freebsd-10-stable/contrib/groff/doc/
H A Dtexinfo.tex85 \let\ptexequiv=\equiv
3228 \definedummyword{equiv}%
3367 \def\equiv{==}%
4701 % @point{}, @result{}, @expansion{}, @print{}, @equiv{}.
4710 \def\equiv{\leavevmode\lower.1ex\hbox to 1em{\hfil$\ptexequiv$\hfil}}
4757 \let\equiv=\ptexequiv
/freebsd-10-stable/contrib/amd/doc/
H A Dtexinfo.tex83 \let\ptexequiv=\equiv
3009 % @point{}, @result{}, @expansion{}, @print{}, @equiv{}.
3019 \def\equiv{\leavevmode\hbox to 1em{\hfil$\ptexequiv$\hfil}}
4498 \definedummyword\equiv
4670 \def\equiv{==}%
6269 \let\equiv=\ptexequiv
9648 \DeclareUnicodeCharacter{2261}{\equiv}
/freebsd-10-stable/contrib/gcc/config/i386/
H A Di386.c11040 rtx ret, tmp, tmpreg, equiv;
11079 equiv = simplify_gen_relational (code, QImode,
11082 set_unique_reg_note (get_last_insn (), REG_EQUAL, equiv);
11015 rtx ret, tmp, tmpreg, equiv; local
11057 set_unique_reg_note (get_last_insn (), REG_EQUAL, equiv); local
/freebsd-10-stable/contrib/binutils/gas/config/
H A Dtc-arm.c2531 s_thumb_set (int equiv)
2599 if (equiv
2529 s_thumb_set(int equiv) argument

Completed in 690 milliseconds