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

WIP: Backports 1.6-beta #38949

Merged
merged 40 commits into from
Jan 6, 2021
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
06171f6
Switch back to LLVM ORC v2, take two (#38804)
vtjnash Dec 17, 2020
264d855
fix #38888, pessimistic sparam inference with concrete upper bound (#…
JeffBezanson Dec 18, 2020
c678cef
Carry MBedTLS patch that works around CMake 3.18.2 bug. (#38933) (#38…
Sacha0 Dec 25, 2020
0372159
Source tarballs should contain `StdlibArtifacts.toml` files (#38962) …
Sacha0 Dec 25, 2020
715eb60
minor inferrability tweak for `manifest_deps_get` (#38954)
aviatesk Dec 21, 2020
f676019
Repair jl_init. (#38950)
GunnarFarneback Dec 21, 2020
e550e87
[Artifacts] Note the platform we're looking for in our error message …
staticfloat Dec 22, 2020
a67b662
Assert that _artifact_str returns a String (#38975)
timholy Dec 24, 2020
f190c53
Construct constant LLVMPtr correctly (#38958)
vchuravy Dec 25, 2020
9475802
Fix trampoline on PPC (#38980)
vchuravy Dec 25, 2020
f42b28e
Update the AST docs on `nothing` `:method` expressions (#38496)
timholy Dec 26, 2020
8d41bf7
[loader] Must invalidate `.o` files when `VERSION` changes (#38800)
staticfloat Dec 26, 2020
14a646c
build: pack checksums into fewer files by target (#38963)
vtjnash Dec 22, 2020
30ce7da
win: Set correct folder permissions after folder creation (#38942)
musm Dec 27, 2020
d73f866
Export jl_n_threads from the public libjulia library [#38925]
imciner2 Dec 18, 2020
a881030
[cli/trampolines]: Fix `aarch64-apple-darwin` trampoline ASM syntax
staticfloat Dec 19, 2020
dd7d025
[cli/trampolines]: Fix `i686-w64-mingw32` name mangling
staticfloat Dec 19, 2020
8984d13
Define `jl_n_threads` in only `libjulia`
staticfloat Dec 19, 2020
3be9b23
Fix visibility of jl_n_threads
imciner2 Dec 20, 2020
22a907b
Allow libjulia to contain non-pointer variables
imciner2 Dec 20, 2020
ac9c203
Remove second declaration of jl_n_threads
imciner2 Dec 20, 2020
c32c796
Use proper interprocedural register on aarch64
staticfloat Dec 21, 2020
b2484a7
Adapt Windows `cglobal()` search for `libjulia-internal`
staticfloat Dec 22, 2020
ea9d2bb
Revert "win: Set correct folder permissions after folder creation (#3…
KristofferC Dec 28, 2020
7d6594d
[libuv] Bump to include `DELETE` win ACL patch (#39038)
staticfloat Dec 30, 2020
c992850
Bump Documenter to 0.26.1 (#39097)
mortenpi Jan 5, 2021
bacbb97
Improve consistency of SONAME usage, fix debug installation
staticfloat Dec 26, 2020
3b809f7
Fix lack of `JL_MAJOR_SHLIB_EXT` on Windows
staticfloat Dec 27, 2020
b4f2c66
Fixes for non-Int based lengths (#37741)
dlfivefifty Jan 4, 2021
616cb5d
[cli/trampolines] Fix section directive for windows trampolines
staticfloat Dec 30, 2020
eb1efe5
[cli/loader]: Don't allow initialization to run more than once
staticfloat Dec 30, 2020
b6590d4
FileWatching: Dump open file descriptors on failure
Keno Apr 21, 2020
f452173
Don't detach rr workers in SharedArrays tests
Keno Apr 22, 2020
0d21397
Disable thread affinity test under rr
Keno Apr 22, 2020
2ed26a0
Exclude `threads` test from rr tracing
Keno Dec 16, 2020
c70397e
Use universal LIBUV_INC instead of build_includedir
vchuravy Sep 23, 2020
c8029bb
stage flisp.boot into host
vchuravy Sep 23, 2020
327f298
use BUILD_EXE for flisp
vchuravy Sep 24, 2020
55154b3
Measure compile time only when using time macros pt.2: handling when …
IanButterworth Jan 6, 2021
f34a4d8
fix Meta.partially_inline! again (#39112)
simeonschaub Jan 6, 2021
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
Use proper interprocedural register on aarch64
(cherry picked from commit 926a3ca)
  • Loading branch information
staticfloat authored and KristofferC committed Dec 27, 2020
commit c32c7960b7bb6b4fc1bb41714950e8d1937f7514
6 changes: 3 additions & 3 deletions cli/trampolines/trampolines_aarch64.S
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
.cfi_startproc SEP \
.p2align 2 SEP \
CNAME(name)##: SEP \
adrp x0, PAGE(CNAME(name##_addr)) SEP \
ldr x0, [x0, PAGEOFF(CNAME(name##_addr))] SEP \
br x0 SEP \
adrp x16, PAGE(CNAME(name##_addr)) SEP \
ldr x16, [x16, PAGEOFF(CNAME(name##_addr))] SEP \
br x16 SEP \
.cfi_endproc SEP \

JL_EXPORTED_FUNCS(XX)
Expand Down