Home
last modified time | relevance | path

Searched refs:Extract (Results 1 – 25 of 176) sorted by relevance

12345678

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DInterleavedAccessPass.cpp289 auto *Extract = dyn_cast<ExtractElementInst>(*UI); in lowerInterleavedLoad() local
290 if (Extract && isa<ConstantInt>(Extract->getIndexOperand())) { in lowerInterleavedLoad()
291 Extracts.push_back(Extract); in lowerInterleavedLoad()
360 for (auto *Extract : Extracts) { in tryReplaceExtracts() local
371 if (!DT->dominates(Shuffle, Extract)) in tryReplaceExtracts()
383 ReplacementMap[Extract] = std::make_pair(Shuffle, I); in tryReplaceExtracts()
388 if (ReplacementMap.count(Extract)) in tryReplaceExtracts()
394 if (!ReplacementMap.count(Extract)) in tryReplaceExtracts()
401 auto *Extract = Replacement.first; in tryReplaceExtracts() local
404 Builder.SetInsertPoint(Extract); in tryReplaceExtracts()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dxray-extract.cpp33 static cl::SubCommand Extract("extract", "Extract instrumentation maps"); variable
36 cl::sub(Extract));
40 cl::sub(Extract));
43 cl::sub(Extract));
47 cl::sub(Extract));
50 cl::sub(Extract));
74 static CommandRegistration Unused(&Extract, []() -> Error { in __anonea4e72b60202()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugRanges.h22 virtual void Extract(SymbolFileDWARF *dwarf2Data) = 0;
32 void Extract(SymbolFileDWARF *dwarf2Data) override;
42 bool Extract(SymbolFileDWARF *dwarf2Data, lldb::offset_t *offset_ptr,
60 void Extract(SymbolFileDWARF *dwarf2Data) override;
H A DDWARFAbbreviationDeclaration.cpp27 bool DWARFAbbreviationDeclaration::Extract(const DWARFDataExtractor &data, in Extract() function in DWARFAbbreviationDeclaration
29 return Extract(data, offset_ptr, data.GetULEB128(offset_ptr)); in Extract()
32 bool DWARFAbbreviationDeclaration::Extract(const DWARFDataExtractor &data, in Extract() function in DWARFAbbreviationDeclaration
H A DDWARFDebugMacinfo.cpp33 while (maninfo_entry.Extract(macinfo_data, &offset)) in Dump()
36 if (maninfo_entry.Extract(macinfo_data, &offset)) in Dump()
H A DDWARFDebugAbbrev.cpp29 bool DWARFAbbreviationDeclarationSet::Extract(const DWARFDataExtractor &data, in Extract() function in DWARFAbbreviationDeclarationSet
36 while (abbrevDeclaration.Extract(data, offset_ptr)) { in Extract()
149 if (abbrevDeclSet.Extract(data, &offset)) in Parse()
H A DDWARFAbbreviationDeclaration.h48 bool Extract(const lldb_private::DWARFDataExtractor &data,
50 bool Extract(const lldb_private::DWARFDataExtractor &data,
H A DDWARFDebugRanges.cpp33 void DWARFDebugRanges::Extract(SymbolFileDWARF *dwarf2Data) { in Extract() function in DWARFDebugRanges
37 while (Extract(dwarf2Data, &offset, range_list)) { in Extract()
44 bool DWARFDebugRanges::Extract(SymbolFileDWARF *dwarf2Data, in Extract() function in DWARFDebugRanges
259 void DWARFDebugRngLists::Extract(SymbolFileDWARF *dwarf2Data) { in Extract() function in DWARFDebugRngLists
H A DDWARFDebugAranges.cpp51 bool DWARFDebugAranges::Extract(const DWARFDataExtractor &debug_aranges_data) { in Extract() function in DWARFDebugAranges
57 while (set.Extract(debug_aranges_data, &offset)) { in Extract()
H A DDWARFDebugInfo.cpp59 m_cu_aranges_ap->Extract(debug_aranges_data); in GetCompileUnitAranges()
102 while ((cu_sp = DWARFCompileUnit::Extract(m_dwarf2Data, debug_info_data, in ParseCompileUnitHeadersIfNeeded()
H A DDWARFCompileUnit.h17 static DWARFUnitSP Extract(SymbolFileDWARF *dwarf2Data,
H A DDWARFDebugMacinfoEntry.h29 bool Extract(const lldb_private::DWARFDataExtractor &mac_info_data,
H A DDWARFDebugAranges.h33 bool Extract(const lldb_private::DWARFDataExtractor &debug_aranges_data);
H A DDWARFDebugArangeSet.h48 bool Extract(const lldb_private::DWARFDataExtractor &data,
H A DDWARFDebugAbbrev.h39 bool Extract(const lldb_private::DWARFDataExtractor &data,
H A DDWARFDebugMacinfoEntry.cpp66 bool DWARFDebugMacinfoEntry::Extract(const DWARFDataExtractor &mac_info_data, in Extract() function in DWARFDebugMacinfoEntry
H A DDWARFCompileUnit.cpp23 DWARFUnitSP DWARFCompileUnit::Extract(SymbolFileDWARF *dwarf2Data, in Extract() function in DWARFCompileUnit
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DBinaryStreamArray.h160 : IterRef(Array.Stream.drop_front(Offset)), Extract(E), in VarStreamArrayIterator()
165 auto EC = Extract(IterRef, ThisLen, ThisValue); in VarStreamArrayIterator()
174 explicit VarStreamArrayIterator(const Extractor &E) : Extract(E) {} in VarStreamArrayIterator()
214 auto EC = Extract(IterRef, ThisLen, ThisValue);
244 Extractor Extract; variable
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZInstrSystem.td21 // Extract PSW.
73 // Extract primary ASN (and instance).
79 // Extract secondary ASN (and instance).
91 // Extract and set extended authority.
282 // Extract stacked registers.
288 // Extract stacked state.
359 // Extract CPU attribute.
363 // Extract CPU time.
424 // Extract coprocessor-group address.
428 // Extract CPU counter.
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1038 Value *Extract = Builder.CreateExtractElement(Store->getValueOperand(), in vectorizeStoreChain() local
1040 if (Extract->getType() != StoreTy->getScalarType()) in vectorizeStoreChain()
1041 Extract = Builder.CreateBitCast(Extract, StoreTy->getScalarType()); in vectorizeStoreChain()
1044 Builder.CreateInsertElement(Vec, Extract, Builder.getInt32(NewIdx)); in vectorizeStoreChain()
1051 Value *Extract = Store->getValueOperand(); in vectorizeStoreChain() local
1052 if (Extract->getType() != StoreTy->getScalarType()) in vectorizeStoreChain()
1053 Extract = in vectorizeStoreChain()
1054 Builder.CreateBitOrPointerCast(Extract, StoreTy->getScalarType()); in vectorizeStoreChain()
1057 Builder.CreateInsertElement(Vec, Extract, Builder.getInt32(I)); in vectorizeStoreChain()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DVOP3PInstructions.td180 class Extract<int FromBitIndex, int BitMask, bit U>: PatFrag<
197 def #Type#Index#"_8bit" : Extract<!shl(Index, 3), 255, !if (!eq (Type, "U"), 1, 0)>;
205 (!cast<Extract>(#Type#Index#"_8bit") node:$src0),
206 (!cast<Extract>(#Type#Index#"_8bit") node:$src1))>;
225 def #Type#Index#"_4bit" : Extract<!shl(Index, 2), 15, !if (!eq (Type, "U"), 1, 0)>;
232 (!cast<Extract>(#Type#Index#"_4bit") node:$src0),
233 (!cast<Extract>(#Type#Index#"_4bit") node:$src1))>;
/freebsd-12.1/contrib/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp167 Extract, ///< Extract files back to file system enumerator
288 Operation = Extract; in parseCommandLine()
370 if (OriginalDates && Operation != Extract) in parseCommandLine()
484 case Extract: in shouldCreateArchive()
498 if (Operation == Extract && OldArchive->isThin()) in performReadOperation()
525 case Extract: in performReadOperation()
813 case Extract: in performOperation()
/freebsd-12.1/contrib/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp306 legacy::PassManager Extract; in main() local
307 Extract.add(createGVExtractionPass(Gvs, DeleteFn)); in main()
308 Extract.run(*M); in main()
/freebsd-12.1/tools/tools/locale/
H A DREADME15 3. Extract:
/freebsd-12.1/contrib/less/
H A DFREEBSD-upgrade6 3. Extract new code to, say, less/lessv429

12345678