Home
last modified time | relevance | path

Searched refs:Bcc (Results 1 – 25 of 45) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ConditionOptimizer.cpp152 if (Term->getOpcode() != AArch64::Bcc) in findSuitableCompare()
293 BuildMI(*MBB, BrMI, BrMI.getDebugLoc(), TII->get(AArch64::Bcc)) in modifyCmp()
H A DAArch64AsmPrinter.cpp410 MCInstBuilder(AArch64::Bcc) in EmitHwasanMemaccessSymbols()
435 MCInstBuilder(AArch64::Bcc) in EmitHwasanMemaccessSymbols()
450 MCInstBuilder(AArch64::Bcc) in EmitHwasanMemaccessSymbols()
475 MCInstBuilder(AArch64::Bcc) in EmitHwasanMemaccessSymbols()
499 MCInstBuilder(AArch64::Bcc) in EmitHwasanMemaccessSymbols()
H A DAArch64CondBrTuning.cpp137 return BuildMI(*MI.getParent(), MI, MI.getDebugLoc(), TII->get(AArch64::Bcc)) in convertToCondBr()
H A DAArch64MacroFusion.cpp24 if (SecondMI.getOpcode() != AArch64::Bcc) in isArithmeticBccPair()
H A DAArch64RedundantCopyElimination.cpp141 if (Opc != AArch64::Bcc) in knownRegValInBlock()
H A DAArch64InstrInfo.h414 case AArch64::Bcc: in isCondBranchOpcode()
H A DAArch64ConditionalCompares.cpp708 BuildMI(*Head, CmpMI, CmpMI->getDebugLoc(), TII->get(AArch64::Bcc)) in convert()
H A DAArch64InstrInfo.cpp166 case AArch64::Bcc: in parseCondBranch()
207 case AArch64::Bcc: in getBranchDisplacementBits()
236 case AArch64::Bcc: in getBranchDestBlock()
491 BuildMI(&MBB, DL, get(AArch64::Bcc)).addImm(Cond[0].getImm()).addMBB(TBB); in instantiateCondBranch()
1547 case AArch64::Bcc: { in findCondCodeUseOperandIdxForBranchOrSelect()
6075 case AArch64::Bcc: in optimizeCondBranch()
6198 BuildMI(RefToMBB, MI, DL, get(AArch64::Bcc)).addImm(CC).addMBB(TBB); in optimizeCondBranch()
H A DAArch64ExpandPseudoInsts.cpp223 BuildMI(LoadCmpBB, DL, TII->get(AArch64::Bcc)) in expandCMP_SWAP()
H A DAArch64FastISel.cpp2425 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc)) in selectBranch()
2431 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc)) in selectBranch()
2462 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc)) in selectBranch()
H A DAArch64SchedExynosM3.td490 def : InstRW<[M3WriteB1], (instrs Bcc)>;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
H A DARCBranchFinalize.cpp137 BuildMI(*MI->getParent(), MI, MI->getDebugLoc(), TII->get(ARC::Bcc)) in replaceWithCmpBcc()
H A DARCInstrInfo.td330 def Bcc : F32_BR0_COND<(outs), (ins btargetS21:$S21, ccond:$cc),
343 // Compare and branch (BRcc), or into CMP + Bcc.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMInstructionSelector.cpp118 unsigned Bcc; member
329 STORE_OPCODE(Bcc, Bcc); in OpcodeCache()
1152 BuildMI(*I.getParent(), I, I.getDebugLoc(), TII.get(Opcodes.Bcc)) in select()
H A DARMMCInstLower.cpp207 EmitToStreamer(*OutStreamer, MCInstBuilder(ARM::Bcc).addImm(20) in EmitSled()
H A DARMExpandPseudoInsts.cpp1640 unsigned Bcc = IsThumb ? ARM::tBcc : ARM::Bcc; in ExpandCMP_SWAP() local
1641 BuildMI(LoadCmpBB, DL, TII->get(Bcc)) in ExpandCMP_SWAP()
1664 BuildMI(StoreBB, DL, TII->get(Bcc)) in ExpandCMP_SWAP()
1761 unsigned Bcc = IsThumb ? ARM::tBcc : ARM::Bcc; in ExpandCMP_SWAP_64() local
1762 BuildMI(LoadCmpBB, DL, TII->get(Bcc)) in ExpandCMP_SWAP_64()
1784 BuildMI(StoreBB, DL, TII->get(Bcc)) in ExpandCMP_SWAP_64()
H A DARMBaseInstrInfo.h639 return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc; in isCondBranchOpcode()
H A DARMFastISel.cpp1249 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc; in SelectBranch()
1272 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc; in SelectBranch()
1310 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc; in SelectBranch()
H A DARMAsmPrinter.cpp1436 EmitToStreamer(*OutStreamer, MCInstBuilder(ARM::Bcc) in emitInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kInstrControl.td15 /// BRA [x] BSR [ ] Bcc [ ] DBcc [ ] FBcc [ ]
63 /// *Not applicable to the Bcc instructions.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.cpp399 if (Inst.getOpcode() == ARM::Bcc && Inst.getOperand(1).getImm()==ARMCC::AL) in isUnconditionalBranch()
406 if (Inst.getOpcode() == ARM::Bcc && Inst.getOperand(1).getImm()==ARMCC::AL) in isConditionalBranch()
/netbsd-src/external/ibm-public/postfix/dist/proto/
H A Dstop62 Bcc
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp1470 MIB.buildInstr(AArch64::Bcc, {}, {}).addImm(CC1).addMBB(DestMBB); in selectCompareBranchFedByFCmp()
1472 MIB.buildInstr(AArch64::Bcc, {}, {}).addImm(CC2).addMBB(DestMBB); in selectCompareBranchFedByFCmp()
1576 MIB.buildInstr(AArch64::Bcc, {}, {}).addImm(CC).addMBB(DestMBB); in selectCompareBranchFedByICmp()
1612 auto Bcc = MIB.buildInstr(AArch64::Bcc) in selectCompareBranch() local
1616 return constrainSelectedInstRegOperands(*Bcc, TII, TRI, RBI); in selectCompareBranch()
/netbsd-src/share/man/tools/
H A Dsp.ignore1671 Bcc
/netbsd-src/external/ibm-public/postfix/dist/conf/
H A Dheader_checks439 # examined before they are deleted. Examples are: Bcc:, Con-

12