Home
last modified time | relevance | path

Searched refs:ExpectedIndex (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryItemStream.h42 auto ExpectedIndex = translateOffsetIndex(Offset); in readBytes()
43 if (!ExpectedIndex) in readBytes() local
44 return ExpectedIndex.takeError(); in readBytes()
45 const auto &Item = Items[*ExpectedIndex]; in readBytes()
56 auto ExpectedIndex = translateOffsetIndex(Offset); in readLongestContiguousChunk()
57 if (!ExpectedIndex) in readLongestContiguousChunk() local
58 return ExpectedIndex.takeError(); in readLongestContiguousChunk()
59 Buffer = Traits::bytes(Items[*ExpectedIndex]); in readLongestContiguousChunk()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DTpiStreamBuilder.cpp153 auto ExpectedIndex = Msf.addStream(HashStreamSize); in finalizeMsfLayout() local
154 if (!ExpectedIndex) in finalizeMsfLayout()
155 return ExpectedIndex.takeError(); in finalizeMsfLayout()
156 HashStreamIndex = *ExpectedIndex; in finalizeMsfLayout()
H A DPDBFileBuilder.cpp101 Expected<uint32_t> ExpectedIndex = allocateNamedStream(Name, Data.size()); in addNamedStream() local
102 if (!ExpectedIndex) in addNamedStream()
103 return ExpectedIndex.takeError(); in addNamedStream()
104 assert(NamedStreamData.count(*ExpectedIndex) == 0); in addNamedStream()
105 NamedStreamData[*ExpectedIndex] = std::string(Data); in addNamedStream()
H A DDbiStreamBuilder.cpp312 auto ExpectedIndex = Msf.addStream(S->Size); in finalizeMsfLayout()
313 if (!ExpectedIndex) in finalizeMsfLayout()
314 return ExpectedIndex.takeError(); in finalizeMsfLayout()
315 S->StreamNumber = *ExpectedIndex; in finalizeMsfLayout()
311 auto ExpectedIndex = Msf.addStream(S->Size); finalizeMsfLayout() local
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp375 uint32_t ExpectedIndex = 0; in writeSectionContent() local
377 if (Sig.Index != ExpectedIndex) { in writeSectionContent()
381 ++ExpectedIndex; in writeSectionContent()
454 uint32_t ExpectedIndex = NumImportedTables; in writeSectionContent() local
456 if (Table.Index != ExpectedIndex) { in writeSectionContent()
460 ++ExpectedIndex; in writeSectionContent()
485 uint32_t ExpectedIndex = NumImportedGlobals; in writeSectionContent() local
487 if (Global.Index != ExpectedIndex) { in writeSectionContent()
491 ++ExpectedIndex; in writeSectionContent()
529 uint32_t ExpectedIndex = NumImportedFunctions; in writeSectionContent() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp2649 ValType ExpectedIndex, unsigned ExpectedIndexStride) { in fitsRegularPattern() argument
2653 if (*I != -1 && *I != ExpectedIndex) in fitsRegularPattern()
2655 ExpectedIndex += ExpectedIndexStride; in fitsRegularPattern()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp1070 ValType ExpectedIndex, unsigned ExpectedIndexStride) { in fitsRegularPattern() argument
1074 if (*I != -1 && *I != ExpectedIndex) in fitsRegularPattern()
1076 ExpectedIndex += ExpectedIndexStride; in fitsRegularPattern()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp363 SmallBitVector ExpectedIndex(GroupSize); in getShufflevectorNumGroups() local
372 ExpectedIndex.set(Index / ShuffleMaskSize); in getShufflevectorNumGroups()
376 if (!ExpectedIndex.all()) in getShufflevectorNumGroups()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8526 unsigned ExpectedIndex = i * NumEltsIn128Bits + in isHopBuildVector() local
8528 if (ExpectedIndex == ExtIndex0 && ExtIndex1 == ExtIndex0 + 1) in isHopBuildVector()
8537 if (ExpectedIndex == ExtIndex1 && ExtIndex0 == ExtIndex1 + 1) in isHopBuildVector()