Home
last modified time | relevance | path

Searched refs:newOpc (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp7880 unsigned newOpc; in processInstruction() local
7883 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRrr : ARM::t2ASRrr; break; in processInstruction()
7884 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRrr : ARM::t2LSRrr; break; in processInstruction()
7885 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLrr : ARM::t2LSLrr; break; in processInstruction()
7886 case ARM_AM::ror: newOpc = isNarrow ? ARM::tROR : ARM::t2RORrr; break; in processInstruction()
7888 TmpInst.setOpcode(newOpc); in processInstruction()
7914 unsigned newOpc; in processInstruction() local
7917 case ARM_AM::asr: newOpc = isNarrow ? ARM::tASRri : ARM::t2ASRri; break; in processInstruction()
7918 case ARM_AM::lsr: newOpc = isNarrow ? ARM::tLSRri : ARM::t2LSRri; break; in processInstruction()
7919 case ARM_AM::lsl: newOpc = isNarrow ? ARM::tLSLri : ARM::t2LSLri; break; in processInstruction()
[all …]
/external/llvm/lib/Target/ARM/
DARMExpandPseudoInsts.cpp798 unsigned newOpc = Opcode == ARM::VMOVScc ? ARM::VMOVS : ARM::VMOVD; in ExpandMI() local
799 BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(newOpc), in ExpandMI()
/external/llvm/lib/IR/
DConstantFold.cpp544 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/
DX86ISelDAGToDAG.cpp2960 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc); in Select() local
2961 MachineSDNode *Result = CurDAG->getMachineNode(newOpc, in Select()