diff options
author | Tom Stellard <[email protected]> | 2012-08-02 14:04:36 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-08-02 20:12:10 +0000 |
commit | 4104bae063a3a06ddc00371a576ad0a55f520473 (patch) | |
tree | df89014894f0ae07b8de5ce883ab859934b260df /src/gallium/drivers/radeon | |
parent | f7fcaa07df7b3aab124576dec346ae4fa7c6715b (diff) |
radeon/llvm: Add support for fp_to_sint on SI
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/SIInstructions.td | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/SIInstructions.td b/src/gallium/drivers/radeon/SIInstructions.td index 31b9e5ec1c0..1f03ea57278 100644 --- a/src/gallium/drivers/radeon/SIInstructions.td +++ b/src/gallium/drivers/radeon/SIInstructions.td @@ -503,7 +503,9 @@ defm V_MOV_B32 : VOP1_32 <0x00000001, "V_MOV_B32", []>; defm V_READFIRSTLANE_B32 : VOP1_32 <0x00000002, "V_READFIRSTLANE_B32", []>; //defm V_CVT_I32_F64 : VOP1_32 <0x00000003, "V_CVT_I32_F64", []>; //defm V_CVT_F64_I32 : VOP1_64 <0x00000004, "V_CVT_F64_I32", []>; -//defm V_CVT_F32_I32 : VOP1_32 <0x00000005, "V_CVT_F32_I32", []>; +defm V_CVT_F32_I32 : VOP1_32 <0x00000005, "V_CVT_F32_I32", + [(set VReg_32:$dst, (fp_to_sint AllReg_32:$src0))] +>; //defm V_CVT_F32_U32 : VOP1_32 <0x00000006, "V_CVT_F32_U32", []>; //defm V_CVT_U32_F32 : VOP1_32 <0x00000007, "V_CVT_U32_F32", []>; //defm V_CVT_I32_F32 : VOP1_32 <0x00000008, "V_CVT_I32_F32", []>; |