Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DThumbRegisterInfo.cpp196 int CopyOpc = 0; in emitThumbRegPlusImmediate() local
224 CopyOpc = ARM::tMOVr; in emitThumbRegPlusImmediate()
234 CopyOpc = ARM::tADDrSPi; in emitThumbRegPlusImmediate()
242 CopyOpc = isSub ? ARM::tSUBi3 : ARM::tADDi3; in emitThumbRegPlusImmediate()
247 CopyOpc = ARM::tMOVr; in emitThumbRegPlusImmediate()
259 CopyOpc = ARM::tMOVr; in emitThumbRegPlusImmediate()
272 if (CopyOpc && Bytes < CopyScale) { in emitThumbRegPlusImmediate()
273 CopyOpc = ARM::tMOVr; in emitThumbRegPlusImmediate()
279 unsigned RequiredCopyInstrs = CopyOpc ? 1 : 0; in emitThumbRegPlusImmediate()
307 if (CopyOpc) { in emitThumbRegPlusImmediate()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp835 unsigned CopyOpc = in unstackifyVRegsUsedInSplitBB() local
837 BuildMI(MBB, &MI, MI.getDebugLoc(), TII.get(CopyOpc), TeeReg) in unstackifyVRegsUsedInSplitBB()
839 BuildMI(MBB, &MI, MI.getDebugLoc(), TII.get(CopyOpc), Reg).addReg(DefReg); in unstackifyVRegsUsedInSplitBB()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp4041 static bool getLaneCopyOpcode(unsigned &CopyOpc, unsigned &ExtractSubReg, in getLaneCopyOpcode() argument
4047 CopyOpc = AArch64::DUPi8; in getLaneCopyOpcode()
4051 CopyOpc = AArch64::DUPi16; in getLaneCopyOpcode()
4055 CopyOpc = AArch64::DUPi32; in getLaneCopyOpcode()
4059 CopyOpc = AArch64::DUPi64; in getLaneCopyOpcode()
4074 unsigned CopyOpc = 0; in emitExtractVectorElt() local
4076 if (!getLaneCopyOpcode(CopyOpc, ExtractSubReg, ScalarTy.getSizeInBits())) { in emitExtractVectorElt()
4122 MIRBuilder.buildInstr(CopyOpc, {*DstReg}, {InsertReg}).addImm(LaneIdx); in emitExtractVectorElt()
4229 unsigned CopyOpc = 0; in selectUnmergeValues() local
4231 if (!getLaneCopyOpcode(CopyOpc, ExtractSubReg, NarrowTy.getSizeInBits())) in selectUnmergeValues()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp2516 unsigned CopyOpc = TargetOpcode::COPY; in optimizeSpillSlots() local
2518 CopyOpc = (MemSize == 1) ? Hexagon::A2_sxtb : Hexagon::A2_sxth; in optimizeSpillSlots()
2520 CopyOpc = (MemSize == 1) ? Hexagon::A2_zxtb : Hexagon::A2_zxth; in optimizeSpillSlots()
2521 CopyOut = BuildMI(B, It, DL, HII.get(CopyOpc), DstR) in optimizeSpillSlots()