| 342 | } |
| 343 | |
| 344 | void N64Recomp::CGenerator::get_notation(BinaryOpType op_type, std::string& func_string, std::string& infix_string) const { |
| 345 | func_string = c_op_fields[static_cast<size_t>(op_type)].func_string; |
| 346 | infix_string = c_op_fields[static_cast<size_t>(op_type)].infix_string; |
| 347 | } |
| 348 | |
| 349 | void N64Recomp::CGenerator::get_binary_expr_string(BinaryOpType type, const BinaryOperands& operands, const InstructionContext& ctx, const std::string& output, std::string& expr_string) const { |
| 350 | thread_local std::string input_a{}; |
nothing calls this directly
no outgoing calls
no test coverage detected