Searched refs:live (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.dlclose2.ksh108 void *live, *dead;
111 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
116 (void) dlclose(live);
123 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
128 if ((go = dlsym(live, "go")) == NULL) {
H A Dtst.dlclose1.ksh113 void *live;
115 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
120 (void) dlclose(live);
H A Dtst.dlclose3.ksh119 void *live;
121 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
126 (void) dlclose(live);
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-live.h196 /* ---------------- live on entry/exit info ------------------------------
198 This structure is used to represent live range information on SSA based
200 live-on-entry information and live-on-exit information can be calculated.
201 As well, partitions are marked as to whether they are global (live
204 The live-on-entry information is per variable. It provide a bitmap for
206 is live on entry to that block.
208 The live-on-exit information is per block. It provides a bitmap for each
209 block indicating which partitions are live on exit from the block.
215 originate. They are *NOT* considered live o
265 partition_is_global(tree_live_info_p live, int p) argument
276 live_entry_blocks(tree_live_info_p live, int p) argument
287 live_on_exit(tree_live_info_p live, basic_block bb) argument
300 live_var_map(tree_live_info_p live) argument
310 live_merge_and_clear(tree_live_info_p live, int p1, int p2) argument
320 make_live_on_entry(tree_live_info_p live, basic_block bb , int p) argument
[all...]
H A Dtree-ssa-live.c39 #include "tree-ssa-live.h"
57 the same real variable. In that instance, we need to detect the live
513 /* Allocate and return a new live range information object base on MAP. */
518 tree_live_info_p live; local
521 live = (tree_live_info_p) xmalloc (sizeof (struct tree_live_info_d));
522 live->map = map;
523 live->num_blocks = last_basic_block;
525 live->global = BITMAP_ALLOC (NULL);
527 live->livein = (bitmap *)xmalloc (num_var_partitions (map) * sizeof (bitmap));
529 live
540 delete_tree_live_info(tree_live_info_p live) argument
567 live_worklist(tree_live_info_p live, int *stack, int i) argument
622 add_livein_if_notdef(tree_live_info_p live, bitmap def_vec, tree var, basic_block bb) argument
642 tree_live_info_p live; local
1401 bitmap live; local
1856 dump_live_info(FILE *f, tree_live_info_p live, int flag) argument
[all...]
H A Drtl-factoring.c450 are live across abnormal edges. Set a flag in STACK_REG_LIVE for an insn
451 if a stack register is live after the insn. */
456 regset_head live; local
461 INIT_REG_SET (&live);
462 COPY_REG_SET (&live, bb->il.rtl->global_live_at_end);
463 pbi = init_propagate_block_info (bb, &live, NULL, NULL, 0);
465 /* Propagate liveness info and mark insns where a stack reg is live. */
472 if (REGNO_REG_SET_P (&live, reg))
485 CLEAR_REG_SET (&live);
529 /* Clears the bits in REGS for all registers, which are live i
536 regset_head live; local
[all...]
H A Dtree-vectorizer.h192 bool live; member in struct:_stmt_vec_info
236 #define STMT_VINFO_LIVE_P(S) (S)->live
H A Dpostreload.c669 indicates where it becomes live again.
731 still good enough to determine which registers are live at a jump
743 HARD_REG_SET live;
745 REG_SET_TO_HARD_REG_SET (live,
747 compute_use_by_pseudos (&live,
749 COPY_HARD_REG_SET (LABEL_LIVE (insn), live);
750 IOR_HARD_REG_SET (ever_live_at_start, live);
957 HARD_REG_SET *live;
961 live = &LABEL_LIVE (JUMP_LABEL (insn));
963 live
742 HARD_REG_SET live; local
748 COPY_HARD_REG_SET (LABEL_LIVE (insn), live); local
956 HARD_REG_SET *live; local
[all...]
H A Ddf-problems.c143 /* Get the live in set for BB no matter what problem happens to be
160 /* Get the live out set for BB no matter what problem happens to be
565 /* Process the hardware registers that are always live. */
1453 /* Compute local live register info for basic block BB. */
1475 /* Process the hardware registers that are always live. */
1552 /* Process the uses that are live into an exception handler. */
1561 /* Compute local live register info for each basic block within BLOCKS. */
1579 /* The all-important stack pointer must always be live. */
1583 live everywhere -- which might not already be the case for
2506 live everywher
3259 df_set_unused_notes_for_mw(rtx insn, struct df_mw_hardreg *mws, bitmap live, bitmap do_not_gen, bitmap artificial_uses, int flags) argument
3331 df_set_dead_notes_for_mw(rtx insn, struct df_mw_hardreg *mws, bitmap live, bitmap do_not_gen, bitmap artificial_uses, int flags) argument
3414 df_create_unused_note(basic_block bb, rtx insn, struct df_ref *def, bitmap live, bitmap do_not_gen, bitmap artificial_uses, bitmap local_live, bitmap local_processed, int flags, int luid) argument
3487 df_ri_bb_compute(struct dataflow *dflow, unsigned int bb_index, bitmap live, bitmap do_not_gen, bitmap artificial_uses, bitmap local_live, bitmap local_processed, bitmap setjumps_crossed) argument
3709 bitmap live = BITMAP_ALLOC (NULL); local
[all...]
H A Dmode-switching.c165 reg_dies (rtx reg, HARD_REG_SET live)
176 CLEAR_HARD_REG_BIT (live, regno + nregs);
179 /* Record in LIVE that register REG became live.
183 reg_becomes_live (rtx reg, rtx setter ATTRIBUTE_UNUSED, void *live)
197 SET_HARD_REG_BIT (* (HARD_REG_SET *) live, regno + nregs);
163 reg_dies(rtx reg, HARD_REG_SET live) argument
181 reg_becomes_live(rtx reg, rtx setter ATTRIBUTE_UNUSED, void *live) argument
H A Drecog.c268 hard registers since our callers can't know if they are live or not.
2956 HARD_REG_SET live;
2970 REG_SET_TO_HARD_REG_SET (live, peep2_insn_data[from].live_before);
2980 IOR_HARD_REG_SET (live, this_live);
3021 || TEST_HARD_REG_BIT (live, regno + j))
3051 regset live;
3065 live = ALLOC_REG_SET (&reg_obstack);
3091 COPY_REG_SET (live, bb->il.rtl->global_live_at_end);
3092 COPY_REG_SET (peep2_insn_data[MAX_INSNS_PER_PEEP2].live_before, live);
3095 pbi = init_propagate_block_info (bb, live, NUL
2942 HARD_REG_SET live; local
3037 regset live; local
[all...]
/freebsd-9.3-release/contrib/top/
H A DMakefile.X22 # BINDIR - directory where the executable should live
23 # MANDIR - directory where the manual page should live
/freebsd-9.3-release/usr.bin/netstat/
H A Dmroute6.c118 if (live) {
161 if (live) {
225 if (live) {
H A Dmain.c359 int live; /* true if we are examining a live system */ variable
536 live = (nlistf == NULL && memf == NULL);
537 if (!live)
544 if (!live)
550 if (!live) {
558 if (!live) {
681 if (tp->pr_usesysctl && live)
699 if (tp->pr_usesysctl && live)
710 if (pr != NULL && (off || (live
[all...]
H A Dmroute.c225 if (live) {
271 if (live) {
346 if (live) {
H A Dinet.c342 if (live) {
598 if (live) {
744 if (live) {
796 if (live) {
847 if (live) {
911 if (live) {
998 if (live) {
1059 if (live) {
1120 if (live) {
1141 if (live) {
[all...]
H A Dmbuf.c98 if (live) {
301 if (live) {
H A Dnetstat.h60 extern int live; /* true if we are examining a live system */
H A Dinet6.c368 if (live) {
850 if (live) {
1005 if (live) {
1045 if (live) {
H A Dnetgraph.c86 if (!live)
/freebsd-9.3-release/usr.sbin/pc-sysinstall/backend-query/
H A DMakefile7 sys-mem.sh test-live.sh test-netup.sh update-part-list.sh xkeyboard-layouts.sh \
/freebsd-9.3-release/usr.sbin/pc-sysinstall/pc-sysinstall/
H A Dpc-sysinstall.sh212 test-live) ${QUERYDIR}/test-live.sh
/freebsd-9.3-release/tools/tools/net80211/w00t/expand/
H A Dexpand.c56 int live; member in struct:queue
123 if (q->live)
151 q->live = 1;
310 assert(q->live);
387 if (p->q && p->q->live) {
/freebsd-9.3-release/tools/tools/net80211/w00t/redir/
H A Dredir.c58 int live; member in struct:queue
164 if (q->live)
192 q->live = 1;
326 assert(q->live);
502 if (!q->live)
539 q->live = 0;
556 if (p->q->live)
/freebsd-9.3-release/sys/boot/i386/pxeldr/
H A Dpxeldr.S53 .set MEM_BTX_CLIENT,0xa000 # where BTX clients live

Completed in 265 milliseconds

123