| /src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | Core.h | 660 Error replace(std::unique_ptr<MaterializationUnit> MU); 1133 Error define(std::unique_ptr<MaterializationUnitType> &&MU, 1147 Error define(std::unique_ptr<MaterializationUnitType> &MU, 1205 UnmaterializedInfo(std::unique_ptr<MaterializationUnit> MU, in UnmaterializedInfo() 1207 : MU(std::move(MU)), RT(RT) {} in UnmaterializedInfo() 1209 std::unique_ptr<MaterializationUnit> MU; member 1304 Error defineImpl(MaterializationUnit &MU); 1306 void installMaterializationUnit(std::unique_ptr<MaterializationUnit> MU, 1321 std::unique_ptr<MaterializationUnit> MU); 1377 const MaterializationUnit &MU) = 0; [all …]
|
| H A D | DebugUtils.h | 70 raw_ostream &operator<<(raw_ostream &OS, const MaterializationUnit &MU);
|
| H A D | COFFPlatform.h | 63 const MaterializationUnit &MU) override;
|
| H A D | ELFNixPlatform.h | 112 const MaterializationUnit &MU) override;
|
| H A D | MachOPlatform.h | 165 const MaterializationUnit &MU) override;
|
| /src/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
|
| /src/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, vMU, BF, CY, DF, MM.
|
| H A D | PPCScheduleE500.td | 25 // 6 pipelined execution units: SU0, SU1, BU, LSU, MU. 30 def E500_MU : FuncUnit; // MU pipeline
|
| /src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Core.cpp | 779 std::unique_ptr<MaterializationUnit> MU) { in replace() argument 780 assert(MU != nullptr && "Can not replace with a null MaterializationUnit"); in replace() 790 for (auto &KV : MU->getSymbols()) { in replace() 806 for (auto &KV : MU->getSymbols()) { in replace() 811 *FromMR.RT, std::move(MU->SymbolFlags), in replace() 812 std::move(MU->InitSymbol)); in replace() 813 MustRunMU = std::move(MU); in replace() 820 auto UMI = std::make_shared<UnmaterializedInfo>(std::move(MU), in replace() 822 for (auto &KV : UMI->MU->getSymbols()) { in replace() 834 assert((!UMIEntry || !UMIEntry->MU) && in replace() [all …]
|
| H A D | DebugUtils.cpp | 211 raw_ostream &operator<<(raw_ostream &OS, const MaterializationUnit &MU) { in operator <<() argument 212 OS << "MU@" << &MU << " (\"" << MU.getName() << "\""; in operator <<() 214 OS << ", " << MU.getSymbols(); in operator <<()
|
| H A D | LLJIT.cpp | 97 const MaterializationUnit &MU) override; 205 Error notifyAdding(ResourceTracker &RT, const MaterializationUnit &MU) { in notifyAdding() argument 207 if (auto &InitSym = MU.getInitializerSymbol()) in notifyAdding() 215 for (auto &KV : MU.getSymbols()) in notifyAdding() 501 const MaterializationUnit &MU) { in notifyAdding() argument 502 return S.notifyAdding(RT, MU); in notifyAdding()
|
| H A D | OrcV2CBindings.cpp | 420 void LLVMOrcDisposeMaterializationUnit(LLVMOrcMaterializationUnitRef MU) { in LLVMOrcDisposeMaterializationUnit() argument 421 std::unique_ptr<MaterializationUnit> TmpMU(unwrap(MU)); in LLVMOrcDisposeMaterializationUnit() 566 LLVMOrcMaterializationUnitRef MU) { in LLVMOrcMaterializationResponsibilityReplace() argument 567 std::unique_ptr<MaterializationUnit> TmpMU(unwrap(MU)); in LLVMOrcMaterializationResponsibilityReplace() 626 LLVMOrcMaterializationUnitRef MU) { in LLVMOrcJITDylibDefine() argument 627 std::unique_ptr<MaterializationUnit> TmpMU(unwrap(MU)); in LLVMOrcJITDylibDefine()
|
| H A D | ELFNixPlatform.cpp | 186 const MaterializationUnit &MU) { in notifyAdding() argument 188 const auto &InitSym = MU.getInitializerSymbol(); in notifyAdding() 196 << " for MU " << MU.getName() << "\n"; in notifyAdding()
|
| H A D | COFFPlatform.cpp | 324 const MaterializationUnit &MU) { in notifyAdding() argument 326 const auto &InitSym = MU.getInitializerSymbol(); in notifyAdding() 335 << MU.getName() << "\n"; in notifyAdding()
|
| /src/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()
|
| /src/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Orc.h | 628 void LLVMOrcDisposeMaterializationUnit(LLVMOrcMaterializationUnitRef MU); 881 LLVMOrcMaterializationUnitRef MU); 958 LLVMOrcMaterializationUnitRef MU);
|
| /src/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 429 if (auto *MU = dyn_cast<MemoryUse>(MUD)) 430 return OperandTraits<MemoryUse>::op_begin(MU); 435 if (auto *MU = dyn_cast<MemoryUse>(MUD)) 436 return OperandTraits<MemoryUse>::op_end(MU); 441 if (const auto *MU = dyn_cast<MemoryUse>(MUD)) 442 return OperandTraits<MemoryUse>::operands(MU); 922 static bool defClobbersUseOrDef(MemoryDef *MD, const MemoryUseOrDef *MU,
|
| /src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LICM.cpp | 187 static bool pointerInvalidatedByLoop(MemorySSA *MSSA, MemoryUse *MU, 192 MemoryUse &MU); 1189 auto MU = cast<MemoryUse>(MSSA->getMemoryAccess(LI)); in canSinkOrHoistInst() local 1194 MSSA, MU, CurLoop, I, Flags, InvariantGroup); in canSinkOrHoistInst() 1301 if (const auto *MU = dyn_cast<MemoryUse>(&MA)) { in canSinkOrHoistInst() local 1303 const_cast<MemoryUse *>(MU)); in canSinkOrHoistInst() 1311 if (!Flags.getIsSink() && !MSSA->dominates(SIMD, MU)) in canSinkOrHoistInst() 2349 static bool pointerInvalidatedByLoop(MemorySSA *MSSA, MemoryUse *MU, in pointerInvalidatedByLoop() argument 2365 MemoryAccess *Source = getClobberingMemoryAccess(*MSSA, BAA, Flags, MU); in pointerInvalidatedByLoop() 2391 if (pointerInvalidatedByBlock(*BB, *MSSA, *MU)) in pointerInvalidatedByLoop() [all …]
|
| H A D | GVNHoist.cpp | 598 if (const MemoryUse *MU = dyn_cast<MemoryUse>(&MA)) { in hasMemoryUse() local 599 Instruction *Insn = MU->getMemoryInst(); in hasMemoryUse() 613 if (MemorySSAUtil::defClobbersUseOrDef(Def, MU, *AA)) in hasMemoryUse()
|
| /src/crypto/openssl/demos/cms/ |
| H A D | signer.pem | 35 k7qdK+YmhdZtucnt0GrPisaJaf0yU/EjLuX+MU/0Xrc23lVhR3yqYhaOhWvrxTHM
|
| /src/crypto/openssl/demos/smime/ |
| H A D | signer.pem | 35 k7qdK+YmhdZtucnt0GrPisaJaf0yU/EjLuX+MU/0Xrc23lVhR3yqYhaOhWvrxTHM
|
| /src/sys/contrib/dev/mediatek/mt76/mt7615/ |
| H A D | Kconfig | 17 MU-MIMO up to 4 users/group and 160MHz channels.
|
| /src/sys/compat/linuxkpi/common/include/linux/ |
| H A D | ieee80211.h | 727 MU-RTS = 0x3, 729 GCR MU-BAR = 0x5,
|
| /src/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
|