History log of /freebsd-14.2/contrib/jemalloc/FREEBSD-diffs (Results 1 – 25 of 36)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0, release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0
# 7d4374f6 05-Sep-2020 Dimitry Andric <[email protected]>

Turn MALLOC_PRODUCTION into a regular src.conf(5) option

For historical reasons, defining MALLOC_PRODUCTION in /etc/make.conf has
been used to turn off potentially expensive debug checks and statist

Turn MALLOC_PRODUCTION into a regular src.conf(5) option

For historical reasons, defining MALLOC_PRODUCTION in /etc/make.conf has
been used to turn off potentially expensive debug checks and statistics
gathering in the implementation of malloc(3).

It seems more consistent to turn this into a regular src.conf(5) option,
e.g. WITH_MALLOC_PRODUCTION / WITHOUT_MALLOC_PRODUCTION. This can then
be toggled similar to any other source build option, and turned on or
off by default for e.g. stable branches.

Reviewed by: imp, #manpages
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D26337

show more ...


Revision tags: release/11.4.0
# ea69bf7f 04-May-2020 Brooks Davis <[email protected]>

Set LG_VADDR to 48 on RISC-V.

The Sv48 PTE format is the largest currently defined address space for
RISC-V. It makes no sense to define a larger size and doing so (at
least for 64-bits) forces rtre

Set LG_VADDR to 48 on RISC-V.

The Sv48 PTE format is the largest currently defined address space for
RISC-V. It makes no sense to define a larger size and doing so (at
least for 64-bits) forces rtrees down a slow path.

Reviewed by: vangyzen, jhb, mhorne
Obtained from: CheriBSD
Sponsored by: DARPA
Differential Revision: https://reviews.freebsd.org/D24658

show more ...


# c5ad8142 23-Apr-2020 Eric van Gyzen <[email protected]>

Update jemalloc to version 5.2.1

Revert r354606 to restore r354605.

Apply one line from jemalloc commit d01b425e5d1e1 in hash_x86_128()
to fix the build with gcc, which only allows a fallthrough at

Update jemalloc to version 5.2.1

Revert r354606 to restore r354605.

Apply one line from jemalloc commit d01b425e5d1e1 in hash_x86_128()
to fix the build with gcc, which only allows a fallthrough attribute
to appear before a case or default label.

Submitted by: jasone in r354605
Discussed with: jasone
Reviewed by: bdrewery
MFC after: never, due to gcc 4.2.1
Relnotes: yes
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D24522

show more ...


# f2cb2907 11-Nov-2019 Jason Evans <[email protected]>

Revert r354605: Update jemalloc to version 5.2.1.

Compilation fails for non-llvm-based platforms.


# e1c167d0 11-Nov-2019 Jason Evans <[email protected]>

Update jemalloc to version 5.2.1.


Revision tags: release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0
# 0ef50b4e 11-May-2018 Jason Evans <[email protected]>

Update jemalloc to version 5.1.0.


# c2a2eeff 31-Jan-2018 Marius Strobl <[email protected]>

Account for the fact that jemalloc 5.0.0 dropped STATIC_PAGE_SHIFT
in favor for using LG_PAGE directly and, thus, for the fact that
host and target don't necessarily use pages of the same sizes.

App

Account for the fact that jemalloc 5.0.0 dropped STATIC_PAGE_SHIFT
in favor for using LG_PAGE directly and, thus, for the fact that
host and target don't necessarily use pages of the same sizes.

Approved by: jasone

show more ...


Revision tags: release/10.4.0, release/11.1.0
# 1a78ec89 30-Jun-2017 Jason Evans <[email protected]>

Default the abort_conf malloc option to false.

This avoids troublesome backward compatibility issues.


# b7eaed25 15-Jun-2017 Jason Evans <[email protected]>

Update jemalloc to 5.0.0.


# 8244f2aa 02-Mar-2017 Jason Evans <[email protected]>

Update jemalloc to 4.5.0.


# 7fa7f12f 04-Dec-2016 Jason Evans <[email protected]>

Update jemalloc to 4.4.0.


# bde95144 09-Nov-2016 Jason Evans <[email protected]>

Update jemalloc to 4.3.1.


Revision tags: release/11.0.1, release/11.0.0
# 62b2691e 09-Jun-2016 Jason Evans <[email protected]>

Update jemalloc to 4.2.1.


# fbb1d85e 13-May-2016 Jason Evans <[email protected]>

Work around invalid gcc warning (explicit cast apparently lost).


# 1f0a49e8 13-May-2016 Jason Evans <[email protected]>

Update jemalloc to 4.2.0.


Revision tags: release/10.3.0
# df0d881d 29-Feb-2016 Jason Evans <[email protected]>

Update jemalloc to 4.1.0.

Add missing Symbol.map entry for __aligned_alloc.

Add weak-->strong symbol binding for
{malloc_stats_print,mallctl,mallctlnametomib,mallctlbymib} -->
{__malloc_stats_print

Update jemalloc to 4.1.0.

Add missing Symbol.map entry for __aligned_alloc.

Add weak-->strong symbol binding for
{malloc_stats_print,mallctl,mallctlnametomib,mallctlbymib} -->
{__malloc_stats_print,__mallctl,__mallctlnametomib,__mallctlbymib}. These
bindings complete the set necessary to allow applications to replace all
malloc-related symbols.

show more ...


# ba4f5cc0 24-Oct-2015 Jason Evans <[email protected]>

Update jemalloc to version 4.0.4.


# 536b3538 22-Sep-2015 Jason Evans <[email protected]>

Update jemalloc to 4.0.2.


# c13244b9 19-Aug-2015 Jason Evans <[email protected]>

Fix minor malloc regressions.

- Use _Bool rather than bool to resolve missing type errors in malloc_np.h.
- Fix malloc manual page #include documentation.
- Add *allocm manual pages to obsolete file

Fix minor malloc regressions.

- Use _Bool rather than bool to resolve missing type errors in malloc_np.h.
- Fix malloc manual page #include documentation.
- Add *allocm manual pages to obsolete files.

Submitted by: jbeich

show more ...


# 337776f8 18-Aug-2015 Jason Evans <[email protected]>

Define CPU_SPINWAIT as cpu_spinwait().

Submitted by: cem


# d8e39d2d 18-Aug-2015 Jason Evans <[email protected]>

Re-add LG_SIZEOF_PTR definition for __aarch64__.

This definition was erroneously removed during the 4.0.0 import.


# d0e79aa3 18-Aug-2015 Jason Evans <[email protected]>

Update jemalloc to version 4.0.0.


Revision tags: release/10.2.0, release/10.1.0, release/9.3.0
# 2fff27f8 31-Mar-2014 Jason Evans <[email protected]>

Update jemalloc to version 3.6.0.


# f921d10f 23-Jan-2014 Jason Evans <[email protected]>

Update jemalloc to version 3.5.0.


Revision tags: release/10.0.0
# 2b06b201 21-Oct-2013 Jason Evans <[email protected]>

Update jemalloc to version 3.4.1.


12