Home
last modified time | relevance | path

Searched refs:predicate (Results 1 – 25 of 148) sorted by relevance

123456

/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86SchedPredicates.td10 // This file defines scheduling predicate definitions that are common to
15 // A predicate used to identify dependency-breaking instructions that clear the
16 // content of the destination register. Note that this predicate only checks if
17 // input registers are the same. This predicate doesn't make any assumptions on
22 // A predicate used to identify VPERM that have bits 3 and 7 of their mask set.
29 // A predicate used to check if a LEA instruction uses all three source
59 // This predicate evaluates to true only if the input machine instruction is a
/freebsd-12.1/contrib/llvm/include/llvm/Target/
H A DTargetInstrPredicate.td22 // The syntax for MCInstPredicate is declarative, and predicate definitions can
31 // example, `CheckOpcode` is a special type of predicate used to describe a
62 // For example, a `CheckOpcode` predicate is expanded using method
74 // A generic machine instruction predicate.
82 // A predicate used to negate the outcome of another predicate.
197 // Used to expand the body of a function predicate. See the definition of
203 class MCReturnStatement<MCInstPredicate predicate> : MCStatement {
204 MCInstPredicate Pred = predicate;
259 // predicate.
314 // True if we need an equivalent predicate function in the MC layer.
[all …]
H A DTargetCallingConv.td23 /// CCPredicateAction - Instances of this class check some predicate, then
24 /// delegate to another action if the predicate is true.
35 /// CCIf - If the predicate matches, apply A.
36 class CCIf<string predicate, CCAction A> : CCPredicateAction<A> {
37 string Predicate = predicate;
/freebsd-12.1/contrib/googletest/googletest/include/gtest/
H A Dgtest-death-test.h169 # define ASSERT_EXIT(statement, predicate, regex) \ argument
170 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
174 # define EXPECT_EXIT(statement, predicate, regex) \ argument
175 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
/freebsd-12.1/contrib/gcc/
H A Doptabs.c3758 if (!insn_data[icode].operand[opnum].predicate in prepare_operand()
4106 if (!insn_data[icode].operand[0].predicate in emit_conditional_move()
4110 if (!insn_data[icode].operand[2].predicate in emit_conditional_move()
4114 if (!insn_data[icode].operand[3].predicate in emit_conditional_move()
4232 if (!insn_data[icode].operand[0].predicate in emit_conditional_add()
4238 if (!insn_data[icode].operand[2].predicate in emit_conditional_add()
4242 if (!insn_data[icode].operand[3].predicate in emit_conditional_add()
4302 || !(insn_data[icode].operand[0].predicate in gen_add3_insn()
4304 || !(insn_data[icode].operand[1].predicate in gen_add3_insn()
4325 if (!(insn_data[icode].operand[0].predicate in have_add2_insn()
[all …]
H A Dgenoutput.c124 const char *predicate; member
262 d->predicate && d->predicate[0] ? d->predicate : "0"); in output_operand_data()
463 d->operand[opno].predicate = XSTR (part, 1); in scan_operands()
492 d->operand[opno].predicate = "scratch_operand"; in scan_operands()
522 d->operand[opno].predicate = XSTR (part, 1); in scan_operands()
572 p0 = d0->predicate; in compare_operands()
575 p1 = d1->predicate; in compare_operands()
H A Dc-format.h172 int predicate; member
201 int predicate; member
H A Dtarghooks.c535 && insn_data[(int) icode].operand[in_p].predicate in default_secondary_reload()
536 && ! insn_data[(int) icode].operand[in_p].predicate (x, reload_mode)) in default_secondary_reload()
H A Dexpmed.c418 if (! (*insn_data[icode].operand[1].predicate) (src, mode1)) in store_bit_field()
427 && (*insn_data[icode].operand[1].predicate) (src, mode1) in store_bit_field()
428 && (*insn_data[icode].operand[2].predicate) (rtxpos, mode2)); in store_bit_field()
656 && ! ((*insn_data[(int) CODE_FOR_insv].operand[0].predicate) in store_bit_field()
760 if (! ((*insn_data[(int) CODE_FOR_insv].operand[3].predicate) in store_bit_field()
1160 if (! (*insn_data[icode].operand[1].predicate) (src, mode1)) in extract_bit_field()
1169 && (*insn_data[icode].operand[1].predicate) (src, mode1) in extract_bit_field()
1170 && (*insn_data[icode].operand[2].predicate) (rtxpos, mode2)); in extract_bit_field()
1499 if (! ((*insn_data[(int) CODE_FOR_extzv].operand[0].predicate) in extract_bit_field()
1632 if (! ((*insn_data[(int) CODE_FOR_extv].operand[0].predicate) in extract_bit_field()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DBroadcaster.cpp372 ListenerMatchesAndSharedBits predicate(event_spec, listener_sp); in UnregisterListenerForEvents() local
380 iter = find_if(m_event_map.begin(), end_iter, predicate); in UnregisterListenerForEvents()
419 ListenerMatchesPointer predicate(listener); in RemoveListener() local
423 std::find_if(iter, end_iter, predicate); in RemoveListener()
429 iter = find_if(m_event_map.begin(), end_iter, predicate); in RemoveListener()
439 ListenerMatches predicate(listener_sp); in RemoveListener() local
446 iter = find_if(m_event_map.begin(), end_iter, predicate); in RemoveListener()
/freebsd-12.1/cddl/usr.sbin/dwatch/
H A Ddwatch748 predicate="strstr(execname, \"${name#\*}\") != NULL" ;;
750 predicate="strstr(execname, \"$name\") == (execname +"
751 predicate="$predicate strlen(execname) - ${#name})" ;;
752 *\*) predicate="strstr(execname, \"${OPTARG%\*}\") == execname" ;;
753 *) predicate="execname == \"$OPTARG\""
755 EVENT_TEST="$predicate${EVENT_TEST:+ ||
/freebsd-12.1/sys/contrib/zstd/contrib/pzstd/
H A DErrorHolder.h38 bool check(bool predicate, std::string message) noexcept { in check() argument
39 if (!predicate) { in check()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagon.td111 // predicate-new forms.
123 // Generate mapping table to relate non-predicate instructions with their
131 // Instructions with the same predicate sense form a column.
140 // Generate mapping table to relate predicate-true instructions with their
141 // predicate-false forms
152 // Generate mapping table to relate predicate-false instructions with their
153 // predicate-true forms
/freebsd-12.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h189 # define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ argument
203 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
/freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_libdispatch_mac.cc272 TSAN_INTERCEPTOR(void, dispatch_once, dispatch_once_t *predicate, in TSAN_INTERCEPTOR() argument
274 SCOPED_INTERCEPTOR_RAW(dispatch_once, predicate, block); in TSAN_INTERCEPTOR()
275 atomic_uint32_t *a = reinterpret_cast<atomic_uint32_t *>(predicate); in TSAN_INTERCEPTOR()
294 TSAN_INTERCEPTOR(void, dispatch_once_f, dispatch_once_t *predicate, in TSAN_INTERCEPTOR() argument
296 SCOPED_INTERCEPTOR_RAW(dispatch_once_f, predicate, context, function); in TSAN_INTERCEPTOR()
298 WRAP(dispatch_once)(predicate, ^(void) { in TSAN_INTERCEPTOR()
/freebsd-12.1/contrib/gcc/doc/
H A Dc-tree.texi388 This predicate holds for a class-type.
391 This predicate holds for a built-in type.
401 This predicate holds for a pointer to function type.
797 This predicate holds for a class-type that defines
801 This predicate holds for a class-type for which
809 This predicate holds for a class-type that overloads
1305 This predicate holds if the function is undefined.
1319 This predicate holds if the function is declared as an
1343 This predicate holds for a @code{const}-member function.
1387 This predicate holds if the function is a thunk.
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DSocket.cpp144 Predicate<uint16_t> *predicate, int backlog) { in TcpListen() argument
174 if (predicate) in TcpListen()
175 predicate->SetValue(port, eBroadcastAlways); in TcpListen()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DInstructions.cpp3296 setPredicate((Predicate)predicate); in CmpInst()
3310 setPredicate((Predicate)predicate); in CmpInst()
3539 bool CmpInst::isUnsigned(Predicate predicate) { in isUnsigned() argument
3540 switch (predicate) { in isUnsigned()
3547 bool CmpInst::isSigned(Predicate predicate) { in isSigned() argument
3548 switch (predicate) { in isSigned()
3555 bool CmpInst::isOrdered(Predicate predicate) { in isOrdered() argument
3556 switch (predicate) { in isOrdered()
3565 switch (predicate) { in isUnordered()
3574 switch(predicate) { in isTrueWhenEqual()
[all …]
H A DConstantFold.h49 Constant *ConstantFoldCompareInstruction(unsigned short predicate,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp130 bool (*predicate)(llvm::Module &, llvm::CallInst *)) { in findRSCallSites()
141 if (isRSAPICall(module, call_inst) && predicate(module, call_inst)) { in findRSCallSites()
/freebsd-12.1/contrib/tcsh/
H A Dcsh-mode.el784 (predicate
820 (completion (try-completion pattern csh-completion-list predicate)))
839 (let ((list (all-completions pattern csh-completion-list predicate))
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DInstrTypes.h704 Predicate predicate, Value *S1,
712 static CmpInst *Create(OtherOps Op, Predicate predicate, Value *S1,
853 static bool isUnsigned(Predicate predicate);
857 static bool isSigned(Predicate predicate);
860 static bool isOrdered(Predicate predicate);
863 static bool isUnordered(Predicate predicate);
866 static bool isTrueWhenEqual(Predicate predicate);
869 static bool isFalseWhenEqual(Predicate predicate);
/freebsd-12.1/usr.bin/dtc/
H A Dfdt.hh659 inline void delete_children_if(bool (*predicate)(node_ptr &)) in delete_children_if()
661 children.erase(std::remove_if(children.begin(), children.end(), predicate), children.end()); in delete_children_if()
/freebsd-12.1/cddl/usr.sbin/dwatch/examples/
H A Dprofile_template44 # Optional predicate which must be true before the event action will run
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSocket.h67 Predicate<uint16_t> *predicate, int backlog = 5);

123456