https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
4b85180 Make it possible to avoid the warning when replacing docstrings 23 May 2019, 09:52:58 UTC
efd794e Quote to handle spaces in PATH (#32100) 22 May 2019, 21:25:55 UTC
bc82b7f fix #32095, printing user-defined Function types (#32098) 22 May 2019, 20:09:07 UTC
e249319 fix #32076, compile times of long static vectors (#32105) Adds some heuristics to avoid constant propagation in cases unlikely to be useful: getindex and setindex! of non-const arrays, iterate of non-const objects, and arithmetic with some non-const args. 22 May 2019, 20:07:54 UTC
911a14b Support `repr` on `Time` (#32103) 22 May 2019, 19:56:28 UTC
80a723b test quantile (#31994) 22 May 2019, 15:50:30 UTC
b38dd32 Merge pull request #31823 from JuliaLang/ksh/diag Some missing tests for Diagonals 22 May 2019, 15:21:54 UTC
7b70d49 BunchKauffman: correct permutation for rook pivoting (fixes #32080) (#32108) 22 May 2019, 15:05:28 UTC
516067b improve checking of `Vararg` parameters (#32056) - make sure length var has full bounds - check for negative length earlier (inside Vararg, not just Tuple{Vararg{}}) 21 May 2019, 19:52:38 UTC
62a0a3f Make append! and push! definitions more generic (#32065) Some methods for append! and push! for Array actually work for any AbstractArray since they only use resize!, setindex! and push!. Broaden the signatures so that custom array types do not need to copy definitions from Base. BitArray uses special methods, one of which was apparently not covered by tests. 21 May 2019, 19:50:14 UTC
b21d39d separate the two different functions called `issingletontype` (#32091) consistently use `Base.` in docstrings only for non-exported names 21 May 2019, 16:17:48 UTC
bf91697 add svdvals for SymTridiagonal (#32093) 21 May 2019, 12:52:43 UTC
633ad82 Ensure Main.eval and Main.include exist in embedded julia (#32062) Import these two functions into Main as part of `jl_init()` so that they're present in embedded julia. 21 May 2019, 10:59:08 UTC
a43c46b Update Windows icon and NSIS banner (#32054) 21 May 2019, 01:27:00 UTC
6e04733 Merge pull request #32090 from JuliaLang/kf/clangsaclean Try to get GC analysis clean again 20 May 2019, 21:45:27 UTC
25c33e4 Prevent the GC task callback from segfaulting. (#32088) It is possible when marking task objects in the GC for the associated jl_ptls_t reference to be NULL. To determine whether a task is a root task, we therefore also have to check if that reference is valid. 20 May 2019, 19:52:19 UTC
297e353 Try to get GC analysis clean again This gets everything except for rtutils.c (which is also moved out of the make target). rtutils will require some refactoring since the printing functions now are syntactically safe points (just happen not to be on the path we care about there). 20 May 2019, 18:54:28 UTC
b238945 Print macro definitions Exprs as readable julia code (#32083) Rather than printing in bare "Expr(:macro, ...)" form, this prints them as blocks, following the way that printing of function expressions works. 20 May 2019, 18:25:11 UTC
7bdfd3f Fix potential missing gc root in check_disabled_ambiguous_visitor ``` /home/keno/julia-old/src/gf.c:1220:30: note: Started tracking value here jl_value_t *isect2 = jl_type_intersection((jl_value_t*)mth->sig, (jl_value_t*)sig); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/keno/julia-old/src/gf.c:1223:13: note: Passing non-rooted value as argument to function that may GC if (jl_types_equal(isect, isect2)) { ^ ~~~~~~ ``` 20 May 2019, 17:29:57 UTC
047f9ee Try to avoid undefined behavior in runtime intrinsics (#31548) The analyzer complains ``` /home/keno/julia/src/runtime_intrinsics.c:886:38: note: The result of the left shift is undefined because the left operand is negative checked_iintrinsic_fast(LLVMSub_sov, check_ssub_int, sub, checked_ssub_int, ) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/keno/julia/src/runtime_intrinsics.c:510:25: note: expanded from macro 'checked_iintrinsic_fast' checked_intrinsic_ctype(CHECK_OP, OP, name, 64, u##int##64_t) \ ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/keno/julia/src/runtime_intrinsics.c:251:12: note: expanded from macro '\ checked_intrinsic_ctype' return CHECK_OP(a, b); \ ^~~~~~~~~~~~~~ /home/keno/julia/src/runtime_intrinsics.c:885:49: note: expanded from macro 'check_ssub_int' (b >= 0) ? (a < sTYPEMIN(a) + b) : (a > sTYPEMAX(a) + b) ^~~~~~~~~~~ /home/keno/julia/src/runtime_intrinsics.c:868:23: note: expanded from macro 'sTYPEMAX' ? ~((a - a + ~0) << (8 * sizeof(a) - 1)) \ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ 16 warnings generated. ``` And indeed shifting a negative number to the left is undefined in `C`. Try an alternative expression for these that hopefully steers clear of any UB. 20 May 2019, 17:29:42 UTC
11fe3e3 Import ClangSA.jl source tree (#28838) Now that static analysis passes on src/*.c without any false positives, it's time to integrate ClangSA into our regular CI process. Since it's a bit specific to the exact version of julia, and for convenience, we import the source tree into julia proper. `make -C src analyzegc` runs the analysis. ClangSA also comes with its own test suite, which is imported, but not yet hooked up. 19 May 2019, 23:20:21 UTC
ab3ecdf Remove JL_GC_POP without corresponding push (#32075) I'm fairly sure this fixes #32059, though I didn't rr that all the way to the end, but instead used the static analyzer once I saw that it was a GC frame mismatch. The analyzer reports: ``` /home/keno/julia-old/src/jltypes.c:1603:5: warning: JL_GC_POP without corresponding push JL_GC_POP(); ^~~~~~~~~~~ ``` Fix that. 19 May 2019, 17:49:31 UTC
86b560d Update README instructions for latest release (#32073) 19 May 2019, 00:31:57 UTC
3c92942 Two fixes to win32 cross compilation (#32072) Two fixes to win32 cross compilation 18 May 2019, 20:06:42 UTC
36d6d7a Two fixes to win32 cross compilation - The default mingw32 gfortran on ubuntu prints the version as `GNU Fortran (GCC) 7.3-win32 20180312`, rather than `7.3.0` most other gfortrans do, so be robust to that in normalize_triplet - When shelling out to python use the host path rather than the windows-equivalent path, since python is a host tool. 18 May 2019, 17:34:22 UTC
4a38e79 Fix some vararg-related subtyping issues (#31698) * Fix jl_obvious_subtype with INT vararg constraint * Fix a vararg-related non-transitivity in subtyping * Fix another vararg subtype issue * Take advantage of their being at most one UnionAll wrapped around a Vararg Upon construction, we normalize `Vararg{T, N} where {T,N}` to `Vararg{T where T, N} where N`, thus there can be at most one UnionAll wrapper around a Vararg. In subtyping we were already assuming that there can be at most two such wrappers, so simply adjust that and add an appropriate assertion to make sure we catch any cases where this ever goes wrong. * Rewrite subtype_tuple to fix extra cases * Put back the case for naked varargs * Update test/subtype.jl Co-Authored-By: Keno <keno@alumni.harvard.edu> * Add test for #31805 * Fix style review comments * Rename variable * In person review changes * Fix bug * Handle integer bounds on left arguments in the environment In subtyping proper, variables introduced on the left (i.e. forall variables) don't have any equality constraints, because we have no syntax for creating them. However, intersection does sometimes create such environments, so we need to handle it in subtyping. 18 May 2019, 17:13:48 UTC
b6f10cb Include command string in special character warning (#32012) 17 May 2019, 19:49:49 UTC
3754ead abi: thread first argument through separately (#31984) A bit of history: Before the addition of function types, a call to a function would always use the API `(jl_value_t *f, jl_value_t *argv[], int nargv)`, regardless of whether it was a generic call or a closure or an invoke or interpreted. Over time since then, that become one of several calling conventions, each just a minor variation away: `(jl_value_t *argv[], int nargv)`, `(void *context, jl_value_t *argv[], int nargv)`, `(jl_value_t *f, jl_value_t *argv[], int nargs)`, `(jl_value_t **context, jl_value_t *f, jl_value_t *argv[], int nargv)`, and so on. That was fairly nice to getting stuff ported over, since it provided a simpler transition, but led to needing an increasing number of transformational methods to just shift arguments around (such as `jl_apply_2va`, which gets removed here). And that was starting to feel tricky to me to manage the possible N-to-N conversions that may be needed between each of them, and to optimize all of those. This PR aims to cut back down again on the amount of variety in our primary (non internal/specsig) ABI by moving the varying 'context' to the end and usually keeping the first (function) argument separate. This gives the basic call signature form: `(jl_value_t *func, jl_value_t *argv[], int nargv, void *optional_context)` (where the last parameter can range over a few possible types depending on the target, or may be `undef` and dropped when it is known that the callee will ignore the value). This lets us switch callee target type (e.g. for incremental compilation and linking) simply by adding / dropping / replacing / ignoring that trailing parameter, and not needing to potentially spill everything to the stack (e.g. letting us remove jl_apply_2va). This doesn't alter `jl_apply()` / `jl_call` / etc., so external consumers should be generally unaffected. 17 May 2019, 19:38:13 UTC
a0d831c (H+­μI) \ x solvers for Hessenberg factorizations (#31853) 17 May 2019, 18:31:08 UTC
6bd3967 fix #31674, error when storing nonzeros into structural zeros with .= (#31678) Previously, broadcasted assignment (`.=`) would happily ignore all nonstructured portions of the destination, regardless of whether the broadcasted expression would actually evaluate to zero or not. This changes these in-place methods to use the same infrastructure that out-of-place broadcast uses to determine the result type. If we are unsure of the structural properties of the output, we fall back to the generic implementation, which will attempt to store into every single location of the destination -- including those structural zeros. Thus we now error in cases where we generate nonzeros in those locations. 16 May 2019, 22:30:03 UTC
ffb26e7 Add Base64 to Serialization test deps (#32053) This dependency was added in 8f9ace09a3571e2aef0f5639ea55ec8fe830b0cf, but not reflected in the Project.toml file. Fixes `test Serialization` invocation. 16 May 2019, 21:25:35 UTC
b2833ea fix #32046, Error test result from test_logs (#32052) 16 May 2019, 21:25:14 UTC
c14e507 Update the Base.Cartesian devdocs (#32039) 16 May 2019, 21:00:24 UTC
16a308b Add noteworthy differences from Common Lisp. (#32015) 16 May 2019, 20:54:44 UTC
d9b7db9 Load startup.jl, if it exists, from DEPOT_PATH[1] instead of homedir/.julia (#31682) * Load startup.jl, if it exists, from DEPOT_PATH[1] instead of homedir()/.julia/... * Check to see if DEPOT_PATH is non empty before checking for startup.jl file * Use DEPOT_PATH[1]/logs/repl_history.jl as default history. Update the 'environment-variables.md' of the manual as well 16 May 2019, 20:49:15 UTC
140d3ba Be gentler in setting BinaryBuilder makevars (#32044) Be gentler in setting BinaryBuilder makevars 16 May 2019, 20:40:16 UTC
3ad8e15 Merge pull request #32037 from JuliaLang/ksh/datetest A few missing Dates tests 16 May 2019, 18:18:41 UTC
d61498b Disable `BINARYBUILDER_LLVM_ASSERTS` in `appveyor_build.sh` We don't actually have an asserts build to download (yet) 16 May 2019, 17:01:55 UTC
5458921 Update Make.inc Co-Authored-By: Valentin Churavy <vchuravy@users.noreply.github.com> 16 May 2019, 15:44:38 UTC
62c0677 move export of `Event` from Base back to Threads (#32043) 16 May 2019, 15:28:08 UTC
caf5a97 Be gentler in setting BinaryBuilder makevars Many users have expressed the frustration that setting `USE_BINARYBUILDER=0` in `Make.user` doesn't take; this is because the initializations here should have been `?=` (e.g. "set unless already set") instead of `:=` (e.g. "set immediately"). This remedies that. 16 May 2019, 06:00:36 UTC
7a75753 fix `isa` fast path for typevars with lower bounds (#32040) 16 May 2019, 04:27:25 UTC
8f9ace0 fix serializer for compat with 1.0 for saved functions (#32028) 16 May 2019, 04:27:05 UTC
507312d restore previous exports from Base.Threads (#32036) 16 May 2019, 00:18:25 UTC
b5a4601 update Julia logos, removing rings round 2 (#32038) 15 May 2019, 18:22:00 UTC
ccddb66 A few missing Dates tests 15 May 2019, 17:01:47 UTC
59e3df3 Merge pull request #32033 from mikhail-j/libgit2-cacert-may2019 Update Mozilla CA certificate store to latest (05-15-2019) for libgit2 SSL. 15 May 2019, 16:09:46 UTC
99d2406 gf: support more dispatch on abstract types (#31916) This removes the restriction on defining dispatch over user-defined abstract types. The "cannot add methods to an abstract type" error is now only applicable to a couple types (`Any`, `Function`, and functions), and instead now gives a "not implemented yet" message. fixes #14919 for 99% of cases 15 May 2019, 14:22:27 UTC
5c5f5c2 support for Unicode 12.1.0 (#32002) 15 May 2019, 12:44:27 UTC
b317206 Update Mozilla CA certificate store to latest (05-15-2019) for libgit2 SSL. 15 May 2019, 10:07:49 UTC
40d72ad Move ack out to its own repo in JuliaEditorSupport. (#32021) https://github.com/JuliaEditorSupport/roadmap/issues/6 14 May 2019, 22:11:45 UTC
b4b4634 Remove tiers of support (#32022) The tiers of support are now maintained in one place, i.e. on the downloads page on the website. It was difficult to have an accurate list of tiers for master, and much simpler to have support tiers for the latest stable release instead. Thus, the downloads page is the right place to host this information and curate it. 14 May 2019, 16:15:42 UTC
0523d1d REPL docs for __init__ (#31930) 14 May 2019, 14:58:50 UTC
95c95b6 Mention rationals are checked for overflow in docstring. (#31926) 14 May 2019, 13:28:48 UTC
b05c0c7 bugfix in Hermitian + complex*I (#32001) 14 May 2019, 13:09:44 UTC
236df47 Merge pull request #31957 from wsmoses/master Fix compilation with external LLVM 14 May 2019, 00:03:42 UTC
178d703 Split rule in Generated function docs about calling functions from argument types (#32016) 13 May 2019, 20:54:58 UTC
650a6a3 Merge pull request #32014 from JuliaLang/vs/rmllvm39 Remove old llvm 3.9 checksums 13 May 2019, 16:38:35 UTC
3efdda6 fast implementation of digits with base a power of 2 (#31722) 13 May 2019, 09:08:23 UTC
5dc47ae Remove vagrant files in contrib that were left around. 13 May 2019, 04:26:20 UTC
531c2d8 Remove old llvm 3.9 checksums 13 May 2019, 04:24:49 UTC
9d6fffe Improve some aspects of the NSIS installer (#31959) 12 May 2019, 17:20:46 UTC
7fdd96f Fix function name in docstring (#32009) 12 May 2019, 17:05:33 UTC
8932ccd document Random samplers: continuation of #31787 (#31990) 12 May 2019, 11:21:32 UTC
bfcf172 fix #31993, intersection of `Type{Vec}` and `Type{<:Vec{T}}` (#31997) 11 May 2019, 15:50:04 UTC
40296fb Don't attempt to const prop call cycles (#31996) Even if the result is unused. Fixes #31974. 11 May 2019, 15:44:25 UTC
7f2fa84 doc: clarify docstring of lmul!/rmul! (#31282) 10 May 2019, 21:35:04 UTC
f0ffb29 synchronize FileWatching (#31981) 10 May 2019, 20:06:05 UTC
25fc3a9 fix synchronization to ensure a task can only run on one thread at a time (#31619) * fix synchronization to ensure a task can only run on one thread at a time * fix hang in I/O blocking with non-sticky tasks If a thread's scheduler is running on a certain task, only add that task to its sticky queue and not the shared queue, since only that thread can run it anyway. 10 May 2019, 20:05:01 UTC
779ac77 Fix for optind in getopt on musl libc. (#31946) Fix for optind in getopt on musl libc. 10 May 2019, 16:23:52 UTC
6f463da Add GCC 9 support to `normalize_triplet.py` (#31976) 10 May 2019, 15:55:42 UTC
5486cc2 fix updated show test in #31087 (#31991) 10 May 2019, 14:17:56 UTC
8d2727b Accept both Cvoid and Ptr{Void} return type in ccall(:memcpy) (#31464) POSIX specifies that memcpy returns its first argument, which is a bit of a useless feature (e.g. the llvm intrinsic just returns `void`. Nevertheless, since we're intercepting the ccall here, we should allow it. For convenience, still allow the Cvoid return though. Fixes #31073 10 May 2019, 13:41:59 UTC
9e1b368 Some missing bidiag tests (#31888) 10 May 2019, 13:33:52 UTC
829a4a6 Fix pop_exception lowering for try-break-finally (#31766) (#31931) In the case where a finally handler was active, pop_exception was incorrectly omitted when lowering `break` inside a catch block. This leads to stale exceptions on the stack. 09 May 2019, 22:10:18 UTC
decb802 sysimg: reduce the number of special cases (#31948) Put the entire image(*) into our pre-constructed data image, instead of attempting to leave out a couple of items. This saves us a couple lines of code, and should makes it simpler to keep the list of builtin objects (gc.c "tags") up-to-date. (*) The remaining special objects are ptls->root_task, since I was unsure the best way to handle it as no other Task object is allowed to be referenced, and the small integer caches. 09 May 2019, 20:05:19 UTC
e3afef0 fix #31965, bug in interpreter stacktraces and `jl_code_requires_compiler` (#31967) 09 May 2019, 19:00:25 UTC
bf58070 Change BB tarball naming scheme to include release number (#31769) Change BB tarball naming scheme to include release number 09 May 2019, 18:42:19 UTC
14b74bc Fix world age issues in Serialization test if run in Main (#31973) Fixes #31966 09 May 2019, 16:24:41 UTC
e813f0d Expand documentation of custom random samplers. (#31787) 09 May 2019, 11:01:27 UTC
48634f9 always run on original process stack in ALWAYS_COPY_STACKS mode (#31697) this makes it possible to work around #31104 08 May 2019, 23:19:20 UTC
a526662 Revert "Don't use jl_rethrow_other for LoadError/InitError" (#31963) This reverts commit d3dbe86f49da6779c2f3af8354c6a3933f48fcad. + fixup new tests in backtrace.jl 08 May 2019, 19:58:04 UTC
4c28b36 fix #31899, type intersection involving Int in upper bound (#31960) 08 May 2019, 18:38:34 UTC
c9777b0 generate_precompile script: try to improve reliability (#30040) TTY objects are inherently unreliable input channels (documented, per posix design), so try to slow down the rate of input and speed up the rate of output by watching the output stream more closely, and detecting intermediate errors. And also just general cleanup some of our IO handling. 08 May 2019, 14:34:40 UTC
5afc335 Fix compilation with external LLVM 07 May 2019, 18:35:10 UTC
b126788 Merge pull request #31900 from musm/patch-16 Remove unused download of 7z-extra 07 May 2019, 14:45:21 UTC
a6c7c1b Merge pull request #31877 from JuliaLang/jn/lazy-ftypes types: lazy initialize the field-types when first needed 06 May 2019, 22:53:38 UTC
40ce424 Merge pull request #31942 from JuliaLang/revert-31895-jn/append_any Re-merge commit for "optimize append_any more" (#31895) 06 May 2019, 22:49:25 UTC
9de07ce Fix optind in getopt on musl libc. On exit optind points to the last non-opt argument of argv, but in the case where there are only options optind does not go beyond argc, except on musl libc, where it becomes argc + 1. 06 May 2019, 22:18:12 UTC
11ce4d1 Fix failing doctests from PR #31246. (#31934) 06 May 2019, 20:43:15 UTC
4770b7e Simplify Appveyor build script (#31917) 06 May 2019, 20:14:20 UTC
040a3e5 Unconditionally append lib/julia to rpath, fixes #31903. (#31933) 06 May 2019, 19:01:37 UTC
aa7ae5a Make --code-coverage testing more robust for filepath. (#31939) 06 May 2019, 19:00:15 UTC
1b2d3ca apply: unify append_any implementations Rather than optimize two copies of the same function, we can just have one version of the function that handles everything. 06 May 2019, 16:43:28 UTC
4ae4348 inference: improve sizeof tfunc Primitive types also always have a sizeof. This is particularly relevant for `Ptr`, since `elsize` uses `sizeof(Ptr)` to compute the stride. 06 May 2019, 16:43:25 UTC
f3312ce Revert "optimize append_any more" 06 May 2019, 16:39:49 UTC
9e9bcb8 optimize append_any more (#31895) * inference: improve sizeof tfunc Primitive types also always have a sizeof. This is particularly relevant for `Ptr`, since `elsize` uses `sizeof(Ptr)` to compute the stride. * apply: unify append_any implementations Rather than optimize two copies of the same function, we can just have one version of the function that handles everything. 06 May 2019, 16:37:21 UTC
7ef9e75 build: minor cleanup of ui/Makefile (#31919) Adds some prereqs, and makes more use of existing variables to get our desired results. Fixes #31876 Replaces #31904 Co-Authored-By: Jameson Nash <vtjnash@gmail.com> 06 May 2019, 16:34:48 UTC
bdffb56 Improve edit when editor set to Visual Studio code (#31864) By default VS Code adds `code.cmd` to path. Allow `code.cmd` within the vs code chain. 06 May 2019, 13:58:49 UTC
f189ae4 Use https for downloads of 7z and NSIS and also add checksums. (#31902) Use https for downloads of 7z and NSIS and also add checksums. 06 May 2019, 04:23:38 UTC
back to top