diff options
| author | 2021-03-05 01:15:16 -0500 | |
|---|---|---|
| committer | 2021-07-22 21:51:23 -0400 | |
| commit | 5465cb156107a27df525dfedbfd4e920b7f71253 (patch) | |
| tree | 3bc5940f90e31e09820af69cd845eef92a7d7201 /src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp | |
| parent | shader: Deduplicate HADD2 code (diff) | |
| download | yuzu-5465cb156107a27df525dfedbfd4e920b7f71253.tar.gz yuzu-5465cb156107a27df525dfedbfd4e920b7f71253.tar.xz yuzu-5465cb156107a27df525dfedbfd4e920b7f71253.zip | |
shader: Implement LEA
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp b/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp index 162fb6a91..f5001cdaa 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp | |||
| @@ -62,6 +62,10 @@ Id EmitINeg32(EmitContext& ctx, Id value) { | |||
| 62 | return ctx.OpSNegate(ctx.U32[1], value); | 62 | return ctx.OpSNegate(ctx.U32[1], value); |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | Id EmitINeg64(EmitContext& ctx, Id value) { | ||
| 66 | return ctx.OpSNegate(ctx.U64, value); | ||
| 67 | } | ||
| 68 | |||
| 65 | Id EmitIAbs32(EmitContext& ctx, Id value) { | 69 | Id EmitIAbs32(EmitContext& ctx, Id value) { |
| 66 | return ctx.OpSAbs(ctx.U32[1], value); | 70 | return ctx.OpSAbs(ctx.U32[1], value); |
| 67 | } | 71 | } |
| @@ -74,6 +78,10 @@ Id EmitShiftRightLogical32(EmitContext& ctx, Id a, Id b) { | |||
| 74 | return ctx.OpShiftRightLogical(ctx.U32[1], a, b); | 78 | return ctx.OpShiftRightLogical(ctx.U32[1], a, b); |
| 75 | } | 79 | } |
| 76 | 80 | ||
| 81 | Id EmitShiftRightLogical64(EmitContext& ctx, Id a, Id b) { | ||
| 82 | return ctx.OpShiftRightLogical(ctx.U64, a, b); | ||
| 83 | } | ||
| 84 | |||
| 77 | Id EmitShiftRightArithmetic32(EmitContext& ctx, Id a, Id b) { | 85 | Id EmitShiftRightArithmetic32(EmitContext& ctx, Id a, Id b) { |
| 78 | return ctx.OpShiftRightArithmetic(ctx.U32[1], a, b); | 86 | return ctx.OpShiftRightArithmetic(ctx.U32[1], a, b); |
| 79 | } | 87 | } |