/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | GuardUtils.cpp | 73 auto *WC = B.CreateIntrinsic(Intrinsic::experimental_widenable_condition, in makeGuardControlFlowExplicit() local 75 CheckBI->setCondition(B.CreateAnd(CheckBI->getCondition(), WC, in makeGuardControlFlowExplicit() 90 Use *C, *WC; in widenWidenableBranch() local 92 parseWidenableBranch(WidenableBR, C, WC, IfTrueBB, IfFalseBB); in widenWidenableBranch() 96 WidenableBR->setCondition(B.CreateAnd(NewCond, WC->get())); in widenWidenableBranch() 111 Use *C, *WC; in setWidenableBranchCond() local 113 parseWidenableBranch(WidenableBR, C, WC, IfTrueBB, IfFalseBB); in setWidenableBranchCond() 117 WidenableBR->setCondition(B.CreateAnd(NewCond, WC->get())); in setWidenableBranchCond()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | GuardUtils.cpp | 57 Use *C, *WC; in parseWidenableBranch() 58 if (parseWidenableBranch(const_cast<User*>(U), C, WC, IfTrueBB, IfFalseBB)) { in parseWidenableBranch() 63 WidenableCondition = WC->get(); in parseWidenableBranch() 69 bool llvm::parseWidenableBranch(User *U, Use *&C,Use *&WC, in parseWidenableBranch() 83 WC = &BI->getOperandUse(0); in parseWidenableBranch() 89 // 1) br (i1 (and A, WC())), label %IfTrue, label %IfFalse in parseWidenableBranch() 90 // 2) br (i1 (and WC(), B)), label %IfTrue, label %IfFalse in parseWidenableBranch() 103 WC = &And->getOperandUse(0); in parseWidenableBranch() 110 WC = &And->getOperandUse(1); in parseWidenableBranch() 55 Use *C, *WC; parseWidenableBranch() local 67 parseWidenableBranch(User * U,Use * & C,Use * & WC,BasicBlock * & IfTrueBB,BasicBlock * & IfFalseBB) parseWidenableBranch() argument
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_upgrade/ |
H A D | zfs_upgrade_001_pos.ksh | 86 OLDCOUNT=$( $WC -l $oldoutput | $AWK '{print $1}' ) 114 COUNT=$( $WC -l $output | $AWK '{print $1}' ) 141 COUNT=$( $WC -l $output | $AWK '{print $1}' )
|
/freebsd/tests/sys/cddl/zfs/tests/history/ |
H A D | history_003_pos.ksh | 59 typeset -i orig_count=$($ZPOOL history $TESTPOOL | $WC -l | $AWK '{print $1}') 74 typeset -i entry_count=$($ZPOOL history $TESTPOOL | $WC -l | $AWK '{print $1}')
|
H A D | history_004_pos.ksh | 58 typeset -i orig_count=$($ZPOOL history $TESTPOOL | $WC -l | $AWK '{print $1}') 102 typeset -i count=$($ZPOOL history $TESTPOOL | $WC -l | $AWK '{print $1}')
|
H A D | history_007_pos.ksh | 114 linenum=`$CAT $migrated_cmds_f | $WC -l`
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_snapshot/ |
H A D | zfs_snapshot_004_neg.ksh | 72 len=$($ECHO $basefs| $WC -c) 85 len=$($ECHO $basefs| $WC -c)
|
H A D | zfs_snapshot_005_neg.ksh | 66 len=$($ECHO $basefs | $WC -c) 79 len=$($ECHO $basefs| $WC -c)
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/ |
H A D | llvm-profdata.cpp | 627 const std::string &TestFilename, WriterContext *WC, in overlapInput() argument 637 WC->Errors.emplace_back(make_error<InstrProfError>(ErrorCode, Msg), in overlapInput() 647 WC->Writer.overlapRecord(std::move(I), Overlap, FuncOverlap, FuncFilter); in overlapInput() 655 const StringRef ProfiledBinary, WriterContext *WC) { in loadInput() argument 656 std::unique_lock<std::mutex> CtxGuard{WC->Lock}; in loadInput() 672 if (Error E = WC->Writer.mergeProfileKind(Reader->getProfileKind())) { in loadInput() 674 WC->Errors.emplace_back( in loadInput() 684 WC->Errors.emplace_back(make_error<InstrProfError>(ErrorCode, Msg), in loadInput() 691 bool Succeeded = WC->Writer.addMemProfFrame( in loadInput() 702 bool Succeeded = WC->Writer.addMemProfCallStack( in loadInput() [all …]
|
/freebsd/contrib/nvi/common/ |
H A D | multibyte.h | 63 #define WC "%lc" macro 97 #define WC "%c" macro
|
H A D | options.c | 1017 fprintf(fp, WC, ch); in opts_save()
|
/freebsd/tests/sys/cddl/zfs/tests/cli_user/zpool_iostat/ |
H A D | zpool_iostat_002_pos.ksh | 73 stat_count=$($GREP $TESTPOOL $tmpfile | $WC -l)
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | GuardUtils.h | 54 bool parseWidenableBranch(User *U, Use *&Cond, Use *&WC, BasicBlock *&IfTrueBB,
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopPredication.cpp | 769 // assumes we preserve the form: (br (and Cond, WC())). FIXME in collectChecks() 770 auto WC = extractWidenableCondition(BI); in collectChecks() 771 Checks.push_back(WC); in collectChecks() 1039 // which restrict the applicability of the non-WC based version of this in isLoopProfitableToPredicate() 1084 if (auto WC = extractWidenableCondition(BI)) 1086 assert(WC->hasOneUse() && "Not appropriate widenable branch!"); 1087 WC->user_back()->replaceUsesOfWith( in getMinAnalyzeableBackedgeTakenCount() 1088 WC, ConstantInt::getTrue(BI->getContext())); in getMinAnalyzeableBackedgeTakenCount() 846 Value *Cond, *WC; widenWidenableBranchGuardConditions() local 1075 Value *Cond, *WC; FindWidenableTerminatorAboveLoop() local 1167 Use *Cond, *WC; predicateLoopExits() local
|
H A D | GuardWidening.cpp | 88 Value *Cond, *WC; in getCondition() local 90 if (parseWidenableBranch(I, Cond, WC, IfTrueBB, IfFalseBB)) in getCondition() 129 if (auto WC = extractWidenableCondition(WCOrGuard)) in findInsertionPointForWideCondition() local 130 return cast<Instruction>(WC)->getIterator(); in findInsertionPointForWideCondition()
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_get/ |
H A D | zpool_get_002_pos.ksh | 94 COUNT=$($WC $TMPDIR/values.${TESTCASE_ID})
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_upgrade/ |
H A D | zpool_upgrade_001_pos.ksh | 62 COUNT=$( $WC -l $TMPDIR/zpool-versions.${TESTCASE_ID} | $AWK '{print $1}' )
|
/freebsd/tests/sys/cddl/zfs/tests/mv_files/ |
H A D | mv_files_common.kshlib | 140 proc_num=`$ECHO $PIDS | $WC -w`
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_get/ |
H A D | zfs_get_004_pos.ksh | 189 $GREP "${ds}$" | $WC -l`
|
/freebsd/share/examples/BSD_daemon/ |
H A D | README | 52 found on the on the WC/BSDi CDROM "Font Garden" under the
|
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
H A D | dsa-threecolumn.pem | 45 0WC
|
/freebsd/contrib/nvi/vi/ |
H A D | vi.c | 1231 TRACE(sp, "vcmd: "WC, vp->key); in v_comlog() 1233 TRACE(sp, " buffer: "WC, vp->buffer); in v_comlog()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 220 unsigned &WC = getCounterRef(Wait, T); in addWait() local 221 WC = std::min(WC, Count); in addWait()
|
/freebsd/tests/sys/cddl/zfs/include/ |
H A D | libtest.kshlib | 386 typeset pool_count=`$ZPOOL list -H | $GREP -v '^testpool' | $WC -l` 3005 $ECHO $1 | $WC -w
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 8048 const auto *WC = cast<OpenACCWaitClause>(C); in writeOpenACCClause() local 8049 writeSourceLocation(WC->getLParenLoc()); in writeOpenACCClause() 8050 writeBool(WC->getDevNumExpr()); in writeOpenACCClause() 8051 if (Expr *DNE = WC->getDevNumExpr()) in writeOpenACCClause() 8053 writeSourceLocation(WC->getQueuesLoc()); in writeOpenACCClause() 8055 writeOpenACCIntExprList(WC->getQueueIdExprs()); in writeOpenACCClause()
|