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 105 bool isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
111 bool isProfitableToConv3Addr(unsigned RegA, unsigned RegB);
115 unsigned RegA, unsigned RegB, unsigned Dist);
495 regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
496 if (RegA == RegB)
498 if (!RegA || !RegB)
500 return TRI->regsOverlap(RegA, RegB);
508 isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
544 unsigned ToRegA = getMappedReg(regA, DstRegMap);
594 unsigned RegA = MI->getOperand(0).getReg()
    [all...]

Completed in 492 milliseconds