mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
atomicInc global alloc counters (#20571)
This commit is contained in:
@@ -1419,6 +1419,14 @@ when not defined(js) and not defined(booting) and defined(nimTrMacros):
|
||||
# unnecessary slow down in this case.
|
||||
swap(cast[ptr pointer](addr arr[a])[], cast[ptr pointer](addr arr[b])[])
|
||||
|
||||
when not defined(nimscript):
|
||||
proc atomicInc*(memLoc: var int, x: int = 1): int {.inline,
|
||||
discardable, raises: [], tags: [], benign.}
|
||||
## Atomic increment of `memLoc`. Returns the value after the operation.
|
||||
|
||||
proc atomicDec*(memLoc: var int, x: int = 1): int {.inline,
|
||||
discardable, raises: [], tags: [], benign.}
|
||||
## Atomic decrement of `memLoc`. Returns the value after the operation.
|
||||
|
||||
include "system/memalloc"
|
||||
|
||||
@@ -1636,14 +1644,6 @@ when not declared(sysFatal):
|
||||
when not defined(nimscript):
|
||||
{.push stackTrace: off, profiler: off.}
|
||||
|
||||
proc atomicInc*(memLoc: var int, x: int = 1): int {.inline,
|
||||
discardable, benign.}
|
||||
## Atomic increment of `memLoc`. Returns the value after the operation.
|
||||
|
||||
proc atomicDec*(memLoc: var int, x: int = 1): int {.inline,
|
||||
discardable, benign.}
|
||||
## Atomic decrement of `memLoc`. Returns the value after the operation.
|
||||
|
||||
include "system/atomics"
|
||||
|
||||
{.pop.}
|
||||
|
||||
@@ -80,7 +80,7 @@ when hasAlloc and not defined(js):
|
||||
|
||||
when defined(nimAllocStats):
|
||||
var stats: AllocStats
|
||||
template incStat(what: untyped) = inc stats.what
|
||||
template incStat(what: untyped) = atomicInc stats.what
|
||||
proc getAllocStats*(): AllocStats = stats
|
||||
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user