Home
last modified time | relevance | path

Searched refs:basic (Results 1 – 25 of 144) sorted by relevance

123456

/dflybsd-src/contrib/gcc-4.7/gcc/doc/
H A Dcfg.texi14 @findex basic-block.h
20 represent basic blocks and edges represent possible transfer of
21 control flow from one basic block to another. The data structures
23 @file{basic-block.h}.
26 * Basic Blocks:: The definition and representation of basic blocks.
37 @cindex basic block
39 A basic block is a straight-line sequence of code with only one entry
40 point and only one exit. In GCC, basic blocks are represented using
46 doubly linked chain of basic blocks in the same order as the
47 underlying instruction stream. The chain of basic blocks is updated
[all …]
H A Dgcov.texi63 basic performance statistics, such as:
157 Write individual execution counts for every basic block. Normally gcov
309 is what you see when you use the basic @command{gcov} facility:
382 In this mode, each basic block is only shown on one line -- the last
393 As you can see, line 13 contains a basic block that was not executed.
445 For each basic block, a line is printed after the last line of the basic
446 block describing the branch or call that ends the basic block. There can
448 are multiple basic blocks that end on that line. In this case, the
477 the file doesn't match the executable (differing number of basic block
554 reconstruct the basic block graphs and assign source line numbers to
H A Dloop.texi93 Each basic block contains the reference to the innermost loop it belongs
124 control flow inside and with one exit consists of two basic blocks.
158 the structures. @code{loop_father} field of each basic block contains
163 @item @code{header}, @code{latch}: Header and latch basic blocks of the
165 @item @code{num_nodes}: Number of basic blocks in the loop (including
166 the basic blocks of the sub-loops).
189 @item @code{flow_bb_inside_loop_p}: Tests whether a basic block belongs
201 @code{get_loop_body_in_bfs_order}: Enumerates the basic blocks in the
208 @item @code{just_once_each_iteration_p}: Returns true if the basic block
222 @item @code{add_bb_to_loop}: Adds a basic block to a loop.
[all …]
/dflybsd-src/contrib/wpa_supplicant/src/crypto/
H A Dtls_openssl_ocsp.c496 BasicOCSPResponse *basic; in check_ocsp_resp() local
554 basic = d2i_BasicOCSPResponse(NULL, &basic_data, basic_len); in check_ocsp_resp()
555 if (!basic) { in check_ocsp_resp()
562 rd = basic->tbsResponseData; in check_ocsp_resp()
564 if (basic->certs) { in check_ocsp_resp()
565 untrusted = sk_X509_dup(basic->certs); in check_ocsp_resp()
569 num = sk_X509_num(basic->certs); in check_ocsp_resp()
573 extra_cert = sk_X509_value(basic->certs, i); in check_ocsp_resp()
634 basic->signatureAlgorithm, basic->signature, in check_ocsp_resp()
635 basic->tbsResponseData, skey) <= 0) { in check_ocsp_resp()
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dcfg-flags.def1 /* Flags on basic blocks and edges.
20 /* This file defines flags that may appear on basic blocks or on
33 NAME is the name of the basic block flag. A flag BB_#NAME will be
57 /* Set on basic blocks that the scheduler should not touch. This is used
110 that control flow falls through to the next basic block in the line. */
117 /* Edge out of a basic block that ends with a CALL_INSN with abnormal
129 to prevent merging away edges to the post-landing-pad basic block.
H A Dinsn-notes.def28 mean, such as register notes or bits in the basic-block structure. */
75 /* Record the struct for the following basic block. Uses
76 NOTE_BASIC_BLOCK. FIXME: Redundant with the basic block pointer
H A Dparams.def272 /* How deep from a given basic block the dominator tree should be searched
398 "A basic block profile count is considered hot if it contributes to "
403 …"Select fraction of the maximal frequency of executions of basic block in function given basic blo…
408 …"The minimum fraction of profile runs a given basic block execution count must be not to be consid…
413 …"Select fraction of the maximal frequency of executions of basic block in function given basic blo…
486 /* The maximum number expansion factor when copying basic blocks. */
489 "The maximum expansion factor when copying basic blocks.",
920 "Max basic blocks number in loop for loop invariant motion.",
939 /* Avoid SLP vectorization of large basic blocks. */
942 "Maximum number of instructions in basic block to be considered for SLP vectorization.",
[all …]
/dflybsd-src/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
383 example, for basic-block execution counts, the union is simply the sum
384 of all execution counts for each basic-block.
433 identifies a basic-block and the count specifies the number of times
[all …]
H A Dgprof.texi401 listing of the basic-block execution counts. Unfortunately, the
402 appearance of a human-readable @file{bb.out} means the basic-block
496 If the profile data file contains basic-block count records, specifying
497 the @samp{-l} option, along with @samp{-C}, will cause basic-block
504 call graph, and basic-block count records is displayed.
638 By default, only the lines at the beginning of a basic-block
640 a basic-block is annotated by repeating the annotation for the
703 If the program was compiled with basic-block counting enabled,
1526 -pg -a} augments your program with basic-block counting code, in
1529 versions of @code{gcc} support for displaying basic-block counts is
[all …]
H A Dgprof.info240 listing of the basic-block execution counts. Unfortunately, the
241 appearance of a human-readable `bb.out' means the basic-block counts
329 If the profile data file contains basic-block count records,
330 specifying the `-l' option, along with `-C', will cause basic-block
337 histogram, call graph, and basic-block count records is displayed.
458 only the lines at the beginning of a basic-block are annotated.
459 If this option is specified, every line in a basic-block is
522 If the program was compiled with basic-block counting enabled,
1303 augments your program with basic-block counting code, in addition to
1306 support for displaying basic-block counts is provided by the `gcov'
[all …]
/dflybsd-src/contrib/wpa_supplicant/src/utils/
H A Dhttp_curl.c1116 OCSP_BASICRESP *basic; in ocsp_resp_cb() local
1149 basic = OCSP_response_get1_basic(rsp); in ocsp_resp_cb()
1150 if (!basic) { in ocsp_resp_cb()
1190 status = OCSP_basic_verify(basic, certs, store, OCSP_TRUSTOTHER); in ocsp_resp_cb()
1195 OCSP_BASICRESP_free(basic); in ocsp_resp_cb()
1205 OCSP_BASICRESP_free(basic); in ocsp_resp_cb()
1213 OCSP_BASICRESP_free(basic); in ocsp_resp_cb()
1223 OCSP_BASICRESP_free(basic); in ocsp_resp_cb()
1229 res = OCSP_resp_find_status(basic, id, &status, &reason, &produced_at, in ocsp_resp_cb()
1236 OCSP_BASICRESP_free(basic); in ocsp_resp_cb()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dinsn-notes.def28 mean, such as register notes or bits in the basic-block structure. */
71 /* Record the struct for the following basic block. Uses
72 NOTE_BASIC_BLOCK. FIXME: Redundant with the basic block pointer
H A Dparams.def254 /* How deep from a given basic block the dominator tree should be searched
360 …"Select fraction of the maximal count of repetitions of basic block in program given basic block n…
364 …"Select fraction of the maximal frequency of executions of basic block in function given basic blo…
369 …"Select fraction of the maximal frequency of executions of basic block in function given basic blo…
429 /* The maximum number expansion factor when copying basic blocks. */
432 "The maximum expansion factor when copying basic blocks",
817 /* Maximal number of basic blocks in the functions analyzed by Graphite. */
821 "maximum number of basic blocks per function to be analyzed by Graphite",
834 "Max basic blocks number in loop for loop invariant motion",
837 /* Avoid SLP vectorization of large basic blocks. */
[all …]
H A Dpredict.def71 /* Branch to basic block containing call marked by noreturn attribute. */
75 /* Branch to basic block containing call marked by cold function attribute. */
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dregex_scanner.h99 : _M_flags & regex_constants::basic in _GLIBCXX_VISIBILITY()
130 { return _M_flags & (regex_constants::basic | regex_constants::grep); } in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dregex_compiler.h228 else if (!(_M_flags & (regex_constants::basic | regex_constants::grep))) in _GLIBCXX_VISIBILITY()
281 if (_M_flags & (regex_constants::basic | regex_constants::grep)) in _GLIBCXX_VISIBILITY()
377 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))) in _GLIBCXX_VISIBILITY()
387 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))) in _GLIBCXX_VISIBILITY()
397 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))) in _GLIBCXX_VISIBILITY()
410 if (!(_M_flags & (regex_constants::basic | regex_constants::grep))) in _GLIBCXX_VISIBILITY()
H A Dregex_constants.h119 static constexpr syntax_option_type basic = 1 << _S_basic; in _GLIBCXX_VISIBILITY() local
/dflybsd-src/contrib/binutils-2.27/binutils/
H A Drdcoff.c83 debug_type basic[T_MAX + 1]; member
249 && types->basic[ntype] != DEBUG_TYPE_NULL) in parse_coff_base_type()
250 return types->basic[ntype]; in parse_coff_base_type()
370 types->basic[ntype] = ret; in parse_coff_base_type()
680 types.basic[i] = DEBUG_TYPE_NULL; in parse_coff()
/dflybsd-src/contrib/binutils-2.34/binutils/
H A Drdcoff.c83 debug_type basic[T_MAX + 1]; member
249 && types->basic[ntype] != DEBUG_TYPE_NULL) in parse_coff_base_type()
250 return types->basic[ntype]; in parse_coff_base_type()
370 types->basic[ntype] = ret; in parse_coff_base_type()
684 types.basic[i] = DEBUG_TYPE_NULL; in parse_coff()
/dflybsd-src/lib/libipfw3/
H A DMakefile1 SUBDIR= basic \
/dflybsd-src/tools/regression/lib/libc-regex/
H A DMakefile5 TYPES= basic categorize nullsubexpr leftassoc rightassoc \
/dflybsd-src/contrib/file/magic/Magdir/
H A Dbasis6 # https://www.basis.com business-basic-files.
H A Daudio13 !:mime audio/basic
15 !:mime audio/basic
17 !:mime audio/basic
19 !:mime audio/basic
21 !:mime audio/basic
23 !:mime audio/basic
25 !:mime audio/basic
51 !:mime audio/x-dec-basic
53 !:mime audio/x-dec-basic
55 !:mime audio/x-dec-basic
[all …]
/dflybsd-src/include/rpcsvc/
H A Drex.x173 sgttyb basic; /* standard unix tty flags */ member
/dflybsd-src/contrib/gmp/
H A DREADME31 operands. The speed is achieved by using fullwords as the basic arithmetic
55 functions necessary for basic rational arithmetics. The associated type

123456