Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-118306: Update JIT compilation to use LLVM 18 #118307

Merged
merged 32 commits into from
Apr 29, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
fef6cc0
Works for Linux Arm, Mac Arm broken
savannahostrowski Apr 25, 2024
3a5a0e9
uncomment
savannahostrowski Apr 25, 2024
186fef0
Minor updates for windows
savannahostrowski Apr 25, 2024
c0b63d2
llvm in CI
savannahostrowski Apr 25, 2024
8e31869
add brew update to gha
savannahostrowski Apr 25, 2024
ad6d554
remove file
savannahostrowski Apr 25, 2024
d546621
choco?
savannahostrowski Apr 25, 2024
2526e81
debugging windows runners
savannahostrowski Apr 25, 2024
9e0afdf
add -y
savannahostrowski Apr 25, 2024
b0ed125
add -y to choco for emulated windows
savannahostrowski Apr 25, 2024
3eeb3f0
instruction in jit.c and remove -mcmodel=large
savannahostrowski Apr 26, 2024
40bcebf
Fix instructions and MachO parsing
savannahostrowski Apr 26, 2024
c02ec00
remove mcmodel=large for aarch linux
savannahostrowski Apr 26, 2024
5d4dede
add unhandled ELF instructions;
savannahostrowski Apr 26, 2024
bf5aa36
update workflow to install all llvm on native linux
savannahostrowski Apr 26, 2024
a79a39b
remove --with-lto
savannahostrowski Apr 26, 2024
dd283e3
remove lto from emulated linux
savannahostrowski Apr 26, 2024
8d59ff8
update comments
savannahostrowski Apr 26, 2024
9433e30
📜🤖 Added by blurb_it.
blurb-it[bot] Apr 26, 2024
6617ad4
update classes for ELF and MachO symbol types
savannahostrowski Apr 26, 2024
a9ef1f4
Merge branch 'llvm-18' of https://github.com/savannahostrowski/cpytho…
savannahostrowski Apr 26, 2024
02307e4
Merge branch 'main' into llvm-18
savannahostrowski Apr 26, 2024
8d9855f
Update .github/workflows/jit.yml
savannahostrowski Apr 26, 2024
72d366a
Update Tools/jit/_stencils.py
savannahostrowski Apr 26, 2024
fe17f68
Merge branch 'python:main' into llvm-18
savannahostrowski Apr 26, 2024
71954a0
address PR comments
savannahostrowski Apr 26, 2024
3d6d8c7
Merge branch 'llvm-18' of https://github.com/savannahostrowski/cpytho…
savannahostrowski Apr 26, 2024
80b9e1c
add -fPIC
savannahostrowski Apr 27, 2024
1808f6a
fix ordering of args for consistency
savannahostrowski Apr 27, 2024
b2bbeb0
Merge branch 'main' into llvm-18
savannahostrowski Apr 27, 2024
5717a81
Formatting nits
brandtbucher Apr 29, 2024
6c80a31
Merge branch 'main' into llvm-18
brandtbucher Apr 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
choco?
  • Loading branch information
savannahostrowski committed Apr 25, 2024
commit d546621f013acc00f38757c09f90f8749bd9b85f
2 changes: 1 addition & 1 deletion .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Native Windows
if: runner.os == 'Windows' && matrix.architecture != 'ARM64'
run: |
choco upgrade chocolatey
choco upgrade all
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '--pgo' }} -p ${{ matrix.architecture }}
./PCbuild/rt.bat ${{ matrix.debug && '-d' }} -p ${{ matrix.architecture }} -q --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 4500 --verbose2 --verbose3
Expand Down