Searched refs:Partition (Results 1 - 24 of 24) sorted by relevance

/freebsd-11-stable/stand/efi/include/
H A Defipart.h63 MBR_PARTITION_RECORD Partition[MAX_MBR_PARTITIONS]; member in struct:__anon4870
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.cpp120 void CompileOnDemandLayer::setPartitionFunction(PartitionFunction Partition) { argument
121 this->Partition = std::move(Partition);
210 void CompileOnDemandLayer::expandPartition(GlobalValueSet &Partition) { argument
217 assert(!Partition.empty() && "Unexpected empty partition");
219 const Module &M = *(*Partition.begin())->getParent();
223 for (auto *GV : Partition)
231 if (Partition.count(cast<GlobalValue>(A.getAliasee())))
239 Partition.insert(GV);
261 TSM.withModuleDo([&](Module &M) { return Partition(RequestedGV
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DSROA.h41 class Partition;
127 sroa::Partition &P);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchTree.cpp469 auto Partition = InstrToPartition.find(Expected); local
470 if (Partition == InstrToPartition.end()) {
472 Partition = InstrToPartition
479 Partitions.find(Partition->second)->second.set(Leaf.index());
482 << " is in partition " << Partition->second << "\n");
500 for (auto &Partition : Partitions)
501 Partition.second.set(Leaf.index());
527 for (auto &Partition : Partitions)
528 Partition.second.set(Leaf.index());
598 for (const auto &Partition
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp321 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) {
322 if (Partition->hasDepCycle())
328 for (auto *Inst : *Partition)
419 for (const auto &Partition : PartitionContainer) {
420 for (Instruction *Inst : Partition) {
496 for (auto &Partition : PartitionContainer)
497 Partition.removeUnusedInsts();
517 int &Partition = PtrToPartitions[I]; local
519 Partition = -2;
524 if (Partition
[all...]
H A DSROA.cpp356 class llvm::sroa::Partition { class in class:llvm::sroa
375 Partition(iterator SI) : SI(SI), SJ(SI) {} function in class:llvm::sroa::Partition
432 Partition> {
437 Partition P;
608 Partition &operator*() { return P; }
1807 static bool isVectorPromotionViableForSlice(Partition &P, const Slice &S,
1882 static VectorType *isVectorPromotionViable(Partition &P, const DataLayout &DL) {
2085 static bool isIntegerWideningViable(Partition &P, Type *AllocaTy,
4117 Partition &P) {
/freebsd-11-stable/stand/i386/mbr/
H A Dmbr.s22 .set PT_OFF,0x1be # Partition table
60 movw $partbl,%bx # Partition table
156 partbl: .fill 0x10,0x4,0x0 # Partition table
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h93 void setPartitionFunction(PartitionFunction Partition);
121 void expandPartition(GlobalValueSet &Partition);
132 PartitionFunction Partition = compileRequested; member in class:llvm::orc::CompileOnDemandLayer
275 SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition,
287 SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition,
294 Partition(std::move(Partition)), CompileCallbackMgr(CallbackMgr),
593 auto Part = Partition(F);
741 PartitioningFtor Partition; member in class:llvm::orc::LegacyCompileOnDemandLayer
755 SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition,
284 LegacyCompileOnDemandLayer( ORCv1DeprecationAcknowledgement, ExecutionSession &ES, BaseLayerT &BaseLayer, SymbolResolverGetter GetSymbolResolver, SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition, CompileCallbackMgrT &CallbackMgr, IndirectStubsManagerBuilderT CreateIndirectStubsManager, bool CloneStubsIntoPartitions = true) argument
752 LegacyCompileOnDemandLayer( ExecutionSession &ES, BaseLayerT &BaseLayer, SymbolResolverGetter GetSymbolResolver, SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition, CompileCallbackMgrT &CallbackMgr, IndirectStubsManagerBuilderT CreateIndirectStubsManager, bool CloneStubsIntoPartitions) argument
[all...]
H A DLLJIT.h167 setPartitionFunction(CompileOnDemandLayer::PartitionFunction Partition) { argument
168 CODLayer->setPartitionFunction(std::move(Partition));
/freebsd-11-stable/stand/i386/zfsboot/
H A Dzfsldr.S27 /* Partition Constants */
28 .set PRT_OFF,0x1be # Partition offset
30 .set PRT_BSD,0xa5 # Partition type
71 main.1: mov $MEM_BUF+PRT_OFF,%si # Partition table
72 movb $0x1,%dh # Partition
79 incb %dh # Partition
275 /* Partition table */
/freebsd-11-stable/stand/i386/boot2/
H A Dboot1.S28 /* Partition Constants */
29 .set PRT_OFF,0x1be # Partition offset
31 .set PRT_BSD,0xa5 # Partition type
145 mov $part4,%si # Partition
151 main.1: mov $MEM_BUF+PRT_OFF,%si # Partition table
152 movb $0x1,%dh # Partition
159 incb %dh # Partition
173 main.4: xor %dx,%dx # Partition:drive
365 /* Partition table */
/freebsd-11-stable/stand/i386/boot0/
H A Dboot0.S136 .set PRT_OFF,0x1be # Partition table
261 movw $(partbl+0x4),%bx # Partition table (+4)
291 movb (%di),%cl # Partition
446 movw %bp,%si # Partition for write
448 movw %si,%bx # Partition for read
599 /* Partition type tables */
679 partbl: .fill 0x40,0x1,0x0 # Partition table
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DInputSection.h28 struct Partition;
34 extern std::vector<Partition> partitions;
69 elf::Partition &getPartition() const;
H A DWriter.cpp64 std::vector<PhdrEntry *> createPhdrs(Partition &part);
65 void addPhdrForSection(Partition &part, unsigned shType, unsigned pType,
69 void setPhdrs(Partition &part);
184 Partition &part = s->getPartition();
368 for (Partition &part : partitions) {
579 for (Partition &part : partitions)
587 for (Partition &part : partitions)
827 RF_PARTITION = 1 << 18, // Partition number (8 bits)
1030 for (Partition &part : partitions) {
1065 for (Partition
[all...]
H A DSyntheticSections.h1152 template <typename ELFT> void writeEhdr(uint8_t *buf, Partition &part);
1153 template <typename ELFT> void writePhdrs(uint8_t *buf, Partition &part);
1161 struct Partition { struct in namespace:lld::elf
1187 extern Partition *mainPart;
1189 inline Partition &SectionBase::getPartition() const {
H A DSyntheticSections.cpp1276 Partition &part = getPartition();
3615 template <typename ELFT> void writeEhdr(uint8_t *buf, Partition &part) {
3641 template <typename ELFT> void writePhdrs(uint8_t *buf, Partition &part) {
3718 std::vector<Partition> partitions;
3719 Partition *mainPart;
3776 template void writeEhdr<ELF32LE>(uint8_t *Buf, Partition &Part);
3777 template void writeEhdr<ELF32BE>(uint8_t *Buf, Partition &Part);
3778 template void writeEhdr<ELF64LE>(uint8_t *Buf, Partition &Part);
3779 template void writeEhdr<ELF64BE>(uint8_t *Buf, Partition &Part);
3781 template void writePhdrs<ELF32LE>(uint8_t *Buf, Partition
[all...]
H A DDriver.cpp105 partitions = {Partition()};
1556 for (Partition &part : partitions) {
1579 // sizes of the Partition fields in InputSectionBase and Symbol, as well as
1585 Partition &newPart = partitions.back();
H A DRelocations.cpp1008 Partition &part = isec->getPartition();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp515 unsigned Partition, bool InSummary) {
552 (GlobalRes.Partition != GlobalResolution::Unknown &&
553 GlobalRes.Partition != Partition)) {
554 GlobalRes.Partition = GlobalResolution::External;
557 GlobalRes.Partition = Partition;
1013 if (R.second.Partition != 0 &&
1014 R.second.Partition != GlobalResolution::External)
1025 if (EnableLTOInternalization && R.second.Partition
513 addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, ArrayRef<SymbolResolution> Res, unsigned Partition, bool InSummary) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h381 unsigned Partition = Unknown; member in struct:llvm::lto::LTO::GlobalResolution
401 ArrayRef<SymbolResolution> Res, unsigned Partition,
/freebsd-11-stable/stand/
H A Dloader.mk123 # Partition support
/freebsd-11-stable/stand/pc98/boot2/
H A Dboot1.S53 /* Partition Constants */
54 .set PRT_OFF,0x1be # Partition offset
387 /* Partition table */
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2291 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Partition; local
2292 if (ParseModuleName(ModuleLoc, Partition, /*IsImport*/false))
2297 << SourceRange(ColonLoc, Partition.back().second);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5383 std::string Partition;
5401 ParseStringConstant(Partition)) ||
5503 Fn->setPartition(Partition);

Completed in 357 milliseconds