Home
last modified time | relevance | path

Searched refs:hasTrue16BitInsts (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIModeRegister.cpp178 if (TII->getSubtarget().hasTrue16BitInsts()) { in getInstructionMode()
195 if (TII->getSubtarget().hasTrue16BitInsts()) { in getInstructionMode()
H A DAMDGPUSubtarget.h159 bool hasTrue16BitInsts() const { return HasTrue16BitInsts; } in hasTrue16BitInsts() function
H A DSIShrinkInstructions.cpp448 NewOpcode = ST->hasTrue16BitInsts() ? AMDGPU::V_FMAAK_F16_t16 in shrinkMadFma()
477 NewOpcode = ST->hasTrue16BitInsts() ? AMDGPU::V_FMAMK_F16_t16 in shrinkMadFma()
1026 if (ST->hasTrue16BitInsts() && AMDGPU::isTrue16Inst(MI.getOpcode()) && in runOnMachineFunction()
H A DAMDGPU.td2045 def HasTrue16BitInsts : Predicate<"Subtarget->hasTrue16BitInsts()">,
2047 def NotHasTrue16BitInsts : True16PredicateClass<"!Subtarget->hasTrue16BitInsts()">,
2056 def UseFakeTrue16Insts : True16PredicateClass<"Subtarget->hasTrue16BitInsts() && "
H A DAMDGPUSubtarget.cpp189 return hasTrue16BitInsts() && EnableRealTrue16Insts; in useRealTrue16Insts()
H A DSIInstrInfo.cpp809 assert(ST.hasTrue16BitInsts()); in copyPhysReg()
983 if (ST.hasTrue16BitInsts()) { in copyPhysReg()
3555 : ST.hasTrue16BitInsts() ? AMDGPU::V_FMAMK_F16_t16 in foldImmediate()
3634 : ST.hasTrue16BitInsts() ? AMDGPU::V_FMAAK_F16_t16 in foldImmediate()
3965 IsFMA ? (IsF16 ? (ST.hasTrue16BitInsts() ? AMDGPU::V_FMAAK_F16_t16 in convertToThreeAddress()
3984 IsFMA ? (IsF16 ? (ST.hasTrue16BitInsts() ? AMDGPU::V_FMAMK_F16_t16 in convertToThreeAddress()
H A DAMDGPUInstructionSelector.cpp1095 return ST.hasTrue16BitInsts() ? TrueS16Opc : S16Opc; in getV_CMPOpcode()