Home
last modified time | relevance | path

Searched refs:isNewValue (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonInstrFormats.td96 bits<1> isNewValue = 0;
97 let TSFlags{14} = isNewValue; // New-value consumer insn.
304 bits<1> isNewValue = 0;
305 let TSFlags{10} = isNewValue; // New-value consumer insn.
DHexagonInstrInfo.h376 bool isNewValue(const MachineInstr &MI) const;
377 bool isNewValue(unsigned Opcode) const;
DHexagonDepInstrInfo.td5854 let isNewValue = 1;
5880 let isNewValue = 1;
6009 let isNewValue = 1;
6034 let isNewValue = 1;
6160 let isNewValue = 1;
6186 let isNewValue = 1;
6315 let isNewValue = 1;
6340 let isNewValue = 1;
6466 let isNewValue = 1;
6492 let isNewValue = 1;
[all …]
DHexagonInstrInfo.cpp2428 bool HexagonInstrInfo::isNewValue(const MachineInstr &MI) const { in isNewValue() function in HexagonInstrInfo
2433 bool HexagonInstrInfo::isNewValue(unsigned Opcode) const { in isNewValue() function in HexagonInstrInfo
2443 return isNewValue(MI) && MI.isBranch(); in isNewValueJump()
2447 return isNewValue(Opcode) && get(Opcode).isBranch() && isPredicated(Opcode); in isNewValueJump()
2507 (isPredicatedNew(Opcode) || isNewValue(Opcode))); in isPredictedTaken()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.cpp389 assert((HexagonMCInstrInfo::isNewValue(MCII, MCI) || in getNewValueOperand()
409 assert((HexagonMCInstrInfo::isNewValue(MCII, MCI) || in getNewValueOperand2()
655 bool HexagonMCInstrInfo::isNewValue(MCInstrInfo const &MCII, in isNewValue() function in HexagonMCInstrInfo
DHexagonMCInstrInfo.h261 bool isNewValue(MCInstrInfo const &MCII, MCInst const &MCI);
DHexagonMCChecker.cpp422 if (!HexagonMCInstrInfo::isNewValue(MCII, I)) in checkNewValues()
DHexagonMCCodeEmitter.cpp726 if (HexagonMCInstrInfo::isNewValue(MCII, MI) && in getMachineOpValue()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
DHexagonDisassembler.cpp460 if (HexagonMCInstrInfo::isNewValue(*MCII, MI)) { in getSingleInstruction()