HomeSort by: relevance | last modified time | path
    Searched refs:BinOpcode (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 681 unsigned BinOpcode, unsigned BitSize,
SystemZISelLowering.cpp 7343 // or ATOMIC_SWAP{,W} instruction MI. BinOpcode is the instruction that
7348 // inverted after performing BinOpcode (e.g. for NAND).
7350 MachineInstr &MI, MachineBasicBlock *MBB, unsigned BinOpcode,
7385 Register NewVal = (BinOpcode || IsSubWord ?
7421 BuildMI(MBB, DL, TII->get(BinOpcode), Tmp).addReg(RotatedOldVal).add(Src2);
7434 } else if (BinOpcode)
7436 BuildMI(MBB, DL, TII->get(BinOpcode), RotatedNewVal)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Local.cpp 1837 Instruction::BinaryOps BinOpcode = BI->getOpcode();
1843 if (BinOpcode == Instruction::Add || BinOpcode == Instruction::Sub) {
1844 uint64_t Offset = BinOpcode == Instruction::Add ? Val : -int64_t(Val);
1860 uint64_t DwarfBinOp = getDwarfOpForBinOp(BinOpcode);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.h 885 unsigned BinOpcode,
PPCISelLowering.cpp 10987 unsigned BinOpcode,
10990 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
11041 Register TmpReg = (!BinOpcode) ? incr :
11070 if (BinOpcode)
11071 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
11161 unsigned BinOpcode, unsigned CmpOpcode, unsigned CmpPred) const {
11162 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
11182 return EmitAtomicBinary(MI, BB, is8bit ? 1 : 2, BinOpcode, CmpOpcode,
11231 (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(GPRC);
11305 if (BinOpcode)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 2131 auto BinOpcode = BO->getOpcode();
2133 (BinOpcode == ISD::AND || BinOpcode == ISD::OR) &&
2149 SDValue NewCT = SelOpNo ? DAG.getNode(BinOpcode, DL, VT, CBO, CT)
2150 : DAG.getNode(BinOpcode, DL, VT, CT, CBO);
2156 SDValue NewCF = SelOpNo ? DAG.getNode(BinOpcode, DL, VT, CBO, CF)
2157 : DAG.getNode(BinOpcode, DL, VT, CF, CBO);
19956 unsigned BinOpcode = BinOp.getOpcode();
19957 if (!TLI.isBinOp(BinOpcode) || BinOp.getNode()->getNumValues() != 1)
19967 if (!TLI.isOperationLegalOrCustom(BinOpcode, SubVT, LegalOperations)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
AttributorAttributes.cpp 7639 Instruction::BinaryOps BinOpcode = BinOp->getOpcode();
7645 switch (BinOpcode) {

Completed in 62 milliseconds