// Copyright © 2024 Sibirtsev Dmitry // SPDX-License-Identifier: BSD-3 #include "test_compare.h" #include "test_detail_arc.h" #include #include #include TestDetailARC *test_detail_arc_new() { return cs_mem_calloc(sizeof(TestDetailARC), 1); } void test_detail_arc_free(TestDetailARC *detail) { if (!detail) { return; } for (size_t i = 0; i < detail->operands_count; ++i) { test_detail_arc_op_free(detail->operands[i]); } cs_mem_free(detail->operands); cs_mem_free(detail); } TestDetailARC *test_detail_arc_clone(const TestDetailARC *detail) { TestDetailARC *clone = test_detail_arc_new(); clone->operands_count = detail->operands_count; if (detail->operands_count > 0) { clone->operands = cs_mem_calloc(sizeof(TestDetailARCOp *), detail->operands_count); } for (size_t i = 0; i < detail->operands_count; ++i) { clone->operands[i] = test_detail_arc_op_clone(detail->operands[i]); } return clone; } TestDetailARCOp *test_detail_arc_op_new() { return cs_mem_calloc(sizeof(TestDetailARCOp), 1); } TestDetailARCOp *test_detail_arc_op_clone(const TestDetailARCOp *op) { TestDetailARCOp *clone = test_detail_arc_op_new(); clone->type = op->type ? strdup(op->type) : NULL; clone->access = op->access ? strdup(op->access) : NULL; clone->reg = op->reg ? strdup(op->reg) : NULL; clone->imm = op->imm; return clone; } void test_detail_arc_op_free(TestDetailARCOp *op) { if (!op) { return; } cs_mem_free(op->type); cs_mem_free(op->access); cs_mem_free(op->reg); cs_mem_free(op); } bool test_expected_arc(csh *handle, const cs_arc *actual, const TestDetailARC *expected) { assert(handle && actual && expected); compare_uint8_ret(actual->op_count, expected->operands_count, false); for (size_t i = 0; i < actual->op_count; ++i) { const cs_arc_op *op = &actual->operands[i]; TestDetailARCOp *eop = expected->operands[i]; compare_enum_ret(op->type, eop->type, false); compare_enum_ret(op->access, eop->access, false); switch (op->type) { default: fprintf(stderr, "arc op type %" PRId32 " not handled.\n", op->type); return false; case ARC_OP_REG: compare_reg_ret(*handle, op->reg, eop->reg, false); break; case ARC_OP_IMM: compare_int64_ret(op->imm, eop->imm, false); break; } } return true; }