Home
last modified time | relevance | path

Searched refs:block (Results 176 – 200 of 610) sorted by relevance

12345678910>>...25

/dragonfly/contrib/gcc-4.7/gcc/
H A Dstab.def144 /* Beginning of lexical block.
146 The value is the address of the start of the text for the block.
147 The variables declared inside the block *precede* the N_LBRAC symbol. */
159 /* End of a lexical block. Desc matches the N_LBRAC's desc.
160 The value is the address of the end of the text for the block. */
163 /* Begin named common block. Only the name is significant. */
166 /* End named common block. Only the name is significant
H A Dcaller-save.c862 if (chain->next == 0 || chain->next->block != chain->block) in save_call_clobbered_regs()
872 && last->block == chain->block) in save_call_clobbered_regs()
1390 if (chain->insn == BB_HEAD (BASIC_BLOCK (chain->block))) in insert_one_insn()
1391 BB_HEAD (BASIC_BLOCK (chain->block)) = new_chain->insn; in insert_one_insn()
1410 if (chain->insn == BB_END (BASIC_BLOCK (chain->block))) in insert_one_insn()
1411 BB_END (BASIC_BLOCK (chain->block)) = new_chain->insn; in insert_one_insn()
1413 new_chain->block = chain->block; in insert_one_insn()
H A Dsched-rgn.c553 (BASIC_BLOCK (block))); in too_large()
1477 basic_block block; in compute_trg_info() local
1546 block = el.first_member[j]->src; in compute_trg_info()
2644 FOR_EACH_EDGE (e, ei, block->succs) in propagate_deps()
3169 basic_block block; in sched_rgn_local_init() local
3180 FOR_EACH_BB (block) in sched_rgn_local_init()
3184 FOR_EACH_EDGE (e, ei, block->succs) in sched_rgn_local_init()
3190 FOR_EACH_BB (block) in sched_rgn_local_init()
3194 FOR_EACH_EDGE (e, ei, block->succs) in sched_rgn_local_init()
3211 FOR_EACH_BB (block) in sched_rgn_local_init()
[all …]
H A Dresource.c49 int block; /* Basic block number containing target. */ member
922 if (tinfo && tinfo->block != -1 in mark_target_live_regs()
923 && ! INSN_DELETED_P (BB_HEAD (BASIC_BLOCK (tinfo->block)))) in mark_target_live_regs()
924 b = tinfo->block; in mark_target_live_regs()
936 if (b == tinfo->block && b != -1 && tinfo->bb_tick == bb_ticks[b]) in mark_target_live_regs()
948 tinfo->block = b; in mark_target_live_regs()
1086 tinfo->block = b; in mark_target_live_regs()
1275 tinfo->block = -1; in clear_hashed_info_for_insn()
H A Dsdbout.c654 sdbout_block (tree block) in sdbout_block() argument
656 while (block) in sdbout_block()
659 if (TREE_USED (block)) in sdbout_block()
662 if (BLOCK_NUMBER (block) == do_block) in sdbout_block()
663 sdbout_syms (BLOCK_VARS (block)); in sdbout_block()
666 if (BLOCK_NUMBER (block) > do_block) in sdbout_block()
670 sdbout_block (BLOCK_SUBBLOCKS (block)); in sdbout_block()
673 block = BLOCK_CHAIN (block); in sdbout_block()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dstab.def144 /* Beginning of lexical block.
146 The value is the address of the start of the text for the block.
147 The variables declared inside the block *precede* the N_LBRAC symbol. */
159 /* End of a lexical block. Desc matches the N_LBRAC's desc.
160 The value is the address of the end of the text for the block. */
163 /* Begin named common block. Only the name is significant. */
166 /* End named common block. Only the name is significant
H A Dfunction-tests.c235 tree block = make_node (BLOCK); in build_trivial_generic_function() local
237 = build3 (BIND_EXPR, void_type_node, NULL, stmt_list, block); in build_trivial_generic_function()
248 DECL_INITIAL (fndecl) = block; in build_trivial_generic_function()
249 BLOCK_SUPERCONTEXT (block) = fndecl; in build_trivial_generic_function()
256 BLOCK_VARS (block) = BIND_EXPR_VARS (bind_expr); in build_trivial_generic_function()
H A Dtree-inline.c700 old_block = *block; in remap_block()
707 *block = new_block; in remap_block()
726 tree new_tree = block; in remap_blocks()
728 if (!block) in remap_blocks()
781 if (block) in copy_bind_expr()
783 remap_block (&block, id); in copy_bind_expr()
4945 id->block = NULL_TREE; in expand_call_inline()
5385 if (block) in replace_locals_stmt()
5387 remap_block (&block, id); in replace_locals_stmt()
5518 if (block) in declare_inline_vars()
[all …]
H A Dresource.c44 int block; /* Basic block number containing target. */ member
929 if (tinfo && tinfo->block != -1 in mark_target_live_regs()
930 && ! BB_HEAD (BASIC_BLOCK_FOR_FN (cfun, tinfo->block))->deleted ()) in mark_target_live_regs()
931 b = tinfo->block; in mark_target_live_regs()
943 if (b == tinfo->block && b != -1 && tinfo->bb_tick == bb_ticks[b]) in mark_target_live_regs()
955 tinfo->block = b; in mark_target_live_regs()
1105 tinfo->block = b; in mark_target_live_regs()
1289 tinfo->block = -1; in clear_hashed_info_for_insn()
H A Dtree-ssa-propagate.c311 ssa_propagation_engine::simulate_block (basic_block block) in simulate_block() argument
316 if (block == EXIT_BLOCK_PTR_FOR_FN (cfun)) in simulate_block()
320 fprintf (dump_file, "\nSimulating block %d\n", block->index); in simulate_block()
324 for (gsi = gsi_start_phis (block); !gsi_end_p (gsi); gsi_next (&gsi)) in simulate_block()
329 if (! (block->flags & BB_VISITED)) in simulate_block()
336 for (j = gsi_start_bb (block); !gsi_end_p (j); gsi_next (&j)) in simulate_block()
340 block->flags |= BB_VISITED; in simulate_block()
355 FOR_EACH_EDGE (e, ei, block->succs) in simulate_block()
H A Dcaller-save.c898 if (chain->next == 0 || chain->next->block != chain->block) in save_call_clobbered_regs()
908 && last->block == chain->block) in save_call_clobbered_regs()
1400 if (chain->insn == BB_HEAD (BASIC_BLOCK_FOR_FN (cfun, chain->block))) in insert_one_insn()
1401 BB_HEAD (BASIC_BLOCK_FOR_FN (cfun, chain->block)) = new_chain->insn; in insert_one_insn()
1420 if (chain->insn == BB_END (BASIC_BLOCK_FOR_FN (cfun, chain->block))) in insert_one_insn()
1421 BB_END (BASIC_BLOCK_FOR_FN (cfun, chain->block)) = new_chain->insn; in insert_one_insn()
1423 new_chain->block = chain->block; in insert_one_insn()
/dragonfly/contrib/gdb-7/gdb/
H A Dmdebugread.c554 struct block *b; in parse_symbol()
1934 struct block *b; in parse_procedure()
4607 mylookup_symbol (char *name, struct block *block, in mylookup_symbol() argument
4624 block = BLOCK_SUPERBLOCK (block); in mylookup_symbol()
4625 if (block) in mylookup_symbol()
4650 * sizeof (bv->block))); in add_block()
4698 struct block **b1 = (struct block **) arg1; in compare_blocks()
4699 struct block **b2 = (struct block **) arg2; in compare_blocks()
4734 sizeof (struct block *), in sort_blocks()
4861 static struct block *
[all …]
H A Dc-exp.y155 struct block *bval;
269 %type <bval> block
857 block : BLOCKNAME
871 block : block COLONCOLON name
896 variable: block COLONCOLON name
1262 "double", (struct block *) NULL,
1267 (struct block *) NULL, 0); }
2754 classify_name (const struct block *block) in classify_name() argument
2766 sym = lookup_symbol (copy, block, VAR_DOMAIN, in classify_name()
2870 classify_inner_name (const struct block *block, struct type *context) in classify_inner_name() argument
[all …]
H A Dsymmisc.c69 static int block_depth (struct block *);
295 struct block *b; in dump_symtab_1()
772 block_depth (struct block *block) in block_depth() argument
776 while ((block = BLOCK_SUPERBLOCK (block)) != NULL) in block_depth()
/dragonfly/contrib/bzip2/
H A Dbzlib.c201 s->block = (UChar*)s->arr2; in BZ_API()
229 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
232 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
233 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
236 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
237 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
238 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
242 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
243 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
244 s->block[s->nblock] = (UChar)ch; s->nblock++; in add_pair_to_block()
[all …]
/dragonfly/contrib/binutils-2.27/gprof/
H A DREADME15 new file format supports basic-block execution counts and non-realtime
24 or with the number of times each basic-block in a function was
249 call-graph, or basic-block count records.
256 a basic-block are annotated. If this option is
257 specified, every line in a basic-block is annotated
367 basic-block execution counts cannot be accommodated by the old file
379 records, call-graph arc records, and basic-block execution count
384 of all execution counts for each basic-block.
430 Basic-block execution count records consist of a header followed by a
433 identifies a basic-block and the count specifies the number of times
[all …]
/dragonfly/sys/vfs/isofs/cd9660/
H A DTODO.hibler9 Unfortunately, if the logical block size is smaller than the page size,
11 block size (as it is for the HP drive--150kbs) then clustering may not
/dragonfly/usr.bin/compress/doc/
H A Drevision.log36 * of SVR2 'pack'. Streamline block-compress table clear logic. Increase
55 * double hashing, discussed within. Make block compression standard.
58 * Introduce adaptive reset for block compression, to boost the rate
62 * Implemented "-B" block compress. Implemented REVERSE sorting of tab_next.
/dragonfly/sys/dev/drm/radeon/
H A Dradeon_irq_kms.c472 void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block) in radeon_irq_kms_enable_afmt() argument
480 rdev->irq.afmt[block] = true; in radeon_irq_kms_enable_afmt()
494 void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block) in radeon_irq_kms_disable_afmt() argument
502 rdev->irq.afmt[block] = false; in radeon_irq_kms_disable_afmt()
/dragonfly/contrib/file/magic/Magdir/
H A Dvacuum-cleaner20 # int32_t cell_bytes; /* 20: # of bytes for cells per block */
23 # int32_t used_blocks; /* 32: 5/45/33/... == # of block entries used! */
/dragonfly/contrib/lvm2/dist/test/
H A Dt-pvcreate-operation-md.sh92 mddev_p_sysfs_name=$(echo /sys/dev/block/${mddev_maj_min}/*p1)
97 sysfs_alignment_offset=/sys/dev/block/${mddev_maj_min}/${base_mddev_p}/alignment_offset
/dragonfly/usr.bin/mail/
H A Ddef.h99 #define positionof(block, offset) ((off_t)(block) * 4096 + (offset)) argument
/dragonfly/sys/dev/drm/amd/display/dc/gpio/dce120/
H A Dhw_translate_dce120.c54 #define REGI(reg_name, block, id)\ argument
55 BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
56 mm ## block ## id ## _ ## reg_name
/dragonfly/sys/dev/drm/amd/display/dc/gpio/dcn10/
H A Dhw_translate_dcn10.c54 #define REGI(reg_name, block, id)\ argument
55 BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
56 mm ## block ## id ## _ ## reg_name
/dragonfly/crypto/openssh/
H A DPROTOCOL.chacha20poly130557 uint64 under the SSH wire encoding rules and a ChaCha20 block counter of
58 zero. The K_2 ChaCha20 block counter is then set to the little-endian
68 encoded as a uint64 under the usual SSH wire encoding and a zero block
77 K_2, the packet sequence number as nonce and a starting block counter of

12345678910>>...25