Home
last modified time | relevance | path

Searched refs:WI (Results 1 – 25 of 31) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp246 WorkList.push_back(WI); in calculateCXXStateForAsynchEH()
249 WI = WorkList.pop_back_val(); in calculateCXXStateForAsynchEH()
250 const BasicBlock *BB = WI->Block; in calculateCXXStateForAsynchEH()
251 int State = WI->State; in calculateCXXStateForAsynchEH()
252 delete WI; in calculateCXXStateForAsynchEH()
285 WorkList.push_back(WI); in calculateCXXStateForAsynchEH()
307 WorkList.push_back(WI); in calculateSEHStateForAsynchEH()
310 WI = WorkList.pop_back_val(); in calculateSEHStateForAsynchEH()
312 int State = WI->State; in calculateSEHStateForAsynchEH()
313 delete WI; in calculateSEHStateForAsynchEH()
[all …]
H A DMachineBasicBlock.cpp841 probability_iterator WI = getProbabilityIterator(I); in removeSuccessor() local
842 Probs.erase(WI); in removeSuccessor()
/freebsd-14.2/tools/tools/locale/etc/charmaps/
H A DeucKR.TXT6613 0xA4CF 0x315F #HANGUL LETTER WI
7644 0xAAF0 0x3090 #HIRAGANA LETTER WI
7811 0xABF0 0x30F0 #KATAKANA LETTER WI
9036 0xB4B5 0xB258 #HANGUL SYLLABLE NIEUN WI
9631 0xB7F2 0xB93C #HANGUL SYLLABLE RIEUL WI
9936 0xB9BF 0xBB88 #HANGUL SYLLABLE MIEUM WI
10146 0xBADF 0xBDD4 #HANGUL SYLLABLE PIEUP WI
10629 0xBDAC 0xC26C #HANGUL SYLLABLE SIOS WI
11158 0xC0A7 0xC704 #HANGUL SYLLABLE IEUNG WI
11396 0xC1E3 0xC950 #HANGUL SYLLABLE CIEUC WI
[all …]
H A DeucCN.TXT352 0xA4F0 0x3090 # HIRAGANA LETTER WI
435 0xA5F0 0x30F0 # KATAKANA LETTER WI
H A DGB2312.TXT406 0x2470 0x3090 # HIRAGANA LETTER WI
489 0x2570 0x30F0 # KATAKANA LETTER WI
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp502 static void visitIVCast(CastInst *Cast, WideIVInfo &WI, in visitIVCast() argument
518 uint64_t NarrowIVWidth = SE->getTypeSizeInBits(WI.NarrowIV->getType()); in visitIVCast()
535 if (!WI.WidestNativeType || in visitIVCast()
536 Width > SE->getTypeSizeInBits(WI.WidestNativeType)) { in visitIVCast()
537 WI.WidestNativeType = SE->getEffectiveSCEVType(Ty); in visitIVCast()
538 WI.IsSigned = IsSigned; in visitIVCast()
546 WI.IsSigned |= IsSigned; in visitIVCast()
565 WideIVInfo WI; member in __anonc22e0b5a0211::IndVarSimplifyVisitor
572 WI.NarrowIV = IVPhi; in IndVarSimplifyVisitor()
620 if (Visitor.WI.WidestNativeType) { in simplifyAndExtend()
[all …]
H A DLoopStrengthReduce.cpp4340 for (const WorkItem &WI : WorkItems) { in GenerateCrossUseConstantOffsets() local
4341 size_t LUIdx = WI.LUIdx; in GenerateCrossUseConstantOffsets()
4343 int64_t Imm = WI.Imm; in GenerateCrossUseConstantOffsets()
4344 const SCEV *OrigReg = WI.OrigReg; in GenerateCrossUseConstantOffsets()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSimplifyIndVar.h76 PHINode *createWideIV(const WideIVInfo &WI,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DExternalSemaSource.h164 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo> > &WI) {} in ReadWeakUndeclaredIdentifiers()
H A DMultiplexExternalSemaSource.h303 SmallVectorImpl<std::pair<IdentifierInfo*, WeakInfo> > &WI) override;
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp295 SmallVectorImpl<std::pair<IdentifierInfo*, WeakInfo> > &WI) { in ReadWeakUndeclaredIdentifiers()
297 Sources[i]->ReadWeakUndeclaredIdentifiers(WI); in ReadWeakUndeclaredIdentifiers()
H A DSema.cpp1190 for (const auto &WI : WeakIDs.second) in ActOnEndOfTranslationUnit() local
1191 Diag(WI.getLocation(), diag::warn_attribute_wrong_decl_type) in ActOnEndOfTranslationUnit()
1194 for (const auto &WI : WeakIDs.second) in ActOnEndOfTranslationUnit() local
1195 Diag(WI.getLocation(), diag::warn_weak_identifier_undeclared) in ActOnEndOfTranslationUnit()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp1105 WidenIV(const WideIVInfo &WI, LoopInfo *LInfo, ScalarEvolution *SEv,
1197 WidenIV::WidenIV(const WideIVInfo &WI, LoopInfo *LInfo, ScalarEvolution *SEv, in WidenIV() argument
1200 : OrigPhi(WI.NarrowIV), WideType(WI.WidestNativeType), LI(LInfo), in WidenIV()
1205 ExtendKindMap[OrigPhi] = WI.IsSigned ? ExtendKind::Sign : ExtendKind::Zero; in WidenIV()
2129 PHINode *llvm::createWideIV(const WideIVInfo &WI, in createWideIV() argument
2134 WidenIV Widener(WI, LI, SE, DT, DeadInsts, HasGuards, UsePostIncrementRanges); in createWideIV()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp429 auto &WI = All[WriteEntry->second]; in chooseInstructionsToInstrument() local
434 cast<StoreInst>(WI.Inst)->isVolatile()); in chooseInstructionsToInstrument()
438 WI.Flags |= InstructionInfo::kCompoundRW; in chooseInstructionsToInstrument()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTUtils.h518 &WI) override { in ReadWeakUndeclaredIdentifiers()
520 Source->ReadWeakUndeclaredIdentifiers(WI); in ReadWeakUndeclaredIdentifiers()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3030 WLItem &WI = WL.back(); in findReportInEquivalenceClass() local
3031 assert(!WI.N->succ_empty()); in findReportInEquivalenceClass()
3033 for (; WI.I != WI.E; ++WI.I) { in findReportInEquivalenceClass()
3034 const ExplodedNode *Succ = *WI.I; in findReportInEquivalenceClass()
3060 if (!WL.empty() && &WL.back() == &WI) in findReportInEquivalenceClass()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIWholeQuadMode.cpp727 WorkItem WI = Worklist.back(); in analyzeFunction() local
730 if (WI.MI) in analyzeFunction()
731 propagateInstruction(*WI.MI, Worklist); in analyzeFunction()
733 propagateBlock(*WI.MBB, Worklist); in analyzeFunction()
H A DSIInsertWaitcnts.cpp1450 for (MachineInstr **WI : WaitsToErase) { in applyPreexistingWaitcnt()
1451 if (!*WI) in applyPreexistingWaitcnt()
1454 (*WI)->eraseFromParent(); in applyPreexistingWaitcnt()
1455 *WI = nullptr; in applyPreexistingWaitcnt()
H A DEvergreenInstructions.td307 // FIXME: Add _RTN version. We need per WI scratch location to store the old value
316 // FIXME: Add _RTN version. We need per WI scratch location to store the old value
/freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp572 Record *WI = R.getClass("WInst"); in NeonEmitter() local
581 ClassMap[WI] = ClassW; in NeonEmitter()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DP9InstrResources.td130 (instregex "CMP(WI|LWI|W|LW)(8)?$"),
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4810 for (const auto &WI : WeakUndeclaredIdentifierList.second) { in WriteASTCore() local
4812 AddIdentifierRef(WI.getAlias(), WeakUndeclaredIdentifiers); in WriteASTCore()
4813 AddSourceLocation(WI.getLocation(), WeakUndeclaredIdentifiers); in WriteASTCore()
H A DASTReader.cpp8713 WeakInfo WI(AliasId, Loc); in ReadWeakUndeclaredIdentifiers() local
8714 WeakIDs.push_back(std::make_pair(WeakId, WI)); in ReadWeakUndeclaredIdentifiers()
/freebsd-14.2/sys/dev/usb/
H A Dusbdevs3238 product MELCO WIU2433DM 0x0242 WI-U2-433DM
3239 product MELCO WIU3866D 0x025d WI-U3-866D
3240 product MELCO WIU2433DHP 0x029b WI-U2-433DHP
/freebsd-14.2/crypto/heimdal/lib/wind/
H A DUnicodeData.txt3191 1171;HANGUL JUNGSEONG WI;Lo;0;L;;;;;N;;;;;
3504 12CA;ETHIOPIC SYLLABLE WI;Lo;0;L;;;;;N;;;;;
3743 13EB;CHEROKEE LETTER WI;Lo;0;L;;;;;N;;;;;
3766 140E;CANADIAN SYLLABICS WI;Lo;0;L;;;;;N;;;;;
3767 140F;CANADIAN SYLLABICS WEST-CREE WI;Lo;0;L;;;;;N;;;;;
4220 15D4;CANADIAN SYLLABICS CARRIER WI;Lo;0;L;;;;;N;;;;;
8530 3090;HIRAGANA LETTER WI;Lo;0;L;;;;;N;;;;;
8624 30F0;KATAKANA LETTER WI;Lo;0;L;;;;;N;;;;;
8726 315F;HANGUL LETTER WI;Lo;0;L;<compat> 1171;;;;N;;;;;
12143 10039;LINEAR B SYLLABLE B040 WI;Lo;0;L;;;;;N;;;;;
[all …]

12