|
|
|
@ -1477,6 +1477,36 @@ private:
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case OpCode::Type::PredicateSetPredicate: {
|
|
|
|
|
std::string op_a =
|
|
|
|
|
GetPredicateCondition(instr.psetp.pred12, instr.psetp.neg_pred12 != 0);
|
|
|
|
|
std::string op_b =
|
|
|
|
|
GetPredicateCondition(instr.psetp.pred29, instr.psetp.neg_pred29 != 0);
|
|
|
|
|
|
|
|
|
|
using Tegra::Shader::Pred;
|
|
|
|
|
// We can't use the constant predicate as destination.
|
|
|
|
|
ASSERT(instr.psetp.pred3 != static_cast<u64>(Pred::UnusedIndex));
|
|
|
|
|
|
|
|
|
|
std::string second_pred =
|
|
|
|
|
GetPredicateCondition(instr.psetp.pred39, instr.psetp.neg_pred39 != 0);
|
|
|
|
|
|
|
|
|
|
std::string combiner = GetPredicateCombiner(instr.psetp.op);
|
|
|
|
|
|
|
|
|
|
std::string predicate =
|
|
|
|
|
'(' + op_a + ") " + GetPredicateCombiner(instr.psetp.cond) + " (" + op_b + ')';
|
|
|
|
|
|
|
|
|
|
// Set the primary predicate to the result of Predicate OP SecondPredicate
|
|
|
|
|
SetPredicate(instr.psetp.pred3,
|
|
|
|
|
'(' + predicate + ") " + combiner + " (" + second_pred + ')');
|
|
|
|
|
|
|
|
|
|
if (instr.psetp.pred0 != static_cast<u64>(Pred::UnusedIndex)) {
|
|
|
|
|
// Set the secondary predicate to the result of !Predicate OP SecondPredicate,
|
|
|
|
|
// if enabled
|
|
|
|
|
SetPredicate(instr.psetp.pred0,
|
|
|
|
|
"!(" + predicate + ") " + combiner + " (" + second_pred + ')');
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case OpCode::Type::FloatSet: {
|
|
|
|
|
std::string op_a = instr.fset.neg_a ? "-" : "";
|
|
|
|
|
op_a += regs.GetRegisterAsFloat(instr.gpr8);
|
|
|
|
|