Skip to content
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e4a4547
Add initial llvm-jitlink support for SystemZ.
Jun 17, 2025
574a239
Merge branch 'main' into llvm-jitlink
anoopkg6 Jun 17, 2025
0423532
Resolve issues with conflicts
Jun 17, 2025
72ff4e3
Fix build error
Jun 17, 2025
5bbfe06
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Jul 16, 2025
7ec023e
Fixed jitlink-check: CHECK-ERROR - error message format changed.
Jul 16, 2025
9e4a909
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Oct 30, 2025
a52657a
Incorporate code review feedback
Nov 1, 2025
c0cc3db
Incorporate code review feedback
Nov 4, 2025
47482b2
1. Created GOTPC section for R_390_GOTPC and R_390_GOTPCDBL relocation.
Nov 5, 2025
76623a9
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 5, 2025
2f7a610
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 6, 2025
f6b2556
Incorporate code review feedback
Nov 6, 2025
dc19225
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 6, 2025
5c118d3
Incorporate code review feedback
Nov 7, 2025
3e9f4fd
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 7, 2025
0270bd9
Merge branch 'llvm-jitlink' of github.com:anoopkg6/llvm-project into …
Nov 7, 2025
34456ef
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 7, 2025
dde6b1f
Minor cleanup
Nov 7, 2025
30c18e6
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 11, 2025
9d41ed4
Fix Stub block Delta32dbl edge with Addend 2 at offset 2
Nov 11, 2025
dbfe1d7
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 11, 2025
50d8559
Make Stub block alignment 16-bit and some minor clean up
Nov 11, 2025
4f46316
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 11, 2025
9b5da09
Corrected Stub size
Nov 11, 2025
46ba2b2
Merge branch 'llvm:main' into llvm-jitlink
anoopkg6 Nov 11, 2025
aeb8b49
Fix build failure
Nov 11, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ test_call_extern_plt:
# Check PLT stub relocation for lgrl(Delta32dbl).
#
# jitlink-check: *{4}(stub_addr(elf_pic_reloc.o, extern_out_of_range32) + 2) = \
# jitlink-check: (got_addr(elf_pic_reloc.o, extern_out_of_range32) - \
# jitlink-check: stub_addr(elf_pic_reloc.o, extern_out_of_range32)) >> 1
# jitlink-check: ((got_addr(elf_pic_reloc.o, extern_out_of_range32) - \
# jitlink-check: stub_addr(elf_pic_reloc.o, extern_out_of_range32)) >> 1) \
# jitlink-check: & 0xffffffff
.globl test_call_extern_plt_stub
.p2align 4
.type test_call_extern_plt_stub,@function
Expand Down
Loading