/external/llvm/lib/Target/Hexagon/ |
D | HexagonInstrFormatsV4.td | 75 bits<1> isNewValue = 0; 76 let TSFlags{9} = isNewValue; // New-value consumer insn.
|
D | HexagonInstrInfo.h | 321 bool isNewValue(const MachineInstr* MI) const; 322 bool isNewValue(unsigned Opcode) const;
|
D | HexagonInstrFormats.td | 125 bits<1> isNewValue = 0; 126 let TSFlags{12} = isNewValue; // New-value consumer insn.
|
D | HexagonInstrInfoV4.td | 725 let opExtendable = 1, isNewValue = 1, isNVStore = 1, opNewValue = 2, 821 opExtentBits = 6, isNewValue = 1, opNewValue = 3, opExtendable = 2 in 922 let isPredicable = 1, isNewValue = 1, opNewValue = 3 in 948 let isPredicated = 1, isNewValue = 1, opNewValue = 4 in 1339 let mayStore = 1, isNVStore = 1, isNewValue = 1, hasSideEffects = 0, 1410 isNewValue = 1, opNewValue = 3 in 1443 isNewValue = 1, opNewValue = 4 in 1510 let isNewValue = 1, mayStore = 1, isNVStore = 1, opNewValue = 3 in 1622 let isPredicated = 1, isBranch = 1, isNewValue = 1, isTerminator = 1, 1682 let isPredicated = 1, isBranch = 1, isNewValue = 1, isTerminator = 1, [all …]
|
D | HexagonInstrInfoV60.td | 159 let addrMode = BaseImmOffset, isNewValue = 1, opNewValue = 2, isNVStore = 1, 289 let addrMode = BaseImmOffset, isPredicated = 1, isNewValue = 1, opNewValue = 3, 445 let Itinerary = CVI_VM_NEW_ST, Type = TypeCVI_VM_NEW_ST, isNewValue = 1, 583 isNewValue = 1, opNewValue = 4, addrMode = PostInc, isNVStore = 1 in 685 let Itinerary = CVI_VM_NEW_ST, Type = TypeCVI_VM_NEW_ST, isNewValue = 1, 753 isNewValue = 1, opNewValue = 4, isNVStore = 1 in
|
D | HexagonInstrInfo.cpp | 2329 bool HexagonInstrInfo::isNewValue(const MachineInstr* MI) const { in isNewValue() function in HexagonInstrInfo 2335 bool HexagonInstrInfo::isNewValue(unsigned Opcode) const { in isNewValue() function in HexagonInstrInfo 2347 return isNewValue(MI) && MI->isBranch(); in isNewValueJump() 2352 return isNewValue(Opcode) && get(Opcode).isBranch() && isPredicated(Opcode); in isNewValueJump() 2427 (isPredicatedNew(Opcode) || isNewValue(Opcode))); in isPredictedTaken()
|
D | HexagonInstrInfo.td | 3702 let Uses = [CS], isNewValue = 1, mayStore = 1, isNVStore = 1, opNewValue = 4 in 3774 let Uses = [CS], isNewValue = 1, mayStore = 1, isNVStore = 1, opNewValue = 3 in 3849 let isNewValue = 1, mayStore = 1, isNVStore = 1, opNewValue = 3,
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonMCChecker.cpp | 213 if (HexagonMCInstrInfo::isNewValue(MCII, MCI)) { in init() 290 if (HexagonMCInstrInfo::isNewValue(MCII, MCI)) in checkBranches()
|
D | HexagonMCInstrInfo.cpp | 327 assert((HexagonMCInstrInfo::isNewValue(MCII, MCI) || in getNewValueOperand() 346 assert((HexagonMCInstrInfo::isNewValue(MCII, MCI) || in getNewValueOperand2() 529 bool HexagonMCInstrInfo::isNewValue(MCInstrInfo const &MCII, in isNewValue() function in llvm::HexagonMCInstrInfo
|
D | HexagonMCInstrInfo.h | 230 bool isNewValue(MCInstrInfo const &MCII, MCInst const &MCI);
|
D | HexagonMCCodeEmitter.cpp | 136 if (HexagonMCInstrInfo::isNewValue(MCII, HMB)) { in EncodeSingleInstruction()
|
/external/llvm/lib/Target/Hexagon/Disassembler/ |
D | HexagonDisassembler.cpp | 344 if (HexagonMCInstrInfo::isNewValue(*MCII, MI)) { in getSingleInstruction()
|