Home
last modified time | relevance | path

Searched refs:Existing (Results 1 – 25 of 52) sorted by relevance

123

/llvm-project-15.0.7/polly/unittests/DeLICM/
H A DDeLICMTest.cpp158 bool checkIsConflictingNonsymmetricKnown(KnowledgeStr Existing, in checkIsConflictingNonsymmetricKnown() argument
165 parseMapOrNull(Ctx.get(), Existing.OccupiedStr); in checkIsConflictingNonsymmetricKnown()
166 auto ExistingUnused = parseSetOrNull(Ctx.get(), Existing.UndefStr); in checkIsConflictingNonsymmetricKnown()
167 auto ExistingWritten = parseMapOrNull(Ctx.get(), Existing.WrittenStr); in checkIsConflictingNonsymmetricKnown()
179 bool checkIsConflictingNonsymmetric(KnowledgeStr Existing, in checkIsConflictingNonsymmetric() argument
186 auto ExistingUnused = parseSetOrNull(Ctx.get(), Existing.UndefStr); in checkIsConflictingNonsymmetric()
187 auto ExistingWritten = parseSetOrNull(Ctx.get(), Existing.WrittenStr); in checkIsConflictingNonsymmetric()
200 bool checkIsConflicting(KnowledgeStr Existing, KnowledgeStr Proposed) { in checkIsConflicting() argument
201 auto Forward = checkIsConflictingNonsymmetric(Existing, Proposed); in checkIsConflicting()
202 auto Backward = checkIsConflictingNonsymmetric(Proposed, Existing); in checkIsConflicting()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-apply-replacements/Inputs/conflict/
H A Dexpected.txt3 Existing replacement: $(path)/common.h: 106:+26:"auto & i : ints"
6 Existing replacement: $(path)/common.h: 140:+7:"elem"
9 Existing replacement: $(path)/common.h: 160:+12:""
12 Existing replacement: $(path)/common.h: 160:+12:""
/llvm-project-15.0.7/clang/lib/Sema/
H A DIdentifierResolver.cpp264 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) { in compareDeclarations() argument
266 if (Existing == New) in compareDeclarations()
270 if (Existing->getKind() != New->getKind()) in compareDeclarations()
274 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) { in compareDeclarations()
277 if (Existing->isFromASTFile() && New->isFromASTFile()) in compareDeclarations()
281 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations()
282 if (Existing == MostRecent) in compareDeclarations()
291 if (RD == Existing) in compareDeclarations()
/llvm-project-15.0.7/polly/lib/Transform/
H A DDeLICM.cpp335 static bool isConflicting(const Knowledge &Existing, in isConflicting() argument
339 assert(!Existing.Unused.is_null()); in isConflicting()
343 if (!Existing.Occupied.is_null() && !Proposed.Unused.is_null()) { in isConflicting()
344 auto ExistingUniverse = Existing.Occupied.unite(Existing.Unused); in isConflicting()
379 auto ExistingValues = Existing.Known.unite(ExistingUnusedAnyVal); in isConflicting()
391 Existing.Known.intersect_domain(Conflicting); in isConflicting()
432 Existing.Written.intersect_domain(ProposedFixedDefs); in isConflicting()
460 convertZoneToTimepoints(Existing.Unused, true, false); in isConflicting()
489 auto ExistingWrittenDomain = Existing.Written.domain(); in isConflicting()
501 Existing.Written.intersect_domain(Conflicting); in isConflicting()
[all …]
/llvm-project-15.0.7/clang/include/clang/Tooling/Core/
H A DReplacement.h159 ReplacementError(replacement_error Err, Replacement Existing) in ReplacementError() argument
160 : Err(Err), ExistingReplacement(std::move(Existing)) {} in ReplacementError()
164 ReplacementError(replacement_error Err, Replacement New, Replacement Existing) in ReplacementError() argument
166 ExistingReplacement(std::move(Existing)) {} in ReplacementError()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp209 NamedDecl *Existing = nullptr; member in clang::ASTDeclReader::FindExistingResult
220 : Reader(Reader), New(New), Existing(Existing), AddResult(true), in FindExistingResult()
225 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing), in FindExistingResult()
2653 if (T *Existing = ExistingRes) in mergeRedeclarable() local
2799 if (T *Existing = ExistingRes) in mergeMergeable() local
3074 if (!AddResult || Existing) in ~FindExistingResult()
3216 if (C.isSameEntity(Existing, D)) in findExisting()
3248 if (C.isSameEntity(Existing, D)) in findExisting()
4086 if (Existing && in add()
4103 } else if (!Existing) { in add()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DBasicBlockSections.cpp295 auto *Existing = MF.getFunction().getMetadata(LLVMContext::MD_annotation); in hasInstrProfHashMismatch() local
296 if (Existing) { in hasInstrProfHashMismatch()
297 MDTuple *Tuple = cast<MDTuple>(Existing); in hasInstrProfHashMismatch()
H A DMachineFunction.cpp114 auto *Existing = in setUnsafeStackSize() local
117 if (!Existing || Existing->getNumOperands() != 2) in setUnsafeStackSize()
121 if (auto &N = Existing->getOperand(0)) { in setUnsafeStackSize()
123 if (auto &Op = Existing->getOperand(1)) { in setUnsafeStackSize()
/llvm-project-15.0.7/llvm/test/ExecutionEngine/JITLink/AArch64/
H A DMachO_arm64_ehframe.s22 # CHECK: Existing edge at {{.*}} to PC begin at {{.*}}
24 # CHECK: Existing edge at {{.*}} to LSDA at {{.*}}
H A DELF_aarch64_ehframe.s22 # CHECK: Existing edge at {{.*}} to PC begin at {{.*}}
28 # CHECK: Existing edge at {{.*}} to PC begin at {{.*}}
/llvm-project-15.0.7/clang-tools-extra/clangd/indexer/
H A DIndexerMain.cpp64 if (const auto *Existing = Symbols.find(Sym.ID)) in create() local
65 Symbols.insert(mergeSymbol(*Existing, Sym)); in create()
/llvm-project-15.0.7/clang-tools-extra/test/clang-apply-replacements/Inputs/order-dependent/
H A Dexpected.txt3 Existing replacement: $(path)/order-dependent.cpp: 12:+0:"0"
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/
H A Dlocalizer.mir89 ; Existing registers should be left untouched
116 ; Existing registers should be left untouched
147 ; Existing registers should be left untouched
183 ; Existing registers should be left untouched
219 ; Existing registers should be left untouched
255 ; Existing registers should be left untouched
292 ; Existing registers should be left untouched
329 ; Existing registers should be left untouched
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclTemplate.cpp335 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl() local
336 (void)Existing; in addSpecializationImpl()
337 assert(SETraits::getDecl(Existing)->isCanonicalDecl() && in addSpecializationImpl()
556 ClassTemplatePartialSpecializationDecl *Existing in AddPartialSpecialization() local
558 (void)Existing; in AddPartialSpecialization()
559 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization()
1244 VarTemplatePartialSpecializationDecl *Existing = in AddPartialSpecialization() local
1246 (void)Existing; in AddPartialSpecialization()
1247 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp186 auto Existing = FirstIterValue.find(V); in getValueOnFirstIteration() local
187 if (Existing != FirstIterValue.end()) in getValueOnFirstIteration()
188 return Existing->second; in getValueOnFirstIteration()
/llvm-project-15.0.7/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp108 if (NodeHeader *Existing = Nodes.FindNodeOrInsertPos(ID, InsertPos)) in getOrCreateNode() local
109 return {static_cast<T*>(Existing->getNode()), false}; in getOrCreateNode()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DUseDefaultMemberInitCheck.cpp237 else if (const auto *Existing = in check() local
239 checkExistingInit(Result, Existing); in check()
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dfptoui.f16.ll37 ; Need to make sure we promote f16 to f32 when converting f16 to i64. Existing
104 ; Need to make sure we promote f16 to f32 when converting f16 to i64. Existing
H A Dfptosi.f16.ll37 ; Need to make sure we promote f16 to f32 when converting f16 to i64. Existing
105 ; Need to make sure we promote f16 to f32 when converting f16 to i64. Existing
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp434 auto Existing = ArchSubtarget.find(std::string(STI->getCPU())); in getArchSubtarget() local
435 if (Existing == ArchSubtarget.end()) in getArchSubtarget()
437 return Existing->second.get(); in getArchSubtarget()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp147 if (DIEAbbrev *Existing = in uniqueAbbreviation() local
149 Die.setAbbrevNumber(Existing->getNumber()); in uniqueAbbreviation()
150 return *Existing; in uniqueAbbreviation()
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp263 memprof::IndexedMemProfRecord &Existing = Result.first->second; in addMemProfRecord() local
264 Existing.merge(Record); in addMemProfRecord()
/llvm-project-15.0.7/libcxx/docs/DesignDocs/
H A DExtendedCXX03Support.rst44 The C++11 extensions libc++ provides in C++03 are currently undergoing change. Existing extensions
/llvm-project-15.0.7/clang/lib/Lex/
H A DPragma.cpp912 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) { in AddPragmaHandler() local
913 InsertNS = Existing->getIfNamespace(); in AddPragmaHandler()
940 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace); in RemovePragmaHandler() local
941 assert(Existing && "Namespace containing handler does not exist!"); in RemovePragmaHandler()
943 NS = Existing->getIfNamespace(); in RemovePragmaHandler()
H A DModuleMap.cpp1970 if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModule)) { in parseModuleDecl() local
1975 bool LoadedFromASTFile = Existing->DefinitionLoc.isInvalid(); in parseModuleDecl()
1982 SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first; in parseModuleDecl()
1996 if (!Existing->Parent && Map.mayShadowNewModule(Existing)) { in parseModuleDecl()
1997 ShadowingModule = Existing; in parseModuleDecl()
2002 Diags.Report(Existing->DefinitionLoc, diag::note_mmap_prev_definition); in parseModuleDecl()

123