[ARM64_DYNAREC] Fixed and improved i64 x87 optimisation #2066
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Auto build Box64 and release its binary with Github Action | |
name: Build and Release Box64 | |
on: | |
workflow_dispatch: | |
release: | |
push: | |
paths: | |
- "**/*.c" | |
- "**/*.h" | |
- "**/*.S" | |
- "**/*.py" | |
- "CMakeLists.txt" | |
- "**/*.yml" | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
paths: | |
- "**/*.c" | |
- "**/*.h" | |
- "**/*.S" | |
- "**/*.py" | |
- "CMakeLists.txt" | |
- "**/*.yml" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [X64, OTHER_ARM, RISCV, RPI4ARM64, RK3326, RK3399, RK3588, PHYTIUM, SD845, SD888, ADLINK, ARM64, ANDROID] | |
type: [Release, Trace] | |
os: [ubuntu-latest] | |
include: | |
- platform: TEGRAX1 | |
type: Release | |
os: ubuntu-20.04 | |
- platform: TEGRAX1 | |
type: Trace | |
os: ubuntu-20.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: "Checkout Box64 Repository" | |
uses: actions/checkout@v3 | |
- name: "Environment preparation" | |
run: | | |
sudo apt-get update | |
if [[ ${{ matrix.platform }} != 'X64' && ${{ matrix.platform }} != 'OTHER_ARM' && ${{ matrix.platform }} != 'RISCV' ]]; then | |
sudo apt-get -y install git cmake make python3 | |
if [[ ${{ matrix.platform }} == 'ANDROID' ]]; then | |
wget https://dl.google.com/android/repository/android-ndk-r23b-linux.zip | |
unzip android-ndk-r23b-linux.zip | |
echo "BOX64_COMPILER=$PWD/android-ndk-r23b/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android31-clang" >> $GITHUB_ENV | |
echo "BOX64_PLATFORM_MARCRO=-DANDROID=1 -DARM_DYNAREC=1 -DNOLOADADDR=1" >> $GITHUB_ENV | |
else | |
sudo apt-get -y install git gcc-aarch64-linux-gnu | |
echo "BOX64_PLATFORM_MARCRO=-D${{ matrix.platform }}=1" >> $GITHUB_ENV | |
echo "BOX64_COMPILER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV | |
fi | |
else | |
if [[ ${{ matrix.platform }} == 'X64' ]]; then | |
echo "BOX64_PLATFORM_MARCRO=-DLD80BITS=1 -DNOALIGN=1" >> $GITHUB_ENV | |
echo "BOX64_COMPILER=gcc" >> $GITHUB_ENV | |
sudo apt-get -y install git cmake make python3 | |
elif [[ ${{ matrix.platform }} == 'RISCV' ]]; then | |
echo BOX64_PLATFORM_MARCRO="-DRV64=ON" >> $GITHUB_ENV | |
echo "BOX64_COMPILER=riscv64-linux-gnu-gcc" >> $GITHUB_ENV | |
sudo apt-get -y install git gcc-riscv64-linux-gnu cmake make python3 | |
else | |
echo BOX64_PLATFORM_MARCRO="-DARM_DYNAREC=ON" >> $GITHUB_ENV | |
echo "BOX64_COMPILER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV | |
sudo apt-get -y install git gcc-aarch64-linux-gnu cmake make python3 | |
fi | |
fi | |
if [[ ${{ matrix.type }} == 'Release' ]]; then | |
echo BOX64_BUILD_TYPE=Release >> $GITHUB_ENV | |
echo BOX64_HAVE_TRACE=0 >> $GITHUB_ENV | |
else | |
echo BOX64_BUILD_TYPE=RelWithDebInfo >> $GITHUB_ENV | |
echo BOX64_HAVE_TRACE=1 >> $GITHUB_ENV | |
fi | |
- name: "Display Build info" | |
run: | | |
echo "CMake Platform Macro: ${{ env.BOX64_PLATFORM_MARCRO }}" | |
echo "CMake C Compiler: ${{ env.BOX64_COMPILER }}" | |
echo "Build type: ${{ env.BOX64_BUILD_TYPE }}" | |
echo "Trace Enabled: ${{ env.BOX64_HAVE_TRACE }}" | |
- name: "Build Box64" | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_C_COMPILER=${{ env.BOX64_COMPILER }}\ | |
${{ env.BOX64_PLATFORM_MARCRO }}\ | |
-DCMAKE_BUILD_TYPE=${{ env.BOX64_BUILD_TYPE }}\ | |
-DHAVE_TRACE=${{ env.BOX64_HAVE_TRACE }}\ | |
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON\ | |
-DCI=${{ matrix.platform != 'ANDROID' }} | |
make -j$(nproc) VERBOSE=1 | |
- name: "Test Box64" | |
if: ${{ matrix.platform != 'TEGRAX1' }} | |
run: | | |
if [[ ${{ matrix.platform }} != 'X64' && ${{ matrix.platform }} != 'ANDROID' ]]; then | |
mkdir qemu8.1.0 | |
wget -O- -q https://archive.archlinux.org/packages/q/qemu-user-static/qemu-user-static-8.1.0-2-x86_64.pkg.tar.zst | tar -I zstd -C qemu8.1.0 -xf - | |
sudo cp qemu8.1.0/usr/bin/* /usr/bin/ | |
fi | |
cd build | |
if [[ ${{ matrix.platform }} == 'RISCV' ]]; then | |
INTERPRETER=qemu-riscv64-static QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ ctest -j$(nproc) --rerun-failed --output-on-failure | |
INTERPRETER=qemu-riscv64-static QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ BOX64_DYNAREC=0 ctest -j$(nproc) --rerun-failed --output-on-failure | |
INTERPRETER=qemu-riscv64-static QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ QEMU_CPU=rv64,zba=true,zbb=true,zbc=true,zbs=true ctest -j$(nproc) --rerun-failed --output-on-failure | |
INTERPRETER=qemu-riscv64-static QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ QEMU_CPU=rv64,xtheadba=true,xtheadba=true,xtheadbb=true,xtheadbs=true,xtheadcondmov=true,xtheadmemidx=true,xtheadmempair=true,xtheadfmemidx=true,xtheadmac=true,xtheadfmv=true ctest -j$(nproc) --rerun-failed --output-on-failure | |
elif [[ ${{ matrix.platform }} != 'X64' && ${{ matrix.platform }} != 'ANDROID' ]]; then # AArch64 | |
INTERPRETER=qemu-aarch64-static QEMU_LD_PREFIX=/usr/aarch64-linux-gnu/ BOX64_DYNAREC=0 ctest -j$(nproc) --rerun-failed --output-on-failure | |
INTERPRETER=qemu-aarch64-static QEMU_LD_PREFIX=/usr/aarch64-linux-gnu/ ctest -j$(nproc) --rerun-failed --output-on-failure | |
elif [[ ${{ matrix.platform }} == 'ANDROID' ]]; then | |
true | |
else | |
BOX64_DYNAREC=0 ctest -j$(nproc) --rerun-failed --output-on-failure | |
ctest -j$(nproc) --rerun-failed --output-on-failure | |
fi | |
- name: "Upload Artifact" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: box64-${{ matrix.platform }}-${{ matrix.type }} | |
path: build/box64 |