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

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
GuardUtils.cpp 73 auto *WC = B.CreateIntrinsic(Intrinsic::experimental_widenable_condition,
75 CheckBI->setCondition(B.CreateAnd(CheckBI->getCondition(), WC,
90 Use *C, *WC;
92 parseWidenableBranch(WidenableBR, C, WC, IfTrueBB, IfFalseBB);
94 // br (wc()), ... form
96 WidenableBR->setCondition(B.CreateAnd(NewCond, WC->get()));
98 // br (wc & C), ... form
111 Use *C, *WC;
113 parseWidenableBranch(WidenableBR, C, WC, IfTrueBB, IfFalseBB);
115 // br (wc()), ... for
    [all...]
SimplifyCFG.cpp 3623 Value *CondWB, *WC;
3625 if (!parseWidenableBranch(PBI, CondWB, WC, IfTrueBB, IfFalseBB) ||
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
GuardUtils.cpp 48 Use *C, *WC;
49 if (parseWidenableBranch(const_cast<User*>(U), C, WC, IfTrueBB, IfFalseBB)) {
54 WidenableCondition = WC->get();
60 bool llvm::parseWidenableBranch(User *U, Use *&C,Use *&WC,
74 WC = &BI->getOperandUse(0);
80 // 1) br (i1 (and A, WC())), label %IfTrue, label %IfFalse
81 // 2) br (i1 (and WC(), B)), label %IfTrue, label %IfFalse
94 WC = &And->getOperandUse(0);
101 WC = &And->getOperandUse(1);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
GuardUtils.h 36 /// %wc = call i1 @llvm.experimental.widenable.condition()
37 /// %branch_cond = and i1 %cond, %wc
39 /// The function returns true, and the values %cond and %wc and blocks
49 bool parseWidenableBranch(User *U, Use *&Cond, Use *&WC, BasicBlock *&IfTrueBB,
  /src/distrib/sets/
culldeps 39 while [ "$(${WC} -l "${LASTJOIN}" | ${AWK} '{ print $1; }')" -ne 0 ]; do
  /src/usr.bin/wc/
wc.c 1 /* $NetBSD: wc.c,v 1.37 2024/01/14 17:39:19 christos Exp $ */
40 static char sccsid[] = "@(#)wc.c 8.2 (Berkeley) 5/2/95";
42 __RCSID("$NetBSD: wc.c,v 1.37 2024/01/14 17:39:19 christos Exp $");
46 /* wc line, word, char count and optionally longest line. */
119 /* Wc's flags are on by default. */
142 do_mb(wchar_t *wc, const char *p, size_t len, mbstate_t *st,
149 r = mbrtowc(wc, p, len, st);
164 if (wc)
165 wc++;
184 wchar_t *WC;
    [all...]
  /src/external/bsd/nvi/dist/common/
multibyte.h 67 #define WC "%lc"
100 #define WC "%c"
seq.c 341 (void)fprintf(fp, WC, ch);
351 (void)fprintf(fp, WC, ch);
options.c 1056 fprintf(fp, WC, ch);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
fnmatch.c 113 # define ISWCTYPE(WC, WT) __iswctype (WC, WT)
115 # define ISWCTYPE(WC, WT) iswctype (WC, WT)
  /src/external/gpl2/xcvs/dist/lib/
fnmatch.c 140 # define ISWCTYPE(WC, WT) __iswctype (WC, WT)
142 # define ISWCTYPE(WC, WT) iswctype (WC, WT)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 209 const std::string &TestFilename, WriterContext *WC,
218 WC->Errors.emplace_back(make_error<InstrProfError>(IPE), TestFilename);
227 WC->Writer.overlapRecord(std::move(I), Overlap, FuncOverlap, FuncFilter);
234 WriterContext *WC) {
235 std::unique_lock<std::mutex> CtxGuard{WC->Lock};
247 WC->Errors.emplace_back(make_error<InstrProfError>(IPE), Filename);
254 if (Error E = WC->Writer.setIsIRLevelProfile(IsIRProfile, HasCSIRProfile)) {
256 WC->Errors.emplace_back(
263 WC->Writer.setInstrEntryBBEnabled(Reader->instrEntryBBEnabled());
270 WC->Writer.addRecord(std::move(I), Input.Weight, [&](Error E)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/
pdtrace.in 73 WC=wc
573 num_base_probes=$(printf %s\\n "$base_probes" | $WC -l)
579 | $EGREP "^$provider $name [0-9]+ " | $WC -l)
587 | $EGREP "^$provider $name [0-9]+ " | $WC -l)
686 num_base_probes=$(printf %s\\n "$base_probes" | $WC -l)
  /src/external/gpl3/gdb/dist/gdb/testsuite/lib/
pdtrace.in 73 WC=wc
573 num_base_probes=$(printf %s\\n "$base_probes" | $WC -l)
579 | $EGREP "^$provider $name [0-9]+ " | $WC -l)
587 | $EGREP "^$provider $name [0-9]+ " | $WC -l)
686 num_base_probes=$(printf %s\\n "$base_probes" | $WC -l)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopPredication.cpp 785 // assumes we preserve the form: (br (and Cond, WC())). FIXME
992 Value *Cond, *WC;
994 if (parseWidenableBranch(Term, Cond, WC, IfTrueBB, IfFalseBB) &&
1039 // which restrict the applicability of the non-WC based version of this
1085 Use *Cond, *WC;
1087 if (parseWidenableBranch(BI, Cond, WC, IfTrueBB, IfFalseBB) &&
1089 WC->set(ConstantInt::getTrue(IfTrueBB->getContext()));
1109 // Subtlety: We need to avoid inserting additional uses of the WC. We know
GuardWidening.cpp 87 Value *Cond, *WC;
89 if (parseWidenableBranch(I, Cond, WC, IfTrueBB, IfFalseBB))
  /src/external/bsd/nvi/dist/vi/
vi.c 1302 vtrace(sp, "vcmd: "WC, vp->key);
1304 vtrace(sp, " buffer: "WC, vp->buffer);
  /src/external/bsd/nvi/dist/ex/
ex.c 2352 vtrace(sp, " buffer "WC, ecp->buffer);
  /src/crypto/external/apache2/openssl/dist/test/recipes/30-test_evp_data/
evppkey_ecc.txt 4524 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHMtVWZAwgtd1zmgWN/9WC
evppkey_kas.txt 68 MEkwEwYHKoZIzj0CAQYIKoZIzj0DAQEDMgAEwA1DVxb/6lP9jBYnkkFMN2ZRh+WC
  /src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/
evppkey_ecc.txt 4485 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHMtVWZAwgtd1zmgWN/9WC
  /src/external/gpl3/binutils/dist/opcodes/
ppc-opc.c 913 /* The 2-bit/3-bit L or 2-bit WC field in a SYNC, DCBF or WAIT instruction.
920 For WAIT, some WC values are reserved:
974 /* For WAIT, some WC values are illegal. */
989 *errmsg = _("illegal WC operand value");
1050 /* For WAIT, some WC values are illegal. */
3287 /* The 2-bit L or WC field in an X (sync, dcbf or wait) form instruction. */
3290 #define WC L2OPT
4629 /* An X form wait instruction with everything filled in except the WC
4639 /* An X form wait instruction with everything filled in except the WC
4708 /* An X form wait instruction with everything filled in except the WC
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
ppc-opc.c 913 /* The 2-bit/3-bit L or 2-bit WC field in a SYNC, DCBF or WAIT instruction.
920 For WAIT, some WC values are reserved:
974 /* For WAIT, some WC values are illegal. */
989 *errmsg = _("illegal WC operand value");
1050 /* For WAIT, some WC values are illegal. */
3287 /* The 2-bit L or WC field in an X (sync, dcbf or wait) form instruction. */
3290 #define WC L2OPT
4619 /* An X form wait instruction with everything filled in except the WC
4623 /* An X form wait instruction with everything filled in except the WC
4692 /* An X form wait instruction with everything filled in except the WC
    [all...]
  /src/external/gpl3/gdb.old/dist/opcodes/
ppc-opc.c 867 /* The 2-bit/3-bit L or 2-bit WC field in a SYNC, DCBF or WAIT instruction.
874 For WAIT, some WC values are reserved:
928 /* For WAIT, some WC values are illegal. */
943 *errmsg = _("illegal WC operand value");
1004 /* For WAIT, some WC values are illegal. */
3209 /* The 2-bit L or WC field in an X (sync, dcbf or wait) form instruction. */
3212 #define WC L2OPT
4511 /* An X form wait instruction with everything filled in except the WC
4515 /* An X form wait instruction with everything filled in except the WC
4573 /* An X form wait instruction with everything filled in except the WC
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
ppc-opc.c 913 /* The 2-bit/3-bit L or 2-bit WC field in a SYNC, DCBF or WAIT instruction.
920 For WAIT, some WC values are reserved:
974 /* For WAIT, some WC values are illegal. */
989 *errmsg = _("illegal WC operand value");
1050 /* For WAIT, some WC values are illegal. */
3287 /* The 2-bit L or WC field in an X (sync, dcbf or wait) form instruction. */
3290 #define WC L2OPT
4629 /* An X form wait instruction with everything filled in except the WC
4633 /* An X form wait instruction with everything filled in except the WC
4702 /* An X form wait instruction with everything filled in except the WC
    [all...]

Completed in 56 milliseconds

1 2