HomeSort by relevance Sort by last modified time
    Searched refs:RegA (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 411 /// \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 or i
    [all...]
  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 106 bool isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
112 bool isProfitableToConv3Addr(unsigned RegA, unsigned RegB);
116 unsigned RegA, unsigned RegB, unsigned Dist);
494 regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
495 if (RegA == RegB)
497 if (!RegA || !RegB)
499 return TRI->regsOverlap(RegA, RegB);
507 isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
543 unsigned ToRegA = getMappedReg(regA, DstRegMap);
593 unsigned RegA = MI->getOperand(0).getReg()
    [all...]

Completed in 173 milliseconds