HomeSort by: relevance | last modified time | path
    Searched refs:predicate (Results 1 - 25 of 240) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/gpl3/gcc.old/dist/gcc/
gimple-predicate-analysis.h 1 /* Support for simple predicate analysis.
30 /* Represents a simple Boolean predicate. */
47 /* Represents a complex Boolean predicate expression. */
48 class predicate class
71 predicate (func_t &eval) function in class:predicate
75 predicate (const predicate &rhs) function in class:predicate
81 predicate (basic_block, basic_block, func_t &);
83 ~predicate ();
86 predicate& operator= (const predicate &)
    [all...]
gimple-predicate-analysis.cc 1 /* Support for simple predicate analysis.
44 #include "gimple-predicate-analysis.h"
64 that's controlled by the same predicate). */
205 /* Dump the predicate chain PREDS for STMT, prefixed by MSG. */
281 /* Return true if PRED is common among all predicate chains in PREDS
318 /* Find a predicate to examine against paths of interest. If there
319 is no predicate of the "FLAG_VAR CMP CONST" form, try to find one
359 /* Check if we can take advantage of FLAG_VAR COMP FLAG_VAR predicate
423 /* Return if any "flag_var comp const" predicate is found. */
429 /* Record if any "flag_var comp flag_var[vinfo]" predicate is found. *
1668 predicate::predicate (basic_block def_bb, basic_block use_bb, func_t &eval) function in class:predicate
    [all...]
ipa-fnsummary.h 25 #include "ipa-predicate.h"
73 context. We keep simple array of record, every containing of predicate
78 /* Predicate for code to be executed. */
80 /* Predicate for value to be constant and optimized out in a specialized copy.
108 particular predicate. The structure is used to estimate how often we
116 /* ...when this predicate evaluates to false. */
117 ipa_predicate * GTY((skip)) predicate;
279 : predicate (NULL), param (vNULL), call_stmt_size (0), call_stmt_time (0),
286 predicate (s.predicate), param (s.param), call_stmt_size (s.call_stmt_size)
295 ipa_predicate *predicate; member in class:ipa_call_summary
    [all...]
ipa-fnsummary.cc 207 "ignoring the predicate.");
272 /* Set predicate for edge E. */
275 edge_set_predicate (struct cgraph_edge *e, ipa_predicate *predicate)
280 if (predicate && *predicate == false
288 if (predicate && *predicate != true)
290 if (!es->predicate)
291 es->predicate = edge_predicate_pool.allocate ();
292 *es->predicate = *predicate
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-predicate-analysis.h 1 /* Support for simple predicate analysis.
26 /* Represents a simple Boolean predicate. */
43 /* Represents a complex Boolean predicate expression. */
44 class predicate class
48 predicate (bool empty_val) : m_preds (vNULL), m_cval (empty_val) { } function in class:predicate
51 predicate (const predicate &rhs) : m_preds (vNULL) { *this = rhs; } function in class:predicate
53 ~predicate ();
56 predicate& operator= (const predicate &)
    [all...]
tree-ssa-loop-unswitch.cc 86 (note that an unswitching predicate for a gswitch actually corresponds
92 5) A selected predicate is chosen and we simplify the CFG (dead edges) in
105 predicate. */
109 /* CTOR for a switch edge predicate. */
162 /* Copy ranges for purpose of usage in predicate path. */
180 /* Modified range that is part of a predicate path. */
183 /* Index of the edge the predicate belongs to in the successor vector. */
186 /* The profile count of this predicate. */
189 /* Whether the predicate was created from a switch statement. */
192 /* The number of the predicate in the predicates vector below. *
551 unswitch_predicate *predicate = new unswitch_predicate (stmt); local
635 unswitch_predicate *predicate local
660 unswitch_predicate *predicate = predicate_path[i].first; local
691 unswitch_predicate *predicate = predicate_path[i].first; local
984 unswitch_predicate *predicate = NULL; local
    [all...]
ipa-fnsummary.h 25 #include "ipa-predicate.h"
73 context. We keep simple array of record, every containing of predicate
78 /* Predicate for code to be executed. */
80 /* Predicate for value to be constant and optimized out in a specialized copy.
108 particular predicate. The structure is used to estimate how often we
116 /* ...when this predicate evaluates to false. */
117 ipa_predicate * GTY((skip)) predicate;
282 : predicate (NULL), param (vNULL), call_stmt_size (0), call_stmt_time (0),
289 predicate (s.predicate), param (s.param), call_stmt_size (s.call_stmt_size)
298 ipa_predicate *predicate; member in class:ipa_call_summary
    [all...]
ipa-fnsummary.cc 209 "ignoring the predicate.");
274 /* Set predicate for edge E. */
277 edge_set_predicate (struct cgraph_edge *e, ipa_predicate *predicate)
282 if (predicate && *predicate == false
290 if (predicate && *predicate != true)
292 if (!es->predicate)
293 es->predicate = edge_predicate_pool.allocate ();
294 *es->predicate = *predicate
    [all...]
gimple-predicate-analysis.cc 1 /* Support for simple predicate analysis.
47 #include "gimple-predicate-analysis.h"
51 /* In our predicate normal form we have MAX_NUM_CHAINS or predicates
205 /* Return true if PRED is common among all predicate chains in PREDS
242 /* Find a predicate to examine against paths of interest. If there
243 is no predicate of the "FLAG_VAR CMP CONST" form, try to find one
280 /* Check if we can take advantage of FLAG_VAR COMP FLAG_VAR predicate
342 /* Return predicate found. */
355 is the const value used in the predicate associated with the flag,
356 CMP_CODE is the comparison code used in the predicate, VISITED_PHI
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gdbarch_types.py 46 predicate: bool = False,
59 self.predicate = predicate
78 predicate = f"gdbarch->{self.name} != {self.predefault}"
80 predicate = f"gdbarch->{self.name} != NULL"
81 return predicate
97 predicate: bool = False,
107 predicate=predicate,
125 predicate: bool = False
    [all...]
gdbarch.py 92 if c.predicate:
220 elif c.predicate:
221 print(f" /* Skip verify of {c.name}, has predicate. */", file=f)
263 if c.predicate:
292 # Bodies of setter, accessor, and predicate functions.
295 if c.predicate:
311 if c.predicate and c.predefault:
312 # Allow a call to a function with a predicate.
314 f" /* Do not check predicate: {c.get_predicate()}, allow call. */",
356 elif c.predicate
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
gdbarch_types.py 46 predicate: bool = False,
59 self.predicate = predicate
78 predicate = f"gdbarch->{self.name} != {self.predefault}"
80 predicate = f"gdbarch->{self.name} != NULL"
81 return predicate
97 predicate: bool = False,
107 predicate=predicate,
125 predicate: bool = False
    [all...]
gdbarch.py 92 if c.predicate:
220 elif c.predicate:
221 print(f" /* Skip verify of {c.name}, has predicate. */", file=f)
263 if c.predicate:
292 # Bodies of setter, accessor, and predicate functions.
295 if c.predicate:
311 if c.predicate and c.predefault:
312 # Allow a call to a function with a predicate.
314 f" /* Do not check predicate: {c.get_predicate()}, allow call. */",
356 elif c.predicate
    [all...]
  /src/external/bsd/libc++/dist/libcxxrt/test/
test.cc 10 void log_test(bool predicate, const char *file, int line, const char *message)
12 if (predicate)
test.h 2 void log_test(bool predicate, const char *file, int line, const char *message);
  /src/external/bsd/zstd/dist/contrib/pzstd/
ErrorHolder.h 38 bool check(bool predicate, std::string message) noexcept {
39 if (!predicate) {
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-death-test.h 166 // integer exit status that satisfies predicate, and emitting error output
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
173 # define EXPECT_EXIT(statement, predicate, regex) \
174 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
187 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
__init__.py 26 """ Predicate to detect duplicated entries.
34 def predicate(entry): function in function:duplicate_check
35 entry_hash = predicate.unique(entry)
36 if entry_hash not in predicate.state:
37 predicate.state.add(entry_hash)
41 predicate.unique = method
42 predicate.state = set()
43 return predicate
clang.py 91 def predicate(checker): function in function:is_active
94 return any(pattern.match(checker) for pattern in predicate.patterns)
96 predicate.patterns = [re.compile(r'^' + a + r'(\.|$)') for a in checkers]
97 return predicate
  /src/external/gpl3/gcc.old/dist/gcc/config/arm/
arm-simd-builtin-types.def 55 ENTRY (Pred1x16_t, V16BI, predicate, 16, pred1, 16)
56 ENTRY (Pred2x8_t, V8BI, predicate, 8, pred1, 15)
57 ENTRY (Pred4x4_t, V4BI, predicate, 4, pred1, 15)
  /src/external/lgpl2/userspace-rcu/dist/include/urcu/
compiler.h 220 * - predicate: boolean expression to evaluate,
228 #define urcu_static_assert(predicate, msg, c_identifier_msg) \
229 static_assert(predicate, msg)
231 #define urcu_static_assert(predicate, msg, c_identifier_msg) \
232 _Static_assert(predicate, msg)
235 * Evaluates the predicate and emit a compilation error on failure.
237 * If the predicate evaluates to true, this macro emits a function
240 * If the predicate evaluates to false, this macro emits a function
246 #define urcu_static_assert(predicate, msg, c_identifier_msg) \
247 void urcu_static_assert_proto(char c_identifier_msg[2*!!(predicate)-1]
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlanPredicator.h 11 /// interfaces to predicate and linearize the VPlan region.
48 /// Create and return VPValue corresponding to the predicate for the edge from
52 /// Generate and return the result of ORing all the predicate VPValues in \p
56 /// Create or propagate predicate for \p CurrBlock in region \p Region using
57 /// predicate(s) of its predecessor(s)
61 /// Predicate the CFG within \p Region.
70 /// Predicate Plan's HCFG.
71 void predicate(void);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MacOSXAPIChecker.cpp 130 os << " for the predicate value. Using such transient memory for "
131 "the predicate is potentially dangerous.";
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.h 49 Constant *ConstantFoldCompareInstruction(unsigned short predicate,
  /src/distrib/utils/libhack/
multibyte.c 199 int (*predicate)(wint_t); member in struct:wct_entry_hack
202 #define WCTENTRY(T) { .name= #T , .predicate= isw##T },
238 return my_wcts[ndx].predicate(wc);

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 910