index
:
Nim
this commit
devel
This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)
ahoang <ahoang@tilde.institute>
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
compiler
/
vmgen.nim
Commit message (
Expand
)
Author
Age
Files
Lines
*
make vmgen more robust in the context of 'nim check'
Araq
2016-12-31
1
-2
/
+3
*
removed tyArrayConstr completely from the compiler; introduced tyAlias instea...
Araq
2016-11-14
1
-1
/
+1
*
fixes #4915
andri lim
2016-10-27
1
-1
/
+1
*
fixes regression
Andreas Rumpf
2016-08-26
1
-1
/
+1
*
remove unused stuff
Jacek Sieka
2016-08-09
1
-14
/
+0
*
attempt to fix #4065
Andreas Rumpf
2016-08-04
1
-2
/
+1
*
compiler almost free of deprecated expr/stmt names
Andreas Rumpf
2016-07-30
1
-2
/
+2
*
stdlib and compiler don't use .immediate anymore
Andreas Rumpf
2016-07-29
1
-2
/
+2
*
added system.newSeqOfCap for improved efficiency
Andreas Rumpf
2016-07-15
1
-2
/
+14
*
fixes #2730
Andreas Rumpf
2016-07-13
1
-2
/
+2
*
fixes #4462
Andreas Rumpf
2016-07-08
1
-3
/
+5
*
fixes #4371
Andreas Rumpf
2016-07-08
1
-1
/
+1
*
Merge branch 'devel' of github.com:nim-lang/Nim into devel
Andreas Rumpf
2016-07-06
1
-1
/
+4
|
\
|
*
Fixed vm codegen for a call with compile-time args. Fixes #4412.
Yuriy Glukhov
2016-07-06
1
-1
/
+4
*
|
fixes #537
Andreas Rumpf
2016-07-06
1
-10
/
+16
|
/
*
system. for cstrings uses value comparisons, not reference comparisons
Andreas Rumpf
2016-06-02
1
-2
/
+2
*
fixes #1713
Andreas Rumpf
2016-05-30
1
-4
/
+8
*
Merge pull request #4113 from jcosborn/gettypeinst
Andreas Rumpf
2016-05-28
1
-1
/
+6
|
\
|
*
getTypeInst and getTypeImpl mostly working now and added test
James Osborn
2016-05-04
1
-1
/
+2
|
*
added getTypeInst which includes generic parameters
James Osborn
2016-05-04
1
-1
/
+5
*
|
fixes #3956
Andreas Rumpf
2016-05-11
1
-4
/
+5
|
/
*
fixes #3731
Andreas Rumpf
2016-04-04
1
-3
/
+11
*
fixes #3561, fixes pan>
SysLockAttr
initSysLockAttr
(
a
)
setSysLockType
(
a
,
SysLockType_Reentrant
())
initSysLock
(
lock
,
a
.
addr
)
else
:
initSysLock
(
lock
)
proc
deinitRLock
*
(
lock
:
var
RLock
)
{.inline.}
=
## Frees the resources associated with the lock.
deinitSys
(
lock
)
proc
tryAcquire
*
(
lock
:
var
RLock
):
bool
=
## Tries to acquire the given lock. Returns `true` on success.
result
=
tryAcquireSys
(
lock
)
proc
acquire
*
(
lock
:
var
RLock
)
=
## Acquires the given lock.
acquireSys
(
lock
)
proc
release
*
(
lock
:
var
RLock
)
=
## Releases the given lock.
releaseSys
(
lock
)
template
withRLock
*
(
lock
:
var
RLock
,
code
:
untyped
):
untyped
=
## Acquires the given lock and then executes the code.
block
:
acquire
(
lock
)
defer
:
release
(
lock
)
{.locks
:
[lock].}:
code
pan>
1
-0
/
+1
*
VM: repl supports global variables properly"
Araq
2015-08-16
1
-3
/
+3
*
Merge pull request #3177 from zah/generic-types-in-macros
Andreas Rumpf
2015-08-14
1
-2
/
+23
|
\
|
*
Disable the new generic params handling for immediate template and macros
Zahary Karadjov
2015-08-02
1
-1
/
+5
|
*
fix #1858 again; restores the support for static macro params
Zahary Karadjov
2015-08-02
1
-2
/
+19
*
|
fixes #3066
Araq
2015-08-09
1
-0
/
+3
*
|
fixes #1329
Araq
2015-08-09
1
-0
/
+2
|
/
*
emerald project has a chance of working
Araq
2015-08-02
1
-9
/
+18
*
staticExec now supports caching
Araq
2015-07-15
1
-1
/
+13
*
macros: Introduce sameType(a, b) for node types
Adam Strzelecki
2015-07-03
1
-0
/
+1
*
fixes #3041
Araq
2015-07-02
1
-20
/
+26
*
fixes #2297, fixes #2946
Araq
2015-06-18
1
-6
/
+1
*
Removed magics: mAbsI64
rku
2015-06-10
1
-1
/
+1
*
Removed magics: mBitnotI64
rku
2015-06-10
1
-1
/
+1
*
Removed magics: mEqI64 mLtI64 mLeI64
rku
2015-06-10
1
-3
/
+3
[next]