Home
last modified time | relevance | path

Searched refs:MOP (Results 1 – 25 of 27) sorted by relevance

12

/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DLiveRegUnits.cpp47 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 DLivePhysRegs.cpp46 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 DMachineOutliner.cpp819 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 DMachineCSE.cpp313 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 DLiveIntervals.cpp1114 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 DMachineVerifier.cpp2486 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 Din_cksum.s136 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 DAArch64LoadStoreOptimizer.cpp805 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 DAArch64ExpandPseudoInsts.cpp753 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 DAArch64InstrInfo.cpp7740 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 DAArch64SchedNeoverseN2.td29 // stages. A MOP can be split into two micro-ops further down the pipeline
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DLiveRegUnits.h168 [](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 DMachOPlatform.cpp86 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 DCOFFPlatform.cpp144 createHeaderInterface(COFFPlatform &MOP, in createHeaderInterface() argument
/openbsd/gnu/usr.bin/perl/pod/
H A Dperldtrace.pod148 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 Dinstall42 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 Dcontents28 netboot.mop The OpenBSD/MACHINE network boot loader, for MOP
/openbsd/usr.sbin/mopd/otherOS/linux2/
H A Dmopd-x.x.x.spec2 Summary: MOP (Maintenance Operations Protocol) loader daemon
13 Mopd services MOP Load requests on the Ethernet connected to interface or
/openbsd/etc/
H A Dmaster.passwd32 _mopd:*:78:78::0:0:MOP Daemon:/var/empty:/sbin/nologin
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
H A DCombinerHelper.h472 bool matchConstantOp(const MachineOperand &MOP, int64_t C);
/openbsd/gnu/llvm/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp6335 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 DX86InstrInfo.cpp9692 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 DCombinerHelper.cpp2531 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 Dallkeys.txt3967 A49C ; [*1099.0020.0002] # YI RADICAL MOP
25542 A0C0 ; [.4521.0020.0002] # YI SYLLABLE MOP
/openbsd/gnu/usr.bin/perl/lib/unicore/
H A DNamesList.txt22453 A0C0 YI SYLLABLE MOP
23443 A49C YI RADICAL MOP

12