/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | LiveRegUnits.cpp | 47 if (MOP.isReg()) { in stepBackward() 48 if (MOP.isDef() && MOP.getReg().isPhysical()) in stepBackward() 49 removeReg(MOP.getReg()); in stepBackward() 53 if (MOP.isRegMask()) { in stepBackward() 61 if (!MOP.isReg() || !MOP.readsReg()) in stepBackward() 64 if (MOP.getReg().isPhysical()) in stepBackward() 65 addReg(MOP.getReg()); in stepBackward() 72 if (MOP.isReg()) { in accumulate() 75 if (MOP.isDef() || MOP.readsReg()) in accumulate() 76 addReg(MOP.getReg()); in accumulate() [all …]
|
H A D | LivePhysRegs.cpp | 46 for (const MachineOperand &MOP : phys_regs_and_masks(MI)) { in removeDefs() local 47 if (MOP.isRegMask()) { in removeDefs() 48 removeRegsInMask(MOP); in removeDefs() 52 if (MOP.isDef()) in removeDefs() 53 removeReg(MOP.getReg()); in removeDefs() 59 for (const MachineOperand &MOP : phys_regs_and_masks(MI)) { in addUses() local 60 if (!MOP.isReg() || !MOP.readsReg()) in addUses() 62 addReg(MOP.getReg()); in addUses()
|
H A D | MachineOutliner.cpp | 819 for (MachineOperand &MOP : MI->operands()) { in outline() 821 if (!MOP.isReg()) in outline() 824 if (MOP.isDef()) { in outline() 826 DefRegs.insert(MOP.getReg()); in outline() 827 if (UseRegs.count(MOP.getReg()) && in outline() 828 !InstrUseRegs.count(MOP.getReg())) in outline() 831 UseRegs.erase(MOP.getReg()); in outline() 832 } else if (!MOP.isUndef()) { in outline() 835 UseRegs.insert(MOP.getReg()); in outline() 836 InstrUseRegs.insert(MOP.getReg()); in outline()
|
H A D | MachineCSE.cpp | 313 for (const auto &MOP : llvm::enumerate(MI->operands())) { in hasLivePhysRegDefUses() local 314 const MachineOperand &MO = MOP.value(); in hasLivePhysRegDefUses() 329 PhysDefs.push_back(std::make_pair(MOP.index(), Reg)); in hasLivePhysRegDefUses()
|
H A D | LiveIntervals.cpp | 1114 for (MachineOperand &MOP : mi_bundle_ops(*KillMI)) in handleMoveDown() 1115 if (MOP.isReg() && MOP.isUse()) in handleMoveDown() 1116 MOP.setIsKill(false); in handleMoveDown()
|
H A D | MachineVerifier.cpp | 2486 for (const MachineOperand &MOP : MI->uses()) { in checkLiveness() local 2487 if (!MOP.isReg() || !MOP.isImplicit()) in checkLiveness() 2490 if (!MOP.getReg().isPhysical()) in checkLiveness() 2493 if (llvm::is_contained(TRI->subregs(MOP.getReg()), Reg)) in checkLiveness()
|
/openbsd/sys/arch/i386/i386/ |
H A D | in_cksum.s | 136 MOP 204 MOP 212 MOP 221 MOP 230 MOP 270 MOP 289 MOP 304 MOP 313 MOP 321 MOP [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/AArch64/ |
H A D | AArch64LoadStoreOptimizer.cpp | 805 return MOP.isReg() && MOP.isDef() && !MOP.isDebug() && MOP.getReg() && in forAllMIsUntilDef() 820 if (MOP.isReg() && MOP.isKill()) in updateDefinedRegisters() 824 if (MOP.isReg() && !MOP.isKill()) in updateDefinedRegisters() 872 if (MOP.isReg() && !MOP.isDebug() && MOP.getReg() && in mergePairedInsns() 884 if (MOP.isReg() && !MOP.isDebug() && MOP.getReg() && in mergePairedInsns() 907 return !MOP.isReg() || MOP.isDebug() || !MOP.getReg() || in mergePairedInsns() 1057 if (MOP.isReg() && MOP.isKill()) in mergePairedInsns() 1362 return MOP.isReg() && !MOP.isDebug() && MOP.getReg() && in canRenameUpToDef() 1387 (MOP.isRenamable() && !MOP.isEarlyClobber() && !MOP.isTied()); in canRenameUpToDef() 1428 if (!MOP.isReg() || !MOP.isDef() || MOP.isDebug() || !MOP.getReg() || in canRenameUpToDef() [all …]
|
H A D | AArch64ExpandPseudoInsts.cpp | 753 auto MOP = MI.getOperand(RegMaskStartIdx); in expandCALL_RVMARKER() local 754 assert(MOP.isReg() && "can only add register operands"); in expandCALL_RVMARKER() 756 MOP.getReg(), /*Def=*/false, /*Implicit=*/true)); in expandCALL_RVMARKER()
|
H A D | AArch64InstrInfo.cpp | 7740 for (const MachineOperand &MOP : MI.operands()) { in getOutliningType() local 7741 if (MOP.isCPI() || MOP.isJTI() || MOP.isCFIIndex() || MOP.isFI() || in getOutliningType() 7742 MOP.isTargetIndex()) in getOutliningType() 7746 if (MOP.isReg() && !MOP.isImplicit() && in getOutliningType() 7747 (MOP.getReg() == AArch64::LR || MOP.getReg() == AArch64::W30)) in getOutliningType() 7774 for (const MachineOperand &MOP : MI.operands()) { in getOutliningType() local 7775 if (MOP.isGlobal()) { in getOutliningType() 7776 Callee = dyn_cast<Function>(MOP.getGlobal()); in getOutliningType()
|
H A D | AArch64SchedNeoverseN2.td | 29 // stages. A MOP can be split into two micro-ops further down the pipeline
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | LiveRegUnits.h | 168 [](const MachineOperand &MOP) { in phys_regs_and_masks() 169 return MOP.isRegMask() || in phys_regs_and_masks() 170 (MOP.isReg() && !MOP.isDebug() && MOP.getReg().isPhysical()); in phys_regs_and_masks()
|
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
H A D | MachOPlatform.cpp | 86 MachOHeaderMaterializationUnit(MachOPlatform &MOP, in MachOHeaderMaterializationUnit() argument 89 MOP(MOP) {} in MachOHeaderMaterializationUnit() 94 auto G = createPlatformGraph(MOP, "<MachOHeaderMU>"); in materialize() 95 addMachOHeader(*G, MOP, R->getInitializerSymbol()); in materialize() 96 MOP.getObjectLinkingLayer().emit(std::move(R), std::move(G)); in materialize() 158 createHeaderInterface(MachOPlatform &MOP, in createHeaderInterface() argument 171 MachOPlatform &MOP; member in __anon8a8cd1560111::MachOHeaderMaterializationUnit 182 MachOPlatform &MOP, StringRef PlatformJDName, in MachOPlatformCompleteBootstrapMaterializationUnit() argument 189 MOP(MOP), PlatformJDName(PlatformJDName), 232 MOP.getObjectLinkingLayer().emit(std::move(R), std::move(G)); in materialize() [all …]
|
H A D | COFFPlatform.cpp | 144 createHeaderInterface(COFFPlatform &MOP, in createHeaderInterface() argument
|
/openbsd/gnu/usr.bin/perl/pod/ |
H A D | perldtrace.pod | 148 Class::MOP::Attribute::slots 400 151 Class::MOP::Instance::inline_slot_access 451 152 Class::MOP::Class::Immutable::Trait:::around 472 153 Class::MOP::Mixin::AttributeCore::has_initializer 496 154 Class::MOP::Method::Wrapped::__ANON__ 544 155 Class::MOP::Package::_package_stash 737 156 Class::MOP::Class::initialize 1128 157 Class::MOP::get_metaclass_by_name 1204
|
/openbsd/distrib/notes/alpha/ |
H A D | install | 42 using the old DEC MOP protocol, or the common bootp protocol. 44 Older systems, such as the DEC 3000 systems, can only use the MOP 69 Booting from a MOP server: 98 MOP or dhcp server) will need to run nfsd, mountd, and the
|
H A D | contents | 28 netboot.mop The OpenBSD/MACHINE network boot loader, for MOP
|
/openbsd/usr.sbin/mopd/otherOS/linux2/ |
H A D | mopd-x.x.x.spec | 2 Summary: MOP (Maintenance Operations Protocol) loader daemon 13 Mopd services MOP Load requests on the Ethernet connected to interface or
|
/openbsd/etc/ |
H A D | master.passwd | 32 _mopd:*:78:78::0:0:MOP Daemon:/var/empty:/sbin/nologin
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | CombinerHelper.h | 472 bool matchConstantOp(const MachineOperand &MOP, int64_t C);
|
/openbsd/gnu/llvm/llvm/lib/Target/ARM/ |
H A D | ARMBaseInstrInfo.cpp | 6335 for (const MachineOperand &MOP : MI.operands()) { in getOutliningType() local 6336 if (MOP.isCPI() || MOP.isJTI() || MOP.isCFIIndex() || MOP.isFI() || in getOutliningType() 6337 MOP.isTargetIndex()) in getOutliningType() 6349 for (const MachineOperand &MOP : MI.operands()) { in getOutliningType() local 6350 if (MOP.isGlobal()) { in getOutliningType() 6351 Callee = dyn_cast<Function>(MOP.getGlobal()); in getOutliningType()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86InstrInfo.cpp | 9692 for (const MachineOperand &MOP : MI.operands()) in getOutliningType() local 9693 if (MOP.isCPI() || MOP.isJTI() || MOP.isCFIIndex() || MOP.isFI() || in getOutliningType() 9694 MOP.isTargetIndex()) in getOutliningType()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
H A D | CombinerHelper.cpp | 2531 bool CombinerHelper::matchConstantOp(const MachineOperand &MOP, int64_t C) { in matchConstantOp() argument 2532 if (!MOP.isReg()) in matchConstantOp() 2534 auto *MI = MRI.getVRegDef(MOP.getReg()); in matchConstantOp()
|
/openbsd/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/ |
H A D | allkeys.txt | 3967 A49C ; [*1099.0020.0002] # YI RADICAL MOP 25542 A0C0 ; [.4521.0020.0002] # YI SYLLABLE MOP
|
/openbsd/gnu/usr.bin/perl/lib/unicore/ |
H A D | NamesList.txt | 22453 A0C0 YI SYLLABLE MOP 23443 A49C YI RADICAL MOP
|