[abi] Added support for 32-bit ARM (WIP)

This commit is contained in:
kobalicek
2025-11-29 09:13:58 +01:00
parent 12f9ca3b32
commit 594cb9e071
35 changed files with 21406 additions and 12 deletions

View File

@@ -0,0 +1,23 @@
// This file is part of AsmJit project <https://asmjit.com>
//
// See <asmjit/core.h> or LICENSE.md for license and copyright information
// SPDX-License-Identifier: Zlib
#include <asmjit/core.h>
#if !defined(ASMJIT_NO_AARCH32)
#include <asmjit/a32.h>
#include <limits>
#include <stdio.h>
#include <string.h>
#include <asmjit-testing/bench/asmjit_bench_codegen.h>
using namespace asmjit;
void benchmark_aarch32_emitters(uint32_t num_iterations) {
Support::maybe_unused(num_iterations);
}
#endif // !ASMJIT_NO_AARCH32