Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Ddllimport.cpp63 #if defined(MS) || defined(WI)
74 #if defined(MS) || defined(WI)
85 #if defined(MS) || defined(WI)
96 #if defined(MS) || defined(WI)
187 #if defined(MS) || defined(WI)
200 #if defined(MS) || defined(WI)
315 #if defined(MS) || defined(WI)
330 #if defined(MS) || defined(WI)
347 #if defined(MS) || defined(WI)
354 #if defined(MS) || defined(WI)
[all …]
H A Ddllexport.cpp356 #if defined(MS) || defined (WI)
374 #if defined(MS) || defined (WI)
380 #if defined(MS) || defined (WI)
415 #if defined(MS) || defined (WI)
421 #if defined(MS) || defined (WI)
460 #if not defined(MS) && not defined (WI)
1176 #if defined(MS) || defined (WI)
/llvm-project-15.0.7/clang/test/Sema/
H A Ddllimport.c53 #if defined(MS) || defined(WI)
64 #if defined(MS) || defined(WI)
75 #if defined(MS) || defined(WI)
86 #if defined(MS) || defined(WI)
187 #if defined(MS) || defined(WI)
210 #if defined(MS) || defined (WI)
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-equals-default-copy.cpp60 struct WI { struct
61 WI(const WI &Other) : Field1(Other.Field1), Field2(Other.Field1) {} in WI() function
62 WI &operator=(const WI &);
65 WI &WI::operator=(const WI &Other) { in operator =() argument
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Derror-property-gc-attr.m11 __weak INTF* WI; field
18 @property (assign) __weak INTF* WI; property
27 @synthesize WI;
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp515 static void visitIVCast(CastInst *Cast, WideIVInfo &WI, in visitIVCast() argument
531 uint64_t NarrowIVWidth = SE->getTypeSizeInBits(WI.NarrowIV->getType()); in visitIVCast()
548 if (!WI.WidestNativeType || in visitIVCast()
549 Width > SE->getTypeSizeInBits(WI.WidestNativeType)) { in visitIVCast()
550 WI.WidestNativeType = SE->getEffectiveSCEVType(Ty); in visitIVCast()
551 WI.IsSigned = IsSigned; in visitIVCast()
559 WI.IsSigned |= IsSigned; in visitIVCast()
578 WideIVInfo WI; member in __anon175dabd40211::IndVarSimplifyVisitor
585 WI.NarrowIV = IVPhi; in IndVarSimplifyVisitor()
633 if (Visitor.WI.WidestNativeType) { in simplifyAndExtend()
[all …]
H A DLoopStrengthReduce.cpp4290 for (const WorkItem &WI : WorkItems) { in GenerateCrossUseConstantOffsets() local
4291 size_t LUIdx = WI.LUIdx; in GenerateCrossUseConstantOffsets()
4293 int64_t Imm = WI.Imm; in GenerateCrossUseConstantOffsets()
4294 const SCEV *OrigReg = WI.OrigReg; in GenerateCrossUseConstantOffsets()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DReorderAlgorithm.cpp368 auto WI = Weight.find(EdgeTy(SrcBB, SuccBB, 0)); in adjustQueue() local
369 assert(WI != Weight.end() && "CFG edge not found in Weight map"); in adjustQueue()
370 WI->second += (int64_t)E.Count; in adjustQueue()
375 auto WI = Weight.find(EdgeTy(PredBB, DstBB, 0)); in adjustQueue() local
376 assert(WI != Weight.end() && "CFG edge not found in Weight map"); in adjustQueue()
377 WI->second += (int64_t)E.Count; in adjustQueue()
H A DShrinkWrapping.cpp642 for (WorklistItem &WI : WList) { in performChanges()
643 if (WI.Action == WorklistItem::None) in performChanges()
645 assert(WI.Action == WorklistItem::AdjustLoadStoreOffset || in performChanges()
646 WI.Action == WorklistItem::AdjustCFI); in performChanges()
648 AdjustmentType == WI.Action) && in performChanges()
650 AdjustmentType = WI.Action; in performChanges()
651 Adjustment += WI.OffsetUpdate; in performChanges()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/
H A DSimplifyIndVar.h76 PHINode *createWideIV(const WideIVInfo &WI,
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DExternalSemaSource.h164 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo> > &WI) {} in ReadWeakUndeclaredIdentifiers()
H A DMultiplexExternalSemaSource.h304 SmallVectorImpl<std::pair<IdentifierInfo*, WeakInfo> > &WI) override;
/llvm-project-15.0.7/llvm/test/LTO/Resolution/X86/
H A Dsymtab.ll72 ; CHECK: D--WI--- _a1
/llvm-project-15.0.7/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp289 SmallVectorImpl<std::pair<IdentifierInfo*, WeakInfo> > &WI) { in ReadWeakUndeclaredIdentifiers()
291 Sources[i]->ReadWeakUndeclaredIdentifiers(WI); in ReadWeakUndeclaredIdentifiers()
H A DSema.cpp1185 for (const auto &WI : WeakIDs.second) in ActOnEndOfTranslationUnit() local
1186 Diag(WI.getLocation(), diag::warn_attribute_wrong_decl_type) in ActOnEndOfTranslationUnit()
1189 for (const auto &WI : WeakIDs.second) in ActOnEndOfTranslationUnit() local
1190 Diag(WI.getLocation(), diag::warn_weak_identifier_undeclared) in ActOnEndOfTranslationUnit()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp1085 WidenIV(const WideIVInfo &WI, LoopInfo *LInfo, ScalarEvolution *SEv,
1177 WidenIV::WidenIV(const WideIVInfo &WI, LoopInfo *LInfo, ScalarEvolution *SEv, in WidenIV() argument
1180 : OrigPhi(WI.NarrowIV), WideType(WI.WidestNativeType), LI(LInfo), in WidenIV()
1185 ExtendKindMap[OrigPhi] = WI.IsSigned ? ExtendKind::Sign : ExtendKind::Zero; in WidenIV()
2090 PHINode *llvm::createWideIV(const WideIVInfo &WI, in createWideIV() argument
2095 WidenIV Widener(WI, LI, SE, DT, DeadInsts, HasGuards, UsePostIncrementRanges); in createWideIV()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp442 auto &WI = All[WriteEntry->second]; in chooseInstructionsToInstrument() local
447 cast<StoreInst>(WI.Inst)->isVolatile()); in chooseInstructionsToInstrument()
451 WI.Flags |= InstructionInfo::kCompoundRW; in chooseInstructionsToInstrument()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTUtils.h517 &WI) override { in ReadWeakUndeclaredIdentifiers()
519 Source->ReadWeakUndeclaredIdentifiers(WI); in ReadWeakUndeclaredIdentifiers()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3023 WLItem &WI = WL.back(); in findReportInEquivalenceClass() local
3024 assert(!WI.N->succ_empty()); in findReportInEquivalenceClass()
3026 for (; WI.I != WI.E; ++WI.I) { in findReportInEquivalenceClass()
3027 const ExplodedNode *Succ = *WI.I; in findReportInEquivalenceClass()
3053 if (!WL.empty() && &WL.back() == &WI) in findReportInEquivalenceClass()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIWholeQuadMode.cpp730 WorkItem WI = Worklist.back(); in analyzeFunction() local
733 if (WI.MI) in analyzeFunction()
734 propagateInstruction(*WI.MI, Worklist); in analyzeFunction()
736 propagateBlock(*WI.MBB, Worklist); in analyzeFunction()
H A DEvergreenInstructions.td307 // FIXME: Add _RTN version. We need per WI scratch location to store the old value
315 // FIXME: Add _RTN version. We need per WI scratch location to store the old value
324 // FIXME: Add _RTN version. We need per WI scratch location to store the old value
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp798 probability_iterator WI = getProbabilityIterator(I); in removeSuccessor() local
799 Probs.erase(WI); in removeSuccessor()
/llvm-project-15.0.7/clang/utils/TableGen/
H A DNeonEmitter.cpp566 Record *WI = R.getClass("WInst"); in NeonEmitter() local
575 ClassMap[WI] = ClassW; in NeonEmitter()
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DASTReader.h2047 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo>> &WI) override;
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DP9InstrResources.td130 (instregex "CMP(WI|LWI|W|LW)(8)?$"),

12