summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/translate/impl/bitfield_extract.cpp
blob: 0738ae7a6925784039aa041de41eb2fb8b6c1282 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/bit_field.h"
#include "common/common_types.h"
#include "shader_recompiler/frontend/maxwell/translate/impl/impl.h"

namespace Shader::Maxwell {
namespace {
void BFE(TranslatorVisitor& v, u64 insn, const IR::U32& src) {
    union {
        u64 insn;
        BitField<0, 8, IR::Reg> dest_reg;
        BitField<8, 8, IR::Reg> offset_reg;
        BitField<40, 1, u64> brev;
        BitField<47, 1, u64> cc;
        BitField<48, 1, u64> is_signed;
    } const bfe{insn};

    if (bfe.cc != 0) {
        throw NotImplementedException("BFE CC");
    }

    const IR::U32 offset{v.ir.BitFieldExtract(src, v.ir.Imm32(0), v.ir.Imm32(8), false)};
    const IR::U32 count{v.ir.BitFieldExtract(src, v.ir.Imm32(8), v.ir.Imm32(8), false)};

    // Common constants
    const IR::U32 zero{v.ir.Imm32(0)};
    const IR::U32 one{v.ir.Imm32(1)};
    const IR::U32 max_size{v.ir.Imm32(32)};
    // Edge case conditions
    const IR::U1 zero_count{v.ir.IEqual(count, zero)};
    const IR::U1 exceed_count{v.ir.IGreaterThanEqual(v.ir.IAdd(offset, count), max_size, false)};
    const IR::U1 replicate{v.ir.IGreaterThanEqual(offset, max_size, false)};

    IR::U32 base{v.X(bfe.offset_reg)};
    if (bfe.brev != 0) {
        base = v.ir.BitReverse(base);
    }
    IR::U32 result{v.ir.BitFieldExtract(base, offset, count, bfe.is_signed != 0)};
    if (bfe.is_signed != 0) {
        const IR::U1 is_negative{v.ir.ILessThan(base, zero, true)};
        const IR::U32 replicated_bit{v.ir.Select(is_negative, v.ir.Imm32(-1), zero)};
        const IR::U32 exceed_bit{v.ir.BitFieldExtract(base, v.ir.Imm32(31), one, false)};
        // Replicate condition
        result = IR::U32{v.ir.Select(replicate, replicated_bit, result)};
        // Exceeding condition
        const IR::U32 exceed_result{v.ir.BitFieldInsert(result, exceed_bit, v.ir.Imm32(31), one)};
        result = IR::U32{v.ir.Select(exceed_count, exceed_result, result)};
    }
    // Zero count condition
    result = IR::U32{v.ir.Select(zero_count, zero, result)};

    v.X(bfe.dest_reg, result);
}
} // Anonymous namespace

void TranslatorVisitor::BFE_reg(u64 insn) {
    BFE(*this, insn, GetReg20(insn));
}

void TranslatorVisitor::BFE_cbuf(u64 insn) {
    BFE(*this, insn, GetCbuf(insn));
}

void TranslatorVisitor::BFE_imm(u64 insn) {
    BFE(*this, insn, GetImm20(insn));
}

} // namespace Shader::Maxwell