Searched refs:newOpc (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 7905 unsigned newOpc; in processInstruction() local 7908 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRrr : ARM::t2ASRrr; break; in processInstruction() 7909 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRrr : ARM::t2LSRrr; break; in processInstruction() 7910 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLrr : ARM::t2LSLrr; break; in processInstruction() 7911 case ARM_AM::ror: newOpc = isNarrow ? ARM::tROR : ARM::t2RORrr; break; in processInstruction() 7913 TmpInst.setOpcode(newOpc); in processInstruction() 7939 unsigned newOpc; in processInstruction() local 7942 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRri : ARM::t2ASRri; break; in processInstruction() 7943 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break; in processInstruction() 7944 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break; in processInstruction() [all …]
|
/external/llvm/lib/Target/ARM/ |
D | ARMExpandPseudoInsts.cpp | 752 unsigned newOpc = Opcode == ARM::VMOVScc ? ARM::VMOVS : ARM::VMOVD; in ExpandMI() local 753 BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(newOpc), in ExpandMI()
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 544 if (unsigned newOpc = foldConstantCastPair(opc, CE, DestTy)) in ConstantFoldCastInstruction() local 545 return ConstantExpr::getCast(newOpc, CE->getOperand(0), DestTy); in ConstantFoldCastInstruction()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelDAGToDAG.cpp | 2796 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc); in Select() local 2797 MachineSDNode *Result = CurDAG->getMachineNode(newOpc, in Select()
|