Lines Matching refs:SystemZ

222           MI.isInlineAsm() || MI.getOpcode() == SystemZ::STACKMAP ||  in getInstSizeInBytes()
223 MI.getOpcode() == SystemZ::PATCHPOINT) && in getInstSizeInBytes()
234 case SystemZ::J: in describeTerminator()
238 case SystemZ::BRC: in describeTerminator()
242 case SystemZ::BRCT: in describeTerminator()
243 case SystemZ::BRCTG: in describeTerminator()
247 case SystemZ::BRCTH: in describeTerminator()
251 case SystemZ::CRJ: in describeTerminator()
252 case SystemZ::CLRJ: in describeTerminator()
256 case SystemZ::CGRJ: in describeTerminator()
257 case SystemZ::CLGRJ: in describeTerminator()
261 case SystemZ::CIJ: in describeTerminator()
262 case SystemZ::CGIJ: in describeTerminator()
266 case SystemZ::CLIJ: in describeTerminator()
267 case SystemZ::CLGIJ: in describeTerminator()
378 MachineInstr *BRCL = BuildMI(*MBB, MI, DL, TII->get(SystemZ::BRCL)) in splitBranchOnCount()
379 .addImm(SystemZ::CCMASK_ICMP) in splitBranchOnCount()
380 .addImm(SystemZ::CCMASK_CMP_NE) in splitBranchOnCount()
383 BRCL->addRegisterKilled(SystemZ::CC, &TII->getRegisterInfo()); in splitBranchOnCount()
396 MachineInstr *BRCL = BuildMI(*MBB, MI, DL, TII->get(SystemZ::BRCL)) in splitCompareBranch()
397 .addImm(SystemZ::CCMASK_ICMP) in splitCompareBranch()
401 BRCL->addRegisterKilled(SystemZ::CC, &TII->getRegisterInfo()); in splitCompareBranch()
409 case SystemZ::J: in relaxBranch()
410 Branch->setDesc(TII->get(SystemZ::JG)); in relaxBranch()
412 case SystemZ::BRC: in relaxBranch()
413 Branch->setDesc(TII->get(SystemZ::BRCL)); in relaxBranch()
415 case SystemZ::BRCT: in relaxBranch()
416 splitBranchOnCount(Branch, SystemZ::AHI); in relaxBranch()
418 case SystemZ::BRCTG: in relaxBranch()
419 splitBranchOnCount(Branch, SystemZ::AGHI); in relaxBranch()
421 case SystemZ::CRJ: in relaxBranch()
422 splitCompareBranch(Branch, SystemZ::CR); in relaxBranch()
424 case SystemZ::CGRJ: in relaxBranch()
425 splitCompareBranch(Branch, SystemZ::CGR); in relaxBranch()
427 case SystemZ::CIJ: in relaxBranch()
428 splitCompareBranch(Branch, SystemZ::CHI); in relaxBranch()
430 case SystemZ::CGIJ: in relaxBranch()
431 splitCompareBranch(Branch, SystemZ::CGHI); in relaxBranch()
433 case SystemZ::CLRJ: in relaxBranch()
434 splitCompareBranch(Branch, SystemZ::CLR); in relaxBranch()
436 case SystemZ::CLGRJ: in relaxBranch()
437 splitCompareBranch(Branch, SystemZ::CLGR); in relaxBranch()
439 case SystemZ::CLIJ: in relaxBranch()
440 splitCompareBranch(Branch, SystemZ::CLFI); in relaxBranch()
442 case SystemZ::CLGIJ: in relaxBranch()
443 splitCompareBranch(Branch, SystemZ::CLGFI); in relaxBranch()