Searched defs:RegA (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCRegisterInfo.h411 /// \brief Returns true if RegB is a sub-register of RegA.
412 bool isSubRegister(unsigned RegA, unsigned RegB) const {
413 return isSuperRegister(RegB, RegA);
416 /// \brief Returns true if RegB is a super-register of RegA.
417 bool isSuperRegister(unsigned RegA, unsigned RegB) const;
419 /// \brief Returns true if RegB is a sub-register of RegA or if RegB == RegA.
420 bool isSubRegisterEq(unsigned RegA, unsigned RegB) const {
421 return isSuperRegisterEq(RegB, RegA);
424 /// \brief Returns true if RegB is a super-register of RegA o
468 isSuperRegister(unsigned RegA, unsigned RegB) const argument
[all...]
/external/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp112 bool isProfitableToConv3Addr(unsigned RegA, unsigned RegB);
116 unsigned RegA, unsigned RegB, unsigned Dist);
494 regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) { argument
495 if (RegA == RegB)
497 if (!RegA || !RegB)
499 return TRI->regsOverlap(RegA, RegB);
593 unsigned RegA = MI->getOperand(0).getReg(); local
594 SrcRegMap[RegA] = FromRegC;
603 TwoAddressInstructionPass::isProfitableToConv3Addr(unsigned RegA,unsigned RegB){ argument
613 unsigned ToRegA = getMappedReg(RegA, DstRegMa
620 convertInstTo3Addr(MachineBasicBlock::iterator &mi, MachineBasicBlock::iterator &nmi, unsigned RegA, unsigned RegB, unsigned Dist) argument
1356 unsigned RegA = DstMO.getReg(); local
[all...]

Completed in 237 milliseconds