| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | Core.h | 684 Error replace(std::unique_ptr<MaterializationUnit> MU); 1048 Error define(std::unique_ptr<MaterializationUnitType> &&MU, 1062 Error define(std::unique_ptr<MaterializationUnitType> &MU, 1120 UnmaterializedInfo(std::unique_ptr<MaterializationUnit> MU, in UnmaterializedInfo() 1122 : MU(std::move(MU)), RT(RT) {} in UnmaterializedInfo() 1124 std::unique_ptr<MaterializationUnit> MU; member 1225 LLVM_ABI Error defineImpl(MaterializationUnit &MU); 1228 installMaterializationUnit(std::unique_ptr<MaterializationUnit> MU, 1243 std::unique_ptr<MaterializationUnit> MU); 1299 const MaterializationUnit &MU) = 0; [all …]
|
| H A D | DebugUtils.h | 72 const MaterializationUnit &MU);
|
| H A D | COFFPlatform.h | 63 const MaterializationUnit &MU) override;
|
| H A D | ELFNixPlatform.h | 126 const MaterializationUnit &MU) override;
|
| H A D | LazyReexports.h | 236 class MU;
|
| /freebsd/sys/contrib/device-tree/Bindings/arm/freescale/ |
| H A D | fsl,scu.txt | 9 The AP communicates with the SC using a multi-ported MU module found 10 in the LSIO subsystem. The current definition of this MU module provides 12 (TZ, HV, standard Linux, etc.). The SC side of this MU module interfaces 13 with the LSIO DSC IP bus. The SC firmware will communicate with this MU 26 include "gip3" if want to support general MU interrupt. 27 - mboxes: List of phandle of 4 MU channels for tx, 4 MU channels for 28 rx, and 1 optional MU channel for general interrupt. 29 All MU channels must be in the same MU instance. 30 Cross instances are not allowed. The MU instance can only
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCScheduleP10.td | 301 // A MU pipeline may take 5 cycles to complete. 352 // Save 1 cycles if pipeline BF reads the data from pipelines DX, MU, vMU, CY, DF, MM. 359 // Save 1 cycles if pipeline CY reads the data from pipelines DX, MU, vMU, BF, DF, MM. 366 // Save 1 cycles if pipeline MM reads the data from pipelines DX, MU, vMU, BF, CY, DF. 376 // Save 1 cycles if pipeline DF reads the data from pipelines DX, MU, vMU, BF, CY, DF, MM. 379 // Save 1 cycles if pipeline DV reads the data from pipelines DX, MU, vMU, BF, CY, DF, MM. 382 // Save 1 cycles if pipeline DX reads the data from pipelines DX, MU, vMU, BF, CY, DF, MM. 394 // Save 1 cycles if pipeline MU reads the data from pipelines DX, MU, DF. 406 // Save 1 cycles if pipeline vMU reads the data from pipelines DX, MU, vM [all...] |
| H A D | PPCScheduleE500.td | 25 // 6 pipelined execution units: SU0, SU1, BU, LSU, MU. 30 def E500_MU : FuncUnit; // MU pipeline
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Core.cpp | 760 std::unique_ptr<MaterializationUnit> MU) { in replace() argument 761 assert(MU != nullptr && "Can not replace with a null MaterializationUnit"); in replace() 771 for (auto &KV : MU->getSymbols()) { in replace() 787 for (auto &KV : MU->getSymbols()) { in replace() 792 *FromMR.RT, std::move(MU->SymbolFlags), in replace() 793 std::move(MU->InitSymbol)); in replace() 794 MustRunMU = std::move(MU); in replace() 801 auto UMI = std::make_shared<UnmaterializedInfo>(std::move(MU), in replace() 803 for (auto &KV : UMI->MU->getSymbols()) { in replace() 815 assert((!UMIEntry || !UMIEntry->MU) && in replace() [all …]
|
| H A D | DebugUtils.cpp | 202 raw_ostream &operator<<(raw_ostream &OS, const MaterializationUnit &MU) { in operator <<() argument 203 OS << "MU@" << &MU << " (\"" << MU.getName() << "\""; in operator <<() 205 OS << ", " << MU.getSymbols(); in operator <<()
|
| H A D | OrcV2CBindings.cpp | 421 void LLVMOrcDisposeMaterializationUnit(LLVMOrcMaterializationUnitRef MU) { in LLVMOrcDisposeMaterializationUnit() argument 422 std::unique_ptr<MaterializationUnit> TmpMU(unwrap(MU)); in LLVMOrcDisposeMaterializationUnit() 567 LLVMOrcMaterializationUnitRef MU) { in LLVMOrcMaterializationResponsibilityReplace() argument 568 std::unique_ptr<MaterializationUnit> TmpMU(unwrap(MU)); in LLVMOrcMaterializationResponsibilityReplace() 627 LLVMOrcMaterializationUnitRef MU) { in LLVMOrcJITDylibDefine() argument 628 std::unique_ptr<MaterializationUnit> TmpMU(unwrap(MU)); in LLVMOrcJITDylibDefine()
|
| H A D | LLJIT.cpp | 97 const MaterializationUnit &MU) override; 208 Error notifyAdding(ResourceTracker &RT, const MaterializationUnit &MU) { in notifyAdding() argument 210 if (auto &InitSym = MU.getInitializerSymbol()) in notifyAdding() 218 for (auto &KV : MU.getSymbols()) in notifyAdding() 504 const MaterializationUnit &MU) { in notifyAdding() argument 505 return S.notifyAdding(RT, MU); in notifyAdding()
|
| H A D | LazyReexports.cpp | 234 class LazyReexportsManager::MU : public MaterializationUnit { class in llvm::orc::LazyReexportsManager 236 MU(LazyReexportsManager &LRMgr, SymbolAliasMap Reexports) in MU() function in llvm::orc::LazyReexportsManager::MU 356 return std::make_unique<MU>(*this, std::move(Reexports)); in createLazyReexports()
|
| H A D | COFFPlatform.cpp | 321 const MaterializationUnit &MU) { in notifyAdding() argument 323 const auto &InitSym = MU.getInitializerSymbol(); in notifyAdding() 332 << MU.getName() << "\n"; in notifyAdding()
|
| H A D | ELFNixPlatform.cpp | 287 const MaterializationUnit &MU) { in notifyAdding() argument 290 const auto &InitSym = MU.getInitializerSymbol(); in notifyAdding() 298 << " for MU " << MU.getName() << "\n"; in notifyAdding()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 327 static bool instructionClobbersQuery(MemoryDef *MD, const MemoryUseOrDef *MU, in instructionClobbersQuery() argument 333 return instructionClobbersQuery(MD, MemoryLocation(), MU->getMemoryInst(), in instructionClobbersQuery() 335 return instructionClobbersQuery(MD, UseMLOC.getLoc(), MU->getMemoryInst(), in instructionClobbersQuery() 340 bool MemorySSAUtil::defClobbersUseOrDef(MemoryDef *MD, const MemoryUseOrDef *MU, in defClobbersUseOrDef() argument 342 return instructionClobbersQuery(MD, MU, MemoryLocOrCall(MU), AA); in defClobbersUseOrDef() 452 if (const auto *MU = dyn_cast<MemoryUse>(MA)) { in checkClobberSanity() local 453 (void)MU; in checkClobberSanity() 454 assert (MU == Start && in checkClobberSanity() 942 if (auto *MU = dyn_cast<MemoryUse>(Start)) in findClobber() local 943 Current = MU->getDefiningAccess(); in findClobber() [all …]
|
| H A D | MemorySSAUpdater.cpp | 238 void MemorySSAUpdater::insertUse(MemoryUse *MU, bool RenameUses) { in insertUse() argument 241 MU->setDefiningAccess(getPreviousDef(MU)); in insertUse() 257 auto *Defs = MSSA->getBlockDefs(MU->getBlock()); in insertUse() 265 BasicBlock *StartBlock = MU->getBlock(); in insertUse() 274 MSSA->renamePass(MU->getBlock(), FirstDef, Visited); in insertUse()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Orc.h | 637 LLVMOrcDisposeMaterializationUnit(LLVMOrcMaterializationUnitRef MU); 893 LLVMOrcMaterializationUnitRef MU); 967 LLVMOrcMaterializationUnitRef MU);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 428 if (auto *MU = dyn_cast<MemoryUse>(MUD)) 429 return OperandTraits<MemoryUse>::op_begin(MU); 434 if (auto *MU = dyn_cast<MemoryUse>(MUD)) 435 return OperandTraits<MemoryUse>::op_end(MU); 440 if (const auto *MU = dyn_cast<MemoryUse>(MUD)) 441 return OperandTraits<MemoryUse>::operands(MU); 930 const MemoryUseOrDef *MU,
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LICM.cpp | 192 static bool pointerInvalidatedByLoop(MemorySSA *MSSA, MemoryUse *MU, 197 MemoryUse &MU); 1185 auto MU = cast<MemoryUse>(MSSA->getMemoryAccess(LI)); in canSinkOrHoistInst() local 1190 MSSA, MU, CurLoop, I, Flags, InvariantGroup); in canSinkOrHoistInst() 2318 if (const auto *MU = dyn_cast<MemoryUse>(&MA)) { in noConflictingReadWrites() local 2320 const_cast<MemoryUse *>(MU)); in noConflictingReadWrites() 2327 if (!Flags.getIsSink() && !MSSA->dominates(IMD, MU)) in noConflictingReadWrites() 2360 static bool pointerInvalidatedByLoop(MemorySSA *MSSA, MemoryUse *MU, in pointerInvalidatedByLoop() argument 2376 MemoryAccess *Source = getClobberingMemoryAccess(*MSSA, BAA, Flags, MU); in pointerInvalidatedByLoop() 2402 if (pointerInvalidatedByBlock(*BB, *MSSA, *MU)) in pointerInvalidatedByLoop() [all …]
|
| H A D | GVNHoist.cpp | 596 if (const MemoryUse *MU = dyn_cast<MemoryUse>(&MA)) { in hasMemoryUse() local 597 Instruction *Insn = MU->getMemoryInst(); in hasMemoryUse() 611 if (MemorySSAUtil::defClobbersUseOrDef(Def, MU, *AA)) in hasMemoryUse()
|
| /freebsd/crypto/openssl/demos/cms/ |
| H A D | signer.pem | 35 k7qdK+YmhdZtucnt0GrPisaJaf0yU/EjLuX+MU/0Xrc23lVhR3yqYhaOhWvrxTHM
|
| /freebsd/crypto/openssl/demos/smime/ |
| H A D | signer.pem | 35 k7qdK+YmhdZtucnt0GrPisaJaf0yU/EjLuX+MU/0Xrc23lVhR3yqYhaOhWvrxTHM
|
| /freebsd/sys/contrib/dev/mediatek/mt76/mt7615/ |
| H A D | Kconfig | 17 MU-MIMO up to 4 users/group and 160MHz channels.
|
| /freebsd/tools/tools/locale/etc/charmaps/ |
| H A D | ISO8859-7.TXT | 260 0xCC 0x039C # GREEK CAPITAL LETTER MU 291 0xEC 0x03BC # GREEK SMALL LETTER MU
|