Merge pull request #2315 from ReinUsesLisp/severity-decompiler

shader_ir/decode: Reduce the severity of common assertions
This commit is contained in:
bunnei 2019-04-16 22:21:19 -04:00 committed by GitHub
commit 0cfbd3325b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 5 deletions

View file

@ -387,6 +387,20 @@ enum class IpaSampleMode : u64 {
Offset = 2,
};
enum class LmemLoadCacheManagement : u64 {
Default = 0,
LU = 1,
CI = 2,
CV = 3,
};
enum class LmemStoreCacheManagement : u64 {
Default = 0,
CG = 1,
CS = 2,
WT = 3,
};
struct IpaMode {
IpaInterpMode interpolation_mode;
IpaSampleMode sampling_mode;
@ -782,7 +796,7 @@ union Instruction {
} ld_l;
union {
BitField<44, 2, u64> unknown;
BitField<44, 2, LmemStoreCacheManagement> cache_management;
} st_l;
union {