| /freebsd-14.2/sys/contrib/device-tree/Bindings/firmware/ |
| H A D | fsl,scu.yaml | 51 RX MU channels. The list may include at the end one more optional MU 55 within the same MU instance. Cross instances are not allowed. The MU 61 - description: TX0 MU channel 62 - description: RX0 MU channel 64 - description: TX0 MU channel 65 - description: RX0 MU channel 68 - description: TX0 MU channel 69 - description: TX1 MU channel 70 - description: TX2 MU channel 71 - description: TX3 MU channel [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/mailbox/ |
| H A D | fsl,mu.yaml | 7 title: NXP i.MX Messaging Unit (MU) 15 and control) through the MU interface. The MU also provides the ability 18 Because the MU manages the messaging between processors, the MU uses 20 Therefore, the MU must synchronize the accesses from one side to the 21 other. The MU accomplishes synchronization using two sets of matching 75 This MU support 5 type of unidirectional channels, each type 91 description: boolean, if present, means it is for side B MU.
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | fsl,mu-msi.yaml | 7 title: Freescale/NXP i.MX Messaging Unit (MU) work as msi controller 15 and control) through the MU interface. The MU also provides the ability 19 Because the MU manages the messaging between processors, the MU uses 21 Therefore, the MU must synchronize the accesses from one side to the 22 other. The MU accomplishes synchronization using two sets of matching 25 MU can work as msi interrupt controller to do doorbell
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | Core.h | 1176 : MU(std::move(MU)), RT(RT) {} in UnmaterializedInfo() 1178 std::unique_ptr<MaterializationUnit> MU; member 1251 Error defineImpl(MaterializationUnit &MU); 1358 : MU(std::move(MU)), MR(std::move(MR)) {} in MaterializationTask() 1363 std::unique_ptr<MaterializationUnit> MU; 1847 if (MU->getSymbols().empty()) { in define() 1869 if (auto Err = defineImpl(*MU)) in define() 1876 if (auto Err = P->notifyAdding(*RT, *MU)) in define() 1890 if (MU->getSymbols().empty()) { in define() 1912 if (auto Err = defineImpl(*MU)) in define() [all …]
|
| H A D | DebugUtils.h | 67 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;
|
| /freebsd-14.2/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-14.2/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
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Core.cpp | 773 for (auto &KV : MU->getSymbols()) { in replace() 789 for (auto &KV : MU->getSymbols()) { in replace() 796 MustRunMU = std::move(MU); in replace() 1494 OS << I->second->MU.get() << ", " << I->second->MU->getName() << ")\n"; in dump() 1711 for (const auto &KV : MU.getSymbols()) { in defineImpl() 1743 MU.doDiscard(*this, S); in defineImpl() 1756 UMII->second->MU->doDiscard(*this, S); in defineImpl() 1760 for (auto &KV : MU.getSymbols()) { in defineImpl() 1777 for (auto &KV : MU->getSymbols()) in installMaterializationUnit() 1782 for (auto &KV : UMI->MU->getSymbols()) in installMaterializationUnit() [all …]
|
| H A D | DebugUtils.cpp | 207 raw_ostream &operator<<(raw_ostream &OS, const MaterializationUnit &MU) { in operator <<() argument 208 OS << "MU@" << &MU << " (\"" << MU.getName() << "\""; in operator <<() 210 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 | 412 void LLVMOrcDisposeMaterializationUnit(LLVMOrcMaterializationUnitRef MU) { in LLVMOrcDisposeMaterializationUnit() argument 413 std::unique_ptr<MaterializationUnit> TmpMU(unwrap(MU)); in LLVMOrcDisposeMaterializationUnit() 548 LLVMOrcMaterializationUnitRef MU) { in LLVMOrcMaterializationResponsibilityReplace() argument 549 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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 339 return instructionClobbersQuery(MD, MU, MemoryLocOrCall(MU), AA); in defClobbersUseOrDef() 449 if (const auto *MU = dyn_cast<MemoryUse>(MA)) { in checkClobberSanity() local 450 (void)MU; in checkClobberSanity() 451 assert (MU == Start && in checkClobberSanity() 939 if (auto *MU = dyn_cast<MemoryUse>(Start)) in findClobber() local 940 Current = MU->getDefiningAccess(); in findClobber() 1355 auto *MU = dyn_cast<MemoryUse>(&MA); in optimizeUsesInBlock() local 1356 if (!MU) { in optimizeUsesInBlock() 1362 if (MU->isOptimized()) in optimizeUsesInBlock() 1365 MemoryLocOrCall UseMLOC(MU); in optimizeUsesInBlock() [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-14.2/sys/contrib/device-tree/Bindings/media/ |
| H A D | amphion,vpu.yaml | 45 Each vpu encoder or decoder correspond a MU, which used for communication 78 List of phandle of 2 MU channels for tx, 1 MU channel for rx.
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Orc.h | 619 void LLVMOrcDisposeMaterializationUnit(LLVMOrcMaterializationUnitRef MU); 858 LLVMOrcMaterializationUnitRef MU); 967 LLVMOrcMaterializationUnitRef MU);
|
| /freebsd-14.2/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); 917 static bool defClobbersUseOrDef(MemoryDef *MD, const MemoryUseOrDef *MU,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LICM.cpp | 178 static bool pointerInvalidatedByLoop(MemorySSA *MSSA, MemoryUse *MU, 183 MemoryUse &MU); 1178 auto MU = cast<MemoryUse>(MSSA->getMemoryAccess(LI)); in canSinkOrHoistInst() local 1183 MSSA, MU, CurLoop, I, Flags, InvariantGroup); in canSinkOrHoistInst() 1290 if (const auto *MU = dyn_cast<MemoryUse>(&MA)) { in canSinkOrHoistInst() local 1292 const_cast<MemoryUse *>(MU)); in canSinkOrHoistInst() 1300 if (!Flags.getIsSink() && !MSSA->dominates(SIMD, MU)) in canSinkOrHoistInst() 2334 static bool pointerInvalidatedByLoop(MemorySSA *MSSA, MemoryUse *MU, in pointerInvalidatedByLoop() argument 2376 if (pointerInvalidatedByBlock(*BB, *MSSA, *MU)) in pointerInvalidatedByLoop() 2380 return pointerInvalidatedByBlock(*I.getParent(), *MSSA, *MU); in pointerInvalidatedByLoop() [all …]
|
| H A D | GVNHoist.cpp | 610 if (const MemoryUse *MU = dyn_cast<MemoryUse>(&MA)) { in hasMemoryUse() local 611 Instruction *Insn = MU->getMemoryInst(); in hasMemoryUse() 625 if (MemorySSAUtil::defClobbersUseOrDef(Def, MU, *AA)) in hasMemoryUse()
|
| /freebsd-14.2/crypto/openssl/demos/smime/ |
| H A D | signer.pem | 35 k7qdK+YmhdZtucnt0GrPisaJaf0yU/EjLuX+MU/0Xrc23lVhR3yqYhaOhWvrxTHM
|
| /freebsd-14.2/crypto/openssl/demos/cms/ |
| H A D | signer.pem | 35 k7qdK+YmhdZtucnt0GrPisaJaf0yU/EjLuX+MU/0Xrc23lVhR3yqYhaOhWvrxTHM
|