diff options
author | Yuriy Glukhov <yuriy.glukhov@gmail.com> | 2016-08-08 14:08:10 +0300 |
---|---|---|
committer | Yuriy Glukhov <yuriy.glukhov@gmail.com> | 2016-08-08 15:47:18 +0300 |
commit | 8d86c6ed8476756d07651707ef030a58b48214e6 (patch) | |
tree | f969845a4ffb1390ff54ba8b7e620c76dd4436a1 /lib | |
parent | 872f3a4ab1fcc9f4467fa92e3e34e9f2afe9000b (diff) | |
download | Nim-8d86c6ed8476756d07651707ef030a58b48214e6.tar.gz |
Optimized swapping of ref array elements.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/system.nim b/lib/system.nim index 66daf3be1..23f9227c3 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1744,6 +1744,13 @@ proc swap*[T](a, b: var T) {.magic: "Swap", noSideEffect.} ## swaps the values `a` and `b`. This is often more efficient than ## ``tmp = a; a = b; b = tmp``. Particularly useful for sorting algorithms. +when not defined(js) and not defined(booting): + template swapRefsInArray*{swap(arr[a], arr[b])}(arr: openarray[ref], a, b: int) = + # Optimize swapping of array elements if they are refs. Default swap + # implementation will cause unsureAsgnRef to be emitted which causes + # unnecessary slow down in this case. + swap(cast[ptr pointer](addr arr[a])[], cast[ptr pointer](addr arr[b])[]) + template `>=%` *(x, y: untyped): untyped = y <=% x ## treats `x` and `y` as unsigned and compares them. ## Returns true iff ``unsigned(x) >= unsigned(y)``. |