You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cleanup/julia_names.jl
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,9 @@ Regex matching all global variable names which might change from one compilation
63
63
!!! compat "Julia 1.11"
64
64
Those global variables names only appear starting from Julia 1.11.
65
65
66
+
!!! compat "Julia 1.12"
67
+
Those global variables may now start with `jl_` instead of `+`.
68
+
66
69
In LLVM IR, those variables are mentioned as such: `@"+Core.GenericMemory#14067.jit"`.
67
70
In native code, they look like this: `".L+Core.GenericMemory#13985.jit"`, with maybe some
68
71
`.set` and `.size` sections at the end of the code (in x86 ASM).
@@ -79,8 +82,15 @@ in `julia_pgv(ctx, cname, addr)` at [`'src/cgutils.cpp#L358'`](https://github.co
79
82
which is then added a `".jit"` suffix in [`'src/aotcompile.cpp#L2064'`](https://github.com/JuliaLang/julia/blob/08e1fc0abb959ce5bd4c75b05518a41b85e4aba1/src/aotcompile.cpp#L2064)
0 commit comments