Searched refs:Insertion (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DInMemoryModuleCache.cpp27 auto Insertion = PCMs.insert(std::make_pair(Filename, std::move(Buffer))); local
28 assert(Insertion.second && "Already has a PCM");
29 return *Insertion.first->second.Buffer;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp311 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); local
312 if (Insertion.second) {
319 *Insertion.first = FT;
322 FT = *Insertion.first;
357 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); local
358 if (Insertion.second) {
364 *Insertion.first = ST;
367 ST = *Insertion.first;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSourceMgr.h236 SMFixIt(SMLoc Loc, const Twine &Insertion) argument
237 : Range(Loc, Loc), Text(Insertion.str()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp225 auto Insertion = MemberNames.insert({M.MemberName, uint64_t(0)}); local
226 if (Insertion.second) {
227 Insertion.first->second = StringTable.tell();
230 NamePos = Insertion.first->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp665 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); local
666 MDIndex &Entry = Insertion.first->second;
667 if (!Insertion.second) {
670 dropFunctionFromMetadata(*Insertion.first);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp149 auto Insertion = local
153 std::make_pair(Insertion.first->first(), Insertion.first->second);
154 if (Insertion.second) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp128 const auto Insertion = BaseToIndex.try_emplace(Base, Order); local
129 if (Insertion.second)
131 return Insertion.first->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp241 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); local
242 if (Insertion.second) {
262 return Insertion.first->second;
1333 auto Insertion = FnDebugInfo.insert({&GV, std::make_unique<FunctionInfo>()}); local
1334 assert(Insertion.second && "function already has info");
1335 CurFn = Insertion.first->second.get();
3012 auto Insertion = ScopeGlobals.insert( local
3014 if (Insertion.second)
3015 Insertion.first->second = std::make_unique<GlobalVariableList>();
3016 VariableList = Insertion
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp998 FixItHint Insertion; local
1000 Insertion = FixItHint::CreateInsertion(CorrectLoc, "...");
1002 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion
H A DParseDeclCXX.cpp2390 FixItHint Insertion;
2395 Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name);
2401 << FixItHint::CreateRemoval(SpecLoc) << Insertion;
2411 FixItHint Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); local
2419 << Insertion;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp1036 auto Insertion = local
1038 if (Insertion.second) {
1043 unsigned AsmStrOffset = Insertion.first->second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp8159 Optional<AttributeInsertion> Insertion = createAttributeInsertion(
8161 if (!Insertion)
8170 Insertion->Loc,
8171 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName +
8172 "(" + Introduced + "))" + Insertion->Suffix)
H A DSemaDecl.cpp14807 SmallString<64> Insertion; local
14808 llvm::raw_svector_ostream OS(Insertion);
14814 return FixItHint::CreateInsertion(NameLoc, Insertion);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3980 std::pair<StringRef, unsigned> Insertion =
3982 getStreamer().EmitIntValue(Insertion.second, 4);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp9909 // constants. Insertion into a zero vector is handled as a special-case
13152 if (SDValue Insertion = lowerShuffleAsElementInsertion(
13154 return Insertion;
13159 if (SDValue Insertion = lowerShuffleAsElementInsertion(
13161 return Insertion;
13236 if (SDValue Insertion = lowerShuffleAsElementInsertion(
13238 return Insertion;
13242 if (SDValue Insertion = lowerShuffleAsElementInsertion(
13244 return Insertion;
14218 // See if we can use SSE4A Extraction / Insertion
[all...]

Completed in 311 milliseconds