Searched refs:isMoveReg (Results 1 – 25 of 30) sorted by relevance
12
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCInstrDesc.h | 285 bool isMoveReg() const { return Flags & (1ULL << MCID::MoveReg); } in isMoveReg() function
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenInstruction.h | 248 bool isMoveReg : 1; variable
|
H A D | CodeGenInstruction.cpp | 443 isMoveReg = R->getValueAsBit("isMoveReg"); in CodeGenInstruction()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | X86FoldTablesEmitter.cpp | 481 BaseDef ? Target.getInstruction(BaseDef).isMoveReg : RegInst->isMoveReg; in addEntryWithFlags()
|
H A D | InstrInfoEmitter.cpp | 1226 if (Inst.isMoveReg) in emitRecord()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsInstrFPU.td | 166 let isMoveReg = 1; 173 let isMoveReg = 1; 590 let isMoveReg = 1 in { 594 } // isMoveReg
|
H A D | Mips16InstrInfo.cpp | 101 if (MI.isMoveReg()) in isCopyInstrImpl()
|
H A D | MicroMipsInstrInfo.td | 243 let isMoveReg = 1; 408 let isMoveReg = 1; 415 let isMoveReg = 1;
|
H A D | MicroMipsInstrFPU.td | 132 let isMoveReg = 1;
|
H A D | Mips16InstrInfo.td | 873 let isMoveReg = 1; 885 let isMoveReg = 1; 897 let isMoveReg = 0;
|
H A D | MipsSEInstrInfo.cpp | 208 if (MI.isMoveReg() || isORCopyInst(MI)) in isCopyInstrImpl()
|
H A D | MipsDSPInstrInfo.td | 508 bit isMoveReg = 1; 518 bit isMoveReg = 1;
|
H A D | MipsMSAInstrInfo.td | 1791 bit isMoveReg = 1; 1886 bit isMoveReg = 1; 2440 bit isMoveReg = 1;
|
H A D | Mips64InstrInfo.td | 417 let isMoveReg = 1 in {
|
H A D | MipsInstrInfo.td | 1733 let isMoveReg = 1; 1746 let isMoveReg = 1;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrMMX.td | 200 let SchedRW = [WriteVecMove], hasSideEffects = 0, isMoveReg = 1 in { 206 } // SchedRW, hasSideEffects, isMoveReg
|
H A D | X86InstrMisc.td | 360 let hasSideEffects = 0, isMoveReg = 1 in { 538 SchedRW = [WriteMove], isMoveReg = 1 in { 583 let hasSideEffects = 0, isMoveReg = 1 in
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineInstr.h | 1031 bool isMoveReg(QueryType Type = IgnoreBundle) const {
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMInstrVFP.td | 1146 let isMoveReg = 1 in { 1156 } // isMoveReg 1178 let isMoveReg = 1 in { 1225 } // isMoveReg
|
H A D | ARMInstrThumb.td | 1217 let hasSideEffects = 0, isMoveReg = 1 in {
|
H A D | ARMBaseInstrInfo.cpp | 1067 if (!MI.isMoveReg() || in isCopyInstrImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfoC.td | 543 let hasSideEffects = 0, mayLoad = 0, mayStore = 0, isMoveReg = 1,
|
H A D | RISCVInstrInfoV.td | 1693 let hasSideEffects = 0, mayLoad = 0, mayStore = 0, isMoveReg = 1,
|
H A D | RISCVInstrInfo.cpp | 1551 if (MI.isMoveReg()) in isCopyInstrImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | Target.td | 634 bit isMoveReg = false; // Is this instruction a move register instruction?
|
12