HomeSort by: relevance | last modified time | path
    Searched refs:live (Results 1 - 25 of 230) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/distrib/i386/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-i386-live # gives ${IMGBASE}.img
  /src/distrib/hppa/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-hppa-live # gives ${IMGBASE}.img
  /src/distrib/macppc/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-macppc-live # gives ${IMGBASE}.img
  /src/distrib/virt68k/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-virt68k-live # gives ${IMGBASE}.img
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-live.h 73 /* True if this map is for out-of-ssa, otherwise for live range
201 /* ---------------- live on entry/exit info ------------------------------
203 This structure is used to represent live range information on SSA based
205 live-on-entry information and live-on-exit information can be calculated.
206 As well, partitions are marked as to whether they are global (live
209 The live-on-entry information is per block. It provide a bitmap for
210 each block which has a bit set for each partition that is live on entry to
213 The live-on-exit information is per block. It provides a bitmap for each
214 block indicating which partitions are live on exit from the block
    [all...]
regstat.cc 108 for basic block BB. LIVE is a scratch bitvector used here. */
111 regstat_bb_compute_ri (basic_block bb, bitmap live)
118 bitmap_copy (live, df_get_live_out (bb));
120 /* Process the regs live at the end of the block. Mark them as
122 EXECUTE_IF_SET_IN_BITMAP (live, 0, regno, bi)
129 bitmap_clear_bit (live, DF_REF_REGNO (def));
135 bitmap_set_bit (live, regno);
159 EXECUTE_IF_SET_IN_BITMAP (live, 0, regno, bi)
191 ??? This means that any partial store is live from
196 bitmap_clear_bit (live, dregno)
237 bitmap live = BITMAP_ALLOC (&df_bitmap_obstack); local
368 bitmap live = BITMAP_ALLOC (&df_bitmap_obstack); local
    [all...]
tree-ssa-live.cc 36 #include "tree-ssa-live.h"
404 2) Declares no live variables
485 levels that keep an upper level with a label live, so we have to
552 /* Innermost blocks with no live variables nor statements can be always
969 /* Allocate and return a new live range information object base on MAP. */
974 tree_live_info_p live; local
977 live = XNEW (struct tree_live_info_d);
978 live->map = map;
979 live->num_blocks = last_basic_block_for_fn (cfun);
981 bitmap_obstack_initialize (&live->livein_obstack)
1228 tree_live_info_p live; local
    [all...]
combine-stack-adj.cc 86 bitmap live = BITMAP_ALLOC (&reg_obstack);
89 combine_stack_adjustments_for_block (bb, live);
91 BITMAP_FREE (live);
230 bitmap live, rtx_insn *other_insn)
243 if (other_insn == NULL_RTX || live == NULL)
270 if (bitmap_bit_p (live, regno))
541 combine_stack_adjustments_for_block (basic_block bb, bitmap live)
553 bitmap_copy (live, DF_LR_IN (bb));
554 df_simulate_initialize_forwards (bb, live);
603 bitmap_copy (last_sp_live, live);
85 bitmap live = BITMAP_ALLOC (&reg_obstack); local
    [all...]
  /src/distrib/alpha/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-alpha-live # gives ${IMGBASE}.img
  /src/distrib/pmax/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-pmax-live # gives ${IMGBASE}.img
  /src/distrib/sparc/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-sparc-live # gives ${IMGBASE}.img
  /src/distrib/sparc64/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-sparc64-live # gives ${IMGBASE}.img
  /src/distrib/sun2/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-sun2-live # gives ${IMGBASE}.img
  /src/distrib/sun3/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-sun3-live # gives ${IMGBASE}.img
  /src/distrib/vax/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-vax-live # gives ${IMGBASE}.img
  /src/external/gpl3/gcc/dist/gcc/
regstat.cc 108 for basic block BB. LIVE is a scratch bitvector used here. */
111 regstat_bb_compute_ri (basic_block bb, bitmap live)
118 bitmap_copy (live, df_get_live_out (bb));
120 /* Process the regs live at the end of the block. Mark them as
122 EXECUTE_IF_SET_IN_BITMAP (live, 0, regno, bi)
129 bitmap_clear_bit (live, DF_REF_REGNO (def));
135 bitmap_set_bit (live, regno);
159 EXECUTE_IF_SET_IN_BITMAP (live, 0, regno, bi)
191 ??? This means that any partial store is live from
196 bitmap_clear_bit (live, dregno)
237 bitmap live = BITMAP_ALLOC (&df_bitmap_obstack); local
368 bitmap live = BITMAP_ALLOC (&df_bitmap_obstack); local
    [all...]
tree-ssa-live.h 77 /* True if this map is for out-of-ssa, otherwise for live range
205 /* ---------------- live on entry/exit info ------------------------------
207 This structure is used to represent live range information on SSA based
209 live-on-entry information and live-on-exit information can be calculated.
210 As well, partitions are marked as to whether they are global (live
213 The live-on-entry information is per block. It provide a bitmap for
214 each block which has a bit set for each partition that is live on entry to
217 The live-on-exit information is per block. It provides a bitmap for each
218 block indicating which partitions are live on exit from the block
    [all...]
tree-ssa-live.cc 36 #include "tree-ssa-live.h"
407 2) Declares no live variables
488 levels that keep an upper level with a label live, so we have to
555 /* Innermost blocks with no live variables nor statements can be always
1012 /* Allocate and return a new live range information object base on MAP. */
1017 tree_live_info_p live; local
1020 live = XNEW (struct tree_live_info_d);
1021 live->map = map;
1022 live->num_blocks = last_basic_block_for_fn (cfun);
1024 bitmap_obstack_initialize (&live->livein_obstack)
1271 tree_live_info_p live; local
    [all...]
combine-stack-adj.cc 86 bitmap live = BITMAP_ALLOC (&reg_obstack);
89 combine_stack_adjustments_for_block (bb, live);
91 BITMAP_FREE (live);
230 bitmap live, rtx_insn *other_insn)
243 if (other_insn == NULL_RTX || live == NULL)
270 if (bitmap_bit_p (live, regno))
541 combine_stack_adjustments_for_block (basic_block bb, bitmap live)
553 bitmap_copy (live, DF_LR_IN (bb));
554 df_simulate_initialize_forwards (bb, live);
603 bitmap_copy (last_sp_live, live);
85 bitmap live = BITMAP_ALLOC (&reg_obstack); local
    [all...]
  /src/distrib/amd64/liveimage/emuimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-amd64-live # gives ${IMGBASE}.img
  /src/distrib/evbarm/liveimage/armimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-${MACHINE_ARCH}-live # gives ${IMGBASE}.img
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
i915_selftest.c 76 int (*live)(struct drm_i915_private *); member in union:selftest::__anon5092
86 #define selftest(n, f) [live_##n] = { .name = #n, { .live = f } },
92 #define selftest(n, f) [perf_##n] = { .name = #n, { .live = f } },
165 err = st->live(data);
210 if (!i915_selftest.live)
213 err = run_selftests(live, pdev_to_i915(pdev));
215 i915_selftest.live = err;
219 if (i915_selftest.live < 0) {
220 i915_selftest.live = -ENOTTY;
411 module_param_named_unsafe(live_selftests, i915_selftest.live, int, 0400)
    [all...]
  /src/distrib/hpcarm/liveimage/
Makefile 3 LIVEIMGBASE= NetBSD-${DISTRIBVER}-${MACHINE}-live # gives ${IMGBASE}.img
  /src/external/gpl3/gcc/dist/libgcc/config/avr/libf7/
f7wraps.sh 55 ;; Functions that usually live in libgcc: __<name> for <name> in:
77 ;; Functions that usually live in libgcc: __<name> for <name> in:
99 ;; Functions that usually live in libgcc: __<name>df3 for <name> in:
122 ;; Functions that usually live in libgcc: __<name>df2 for <name> in:
144 ;; Functions that usually live in libm: Depending on [long] double layout,
169 ;; Functions that usually live in libm: Depending on [long] double layout,
194 ;; Functions that usually live in libm: Depending on [long] double layout,
219 ;; Functions that usually live in libm: Depending on [long] double layout,
  /src/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
f7wraps.sh 55 ;; Functions that usually live in libgcc: __<name> for <name> in:
77 ;; Functions that usually live in libgcc: __<name> for <name> in:
99 ;; Functions that usually live in libgcc: __<name>df3 for <name> in:
122 ;; Functions that usually live in libgcc: __<name>df2 for <name> in:
144 ;; Functions that usually live in libm: Depending on [long] double layout,
169 ;; Functions that usually live in libm: Depending on [long] double layout,
194 ;; Functions that usually live in libm: Depending on [long] double layout,
219 ;; Functions that usually live in libm: Depending on [long] double layout,

Completed in 33 milliseconds

1 2 3 4 5 6 7 8 910