remove V_LSHR_B64
This commit is contained in:
parent
ad524741d3
commit
de7f6e11e6
|
@ -186,6 +186,7 @@ public:
|
||||||
void V_FFBL_B32(const GcnInst& inst);
|
void V_FFBL_B32(const GcnInst& inst);
|
||||||
void V_MBCNT_U32_B32(bool is_low, const GcnInst& inst);
|
void V_MBCNT_U32_B32(bool is_low, const GcnInst& inst);
|
||||||
void V_LSHL_B64(const GcnInst& inst);
|
void V_LSHL_B64(const GcnInst& inst);
|
||||||
|
void L_LSHR_B64(const GcnInst& inst);
|
||||||
|
|
||||||
// Vector Memory
|
// Vector Memory
|
||||||
void BUFFER_LOAD_FORMAT(u32 num_dwords, bool is_typed, bool is_format, const GcnInst& inst);
|
void BUFFER_LOAD_FORMAT(u32 num_dwords, bool is_typed, bool is_format, const GcnInst& inst);
|
||||||
|
|
|
@ -309,10 +309,10 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
|
||||||
return V_MBCNT_U32_B32(true, inst);
|
return V_MBCNT_U32_B32(true, inst);
|
||||||
case Opcode::V_MBCNT_HI_U32_B32:
|
case Opcode::V_MBCNT_HI_U32_B32:
|
||||||
return V_MBCNT_U32_B32(false, inst);
|
return V_MBCNT_U32_B32(false, inst);
|
||||||
case Opcode::V_LSHL_B64:
|
|
||||||
return V_LSHL_B64(inst);
|
|
||||||
case Opcode::V_NOP:
|
case Opcode::V_NOP:
|
||||||
return;
|
return;
|
||||||
|
case Opcode::V_LSHL_B64:
|
||||||
|
return V_LSHL_B64(inst);
|
||||||
default:
|
default:
|
||||||
LogMissingOpcode(inst);
|
LogMissingOpcode(inst);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue