Home
last modified time | relevance | path

Searched refs:elim (Results 1 – 25 of 117) sorted by relevance

12345

/netbsd-src/external/mit/isl/dist/
H A Disl_map_simplify.c1958 static void compute_elimination_index(__isl_keep isl_basic_map *bmap, int *elim, in compute_elimination_index() argument
1964 elim[d] = -1; in compute_elimination_index()
1969 elim[d] = i; in compute_elimination_index()
1976 int *elim, unsigned len) in set_compute_elimination_index() argument
1978 compute_elimination_index(bset_to_bmap(bset), elim, len); in set_compute_elimination_index()
1982 __isl_keep isl_basic_map *bmap, int *elim, unsigned total) in reduced_using_equalities() argument
1990 if (elim[d] == -1) in reduced_using_equalities()
1996 isl_seq_elim(dst, bmap->eq[elim[d]], 1 + d, 1 + total, NULL); in reduced_using_equalities()
2002 __isl_keep isl_basic_set *bset, int *elim, unsigned total) in set_reduced_using_equalities() argument
2005 bset_to_bmap(bset), elim, total); in set_reduced_using_equalities()
[all …]
/netbsd-src/sys/kern/
H A Dkern_sysctl.c611 int error, ni, elim, v; in sysctl_query() local
631 elim = 0; in sysctl_query()
656 elim = (name - oname); in sysctl_query()
657 error = sysctl_locate(l, oname, elim, &enode, NULL); in sysctl_query()
660 elim = enode->sysctl_clen; in sysctl_query()
664 elim = 0; in sysctl_query()
674 if (--elim > 0) in sysctl_query()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Passes/
H A DPassRegistry.def54 MODULE_PASS("elim-avail-extern", EliminateAvailableExternallyPass())
263 FUNCTION_PASS("loop-load-elim", LoopLoadEliminationPass())
298 FUNCTION_PASS("redundant-dbg-inst-elim", RedundantDbgInstEliminationPass())
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dvar-tracking.c10095 rtx reg, elim; in vt_initialize() local
10105 elim = eliminate_regs (reg, VOIDmode, NULL_RTX); in vt_initialize()
10106 if (elim != reg) in vt_initialize()
10108 if (GET_CODE (elim) == PLUS) in vt_initialize()
10109 elim = XEXP (elim, 0); in vt_initialize()
10110 if (elim == stack_pointer_rtx) in vt_initialize()
10116 rtx reg, elim; in vt_initialize() local
10125 elim = eliminate_regs (reg, VOIDmode, NULL_RTX); in vt_initialize()
10126 if (elim != reg) in vt_initialize()
10128 if (GET_CODE (elim) == PLUS) in vt_initialize()
[all …]
H A Ddwarf2out.c14353 rtx elim = (ira_use_lra_p in based_loc_descr() local
14357 if (elim != reg) in based_loc_descr()
14363 elim = strip_offset_and_add (elim, &offset); in based_loc_descr()
14364 gcc_assert (elim == hard_frame_pointer_rtx in based_loc_descr()
14365 || elim == stack_pointer_rtx); in based_loc_descr()
14377 : REGNO (elim)); in based_loc_descr()
20483 rtx reg, elim; in compute_frame_pointer_to_fb_displacement() local
20493 elim = (ira_use_lra_p in compute_frame_pointer_to_fb_displacement()
20496 elim = strip_offset_and_add (elim, &offset); in compute_frame_pointer_to_fb_displacement()
20510 = (elim == hard_frame_pointer_rtx || elim == stack_pointer_rtx); in compute_frame_pointer_to_fb_displacement()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dvar-tracking.cc10126 rtx reg, elim; in vt_initialize() local
10136 elim = eliminate_regs (reg, VOIDmode, NULL_RTX); in vt_initialize()
10137 if (elim != reg) in vt_initialize()
10139 if (GET_CODE (elim) == PLUS) in vt_initialize()
10140 elim = XEXP (elim, 0); in vt_initialize()
10141 if (elim == stack_pointer_rtx) in vt_initialize()
10147 rtx reg, elim; in vt_initialize() local
10156 elim = eliminate_regs (reg, VOIDmode, NULL_RTX); in vt_initialize()
10157 if (elim != reg) in vt_initialize()
10159 if (GET_CODE (elim) == PLUS) in vt_initialize()
[all …]
H A Ddwarf2out.cc14830 rtx elim = (ira_use_lra_p in based_loc_descr() local
14834 if (elim != reg) in based_loc_descr()
14840 elim = strip_offset_and_add (elim, &offset); in based_loc_descr()
14841 gcc_assert (elim == hard_frame_pointer_rtx in based_loc_descr()
14842 || elim == stack_pointer_rtx); in based_loc_descr()
14854 : REGNO (elim)); in based_loc_descr()
21135 rtx reg, elim; in compute_frame_pointer_to_fb_displacement() local
21145 elim = (ira_use_lra_p in compute_frame_pointer_to_fb_displacement()
21148 elim = strip_offset_and_add (elim, &offset); in compute_frame_pointer_to_fb_displacement()
21162 = (elim == hard_frame_pointer_rtx || elim == stack_pointer_rtx); in compute_frame_pointer_to_fb_displacement()
H A DChangeLog.tree-ssa4981 * Makefile.in (simple-break-elim.o): Remove.
4982 (simple-goto-elim.o): Remove.
4984 * simple-break-elim.c: Remove.
4985 * simple-goto-elim.c: Remove.
6776 (elim_graph_add_node): New. Add an element to the elim-graph.
6777 (elim_graph_add_edge): New. Add an edge to the elim-graph.
6784 Use new elim-graph routines.
9753 * simple-break-elim.c: Likewise.
9754 * simple-goto-elim.c: Likewise.
10425 simple-break-elim.c, simple-goto-elim.c, toplev.c,
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/h8300/
H A Dh8300.md166 ;; new pattern that compare-elim can use
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagon.td88 def FeatureNoreturnStackElim: SubtargetFeature<"noreturn-stack-elim",
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/or1k/
H A Ddefs.mk25 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o convert.o coverag…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/arm/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3eb/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/coldfire/
H A Ddefs.mk25 …unit.o cgraphclones.o cilk-common.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/armeb/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/earm/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhfeb/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4eb/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/earmeb/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/earmhf/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/sh3el/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc/usr.bin/gcc/arch/sh3el/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv4/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc/usr.bin/gcc/arch/sh3eb/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…
/netbsd-src/external/gpl3/gcc.old/usr.bin/gcc/arch/earmv6hf/
H A Ddefs.mk26 …build.o cgraphunit.o cgraphclones.o combine.o combine-stack-adj.o compare-elim.o context.o convert…

12345