Home
last modified time | relevance | path

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

/netbsd/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-common.c4834 || (high_value && 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()
4864 if (low_value && high_value) in c_add_case_label()
4870 high_value = NULL_TREE; in c_add_case_label()
4911 && high_value in c_add_case_label()
4913 high_value) in c_add_case_label()
[all …]
H A Dc-common.cc5080 || (high_value && 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()
5110 if (low_value && high_value) in c_add_case_label()
5116 high_value = NULL_TREE; in c_add_case_label()
5157 && high_value in c_add_case_label()
5159 high_value) in c_add_case_label()
[all …]
H A DChangeLog3242 Don't call check_case_bounds. Fold low_value as well as high_value.
/netbsd/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-common.c4834 || (high_value && 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()
4864 if (low_value && high_value) in c_add_case_label()
4870 high_value = NULL_TREE; in c_add_case_label()
4911 && high_value in c_add_case_label()
4913 high_value) in c_add_case_label()
[all …]
/netbsd/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/external/gpl3/gcc/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()
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/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/external/gpl3/gcc/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()
H A Ddecl.cc3955 finish_case_label (location_t loc, tree low_value, tree high_value) in finish_case_label() argument
3961 if (low_value == NULL_TREE && high_value == NULL_TREE) in finish_case_label()
3971 return add_stmt (build_case_label (low_value, high_value, label)); in finish_case_label()
3987 high_value = case_conversion (type, high_value); in finish_case_label()
3989 r = c_add_case_label (loc, switch_stack->cases, cond, low_value, high_value); in finish_case_label()
/netbsd/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/external/gpl3/gcc/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()
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/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()