Home
last modified time | relevance | path

Searched refs:high_value (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-common.c4817 tree low_value, tree high_value) in c_add_case_label() argument
4834 || (high_value && TREE_TYPE (high_value) in c_add_case_label()
4835 && POINTER_TYPE_P (TREE_TYPE (high_value)))) in c_add_case_label()
4842 if (high_value) in c_add_case_label()
4855 if (high_value) in c_add_case_label()
4857 high_value = check_case_value (loc, high_value); in c_add_case_label()
4858 high_value = convert_and_check (loc, type, high_value); in c_add_case_label()
4859 high_value = fold (high_value); in c_add_case_label()
4860 if (high_value == error_mark_node) in c_add_case_label()
4864 if (low_value && high_value) in c_add_case_label()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-common.cc5063 tree low_value, tree high_value) in c_add_case_label() argument
5080 || (high_value && TREE_TYPE (high_value) in c_add_case_label()
5081 && POINTER_TYPE_P (TREE_TYPE (high_value)))) in c_add_case_label()
5088 if (high_value) in c_add_case_label()
5101 if (high_value) in c_add_case_label()
5103 high_value = check_case_value (loc, high_value); in c_add_case_label()
5104 high_value = convert_and_check (loc, type, high_value); in c_add_case_label()
5105 high_value = fold (high_value); in c_add_case_label()
5106 if (high_value == error_mark_node) in c_add_case_label()
5110 if (low_value && high_value) in c_add_case_label()
[all …]
H A DChangeLog3310 Don't call check_case_bounds. Fold low_value as well as high_value.
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DDbe.cc9333 long long high_value = propCumulativeRecentBinHighVal->fetch (propNum); in dbeGetTLData() local
9339 thisPropVals->store (last_bin, high_value); in dbeGetTLData()
9345 high_value = 0; // high value of next bin is 0. in dbeGetTLData()
9346 propCumulativeRecentBinHighVal->store (propNum, high_value); in dbeGetTLData()
9351 if (high_value < this_value) in dbeGetTLData()
9354 high_value = this_value; in dbeGetTLData()
9355 propCumulativeRecentBinHighVal->store (propNum, high_value); in dbeGetTLData()
9360 thisPropVals->store (bin, high_value); in dbeGetTLData()
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DDbe.cc9333 long long high_value = propCumulativeRecentBinHighVal->fetch (propNum); in dbeGetTLData() local
9339 thisPropVals->store (last_bin, high_value); in dbeGetTLData()
9345 high_value = 0; // high value of next bin is 0. in dbeGetTLData()
9346 propCumulativeRecentBinHighVal->store (propNum, high_value); in dbeGetTLData()
9351 if (high_value < this_value) in dbeGetTLData()
9354 high_value = this_value; in dbeGetTLData()
9355 propCumulativeRecentBinHighVal->store (propNum, high_value); in dbeGetTLData()
9360 thisPropVals->store (bin, high_value); in dbeGetTLData()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-typeck.c10940 do_case (location_t loc, tree low_value, tree high_value) in do_case() argument
10952 if (high_value && TREE_CODE (high_value) != INTEGER_CST) in do_case()
10954 high_value = c_fully_fold (high_value, false, NULL); in do_case()
10955 if (TREE_CODE (high_value) == INTEGER_CST) in do_case()
10976 low_value, high_value); in do_case()
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-typeck.cc11130 do_case (location_t loc, tree low_value, tree high_value) in do_case() argument
11142 if (high_value && TREE_CODE (high_value) != INTEGER_CST) in do_case()
11144 high_value = c_fully_fold (high_value, false, NULL); in do_case()
11145 if (TREE_CODE (high_value) == INTEGER_CST) in do_case()
11166 low_value, high_value); in do_case()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Ddecl.c3755 finish_case_label (location_t loc, tree low_value, tree high_value) in finish_case_label() argument
3761 if (low_value == NULL_TREE && high_value == NULL_TREE) in finish_case_label()
3771 return add_stmt (build_case_label (low_value, high_value, label)); in finish_case_label()
3787 high_value = case_conversion (type, high_value); in finish_case_label()
3789 r = c_add_case_label (loc, switch_stack->cases, cond, low_value, high_value); in finish_case_label()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Ddecl.cc3958 finish_case_label (location_t loc, tree low_value, tree high_value) in finish_case_label() argument
3964 if (low_value == NULL_TREE && high_value == NULL_TREE) in finish_case_label()
3974 return add_stmt (build_case_label (low_value, high_value, label)); in finish_case_label()
3990 high_value = case_conversion (type, high_value); in finish_case_label()
3992 r = c_add_case_label (loc, switch_stack->cases, cond, low_value, high_value); in finish_case_label()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree.cc2714 build_case_label (tree low_value, tree high_value, tree label_decl) in build_case_label() argument
2722 CASE_HIGH (t) = high_value; in build_case_label()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree.c2445 build_case_label (tree low_value, tree high_value, tree label_decl) in build_case_label() argument
2453 CASE_HIGH (t) = high_value; in build_case_label()