mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
* IC: renamed to_packed_ast module to ic module * IC: don't store the --forceBuild flag, makes it easier to test * IC: enable hello world test * Codegen: refactorings for IC; changed the name mangling algorithm * fixed the HCR regressions * life is too short for HCR * tconvexhull is now allowed to use deepCopy * IC exposed a stdlib bug, required a refactoring * codegen: code cleanups * IC: even if a module is outdated, its dependencies might come from disk * IC: progress * IC: better name mangling, module IDs are not stable * IC: another refactoring helping with --ic:on --gc:arc * disable arraymancer on Windows for the time being * disable arraymancer altogether * IC: make basic test work with 'nim cpp' * IC: progress on --ic:on --gc:arc * wip; name mangling for type info
28 lines
627 B
Nim
28 lines
627 B
Nim
#
|
|
#
|
|
# Nim's Runtime Library
|
|
# (c) Copyright 2012 Andreas Rumpf
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
#
|
|
|
|
# set handling
|
|
|
|
type
|
|
NimSet = array[0..4*2048-1, uint8]
|
|
|
|
# bitops can't be imported here, therefore the code duplication.
|
|
|
|
proc cardSet(s: NimSet, len: int): int {.compilerproc, inline.} =
|
|
var i = 0
|
|
result = 0
|
|
when defined(x86) or defined(amd64):
|
|
while i < len - 8:
|
|
inc(result, countBits64((cast[ptr uint64](s[i].unsafeAddr))[]))
|
|
inc(i, 8)
|
|
|
|
while i < len:
|
|
inc(result, countBits32(uint32(s[i])))
|
|
inc(i, 1)
|