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 395 /// \brief Returns true if RegB is a sub-register of RegA.
396 bool isSubRegister(unsigned RegA, unsigned RegB) const {
397 return isSuperRegister(RegB, RegA);
400 /// \brief Returns true if RegB is a super-register of RegA.
401 bool isSuperRegister(unsigned RegA, unsigned RegB) const;
403 /// \brief Returns true if RegB is a sub-register of RegA or if RegB == RegA.
404 bool isSubRegisterEq(unsigned RegA, unsigned RegB) const {
405 return isSuperRegisterEq(RegB, RegA);
408 /// \brief Returns true if RegB is a super-register of RegA or i
    [all...]
  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 98 bool isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
104 bool isProfitableToConv3Addr(unsigned RegA, unsigned RegB);
108 unsigned RegA, unsigned RegB, unsigned Dist);
491 regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
492 if (RegA == RegB)
494 if (!RegA || !RegB)
496 return TRI->regsOverlap(RegA, RegB);
504 isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
540 unsigned ToRegA = getMappedReg(regA, DstRegMap);
590 unsigned RegA = MI->getOperand(0).getReg()
    [all...]

Completed in 35 milliseconds