summary refs log tree commit diff stats
path: root/rod
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-laptop>2010-05-29 00:39:33 +0200
committerAndreas Rumpf <andreas@andreas-laptop>2010-05-29 00:39:33 +0200
commit9a22ae02173d5c026a24a0c145e72531978c9268 (patch)
treeed0dfe1160b873b75e19f4357c4e1649ef9017bf /rod
parentb34b1dbc6c7290a893149aa9f5ea5d54a37c8522 (diff)
parent286e5958d662038fdc852861ecd07c89256495ab (diff)
downloadNim-9a22ae02173d5c026a24a0c145e72531978c9268.tar.gz
resolved system.nim conflicts
Diffstat (limited to 'rod')
-rwxr-xr-xrod/ccgexprs.nim1070
1 files changed, 535 insertions, 535 deletions
diff --git a/rod/ccgexprs.nim b/rod/ccgexprs.nim
index 2fbaf2d4a..1e39508d9 100755
--- a/rod/ccgexprs.nim
+++ b/rod/ccgexprs.nim
@@ -9,177 +9,177 @@
 
 # -------------------------- constant expressions ------------------------
 
-proc intLiteral(i: biggestInt): PRope = 
-  if (i > low(int32)) and (i <= high(int32)): 
+proc intLiteral(i: biggestInt): PRope =
+  if (i > low(int32)) and (i <= high(int32)):
     result = toRope(i)
   elif i == low(int32):       # Nimrod has the same bug for the same reasons :-)
     result = toRope("(-2147483647 -1)")
-  elif i > low(int64): 
+  elif i > low(int64):
     result = ropef("IL64($1)", [toRope(i)])
-  else: 
+  else:
     result = toRope("(IL64(-9223372036854775807) - IL64(1))")
-  
-proc int32Literal(i: Int): PRope = 
-  if i == int(low(int32)): 
+
+proc int32Literal(i: Int): PRope =
+  if i == int(low(int32)):
     result = toRope("(-2147483647 -1)")
-  else: 
+  else:
     result = toRope(i)
-  
-proc genHexLiteral(v: PNode): PRope = 
+
+proc genHexLiteral(v: PNode): PRope =
   # hex literals are unsigned in C
   # so we don't generate hex literals any longer.
-  if not (v.kind in {nkIntLit..nkInt64Lit}): 
+  if not (v.kind in {nkIntLit..nkInt64Lit}):
     internalError(v.info, "genHexLiteral")
   result = intLiteral(v.intVal)
 
-proc getStrLit(m: BModule, s: string): PRope = 
+proc getStrLit(m: BModule, s: string): PRope =
   useMagic(m, "TGenericSeq")
   result = con("TMP", toRope(getID()))
-  appf(m.s[cfsData], "STRING_LITERAL($1, $2, $3);$n", 
+  appf(m.s[cfsData], "STRING_LITERAL($1, $2, $3);$n",
        [result, makeCString(s), ToRope(len(s))])
 
-proc genLiteral(p: BProc, v: PNode, ty: PType): PRope = 
+proc genLiteral(p: BProc, v: PNode, ty: PType): PRope =
   if ty == nil: internalError(v.info, "genLiteral: ty is nil")
   case v.kind
-  of nkCharLit..nkInt64Lit: 
+  of nkCharLit..nkInt64Lit:
     case skipTypes(ty, abstractVarRange).kind
-    of tyChar, tyInt64, tyNil: 
+    of tyChar, tyInt64, tyNil:
       result = intLiteral(v.intVal)
-    of tyInt8: 
+    of tyInt8:
       result = ropef("((NI8) $1)", [intLiteral(biggestInt(int8(v.intVal)))])
-    of tyInt16: 
+    of tyInt16:
       result = ropef("((NI16) $1)", [intLiteral(biggestInt(int16(v.intVal)))])
-    of tyInt32: 
+    of tyInt32:
       result = ropef("((NI32) $1)", [intLiteral(biggestInt(int32(v.intVal)))])
-    of tyInt: 
-      if (v.intVal >= low(int32)) and (v.intVal <= high(int32)): 
+    of tyInt:
+      if (v.intVal >= low(int32)) and (v.intVal <= high(int32)):
         result = int32Literal(int32(v.intVal))
-      else: 
+      else:
         result = intLiteral(v.intVal)
-    of tyBool: 
+    of tyBool:
       if v.intVal != 0: result = toRope("NIM_TRUE")
       else: result = toRope("NIM_FALSE")
-    else: 
-      result = ropef("(($1) $2)", [getTypeDesc(p.module, 
+    else:
+      result = ropef("(($1) $2)", [getTypeDesc(p.module,
           skipTypes(ty, abstractVarRange)), intLiteral(v.intVal)])
-  of nkNilLit: 
+  of nkNilLit:
     result = toRope("NIM_NIL")
-  of nkStrLit..nkTripleStrLit: 
-    if skipTypes(ty, abstractVarRange).kind == tyString: 
+  of nkStrLit..nkTripleStrLit:
+    if skipTypes(ty, abstractVarRange).kind == tyString:
       var id = NodeTableTestOrSet(p.module.dataCache, v, gid)
-      if id == gid: 
+      if id == gid:
         # string literal not found in the cache:
         useMagic(p.module, "NimStringDesc")
         result = ropef("((NimStringDesc*) &$1)", [getStrLit(p.module, v.strVal)])
-      else: 
+      else:
         result = ropef("((NimStringDesc*) &TMP$1)", [toRope(id)])
-    else: 
+    else:
       result = makeCString(v.strVal)
-  of nkFloatLit..nkFloat64Lit: 
+  of nkFloatLit..nkFloat64Lit:
     var f = v.floatVal
-    if f != f: 
+    if f != f:
       result = toRope("NAN")
-    elif f == 0.0: 
+    elif f == 0.0:
       result = toRopeF(f)
-    elif f == 0.5 * f: 
+    elif f == 0.5 * f:
       if f > 0.0: result = toRope("INF")
       else: result = toRope("-INF")
-    else: 
+    else:
       result = toRopeF(f)
-  else: 
+  else:
     InternalError(v.info, "genLiteral(" & $v.kind & ')')
     result = nil
 
-proc genLiteral(p: BProc, v: PNode): PRope = 
+proc genLiteral(p: BProc, v: PNode): PRope =
   result = genLiteral(p, v, v.typ)
 
-proc bitSetToWord(s: TBitSet, size: int): BiggestInt = 
+proc bitSetToWord(s: TBitSet, size: int): BiggestInt =
   result = 0
-  if CPU[platform.hostCPU].endian == CPU[targetCPU].endian: 
-    for j in countup(0, size - 1): 
+  if CPU[platform.hostCPU].endian == CPU[targetCPU].endian:
+    for j in countup(0, size - 1):
       if j < len(s): result = result or `shl`(Ze64(s[j]), j * 8)
-  else: 
-    for j in countup(0, size - 1): 
+  else:
+    for j in countup(0, size - 1):
       if j < len(s): result = result or `shl`(Ze64(s[j]), (Size - 1 - j) * 8)
-  
-proc genRawSetData(cs: TBitSet, size: int): PRope = 
+
+proc genRawSetData(cs: TBitSet, size: int): PRope =
   var frmt: TFormatStr
-  if size > 8: 
+  if size > 8:
     result = toRope('{' & tnl)
-    for i in countup(0, size - 1): 
-      if i < size - 1: 
+    for i in countup(0, size - 1):
+      if i < size - 1:
         # not last iteration?
         if (i + 1) mod 8 == 0: frmt = "0x$1,$n"
         else: frmt = "0x$1, "
-      else: 
+      else:
         frmt = "0x$1}$n"
       appf(result, frmt, [toRope(toHex(Ze64(cs[i]), 2))])
-  else: 
+  else:
     result = intLiteral(bitSetToWord(cs, size))
     #  result := toRope('0x' + ToHex(bitSetToWord(cs, size), size * 2))
-  
-proc genSetNode(p: BProc, n: PNode): PRope = 
-  var 
+
+proc genSetNode(p: BProc, n: PNode): PRope =
+  var
     cs: TBitSet
     size, id: int
   size = int(getSize(n.typ))
   toBitSet(n, cs)
-  if size > 8: 
+  if size > 8:
     id = NodeTableTestOrSet(p.module.dataCache, n, gid)
     result = con("TMP", toRope(id))
-    if id == gid: 
+    if id == gid:
       # not found in cache:
       inc(gid)
-      appf(p.module.s[cfsData], "static NIM_CONST $1 $2 = $3;", 
+      appf(p.module.s[cfsData], "static NIM_CONST $1 $2 = $3;",
            [getTypeDesc(p.module, n.typ), result, genRawSetData(cs, size)])
-  else: 
+  else:
     result = genRawSetData(cs, size)
-  
-proc getStorageLoc(n: PNode): TStorageLoc = 
+
+proc getStorageLoc(n: PNode): TStorageLoc =
   case n.kind
-  of nkSym: 
+  of nkSym:
     case n.sym.kind
-    of skParam, skForVar, skTemp: 
+    of skParam, skForVar, skTemp:
       result = OnStack
-    of skVar: 
+    of skVar:
       if sfGlobal in n.sym.flags: result = OnHeap
       else: result = OnStack
     else: result = OnUnknown
-  of nkDerefExpr, nkHiddenDeref: 
+  of nkDerefExpr, nkHiddenDeref:
     case n.sons[0].typ.kind
     of tyVar: result = OnUnknown
     of tyPtr: result = OnStack
     of tyRef: result = OnHeap
     else: InternalError(n.info, "getStorageLoc")
-  of nkBracketExpr, nkDotExpr, nkObjDownConv, nkObjUpConv: 
+  of nkBracketExpr, nkDotExpr, nkObjDownConv, nkObjUpConv:
     result = getStorageLoc(n.sons[0])
   else: result = OnUnknown
-  
-proc rdLoc(a: TLoc): PRope = 
+
+proc rdLoc(a: TLoc): PRope =
   # 'read' location (deref if indirect)
   result = a.r
   if lfIndirect in a.flags: result = ropef("(*$1)", [result])
-  
-proc addrLoc(a: TLoc): PRope = 
+
+proc addrLoc(a: TLoc): PRope =
   result = a.r
   if not (lfIndirect in a.flags): result = con("&", result)
-  
-proc rdCharLoc(a: TLoc): PRope = 
+
+proc rdCharLoc(a: TLoc): PRope =
   # read a location that may need a char-cast:
   result = rdLoc(a)
-  if skipTypes(a.t, abstractRange).kind == tyChar: 
+  if skipTypes(a.t, abstractRange).kind == tyChar:
     result = ropef("((NU8)($1))", [result])
-  
-type 
-  TAssignmentFlag = enum 
-    needToCopy, needForSubtypeCheck, afDestIsNil, afDestIsNotNil, afSrcIsNil, 
+
+type
+  TAssignmentFlag = enum
+    needToCopy, needForSubtypeCheck, afDestIsNil, afDestIsNotNil, afSrcIsNil,
     afSrcIsNotNil
   TAssignmentFlags = set[TAssignmentFlag]
 
-proc genRefAssign(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) = 
-  if (dest.s == OnStack) or not (optRefcGC in gGlobalOptions): 
+proc genRefAssign(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) =
+  if (dest.s == OnStack) or not (optRefcGC in gGlobalOptions):
     appf(p.s[cpsStmts], "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
-  elif dest.s == OnHeap: 
+  elif dest.s == OnHeap:
     # location is on heap
     # now the writer barrier is inlined for performance:
     #
@@ -199,121 +199,121 @@ proc genRefAssign(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) =
     #      UseMagic(p.module, 'nimGCunref');
     #      appf(p.s[cpsStmts], 'if ($1) nimGCunref($1);$n', [rdLoc(dest)]);
     #    end;
-    #    appf(p.s[cpsStmts], '$1 = $2;$n', [rdLoc(dest), rdLoc(src)]); 
-    if canFormAcycle(dest.t): 
+    #    appf(p.s[cpsStmts], '$1 = $2;$n', [rdLoc(dest), rdLoc(src)]);
+    if canFormAcycle(dest.t):
       UseMagic(p.module, "asgnRef")
-      appf(p.s[cpsStmts], "asgnRef((void**) $1, $2);$n", 
+      appf(p.s[cpsStmts], "asgnRef((void**) $1, $2);$n",
            [addrLoc(dest), rdLoc(src)])
-    else: 
+    else:
       UseMagic(p.module, "asgnRefNoCycle")
-      appf(p.s[cpsStmts], "asgnRefNoCycle((void**) $1, $2);$n", 
+      appf(p.s[cpsStmts], "asgnRefNoCycle((void**) $1, $2);$n",
            [addrLoc(dest), rdLoc(src)])
-  else: 
+  else:
     UseMagic(p.module, "unsureAsgnRef")
-    appf(p.s[cpsStmts], "unsureAsgnRef((void**) $1, $2);$n", 
+    appf(p.s[cpsStmts], "unsureAsgnRef((void**) $1, $2);$n",
          [addrLoc(dest), rdLoc(src)])
 
-proc genAssignment(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) = 
+proc genAssignment(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) =
   # This function replaces all other methods for generating
   # the assignment operation in C.
   var ty = skipTypes(dest.t, abstractVarRange)
   case ty.kind
-  of tyRef: 
+  of tyRef:
     genRefAssign(p, dest, src, flags)
-  of tySequence: 
-    if not (needToCopy in flags): 
+  of tySequence:
+    if not (needToCopy in flags):
       genRefAssign(p, dest, src, flags)
-    else: 
+    else:
       useMagic(p.module, "genericSeqAssign") # BUGFIX
-      appf(p.s[cpsStmts], "genericSeqAssign($1, $2, $3);$n", 
+      appf(p.s[cpsStmts], "genericSeqAssign($1, $2, $3);$n",
            [addrLoc(dest), rdLoc(src), genTypeInfo(p.module, dest.t)])
-  of tyString: 
-    if not (needToCopy in flags): 
+  of tyString:
+    if not (needToCopy in flags):
       genRefAssign(p, dest, src, flags)
-    else: 
+    else:
       useMagic(p.module, "copyString")
-      if (dest.s == OnStack) or not (optRefcGC in gGlobalOptions): 
+      if (dest.s == OnStack) or not (optRefcGC in gGlobalOptions):
         appf(p.s[cpsStmts], "$1 = copyString($2);$n", [rdLoc(dest), rdLoc(src)])
-      elif dest.s == OnHeap: 
+      elif dest.s == OnHeap:
         useMagic(p.module, "asgnRefNoCycle")
         useMagic(p.module, "copyString") # BUGFIX
-        appf(p.s[cpsStmts], "asgnRefNoCycle((void**) $1, copyString($2));$n", 
+        appf(p.s[cpsStmts], "asgnRefNoCycle((void**) $1, copyString($2));$n",
              [addrLoc(dest), rdLoc(src)])
-      else: 
+      else:
         useMagic(p.module, "unsureAsgnRef")
         useMagic(p.module, "copyString") # BUGFIX
-        appf(p.s[cpsStmts], "unsureAsgnRef((void**) $1, copyString($2));$n", 
+        appf(p.s[cpsStmts], "unsureAsgnRef((void**) $1, copyString($2));$n",
              [addrLoc(dest), rdLoc(src)])
-  of tyTuple: 
-    if needsComplexAssignment(dest.t): 
+  of tyTuple:
+    if needsComplexAssignment(dest.t):
       useMagic(p.module, "genericAssign")
-      appf(p.s[cpsStmts], "genericAssign((void*)$1, (void*)$2, $3);$n", 
+      appf(p.s[cpsStmts], "genericAssign((void*)$1, (void*)$2, $3);$n",
            [addrLoc(dest), addrLoc(src), genTypeInfo(p.module, dest.t)])
-    else: 
+    else:
       appf(p.s[cpsStmts], "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
-  of tyArray, tyArrayConstr: 
-    if needsComplexAssignment(dest.t): 
+  of tyArray, tyArrayConstr:
+    if needsComplexAssignment(dest.t):
       useMagic(p.module, "genericAssign")
-      appf(p.s[cpsStmts], "genericAssign((void*)$1, (void*)$2, $3);$n", 
+      appf(p.s[cpsStmts], "genericAssign((void*)$1, (void*)$2, $3);$n",
            [addrLoc(dest), addrLoc(src), genTypeInfo(p.module, dest.t)])
-    else: 
-      appf(p.s[cpsStmts], 
-           "memcpy((void*)$1, (NIM_CONST void*)$2, sizeof($1));$n", 
+    else:
+      appf(p.s[cpsStmts],
+           "memcpy((void*)$1, (NIM_CONST void*)$2, sizeof($1));$n",
            [rdLoc(dest), rdLoc(src)])
   of tyObject:                # XXX: check for subtyping?
-    if needsComplexAssignment(dest.t): 
+    if needsComplexAssignment(dest.t):
       useMagic(p.module, "genericAssign")
-      appf(p.s[cpsStmts], "genericAssign((void*)$1, (void*)$2, $3);$n", 
+      appf(p.s[cpsStmts], "genericAssign((void*)$1, (void*)$2, $3);$n",
            [addrLoc(dest), addrLoc(src), genTypeInfo(p.module, dest.t)])
-    else: 
+    else:
       appf(p.s[cpsStmts], "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
-  of tyOpenArray: 
+  of tyOpenArray:
     # open arrays are always on the stack - really? What if a sequence is
     # passed to an open array?
-    if needsComplexAssignment(dest.t): 
+    if needsComplexAssignment(dest.t):
       useMagic(p.module, "genericAssignOpenArray")
       appf(p.s[cpsStmts],     # XXX: is this correct for arrays?
-           "genericAssignOpenArray((void*)$1, (void*)$2, $1Len0, $3);$n", 
+           "genericAssignOpenArray((void*)$1, (void*)$2, $1Len0, $3);$n",
            [addrLoc(dest), addrLoc(src), genTypeInfo(p.module, dest.t)])
-    else: 
-      appf(p.s[cpsStmts], 
-           "memcpy((void*)$1, (NIM_CONST void*)$2, sizeof($1[0])*$1Len0);$n", 
+    else:
+      appf(p.s[cpsStmts],
+           "memcpy((void*)$1, (NIM_CONST void*)$2, sizeof($1[0])*$1Len0);$n",
            [rdLoc(dest), rdLoc(src)])
-  of tySet: 
-    if mapType(ty) == ctArray: 
-      appf(p.s[cpsStmts], "memcpy((void*)$1, (NIM_CONST void*)$2, $3);$n", 
+  of tySet:
+    if mapType(ty) == ctArray:
+      appf(p.s[cpsStmts], "memcpy((void*)$1, (NIM_CONST void*)$2, $3);$n",
            [rdLoc(dest), rdLoc(src), toRope(getSize(dest.t))])
-    else: 
+    else:
       appf(p.s[cpsStmts], "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
-  of tyPtr, tyPointer, tyChar, tyBool, tyProc, tyEnum, tyCString, 
-     tyInt..tyFloat128, tyRange: 
+  of tyPtr, tyPointer, tyChar, tyBool, tyProc, tyEnum, tyCString,
+     tyInt..tyFloat128, tyRange:
     appf(p.s[cpsStmts], "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
   else: InternalError("genAssignment(" & $ty.kind & ')')
-  
+
 proc expr(p: BProc, e: PNode, d: var TLoc)
-proc initLocExpr(p: BProc, e: PNode, result: var TLoc) = 
+proc initLocExpr(p: BProc, e: PNode, result: var TLoc) =
   initLoc(result, locNone, getUniqueType(e.typ), OnUnknown)
   expr(p, e, result)
 
-proc getDestLoc(p: BProc, d: var TLoc, typ: PType) = 
+proc getDestLoc(p: BProc, d: var TLoc, typ: PType) =
   if d.k == locNone: getTemp(p, typ, d)
-  
-proc putLocIntoDest(p: BProc, d: var TLoc, s: TLoc) = 
-  if d.k != locNone: 
+
+proc putLocIntoDest(p: BProc, d: var TLoc, s: TLoc) =
+  if d.k != locNone:
     if lfNoDeepCopy in d.flags: genAssignment(p, d, s, {})
     else: genAssignment(p, d, s, {needToCopy})
-  else: 
+  else:
     d = s                     # ``d`` is free, so fill it with ``s``
-  
-proc putIntoDest(p: BProc, d: var TLoc, t: PType, r: PRope) = 
+
+proc putIntoDest(p: BProc, d: var TLoc, t: PType, r: PRope) =
   var a: TLoc
-  if d.k != locNone: 
+  if d.k != locNone:
     # need to generate an assignment here
     initLoc(a, locExpr, getUniqueType(t), OnUnknown)
     a.r = r
     if lfNoDeepCopy in d.flags: genAssignment(p, d, a, {})
     else: genAssignment(p, d, a, {needToCopy})
-  else: 
+  else:
     # we cannot call initLoc() here as that would overwrite
     # the flags field!
     d.k = locExpr
@@ -321,7 +321,7 @@ proc putIntoDest(p: BProc, d: var TLoc, t: PType, r: PRope) =
     d.r = r
     d.a = - 1
 
-proc binaryStmt(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) = 
+proc binaryStmt(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   var a, b: TLoc
   if (d.k != locNone): InternalError(e.info, "binaryStmt")
   if magic != "": useMagic(p.module, magic)
@@ -329,14 +329,14 @@ proc binaryStmt(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   InitLocExpr(p, e.sons[2], b)
   appf(p.s[cpsStmts], frmt, [rdLoc(a), rdLoc(b)])
 
-proc unaryStmt(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) = 
+proc unaryStmt(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   var a: TLoc
   if (d.k != locNone): InternalError(e.info, "unaryStmt")
   if magic != "": useMagic(p.module, magic)
   InitLocExpr(p, e.sons[1], a)
   appf(p.s[cpsStmts], frmt, [rdLoc(a)])
 
-proc binaryStmtChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) = 
+proc binaryStmtChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   var a, b: TLoc
   if (d.k != locNone): InternalError(e.info, "binaryStmtChar")
   if magic != "": useMagic(p.module, magic)
@@ -344,7 +344,7 @@ proc binaryStmtChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   InitLocExpr(p, e.sons[2], b)
   appf(p.s[cpsStmts], frmt, [rdCharLoc(a), rdCharLoc(b)])
 
-proc binaryExpr(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) = 
+proc binaryExpr(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   var a, b: TLoc
   if magic != "": useMagic(p.module, magic)
   assert(e.sons[1].typ != nil)
@@ -353,7 +353,7 @@ proc binaryExpr(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   InitLocExpr(p, e.sons[2], b)
   putIntoDest(p, d, e.typ, ropef(frmt, [rdLoc(a), rdLoc(b)]))
 
-proc binaryExprChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) = 
+proc binaryExprChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   var a, b: TLoc
   if magic != "": useMagic(p.module, magic)
   assert(e.sons[1].typ != nil)
@@ -362,24 +362,24 @@ proc binaryExprChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   InitLocExpr(p, e.sons[2], b)
   putIntoDest(p, d, e.typ, ropef(frmt, [rdCharLoc(a), rdCharLoc(b)]))
 
-proc unaryExpr(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) = 
+proc unaryExpr(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   var a: TLoc
   if magic != "": useMagic(p.module, magic)
   InitLocExpr(p, e.sons[1], a)
   putIntoDest(p, d, e.typ, ropef(frmt, [rdLoc(a)]))
 
-proc unaryExprChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) = 
+proc unaryExprChar(p: BProc, e: PNode, d: var TLoc, magic, frmt: string) =
   var a: TLoc
   if magic != "": useMagic(p.module, magic)
   InitLocExpr(p, e.sons[1], a)
   putIntoDest(p, d, e.typ, ropef(frmt, [rdCharLoc(a)]))
 
-proc binaryArithOverflow(p: BProc, e: PNode, d: var TLoc, m: TMagic) = 
-  const 
-    prc: array[mAddi..mModi64, string] = ["addInt", "subInt", "mulInt", 
-      "divInt", "modInt", "addInt64", "subInt64", "mulInt64", "divInt64", 
+proc binaryArithOverflow(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
+  const
+    prc: array[mAddi..mModi64, string] = ["addInt", "subInt", "mulInt",
+      "divInt", "modInt", "addInt64", "subInt64", "mulInt64", "divInt64",
       "modInt64"]
-    opr: array[mAddi..mModi64, string] = ["+", "-", "*", "/", "%", "+", "-", 
+    opr: array[mAddi..mModi64, string] = ["+", "-", "*", "/", "%", "+", "-",
       "*", "/", "%"]
   var a, b: TLoc
   assert(e.sons[1].typ != nil)
@@ -387,51 +387,51 @@ proc binaryArithOverflow(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
   InitLocExpr(p, e.sons[1], a)
   InitLocExpr(p, e.sons[2], b)
   var t = skipTypes(e.typ, abstractRange)
-  if getSize(t) >= platform.IntSize: 
-    if optOverflowCheck in p.options: 
+  if getSize(t) >= platform.IntSize:
+    if optOverflowCheck in p.options:
       useMagic(p.module, prc[m])
-      putIntoDest(p, d, e.typ, 
+      putIntoDest(p, d, e.typ,
                   ropef("$1($2, $3)", [toRope(prc[m]), rdLoc(a), rdLoc(b)]))
-    else: 
-      putIntoDest(p, d, e.typ, ropef("(NI$4)($2 $1 $3)", [toRope(opr[m]), 
+    else:
+      putIntoDest(p, d, e.typ, ropef("(NI$4)($2 $1 $3)", [toRope(opr[m]),
           rdLoc(a), rdLoc(b), toRope(getSize(t) * 8)]))
-  else: 
-    if optOverflowCheck in p.options: 
+  else:
+    if optOverflowCheck in p.options:
       useMagic(p.module, "raiseOverflow")
-      if (m == mModI) or (m == mDivI): 
+      if (m == mModI) or (m == mDivI):
         useMagic(p.module, "raiseDivByZero")
         appf(p.s[cpsStmts], "if (!$1) raiseDivByZero();$n", [rdLoc(b)])
       a.r = ropef("((NI)($2) $1 (NI)($3))", [toRope(opr[m]), rdLoc(a), rdLoc(b)])
       if d.k == locNone: getTemp(p, getSysType(tyInt), d)
       genAssignment(p, d, a, {})
-      appf(p.s[cpsStmts], "if ($1 < $2 || $1 > $3) raiseOverflow();$n", 
+      appf(p.s[cpsStmts], "if ($1 < $2 || $1 > $3) raiseOverflow();$n",
            [rdLoc(d), intLiteral(firstOrd(t)), intLiteral(lastOrd(t))])
       d.t = e.typ
       d.r = ropef("(NI$1)($2)", [toRope(getSize(t) * 8), rdLoc(d)])
-    else: 
-      putIntoDest(p, d, e.typ, ropef("(NI$4)($2 $1 $3)", [toRope(opr[m]), 
+    else:
+      putIntoDest(p, d, e.typ, ropef("(NI$4)($2 $1 $3)", [toRope(opr[m]),
           rdLoc(a), rdLoc(b), toRope(getSize(t) * 8)]))
-  
-proc unaryArithOverflow(p: BProc, e: PNode, d: var TLoc, m: TMagic) = 
-  const 
+
+proc unaryArithOverflow(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
+  const
     opr: array[mUnaryMinusI..mAbsI64, string] = ["((NI$2)-($1))", # UnaryMinusI
       "-($1)",                # UnaryMinusI64
       "(NI$2)abs($1)",        # AbsI
       "($1 > 0? ($1) : -($1))"] # AbsI64
-  var 
+  var
     a: TLoc
     t: PType
   assert(e.sons[1].typ != nil)
   InitLocExpr(p, e.sons[1], a)
   t = skipTypes(e.typ, abstractRange)
-  if optOverflowCheck in p.options: 
+  if optOverflowCheck in p.options:
     useMagic(p.module, "raiseOverflow")
-    appf(p.s[cpsStmts], "if ($1 == $2) raiseOverflow();$n", 
+    appf(p.s[cpsStmts], "if ($1 == $2) raiseOverflow();$n",
          [rdLoc(a), intLiteral(firstOrd(t))])
   putIntoDest(p, d, e.typ, ropef(opr[m], [rdLoc(a), toRope(getSize(t) * 8)]))
 
-proc binaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) = 
-  const 
+proc binaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
+  const
     binArithTab: array[mAddF64..mXor, string] = [
       "($1 + $2)",            # AddF64
       "($1 - $2)",            # SubF64
@@ -492,7 +492,7 @@ proc binaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
       "($1 < $2)",            # LtPtr
       "($1 == $2)",           # EqCString
       "($1 != $2)"]           # Xor
-  var 
+  var
     a, b: TLoc
     s: biggestInt
   assert(e.sons[1].typ != nil)
@@ -501,11 +501,11 @@ proc binaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
   InitLocExpr(p, e.sons[2], b)
   # BUGFIX: cannot use result-type here, as it may be a boolean
   s = max(getSize(a.t), getSize(b.t)) * 8
-  putIntoDest(p, d, e.typ, 
+  putIntoDest(p, d, e.typ,
               ropef(binArithTab[op], [rdLoc(a), rdLoc(b), toRope(s)]))
 
-proc unaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) = 
-  const 
+proc unaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
+  const
     unArithTab: array[mNot..mToBiggestInt, string] = ["!($1)", # Not
       "$1",                   # UnaryPlusI
       "(NI$2)((NU$2) ~($1))", # BitnotI
@@ -513,7 +513,7 @@ proc unaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
       "~($1)",                # BitnotI64
       "$1",                   # UnaryPlusF64
       "-($1)",                # UnaryMinusF64
-      "($1 > 0? ($1) : -($1))", # AbsF64; BUGFIX: fabs() makes problems 
+      "($1 > 0? ($1) : -($1))", # AbsF64; BUGFIX: fabs() makes problems
                                 # for Tiny C, so we don't use it
       "((NI)(NU)(NU8)($1))",  # mZe8ToI
       "((NI64)(NU64)(NU8)($1))", # mZe8ToI64
@@ -528,63 +528,63 @@ proc unaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
       "((double) ($1))",      # ToBiggestFloat
       "float64ToInt32($1)",   # ToInt XXX: this is not correct!
       "float64ToInt64($1)"]   # ToBiggestInt
-  var 
+  var
     a: TLoc
     t: PType
   assert(e.sons[1].typ != nil)
   InitLocExpr(p, e.sons[1], a)
   t = skipTypes(e.typ, abstractRange)
-  putIntoDest(p, d, e.typ, 
+  putIntoDest(p, d, e.typ,
               ropef(unArithTab[op], [rdLoc(a), toRope(getSize(t) * 8)]))
 
-proc genDeref(p: BProc, e: PNode, d: var TLoc) = 
+proc genDeref(p: BProc, e: PNode, d: var TLoc) =
   var a: TLoc
-  if mapType(e.sons[0].typ) == ctArray: 
+  if mapType(e.sons[0].typ) == ctArray:
     expr(p, e.sons[0], d)
-  else: 
+  else:
     initLocExpr(p, e.sons[0], a)
     case skipTypes(a.t, abstractInst).kind
-    of tyRef: 
+    of tyRef:
       d.s = OnHeap
-    of tyVar: 
+    of tyVar:
       d.s = OnUnknown
-    of tyPtr: 
+    of tyPtr:
       d.s = OnUnknown         # BUGFIX!
     else: InternalError(e.info, "genDeref " & $a.t.kind)
     putIntoDest(p, d, a.t.sons[0], ropef("(*$1)", [rdLoc(a)]))
 
-proc genAddr(p: BProc, e: PNode, d: var TLoc) = 
+proc genAddr(p: BProc, e: PNode, d: var TLoc) =
   var a: TLoc
-  if mapType(e.sons[0].typ) == ctArray: 
+  if mapType(e.sons[0].typ) == ctArray:
     expr(p, e.sons[0], d)
-  else: 
+  else:
     InitLocExpr(p, e.sons[0], a)
     putIntoDest(p, d, e.typ, addrLoc(a))
 
-proc genRecordFieldAux(p: BProc, e: PNode, d, a: var TLoc): PType = 
+proc genRecordFieldAux(p: BProc, e: PNode, d, a: var TLoc): PType =
   initLocExpr(p, e.sons[0], a)
   if (e.sons[1].kind != nkSym): InternalError(e.info, "genRecordFieldAux")
   if d.k == locNone: d.s = a.s
   discard getTypeDesc(p.module, a.t) # fill the record's fields.loc
   result = getUniqueType(a.t)
 
-proc genRecordField(p: BProc, e: PNode, d: var TLoc) = 
+proc genRecordField(p: BProc, e: PNode, d: var TLoc) =
   var a: TLoc
-  var ty = genRecordFieldAux(p, e, d, a)  
+  var ty = genRecordFieldAux(p, e, d, a)
   var r = rdLoc(a)
   var f = e.sons[1].sym
-  if ty.n == nil:  
+  if ty.n == nil:
     # we found a unique tuple type which lacks field information
     # so we use Field$i
     appf(r, ".Field$1", [toRope(f.position)])
-    putIntoDest(p, d, f.typ, r)    
+    putIntoDest(p, d, f.typ, r)
   else:
     var field: PSym = nil
-    while ty != nil: 
-      if not (ty.kind in {tyTuple, tyObject}): 
+    while ty != nil:
+      if not (ty.kind in {tyTuple, tyObject}):
         InternalError(e.info, "genRecordField")
       field = lookupInRecord(ty.n, f.name)
-      if field != nil: break 
+      if field != nil: break
       if gCmd != cmdCompileToCpp: app(r, ".Sup")
       ty = GetUniqueType(ty.sons[0])
     if field == nil: InternalError(e.info, "genRecordField")
@@ -592,8 +592,8 @@ proc genRecordField(p: BProc, e: PNode, d: var TLoc) =
     appf(r, ".$1", [field.loc.r])
     putIntoDest(p, d, field.typ, r)
 
-proc genTupleElem(p: BProc, e: PNode, d: var TLoc) = 
-  var 
+proc genTupleElem(p: BProc, e: PNode, d: var TLoc) =
+  var
     a: TLoc
     i: int
   initLocExpr(p, e.sons[0], a)
@@ -604,41 +604,41 @@ proc genTupleElem(p: BProc, e: PNode, d: var TLoc) =
   case e.sons[1].kind
   of nkIntLit..nkInt64Lit: i = int(e.sons[1].intVal)
   else: internalError(e.info, "genTupleElem")
-  if ty.n != nil: 
+  if ty.n != nil:
     var field = ty.n.sons[i].sym
     if field == nil: InternalError(e.info, "genTupleElem")
     if field.loc.r == nil: InternalError(e.info, "genTupleElem")
     appf(r, ".$1", [field.loc.r])
-  else: 
+  else:
     appf(r, ".Field$1", [toRope(i)])
   putIntoDest(p, d, ty.sons[i], r)
 
 proc genInExprAux(p: BProc, e: PNode, a, b, d: var TLoc)
-proc genCheckedRecordField(p: BProc, e: PNode, d: var TLoc) = 
-  var 
+proc genCheckedRecordField(p: BProc, e: PNode, d: var TLoc) =
+  var
     a, u, v, test: TLoc
     f, field, op: PSym
     ty: PType
     r, strLit: PRope
     id: int
     it: PNode
-  if optFieldCheck in p.options: 
+  if optFieldCheck in p.options:
     useMagic(p.module, "raiseFieldError")
     useMagic(p.module, "NimStringDesc")
     ty = genRecordFieldAux(p, e.sons[0], d, a)
     r = rdLoc(a)
     f = e.sons[0].sons[1].sym
     field = nil
-    while ty != nil: 
+    while ty != nil:
       assert(ty.kind in {tyTuple, tyObject})
       field = lookupInRecord(ty.n, f.name)
-      if field != nil: break 
+      if field != nil: break
       if gCmd != cmdCompileToCpp: app(r, ".Sup")
       ty = getUniqueType(ty.sons[0])
     if field == nil: InternalError(e.info, "genCheckedRecordField")
-    if field.loc.r == nil: 
+    if field.loc.r == nil:
       InternalError(e.info, "genCheckedRecordField") # generate the checks:
-    for i in countup(1, sonsLen(e) - 1): 
+    for i in countup(1, sonsLen(e) - 1):
       it = e.sons[i]
       assert(it.kind == nkCall)
       assert(it.sons[0].kind == nkSym)
@@ -650,90 +650,90 @@ proc genCheckedRecordField(p: BProc, e: PNode, d: var TLoc) =
       initLoc(v, locExpr, it.sons[2].typ, OnUnknown)
       v.r = ropef("$1.$2", [r, it.sons[2].sym.loc.r])
       genInExprAux(p, it, u, v, test)
-      id = NodeTableTestOrSet(p.module.dataCache, 
+      id = NodeTableTestOrSet(p.module.dataCache,
                               newStrNode(nkStrLit, field.name.s), gid)
       if id == gid: strLit = getStrLit(p.module, field.name.s)
       else: strLit = con("TMP", toRope(id))
-      if op.magic == mNot: 
-        appf(p.s[cpsStmts], 
-             "if ($1) raiseFieldError(((NimStringDesc*) &$2));$n", 
+      if op.magic == mNot:
+        appf(p.s[cpsStmts],
+             "if ($1) raiseFieldError(((NimStringDesc*) &$2));$n",
              [rdLoc(test), strLit])
-      else: 
-        appf(p.s[cpsStmts], 
-             "if (!($1)) raiseFieldError(((NimStringDesc*) &$2));$n", 
+      else:
+        appf(p.s[cpsStmts],
+             "if (!($1)) raiseFieldError(((NimStringDesc*) &$2));$n",
              [rdLoc(test), strLit])
     appf(r, ".$1", [field.loc.r])
     putIntoDest(p, d, field.typ, r)
-  else: 
+  else:
     genRecordField(p, e.sons[0], d)
-  
-proc genArrayElem(p: BProc, e: PNode, d: var TLoc) = 
+
+proc genArrayElem(p: BProc, e: PNode, d: var TLoc) =
   var a, b: TLoc
   initLocExpr(p, e.sons[0], a)
   initLocExpr(p, e.sons[1], b)
   var ty = skipTypes(skipTypes(a.t, abstractVarRange), abstractPtrs)
   var first = intLiteral(firstOrd(ty))
   # emit range check:
-  if (optBoundsCheck in p.options): 
-    if not isConstExpr(e.sons[1]): 
+  if (optBoundsCheck in p.options):
+    if not isConstExpr(e.sons[1]):
       # semantic pass has already checked for const index expressions
       useMagic(p.module, "raiseIndexError")
-      if firstOrd(ty) == 0: 
-        if (firstOrd(b.t) < firstOrd(ty)) or (lastOrd(b.t) > lastOrd(ty)): 
-          appf(p.s[cpsStmts], "if ((NU)($1) > (NU)($2)) raiseIndexError();$n", 
+      if firstOrd(ty) == 0:
+        if (firstOrd(b.t) < firstOrd(ty)) or (lastOrd(b.t) > lastOrd(ty)):
+          appf(p.s[cpsStmts], "if ((NU)($1) > (NU)($2)) raiseIndexError();$n",
                [rdCharLoc(b), intLiteral(lastOrd(ty))])
-      else: 
-        appf(p.s[cpsStmts], "if ($1 < $2 || $1 > $3) raiseIndexError();$n", 
+      else:
+        appf(p.s[cpsStmts], "if ($1 < $2 || $1 > $3) raiseIndexError();$n",
              [rdCharLoc(b), first, intLiteral(lastOrd(ty))])
   if d.k == locNone: d.s = a.s
-  putIntoDest(p, d, elemType(skipTypes(ty, abstractVar)), 
+  putIntoDest(p, d, elemType(skipTypes(ty, abstractVar)),
               ropef("$1[($2)-$3]", [rdLoc(a), rdCharLoc(b), first]))
 
-proc genCStringElem(p: BProc, e: PNode, d: var TLoc) = 
+proc genCStringElem(p: BProc, e: PNode, d: var TLoc) =
   var a, b: TLoc
   initLocExpr(p, e.sons[0], a)
   initLocExpr(p, e.sons[1], b)
   var ty = skipTypes(a.t, abstractVarRange)
   if d.k == locNone: d.s = a.s
-  putIntoDest(p, d, elemType(skipTypes(ty, abstractVar)), 
+  putIntoDest(p, d, elemType(skipTypes(ty, abstractVar)),
               ropef("$1[$2]", [rdLoc(a), rdCharLoc(b)]))
 
-proc genOpenArrayElem(p: BProc, e: PNode, d: var TLoc) = 
+proc genOpenArrayElem(p: BProc, e: PNode, d: var TLoc) =
   var a, b: TLoc
   initLocExpr(p, e.sons[0], a)
   initLocExpr(p, e.sons[1], b) # emit range check:
-  if (optBoundsCheck in p.options): 
+  if (optBoundsCheck in p.options):
     useMagic(p.module, "raiseIndexError")
-    appf(p.s[cpsStmts], "if ((NU)($1) >= (NU)($2Len0)) raiseIndexError();$n", 
+    appf(p.s[cpsStmts], "if ((NU)($1) >= (NU)($2Len0)) raiseIndexError();$n",
          [rdLoc(b), rdLoc(a)]) # BUGFIX: ``>=`` and not ``>``!
   if d.k == locNone: d.s = a.s
-  putIntoDest(p, d, elemType(skipTypes(a.t, abstractVar)), 
+  putIntoDest(p, d, elemType(skipTypes(a.t, abstractVar)),
               ropef("$1[$2]", [rdLoc(a), rdCharLoc(b)]))
 
-proc genSeqElem(p: BPRoc, e: PNode, d: var TLoc) = 
+proc genSeqElem(p: BPRoc, e: PNode, d: var TLoc) =
   var a, b: TLoc
   initLocExpr(p, e.sons[0], a)
   initLocExpr(p, e.sons[1], b)
   var ty = skipTypes(a.t, abstractVarRange)
-  if ty.kind in {tyRef, tyPtr}: 
+  if ty.kind in {tyRef, tyPtr}:
     ty = skipTypes(ty.sons[0], abstractVarRange) # emit range check:
-  if (optBoundsCheck in p.options): 
+  if (optBoundsCheck in p.options):
     useMagic(p.module, "raiseIndexError")
-    if ty.kind == tyString: 
-      appf(p.s[cpsStmts], 
-           "if ((NU)($1) > (NU)($2->Sup.len)) raiseIndexError();$n", 
+    if ty.kind == tyString:
+      appf(p.s[cpsStmts],
+           "if ((NU)($1) > (NU)($2->Sup.len)) raiseIndexError();$n",
            [rdLoc(b), rdLoc(a)])
-    else: 
-      appf(p.s[cpsStmts], 
-           "if ((NU)($1) >= (NU)($2->Sup.len)) raiseIndexError();$n", 
+    else:
+      appf(p.s[cpsStmts],
+           "if ((NU)($1) >= (NU)($2->Sup.len)) raiseIndexError();$n",
            [rdLoc(b), rdLoc(a)])
   if d.k == locNone: d.s = OnHeap
-  if skipTypes(a.t, abstractVar).kind in {tyRef, tyPtr}: 
+  if skipTypes(a.t, abstractVar).kind in {tyRef, tyPtr}:
     a.r = ropef("(*$1)", [a.r])
-  putIntoDest(p, d, elemType(skipTypes(a.t, abstractVar)), 
+  putIntoDest(p, d, elemType(skipTypes(a.t, abstractVar)),
               ropef("$1->data[$2]", [rdLoc(a), rdCharLoc(b)]))
 
-proc genAndOr(p: BProc, e: PNode, d: var TLoc, m: TMagic) = 
+proc genAndOr(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
   # how to generate code?
   #  'expr1 and expr2' becomes:
   #     result = expr1
@@ -754,7 +754,7 @@ proc genAndOr(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
   # tmp = a
   # end:
   # a = tmp
-  var 
+  var
     L: TLabel
     tmp: TLoc
   getTemp(p, e.typ, tmp)      # force it into a temp!
@@ -762,16 +762,16 @@ proc genAndOr(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
   L = getLabel(p)
   if m == mOr:
     appf(p.s[cpsStmts], "if ($1) goto $2;$n", [rdLoc(tmp), L])
-  else: 
+  else:
     appf(p.s[cpsStmts], "if (!($1)) goto $2;$n", [rdLoc(tmp), L])
   expr(p, e.sons[2], tmp)
   fixLabel(p, L)
-  if d.k == locNone: 
+  if d.k == locNone:
     d = tmp
-  else: 
+  else:
     genAssignment(p, d, tmp, {}) # no need for deep copying
-  
-proc genIfExpr(p: BProc, n: PNode, d: var TLoc) = 
+
+proc genIfExpr(p: BProc, n: PNode, d: var TLoc) =
   #
   #  if (!expr1) goto L1;
   #  thenPart
@@ -784,42 +784,42 @@ proc genIfExpr(p: BProc, n: PNode, d: var TLoc) =
   #  elsePart
   #  Lend:
   #
-  var 
+  var
     it: PNode
     a, tmp: TLoc
     Lend, Lelse: TLabel
   getTemp(p, n.typ, tmp)      # force it into a temp!
   Lend = getLabel(p)
-  for i in countup(0, sonsLen(n) - 1): 
+  for i in countup(0, sonsLen(n) - 1):
     it = n.sons[i]
     case it.kind
-    of nkElifExpr: 
+    of nkElifExpr:
       initLocExpr(p, it.sons[0], a)
       Lelse = getLabel(p)
       appf(p.s[cpsStmts], "if (!$1) goto $2;$n", [rdLoc(a), Lelse])
       expr(p, it.sons[1], tmp)
       appf(p.s[cpsStmts], "goto $1;$n", [Lend])
       fixLabel(p, Lelse)
-    of nkElseExpr: 
+    of nkElseExpr:
       expr(p, it.sons[0], tmp)
     else: internalError(n.info, "genIfExpr()")
   fixLabel(p, Lend)
-  if d.k == locNone: 
+  if d.k == locNone:
     d = tmp
-  else: 
+  else:
     genAssignment(p, d, tmp, {}) # no need for deep copying
-  
-proc genEcho(p: BProc, n: PNode) = 
+
+proc genEcho(p: BProc, n: PNode) =
   var a: TLoc
   useMagic(p.module, "rawEcho")
   useMagic(p.module, "rawEchoNL")
-  for i in countup(1, sonsLen(n) - 1): 
+  for i in countup(1, sonsLen(n) - 1):
     initLocExpr(p, n.sons[i], a)
     appf(p.s[cpsStmts], "rawEcho($1);$n", [rdLoc(a)])
   app(p.s[cpsStmts], "rawEchoNL();" & tnl)
 
-proc genCall(p: BProc, t: PNode, d: var TLoc) = 
-  var 
+proc genCall(p: BProc, t: PNode, d: var TLoc) =
+  var
     param: PSym
     invalidRetType: bool
     typ: PType
@@ -833,37 +833,37 @@ proc genCall(p: BProc, t: PNode, d: var TLoc) =
   assert(typ.kind == tyProc)
   invalidRetType = isInvalidReturnType(typ.sons[0])
   length = sonsLen(t)
-  for i in countup(1, length - 1): 
+  for i in countup(1, length - 1):
     initLocExpr(p, t.sons[i], a) # generate expression for param
     assert(sonsLen(typ) == sonsLen(typ.n))
-    if (i < sonsLen(typ)): 
+    if (i < sonsLen(typ)):
       assert(typ.n.sons[i].kind == nkSym)
       param = typ.n.sons[i].sym
       if ccgIntroducedPtr(param): app(pl, addrLoc(a))
       else: app(pl, rdLoc(a))
-    else: 
+    else:
       app(pl, rdLoc(a))
-    if (i < length - 1) or (invalidRetType and (typ.sons[0] != nil)): 
+    if (i < length - 1) or (invalidRetType and (typ.sons[0] != nil)):
       app(pl, ", ")
-  if (typ.sons[0] != nil) and invalidRetType: 
+  if (typ.sons[0] != nil) and invalidRetType:
     # XXX (detected by pegs module 64bit): p(result, result) is not
     # correct here. Thus we always allocate a temporary:
     if d.k == locNone: getTemp(p, typ.sons[0], d)
     app(pl, addrLoc(d))
   app(pl, ")")
-  if (typ.sons[0] != nil) and not invalidRetType: 
+  if (typ.sons[0] != nil) and not invalidRetType:
     if d.k == locNone: getTemp(p, typ.sons[0], d)
     assert(d.t != nil)        # generate an assignment to d:
     initLoc(list, locCall, nil, OnUnknown)
     list.r = pl
     genAssignment(p, d, list, {}) # no need for deep copying
-  else: 
+  else:
     app(p.s[cpsStmts], pl)
     app(p.s[cpsStmts], ';' & tnl)
 
-proc genStrConcat(p: BProc, e: PNode, d: var TLoc) = 
+proc genStrConcat(p: BProc, e: PNode, d: var TLoc) =
   #   <Nimrod code>
-  #   s = 'hallo ' & name & ' how do you feel?' & 'z'
+  #   s = 'Hello ' & name & ', how do you feel?' & 'z'
   #
   #   <generated C code>
   #  {
@@ -884,30 +884,30 @@ proc genStrConcat(p: BProc, e: PNode, d: var TLoc) =
   var L = 0
   var appends: PRope = nil
   var lens: PRope = nil
-  for i in countup(0, sonsLen(e) - 2): 
+  for i in countup(0, sonsLen(e) - 2):
     # compute the length expression:
     initLocExpr(p, e.sons[i + 1], a)
-    if skipTypes(e.sons[i + 1].Typ, abstractVarRange).kind == tyChar: 
+    if skipTypes(e.sons[i + 1].Typ, abstractVarRange).kind == tyChar:
       Inc(L)
       useMagic(p.module, "appendChar")
       appf(appends, "appendChar($1, $2);$n", [tmp.r, rdLoc(a)])
-    else: 
-      if e.sons[i + 1].kind in {nkStrLit..nkTripleStrLit}: 
+    else:
+      if e.sons[i + 1].kind in {nkStrLit..nkTripleStrLit}:
         Inc(L, len(e.sons[i + 1].strVal))
-      else: 
+      else:
         appf(lens, "$1->Sup.len + ", [rdLoc(a)])
       useMagic(p.module, "appendString")
       appf(appends, "appendString($1, $2);$n", [tmp.r, rdLoc(a)])
   appf(p.s[cpsStmts], "$1 = rawNewString($2$3);$n", [tmp.r, lens, toRope(L)])
   app(p.s[cpsStmts], appends)
-  if d.k == locNone: 
+  if d.k == locNone:
     d = tmp
-  else: 
+  else:
     genAssignment(p, d, tmp, {}) # no need for deep copying
-  
-proc genStrAppend(p: BProc, e: PNode, d: var TLoc) = 
+
+proc genStrAppend(p: BProc, e: PNode, d: var TLoc) =
   #  <Nimrod code>
-  #  s &= 'hallo ' & name & ' how do you feel?' & 'z'
+  #  s &= 'Hello ' & name & ', how do you feel?' & 'z'
   #  // BUG: what if s is on the left side too?
   #  <generated C code>
   #  {
@@ -917,7 +917,7 @@ proc genStrAppend(p: BProc, e: PNode, d: var TLoc) =
   #    appendString(s, strlit_2);
   #    appendChar(s, 'z');
   #  }
-  var 
+  var
     a, dest: TLoc
     L: int
     appends, lens: PRope
@@ -927,25 +927,25 @@ proc genStrAppend(p: BProc, e: PNode, d: var TLoc) =
   appends = nil
   lens = nil
   initLocExpr(p, e.sons[1], dest)
-  for i in countup(0, sonsLen(e) - 3): 
+  for i in countup(0, sonsLen(e) - 3):
     # compute the length expression:
     initLocExpr(p, e.sons[i + 2], a)
-    if skipTypes(e.sons[i + 2].Typ, abstractVarRange).kind == tyChar: 
+    if skipTypes(e.sons[i + 2].Typ, abstractVarRange).kind == tyChar:
       Inc(L)
       useMagic(p.module, "appendChar")
       appf(appends, "appendChar($1, $2);$n", [rdLoc(dest), rdLoc(a)])
-    else: 
-      if e.sons[i + 2].kind in {nkStrLit..nkTripleStrLit}: 
+    else:
+      if e.sons[i + 2].kind in {nkStrLit..nkTripleStrLit}:
         Inc(L, len(e.sons[i + 2].strVal))
-      else: 
+      else:
         appf(lens, "$1->Sup.len + ", [rdLoc(a)])
       useMagic(p.module, "appendString")
       appf(appends, "appendString($1, $2);$n", [rdLoc(dest), rdLoc(a)])
-  appf(p.s[cpsStmts], "$1 = resizeString($1, $2$3);$n", 
+  appf(p.s[cpsStmts], "$1 = resizeString($1, $2$3);$n",
        [rdLoc(dest), lens, toRope(L)])
   app(p.s[cpsStmts], appends)
 
-proc genSeqElemAppend(p: BProc, e: PNode, d: var TLoc) = 
+proc genSeqElemAppend(p: BProc, e: PNode, d: var TLoc) =
   # seq &= x  -->
   #    seq = (typeof seq) incrSeq(&seq->Sup, sizeof(x));
   #    seq->data[seq->len-1] = x;
@@ -953,52 +953,52 @@ proc genSeqElemAppend(p: BProc, e: PNode, d: var TLoc) =
   useMagic(p.module, "incrSeq")
   InitLocExpr(p, e.sons[1], a)
   InitLocExpr(p, e.sons[2], b)
-  appf(p.s[cpsStmts], "$1 = ($2) incrSeq(&($1)->Sup, sizeof($3));$n", [rdLoc(a), 
-      getTypeDesc(p.module, skipTypes(e.sons[1].typ, abstractVar)), 
+  appf(p.s[cpsStmts], "$1 = ($2) incrSeq(&($1)->Sup, sizeof($3));$n", [rdLoc(a),
+      getTypeDesc(p.module, skipTypes(e.sons[1].typ, abstractVar)),
       getTypeDesc(p.module, skipTypes(e.sons[2].Typ, abstractVar))])
   initLoc(dest, locExpr, b.t, OnHeap)
   dest.r = ropef("$1->data[$1->Sup.len-1]", [rdLoc(a)])
   genAssignment(p, dest, b, {needToCopy, afDestIsNil})
 
-proc genObjectInit(p: BProc, t: PType, a: TLoc, takeAddr: bool) = 
-  var 
+proc genObjectInit(p: BProc, t: PType, a: TLoc, takeAddr: bool) =
+  var
     r: PRope
     s: PType
   case analyseObjectWithTypeField(t)
-  of frNone: 
+  of frNone:
     nil
-  of frHeader: 
+  of frHeader:
     r = rdLoc(a)
     if not takeAddr: r = ropef("(*$1)", [r])
     s = t
-    while (s.kind == tyObject) and (s.sons[0] != nil): 
+    while (s.kind == tyObject) and (s.sons[0] != nil):
       app(r, ".Sup")
       s = skipTypes(s.sons[0], abstractInst)
     appf(p.s[cpsStmts], "$1.m_type = $2;$n", [r, genTypeInfo(p.module, t)])
-  of frEmbedded: 
+  of frEmbedded:
     # worst case for performance:
     useMagic(p.module, "objectInit")
     if takeAddr: r = addrLoc(a)
     else: r = rdLoc(a)
     appf(p.s[cpsStmts], "objectInit($1, $2);$n", [r, genTypeInfo(p.module, t)])
 
-proc genNew(p: BProc, e: PNode) = 
-  var 
+proc genNew(p: BProc, e: PNode) =
+  var
     a, b: TLoc
     reftype, bt: PType
   useMagic(p.module, "newObj")
   refType = skipTypes(e.sons[1].typ, abstractVarRange)
   InitLocExpr(p, e.sons[1], a)
   initLoc(b, locExpr, a.t, OnHeap)
-  b.r = ropef("($1) newObj($2, sizeof($3))", [getTypeDesc(p.module, reftype), 
-      genTypeInfo(p.module, refType), 
+  b.r = ropef("($1) newObj($2, sizeof($3))", [getTypeDesc(p.module, reftype),
+      genTypeInfo(p.module, refType),
       getTypeDesc(p.module, skipTypes(reftype.sons[0], abstractRange))])
   genAssignment(p, a, b, {})  # set the object type:
   bt = skipTypes(refType.sons[0], abstractRange)
   genObjectInit(p, bt, a, false)
 
-proc genNewSeq(p: BProc, e: PNode) = 
-  var 
+proc genNewSeq(p: BProc, e: PNode) =
+  var
     a, b, c: TLoc
     seqtype: PType
   useMagic(p.module, "newSeq")
@@ -1006,12 +1006,12 @@ proc genNewSeq(p: BProc, e: PNode) =
   InitLocExpr(p, e.sons[1], a)
   InitLocExpr(p, e.sons[2], b)
   initLoc(c, locExpr, a.t, OnHeap)
-  c.r = ropef("($1) newSeq($2, $3)", [getTypeDesc(p.module, seqtype), 
+  c.r = ropef("($1) newSeq($2, $3)", [getTypeDesc(p.module, seqtype),
                                       genTypeInfo(p.module, seqType), rdLoc(b)])
   genAssignment(p, a, c, {})
 
-proc genIs(p: BProc, x: PNode, typ: PType, d: var TLoc) = 
-  var 
+proc genIs(p: BProc, x: PNode, typ: PType, d: var TLoc) =
+  var
     a: TLoc
     dest, t: PType
     r, nilcheck: PRope
@@ -1021,26 +1021,26 @@ proc genIs(p: BProc, x: PNode, typ: PType, d: var TLoc) =
   r = rdLoc(a)
   nilCheck = nil
   t = skipTypes(a.t, abstractInst)
-  while t.kind in {tyVar, tyPtr, tyRef}: 
+  while t.kind in {tyVar, tyPtr, tyRef}:
     if t.kind != tyVar: nilCheck = r
     r = ropef("(*$1)", [r])
     t = skipTypes(t.sons[0], abstractInst)
-  if gCmd != cmdCompileToCpp: 
-    while (t.kind == tyObject) and (t.sons[0] != nil): 
+  if gCmd != cmdCompileToCpp:
+    while (t.kind == tyObject) and (t.sons[0] != nil):
       app(r, ".Sup")
       t = skipTypes(t.sons[0], abstractInst)
-  if nilCheck != nil: 
-    r = ropef("(($1) && isObj($2.m_type, $3))", 
+  if nilCheck != nil:
+    r = ropef("(($1) && isObj($2.m_type, $3))",
               [nilCheck, r, genTypeInfo(p.module, dest)])
-  else: 
+  else:
     r = ropef("isObj($1.m_type, $2)", [r, genTypeInfo(p.module, dest)])
   putIntoDest(p, d, getSysType(tyBool), r)
 
-proc genIs(p: BProc, n: PNode, d: var TLoc) = 
+proc genIs(p: BProc, n: PNode, d: var TLoc) =
   genIs(p, n.sons[1], n.sons[2].typ, d)
 
-proc genNewFinalize(p: BProc, e: PNode) = 
-  var 
+proc genNewFinalize(p: BProc, e: PNode) =
+  var
     a, b, f: TLoc
     refType, bt: PType
     ti: PRope
@@ -1048,7 +1048,7 @@ proc genNewFinalize(p: BProc, e: PNode) =
   useMagic(p.module, "newObj")
   refType = skipTypes(e.sons[1].typ, abstractVarRange)
   InitLocExpr(p, e.sons[1], a)
-  # This is a little hack: 
+  # This is a little hack:
   # XXX this is also a bug, if the finalizer expression produces side-effects
   oldModule = p.module
   p.module = gNimDat
@@ -1057,64 +1057,64 @@ proc genNewFinalize(p: BProc, e: PNode) =
   initLoc(b, locExpr, a.t, OnHeap)
   ti = genTypeInfo(p.module, refType)
   appf(gNimDat.s[cfsTypeInit3], "$1->finalizer = (void*)$2;$n", [ti, rdLoc(f)])
-  b.r = ropef("($1) newObj($2, sizeof($3))", [getTypeDesc(p.module, refType), 
+  b.r = ropef("($1) newObj($2, sizeof($3))", [getTypeDesc(p.module, refType),
       ti, getTypeDesc(p.module, skipTypes(reftype.sons[0], abstractRange))])
   genAssignment(p, a, b, {})  # set the object type:
   bt = skipTypes(refType.sons[0], abstractRange)
   genObjectInit(p, bt, a, false)
 
-proc genRepr(p: BProc, e: PNode, d: var TLoc) = 
+proc genRepr(p: BProc, e: PNode, d: var TLoc) =
   var a: TLoc
   InitLocExpr(p, e.sons[1], a)
   var t = skipTypes(e.sons[1].typ, abstractVarRange)
   case t.kind
-  of tyInt..tyInt64: 
+  of tyInt..tyInt64:
     UseMagic(p.module, "reprInt")
     putIntoDest(p, d, e.typ, ropef("reprInt($1)", [rdLoc(a)]))
-  of tyFloat..tyFloat128: 
+  of tyFloat..tyFloat128:
     UseMagic(p.module, "reprFloat")
     putIntoDest(p, d, e.typ, ropef("reprFloat($1)", [rdLoc(a)]))
-  of tyBool: 
+  of tyBool:
     UseMagic(p.module, "reprBool")
     putIntoDest(p, d, e.typ, ropef("reprBool($1)", [rdLoc(a)]))
-  of tyChar: 
+  of tyChar:
     UseMagic(p.module, "reprChar")
     putIntoDest(p, d, e.typ, ropef("reprChar($1)", [rdLoc(a)]))
-  of tyEnum, tyOrdinal: 
+  of tyEnum, tyOrdinal:
     UseMagic(p.module, "reprEnum")
-    putIntoDest(p, d, e.typ, 
+    putIntoDest(p, d, e.typ,
                 ropef("reprEnum($1, $2)", [rdLoc(a), genTypeInfo(p.module, t)]))
-  of tyString: 
+  of tyString:
     UseMagic(p.module, "reprStr")
     putIntoDest(p, d, e.typ, ropef("reprStr($1)", [rdLoc(a)]))
-  of tySet: 
+  of tySet:
     useMagic(p.module, "reprSet")
-    putIntoDest(p, d, e.typ, 
+    putIntoDest(p, d, e.typ,
                 ropef("reprSet($1, $2)", [rdLoc(a), genTypeInfo(p.module, t)]))
-  of tyOpenArray: 
+  of tyOpenArray:
     useMagic(p.module, "reprOpenArray")
     var b: TLoc
     case a.t.kind
     of tyOpenArray: putIntoDest(p, b, e.typ, rdLoc(a))
-    of tyString, tySequence: 
+    of tyString, tySequence:
       putIntoDest(p, b, e.typ, ropef("$1->data, $1->Sup.len", [rdLoc(a)]))
-    of tyArray, tyArrayConstr: 
-      putIntoDest(p, b, e.typ, 
+    of tyArray, tyArrayConstr:
+      putIntoDest(p, b, e.typ,
                   ropef("$1, $2", [rdLoc(a), toRope(lengthOrd(a.t))]))
     else: InternalError(e.sons[0].info, "genRepr()")
-    putIntoDest(p, d, e.typ, ropef("reprOpenArray($1, $2)", [rdLoc(b), 
+    putIntoDest(p, d, e.typ, ropef("reprOpenArray($1, $2)", [rdLoc(b),
         genTypeInfo(p.module, elemType(t))]))
-  of tyCString, tyArray, tyArrayConstr, tyRef, tyPtr, tyPointer, tyNil, 
-     tySequence: 
+  of tyCString, tyArray, tyArrayConstr, tyRef, tyPtr, tyPointer, tyNil,
+     tySequence:
     useMagic(p.module, "reprAny")
-    putIntoDest(p, d, e.typ, 
+    putIntoDest(p, d, e.typ,
                 ropef("reprAny($1, $2)", [rdLoc(a), genTypeInfo(p.module, t)]))
-  else: 
+  else:
     useMagic(p.module, "reprAny")
-    putIntoDest(p, d, e.typ, ropef("reprAny($1, $2)", 
+    putIntoDest(p, d, e.typ, ropef("reprAny($1, $2)",
                                    [addrLoc(a), genTypeInfo(p.module, t)]))
 
-proc genDollar(p: BProc, n: PNode, d: var TLoc, magic, frmt: string) = 
+proc genDollar(p: BProc, n: PNode, d: var TLoc, magic, frmt: string) =
   var a: TLoc
   InitLocExpr(p, n.sons[1], a)
   UseMagic(p.module, magic)
@@ -1122,26 +1122,26 @@ proc genDollar(p: BProc, n: PNode, d: var TLoc, magic, frmt: string) =
   if d.k == locNone: getTemp(p, n.typ, d)
   genAssignment(p, d, a, {})
 
-proc genArrayLen(p: BProc, e: PNode, d: var TLoc, op: TMagic) = 
+proc genArrayLen(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
   var typ = skipTypes(e.sons[1].Typ, abstractPtrs)
   case typ.kind
-  of tyOpenArray: 
+  of tyOpenArray:
     while e.sons[1].kind == nkPassAsOpenArray: e.sons[1] = e.sons[1].sons[0]
     if op == mHigh: unaryExpr(p, e, d, "", "($1Len0-1)")
     else: unaryExpr(p, e, d, "", "$1Len0")
-  of tyCstring: 
+  of tyCstring:
     if op == mHigh: unaryExpr(p, e, d, "", "(strlen($1)-1)")
     else: unaryExpr(p, e, d, "", "strlen($1)")
-  of tyString, tySequence: 
+  of tyString, tySequence:
     if op == mHigh: unaryExpr(p, e, d, "", "($1->Sup.len-1)")
     else: unaryExpr(p, e, d, "", "$1->Sup.len")
-  of tyArray, tyArrayConstr: 
+  of tyArray, tyArrayConstr:
     # YYY: length(sideeffect) is optimized away incorrectly?
     if op == mHigh: putIntoDest(p, d, e.typ, toRope(lastOrd(Typ)))
     else: putIntoDest(p, d, e.typ, toRope(lengthOrd(typ)))
   else: InternalError(e.info, "genArrayLen()")
-  
-proc genSetLengthSeq(p: BProc, e: PNode, d: var TLoc) = 
+
+proc genSetLengthSeq(p: BProc, e: PNode, d: var TLoc) =
   var a, b: TLoc
   assert(d.k == locNone)
   useMagic(p.module, "setLengthSeq")
@@ -1149,13 +1149,13 @@ proc genSetLengthSeq(p: BProc, e: PNode, d: var TLoc) =
   InitLocExpr(p, e.sons[2], b)
   var t = skipTypes(e.sons[1].typ, abstractVar)
   appf(p.s[cpsStmts], "$1 = ($3) setLengthSeq(&($1)->Sup, sizeof($4), $2);$n", [
-      rdLoc(a), rdLoc(b), getTypeDesc(p.module, t), 
+      rdLoc(a), rdLoc(b), getTypeDesc(p.module, t),
       getTypeDesc(p.module, t.sons[0])])
 
-proc genSetLengthStr(p: BProc, e: PNode, d: var TLoc) = 
+proc genSetLengthStr(p: BProc, e: PNode, d: var TLoc) =
   binaryStmt(p, e, d, "setLengthStr", "$1 = setLengthStr($1, $2);$n")
 
-proc genSwap(p: BProc, e: PNode, d: var TLoc) = 
+proc genSwap(p: BProc, e: PNode, d: var TLoc) =
   # swap(a, b) -->
   # temp = a
   # a = b
@@ -1168,73 +1168,73 @@ proc genSwap(p: BProc, e: PNode, d: var TLoc) =
   genAssignment(p, a, b, {})
   genAssignment(p, b, tmp, {})
 
-proc rdSetElemLoc(a: TLoc, setType: PType): PRope = 
+proc rdSetElemLoc(a: TLoc, setType: PType): PRope =
   # read a location of an set element; it may need a substraction operation
   # before the set operation
   result = rdCharLoc(a)
   assert(setType.kind == tySet)
-  if (firstOrd(setType) != 0): 
+  if (firstOrd(setType) != 0):
     result = ropef("($1-$2)", [result, toRope(firstOrd(setType))])
-  
-proc fewCmps(s: PNode): bool = 
+
+proc fewCmps(s: PNode): bool =
   # this function estimates whether it is better to emit code
   # for constructing the set or generating a bunch of comparisons directly
   if s.kind != nkCurly: InternalError(s.info, "fewCmps")
-  if (getSize(s.typ) <= platform.intSize) and (nfAllConst in s.flags): 
+  if (getSize(s.typ) <= platform.intSize) and (nfAllConst in s.flags):
     result = false            # it is better to emit the set generation code
-  elif elemType(s.typ).Kind in {tyInt, tyInt16..tyInt64}: 
+  elif elemType(s.typ).Kind in {tyInt, tyInt16..tyInt64}:
     result = true             # better not emit the set if int is basetype!
-  else: 
+  else:
     result = sonsLen(s) <= 8  # 8 seems to be a good value
-  
-proc binaryExprIn(p: BProc, e: PNode, a, b, d: var TLoc, frmt: string) = 
+
+proc binaryExprIn(p: BProc, e: PNode, a, b, d: var TLoc, frmt: string) =
   putIntoDest(p, d, e.typ, ropef(frmt, [rdLoc(a), rdSetElemLoc(b, a.t)]))
 
-proc genInExprAux(p: BProc, e: PNode, a, b, d: var TLoc) = 
+proc genInExprAux(p: BProc, e: PNode, a, b, d: var TLoc) =
   case int(getSize(skipTypes(e.sons[1].typ, abstractVar)))
   of 1: binaryExprIn(p, e, a, b, d, "(($1 &(1<<(($2)&7)))!=0)")
   of 2: binaryExprIn(p, e, a, b, d, "(($1 &(1<<(($2)&15)))!=0)")
   of 4: binaryExprIn(p, e, a, b, d, "(($1 &(1<<(($2)&31)))!=0)")
   of 8: binaryExprIn(p, e, a, b, d, "(($1 &(IL64(1)<<(($2)&IL64(63))))!=0)")
   else: binaryExprIn(p, e, a, b, d, "(($1[$2/8] &(1<<($2%8)))!=0)")
-  
-proc binaryStmtInExcl(p: BProc, e: PNode, d: var TLoc, frmt: string) = 
+
+proc binaryStmtInExcl(p: BProc, e: PNode, d: var TLoc, frmt: string) =
   var a, b: TLoc
   assert(d.k == locNone)
   InitLocExpr(p, e.sons[1], a)
   InitLocExpr(p, e.sons[2], b)
   appf(p.s[cpsStmts], frmt, [rdLoc(a), rdSetElemLoc(b, a.t)])
 
-proc genInOp(p: BProc, e: PNode, d: var TLoc) = 
+proc genInOp(p: BProc, e: PNode, d: var TLoc) =
   var a, b, x, y: TLoc
-  if (e.sons[1].Kind == nkCurly) and fewCmps(e.sons[1]): 
+  if (e.sons[1].Kind == nkCurly) and fewCmps(e.sons[1]):
     # a set constructor but not a constant set:
     # do not emit the set, but generate a bunch of comparisons
     initLocExpr(p, e.sons[2], a)
     initLoc(b, locExpr, e.typ, OnUnknown)
     b.r = toRope("(")
     var length = sonsLen(e.sons[1])
-    for i in countup(0, length - 1): 
-      if e.sons[1].sons[i].Kind == nkRange: 
+    for i in countup(0, length - 1):
+      if e.sons[1].sons[i].Kind == nkRange:
         InitLocExpr(p, e.sons[1].sons[i].sons[0], x)
         InitLocExpr(p, e.sons[1].sons[i].sons[1], y)
-        appf(b.r, "$1 >= $2 && $1 <= $3", 
+        appf(b.r, "$1 >= $2 && $1 <= $3",
              [rdCharLoc(a), rdCharLoc(x), rdCharLoc(y)])
-      else: 
+      else:
         InitLocExpr(p, e.sons[1].sons[i], x)
         appf(b.r, "$1 == $2", [rdCharLoc(a), rdCharLoc(x)])
       if i < length - 1: app(b.r, " || ")
     app(b.r, ")")
     putIntoDest(p, d, e.typ, b.r)
-  else: 
+  else:
     assert(e.sons[1].typ != nil)
     assert(e.sons[2].typ != nil)
     InitLocExpr(p, e.sons[1], a)
     InitLocExpr(p, e.sons[2], b)
     genInExprAux(p, e, a, b, d)
 
-proc genSetOp(p: BProc, e: PNode, d: var TLoc, op: TMagic) = 
-  const 
+proc genSetOp(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
+  const
     lookupOpr: array[mLeSet..mSymDiffSet, string] = [
       "for ($1 = 0; $1 < $2; $1++) { $n" &
         "  $3 = (($4[$1] & ~ $5[$1]) == 0);$n" &
@@ -1246,17 +1246,17 @@ proc genSetOp(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
   var setType = skipTypes(e.sons[1].Typ, abstractVar)
   var size = int(getSize(setType))
   case size
-  of 1, 2, 4, 8: 
+  of 1, 2, 4, 8:
     case op
-    of mIncl: 
+    of mIncl:
       var ts = "NI" & $(size * 8)
-      binaryStmtInExcl(p, e, d, 
+      binaryStmtInExcl(p, e, d,
                        "$1 |=(1<<((" & ts & ")($2)%(sizeof(" & ts & ")*8)));$n")
-    of mExcl: 
+    of mExcl:
       var ts = "NI" & $(size * 8)
       binaryStmtInExcl(p, e, d, "$1 &= ~(1 << ((" & ts & ")($2) % (sizeof(" &
           ts & ")*8)));$n")
-    of mCard: 
+    of mCard:
       if size <= 4: unaryExprChar(p, e, d, "countBits32", "countBits32($1)")
       else: unaryExprChar(p, e, d, "countBits64", "countBits64($1)")
     of mLtSet: binaryExprChar(p, e, d, "", "(($1 & ~ $2 ==0)&&($1 != $2))")
@@ -1266,149 +1266,149 @@ proc genSetOp(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
     of mPlusSet: binaryExpr(p, e, d, "", "($1 | $2)")
     of mMinusSet: binaryExpr(p, e, d, "", "($1 & ~ $2)")
     of mSymDiffSet: binaryExpr(p, e, d, "", "($1 ^ $2)")
-    of mInSet: 
+    of mInSet:
       genInOp(p, e, d)
     else: internalError(e.info, "genSetOp()")
-  else: 
+  else:
     case op
     of mIncl: binaryStmtInExcl(p, e, d, "$1[$2/8] |=(1<<($2%8));$n")
     of mExcl: binaryStmtInExcl(p, e, d, "$1[$2/8] &= ~(1<<($2%8));$n")
     of mCard: unaryExprChar(p, e, d, "cardSet", "cardSet($1, " & $size & ')')
-    of mLtSet, mLeSet: 
+    of mLtSet, mLeSet:
       getTemp(p, getSysType(tyInt), i) # our counter
       initLocExpr(p, e.sons[1], a)
       initLocExpr(p, e.sons[2], b)
       if d.k == locNone: getTemp(p, a.t, d)
-      appf(p.s[cpsStmts], lookupOpr[op], 
+      appf(p.s[cpsStmts], lookupOpr[op],
            [rdLoc(i), toRope(size), rdLoc(d), rdLoc(a), rdLoc(b)])
-    of mEqSet: 
+    of mEqSet:
       binaryExprChar(p, e, d, "", "(memcmp($1, $2, " & $(size) & ")==0)")
-    of mMulSet, mPlusSet, mMinusSet, mSymDiffSet: 
+    of mMulSet, mPlusSet, mMinusSet, mSymDiffSet:
       # we inline the simple for loop for better code generation:
       getTemp(p, getSysType(tyInt), i) # our counter
       initLocExpr(p, e.sons[1], a)
       initLocExpr(p, e.sons[2], b)
       if d.k == locNone: getTemp(p, a.t, d)
-      appf(p.s[cpsStmts], 
+      appf(p.s[cpsStmts],
            "for ($1 = 0; $1 < $2; $1++) $n" & "  $3[$1] = $4[$1] $6 $5[$1];$n", [
-          rdLoc(i), toRope(size), rdLoc(d), rdLoc(a), rdLoc(b), 
+          rdLoc(i), toRope(size), rdLoc(d), rdLoc(a), rdLoc(b),
           toRope(lookupOpr[op])])
     of mInSet: genInOp(p, e, d)
     else: internalError(e.info, "genSetOp")
-  
-proc genOrd(p: BProc, e: PNode, d: var TLoc) = 
+
+proc genOrd(p: BProc, e: PNode, d: var TLoc) =
   unaryExprChar(p, e, d, "", "$1")
 
-proc genCast(p: BProc, e: PNode, d: var TLoc) = 
-  const 
-    ValueTypes = {tyTuple, tyObject, tyArray, tyOpenArray, tyArrayConstr} 
-  # we use whatever C gives us. Except if we have a value-type, we need to go 
+proc genCast(p: BProc, e: PNode, d: var TLoc) =
+  const
+    ValueTypes = {tyTuple, tyObject, tyArray, tyOpenArray, tyArrayConstr}
+  # we use whatever C gives us. Except if we have a value-type, we need to go
   # through its address:
   var a: TLoc
   InitLocExpr(p, e.sons[1], a)
   if (skipTypes(e.typ, abstractRange).kind in ValueTypes) and
-      not (lfIndirect in a.flags): 
-    putIntoDest(p, d, e.typ, ropef("(*($1*) ($2))", 
+      not (lfIndirect in a.flags):
+    putIntoDest(p, d, e.typ, ropef("(*($1*) ($2))",
                                    [getTypeDesc(p.module, e.typ), addrLoc(a)]))
-  else: 
-    putIntoDest(p, d, e.typ, ropef("(($1) ($2))", 
+  else:
+    putIntoDest(p, d, e.typ, ropef("(($1) ($2))",
                                    [getTypeDesc(p.module, e.typ), rdCharLoc(a)]))
-  
-proc genRangeChck(p: BProc, n: PNode, d: var TLoc, magic: string) = 
+
+proc genRangeChck(p: BProc, n: PNode, d: var TLoc, magic: string) =
   var a: TLoc
   var dest = skipTypes(n.typ, abstractVar)
-  if not (optRangeCheck in p.options): 
+  if not (optRangeCheck in p.options):
     InitLocExpr(p, n.sons[0], a)
-    putIntoDest(p, d, n.typ, ropef("(($1) ($2))", 
+    putIntoDest(p, d, n.typ, ropef("(($1) ($2))",
                                    [getTypeDesc(p.module, dest), rdCharLoc(a)]))
-  else: 
+  else:
     InitLocExpr(p, n.sons[0], a)
     useMagic(p.module, magic)
     putIntoDest(p, d, dest, ropef("(($1)$5($2, $3, $4))", [
-        getTypeDesc(p.module, dest), rdCharLoc(a), 
-        genLiteral(p, n.sons[1], dest), genLiteral(p, n.sons[2], dest), 
+        getTypeDesc(p.module, dest), rdCharLoc(a),
+        genLiteral(p, n.sons[1], dest), genLiteral(p, n.sons[2], dest),
         toRope(magic)]))
 
-proc genConv(p: BProc, e: PNode, d: var TLoc) = 
+proc genConv(p: BProc, e: PNode, d: var TLoc) =
   genCast(p, e, d)
 
-proc passToOpenArray(p: BProc, n: PNode, d: var TLoc) = 
+proc passToOpenArray(p: BProc, n: PNode, d: var TLoc) =
   var a: TLoc
-  while n.sons[0].kind == nkPassAsOpenArray: 
+  while n.sons[0].kind == nkPassAsOpenArray:
     n.sons[0] = n.sons[0].sons[0] # BUGFIX
   var dest = skipTypes(n.typ, abstractVar)
   case skipTypes(n.sons[0].typ, abstractVar).kind
-  of tyOpenArray: 
+  of tyOpenArray:
     initLocExpr(p, n.sons[0], a)
     putIntoDest(p, d, dest, ropef("$1, $1Len0", [rdLoc(a)]))
-  of tyString, tySequence: 
+  of tyString, tySequence:
     initLocExpr(p, n.sons[0], a)
     putIntoDest(p, d, dest, ropef("$1->data, $1->Sup.len", [rdLoc(a)]))
-  of tyArray, tyArrayConstr: 
+  of tyArray, tyArrayConstr:
     initLocExpr(p, n.sons[0], a)
     putIntoDest(p, d, dest, ropef("$1, $2", [rdLoc(a), toRope(lengthOrd(a.t))]))
   else: InternalError(n.sons[0].info, "passToOpenArray: " & typeToString(a.t))
-  
-proc convStrToCStr(p: BProc, n: PNode, d: var TLoc) = 
+
+proc convStrToCStr(p: BProc, n: PNode, d: var TLoc) =
   var a: TLoc
   initLocExpr(p, n.sons[0], a)
   putIntoDest(p, d, skipTypes(n.typ, abstractVar), ropef("$1->data", [rdLoc(a)]))
 
-proc convCStrToStr(p: BProc, n: PNode, d: var TLoc) = 
+proc convCStrToStr(p: BProc, n: PNode, d: var TLoc) =
   var a: TLoc
   useMagic(p.module, "cstrToNimstr")
   initLocExpr(p, n.sons[0], a)
-  putIntoDest(p, d, skipTypes(n.typ, abstractVar), 
+  putIntoDest(p, d, skipTypes(n.typ, abstractVar),
               ropef("cstrToNimstr($1)", [rdLoc(a)]))
 
-proc genStrEquals(p: BProc, e: PNode, d: var TLoc) = 
+proc genStrEquals(p: BProc, e: PNode, d: var TLoc) =
   var x: TLoc
   var a = e.sons[1]
   var b = e.sons[2]
-  if (a.kind == nkNilLit) or (b.kind == nkNilLit): 
+  if (a.kind == nkNilLit) or (b.kind == nkNilLit):
     binaryExpr(p, e, d, "", "($1 == $2)")
-  elif (a.kind in {nkStrLit..nkTripleStrLit}) and (a.strVal == ""): 
+  elif (a.kind in {nkStrLit..nkTripleStrLit}) and (a.strVal == ""):
     initLocExpr(p, e.sons[2], x)
     putIntoDest(p, d, e.typ, ropef("(($1) && ($1)->Sup.len == 0)", [rdLoc(x)]))
-  elif (b.kind in {nkStrLit..nkTripleStrLit}) and (b.strVal == ""): 
+  elif (b.kind in {nkStrLit..nkTripleStrLit}) and (b.strVal == ""):
     initLocExpr(p, e.sons[1], x)
     putIntoDest(p, d, e.typ, ropef("(($1) && ($1)->Sup.len == 0)", [rdLoc(x)]))
-  else: 
+  else:
     binaryExpr(p, e, d, "eqStrings", "eqStrings($1, $2)")
-  
-proc genSeqConstr(p: BProc, t: PNode, d: var TLoc) = 
+
+proc genSeqConstr(p: BProc, t: PNode, d: var TLoc) =
   var newSeq, arr: TLoc
   useMagic(p.module, "newSeq")
-  if d.k == locNone: 
-    getTemp(p, t.typ, d)      
+  if d.k == locNone:
+    getTemp(p, t.typ, d)
   # generate call to newSeq before adding the elements per hand:
   initLoc(newSeq, locExpr, t.typ, OnHeap)
-  newSeq.r = ropef("($1) newSeq($2, $3)", [getTypeDesc(p.module, t.typ), 
+  newSeq.r = ropef("($1) newSeq($2, $3)", [getTypeDesc(p.module, t.typ),
       genTypeInfo(p.module, t.typ), intLiteral(sonsLen(t))])
   genAssignment(p, d, newSeq, {afSrcIsNotNil})
-  for i in countup(0, sonsLen(t) - 1): 
+  for i in countup(0, sonsLen(t) - 1):
     initLoc(arr, locExpr, elemType(skipTypes(t.typ, abstractInst)), OnHeap)
     arr.r = ropef("$1->data[$2]", [rdLoc(d), intLiteral(i)])
     arr.s = OnHeap            # we know that sequences are on the heap
     expr(p, t.sons[i], arr)
 
-proc genArrToSeq(p: BProc, t: PNode, d: var TLoc) = 
+proc genArrToSeq(p: BProc, t: PNode, d: var TLoc) =
   var newSeq, elem, a, arr: TLoc
-  if t.kind == nkBracket: 
+  if t.kind == nkBracket:
     t.sons[1].typ = t.typ
     genSeqConstr(p, t.sons[1], d)
-    return 
+    return
   useMagic(p.module, "newSeq")
-  if d.k == locNone: 
-    getTemp(p, t.typ, d)      
+  if d.k == locNone:
+    getTemp(p, t.typ, d)
   # generate call to newSeq before adding the elements per hand:
   var L = int(lengthOrd(t.sons[1].typ))
   initLoc(newSeq, locExpr, t.typ, OnHeap)
-  newSeq.r = ropef("($1) newSeq($2, $3)", [getTypeDesc(p.module, t.typ), 
+  newSeq.r = ropef("($1) newSeq($2, $3)", [getTypeDesc(p.module, t.typ),
       genTypeInfo(p.module, t.typ), intLiteral(L)])
   genAssignment(p, d, newSeq, {afSrcIsNotNil})
   initLocExpr(p, t.sons[1], a)
-  for i in countup(0, L - 1): 
+  for i in countup(0, L - 1):
     initLoc(elem, locExpr, elemType(skipTypes(t.typ, abstractInst)), OnHeap)
     elem.r = ropef("$1->data[$2]", [rdLoc(d), intLiteral(i)])
     elem.s = OnHeap # we know that sequences are on the heap
@@ -1435,7 +1435,7 @@ proc binaryFloatArith(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
   else:
     binaryArith(p, e, d, m)
 
-proc genMagicExpr(p: BProc, e: PNode, d: var TLoc, op: TMagic) = 
+proc genMagicExpr(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
   var line, filen: PRope
   case op
   of mOr, mAnd: genAndOr(p, e, d, op)
@@ -1446,27 +1446,27 @@ proc genMagicExpr(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
   of mAddi..mModi64: binaryArithOverflow(p, e, d, op)
   of mRepr: genRepr(p, e, d)
   of mSwap: genSwap(p, e, d)
-  of mPred: 
+  of mPred:
     # XXX: range checking?
     if not (optOverflowCheck in p.Options): binaryExpr(p, e, d, "", "$1 - $2")
     else: binaryExpr(p, e, d, "subInt", "subInt($1, $2)")
-  of mSucc: 
+  of mSucc:
     # XXX: range checking?
     if not (optOverflowCheck in p.Options): binaryExpr(p, e, d, "", "$1 + $2")
     else: binaryExpr(p, e, d, "addInt", "addInt($1, $2)")
-  of mInc: 
-    if not (optOverflowCheck in p.Options): 
+  of mInc:
+    if not (optOverflowCheck in p.Options):
       binaryStmt(p, e, d, "", "$1 += $2;$n")
-    elif skipTypes(e.sons[1].typ, abstractVar).kind == tyInt64: 
+    elif skipTypes(e.sons[1].typ, abstractVar).kind == tyInt64:
       binaryStmt(p, e, d, "addInt64", "$1 = addInt64($1, $2);$n")
-    else: 
+    else:
       binaryStmt(p, e, d, "addInt", "$1 = addInt($1, $2);$n")
-  of ast.mDec: 
-    if not (optOverflowCheck in p.Options): 
+  of ast.mDec:
+    if not (optOverflowCheck in p.Options):
       binaryStmt(p, e, d, "", "$1 -= $2;$n")
-    elif skipTypes(e.sons[1].typ, abstractVar).kind == tyInt64: 
+    elif skipTypes(e.sons[1].typ, abstractVar).kind == tyInt64:
       binaryStmt(p, e, d, "subInt64", "$1 = subInt64($1, $2);$n")
-    else: 
+    else:
       binaryStmt(p, e, d, "subInt", "$1 = subInt($1, $2);$n")
   of mConStrStr: genStrConcat(p, e, d)
   of mAppendStrCh: binaryStmt(p, e, d, "addChar", "$1 = addChar($1, $2);$n")
@@ -1484,256 +1484,256 @@ proc genMagicExpr(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
   of mCStrToStr: genDollar(p, e, d, "cstrToNimstr", "cstrToNimstr($1)")
   of mStrToStr: expr(p, e.sons[1], d)
   of mEnumToStr: genRepr(p, e, d)
-  of mAssert: 
-    if (optAssert in p.Options): 
+  of mAssert:
+    if (optAssert in p.Options):
       useMagic(p.module, "internalAssert")
       expr(p, e.sons[1], d)
       line = toRope(toLinenumber(e.info))
       filen = makeCString(ToFilename(e.info))
-      appf(p.s[cpsStmts], "internalAssert($1, $2, $3);$n", 
+      appf(p.s[cpsStmts], "internalAssert($1, $2, $3);$n",
            [filen, line, rdLoc(d)])
   of mIs: genIs(p, e, d)
   of mNew: genNew(p, e)
   of mNewFinalize: genNewFinalize(p, e)
   of mNewSeq: genNewSeq(p, e)
-  of mSizeOf: 
-    putIntoDest(p, d, e.typ, ropef("((NI)sizeof($1))", 
+  of mSizeOf:
+    putIntoDest(p, d, e.typ, ropef("((NI)sizeof($1))",
                                    [getTypeDesc(p.module, e.sons[1].typ)]))
   of mChr: genCast(p, e, d)
   of mOrd: genOrd(p, e, d)
-  of mLengthArray, mHigh, mLengthStr, mLengthSeq, mLengthOpenArray: 
+  of mLengthArray, mHigh, mLengthStr, mLengthSeq, mLengthOpenArray:
     genArrayLen(p, e, d, op)
   of mGCref: unaryStmt(p, e, d, "nimGCref", "nimGCref($1);$n")
   of mGCunref: unaryStmt(p, e, d, "nimGCunref", "nimGCunref($1);$n")
   of mSetLengthStr: genSetLengthStr(p, e, d)
   of mSetLengthSeq: genSetLengthSeq(p, e, d)
-  of mIncl, mExcl, mCard, mLtSet, mLeSet, mEqSet, mMulSet, mPlusSet, mMinusSet, 
-     mInSet: 
+  of mIncl, mExcl, mCard, mLtSet, mLeSet, mEqSet, mMulSet, mPlusSet, mMinusSet,
+     mInSet:
     genSetOp(p, e, d, op)
   of mNewString, mCopyStr, mCopyStrLast, mExit: genCall(p, e, d)
   of mEcho: genEcho(p, e)
   of mArrToSeq: genArrToSeq(p, e, d)
-  of mNLen..mNError: 
+  of mNLen..mNError:
     liMessage(e.info, errCannotGenerateCodeForX, e.sons[0].sym.name.s)
   else: internalError(e.info, "genMagicExpr: " & $op)
-  
+
 proc genConstExpr(p: BProc, n: PNode): PRope
-proc handleConstExpr(p: BProc, n: PNode, d: var TLoc): bool = 
-  if (nfAllConst in n.flags) and (d.k == locNone) and (sonsLen(n) > 0): 
+proc handleConstExpr(p: BProc, n: PNode, d: var TLoc): bool =
+  if (nfAllConst in n.flags) and (d.k == locNone) and (sonsLen(n) > 0):
     var t = getUniqueType(n.typ)
     discard getTypeDesc(p.module, t) # so that any fields are initialized
     var id = NodeTableTestOrSet(p.module.dataCache, n, gid)
     fillLoc(d, locData, t, con("TMP", toRope(id)), OnHeap)
-    if id == gid: 
+    if id == gid:
       # expression not found in the cache:
       inc(gid)
-      appf(p.module.s[cfsData], "NIM_CONST $1 $2 = $3;$n", 
+      appf(p.module.s[cfsData], "NIM_CONST $1 $2 = $3;$n",
            [getTypeDesc(p.module, t), d.r, genConstExpr(p, n)])
     result = true
-  else: 
+  else:
     result = false
-  
-proc genSetConstr(p: BProc, e: PNode, d: var TLoc) = 
+
+proc genSetConstr(p: BProc, e: PNode, d: var TLoc) =
   # example: { a..b, c, d, e, f..g }
   # we have to emit an expression of the form:
   # memset(tmp, 0, sizeof(tmp)); inclRange(tmp, a, b); incl(tmp, c);
   # incl(tmp, d); incl(tmp, e); inclRange(tmp, f, g);
-  var 
+  var
     a, b, idx: TLoc
     ts: string
-  if nfAllConst in e.flags: 
+  if nfAllConst in e.flags:
     putIntoDest(p, d, e.typ, genSetNode(p, e))
-  else: 
+  else:
     if d.k == locNone: getTemp(p, e.typ, d)
-    if getSize(e.typ) > 8: 
+    if getSize(e.typ) > 8:
       # big set:
       appf(p.s[cpsStmts], "memset($1, 0, sizeof($1));$n", [rdLoc(d)])
-      for i in countup(0, sonsLen(e) - 1): 
-        if e.sons[i].kind == nkRange: 
+      for i in countup(0, sonsLen(e) - 1):
+        if e.sons[i].kind == nkRange:
           getTemp(p, getSysType(tyInt), idx) # our counter
           initLocExpr(p, e.sons[i].sons[0], a)
           initLocExpr(p, e.sons[i].sons[1], b)
           appf(p.s[cpsStmts], "for ($1 = $3; $1 <= $4; $1++) $n" &
-              "$2[$1/8] |=(1<<($1%8));$n", [rdLoc(idx), rdLoc(d), 
+              "$2[$1/8] |=(1<<($1%8));$n", [rdLoc(idx), rdLoc(d),
               rdSetElemLoc(a, e.typ), rdSetElemLoc(b, e.typ)])
-        else: 
+        else:
           initLocExpr(p, e.sons[i], a)
-          appf(p.s[cpsStmts], "$1[$2/8] |=(1<<($2%8));$n", 
+          appf(p.s[cpsStmts], "$1[$2/8] |=(1<<($2%8));$n",
                [rdLoc(d), rdSetElemLoc(a, e.typ)])
-    else: 
+    else:
       # small set
       ts = "NI" & $(getSize(e.typ) * 8)
       appf(p.s[cpsStmts], "$1 = 0;$n", [rdLoc(d)])
-      for i in countup(0, sonsLen(e) - 1): 
-        if e.sons[i].kind == nkRange: 
+      for i in countup(0, sonsLen(e) - 1):
+        if e.sons[i].kind == nkRange:
           getTemp(p, getSysType(tyInt), idx) # our counter
           initLocExpr(p, e.sons[i].sons[0], a)
           initLocExpr(p, e.sons[i].sons[1], b)
           appf(p.s[cpsStmts], "for ($1 = $3; $1 <= $4; $1++) $n" &
               "$2 |=(1<<((" & ts & ")($1)%(sizeof(" & ts & ")*8)));$n", [
-              rdLoc(idx), rdLoc(d), rdSetElemLoc(a, e.typ), 
+              rdLoc(idx), rdLoc(d), rdSetElemLoc(a, e.typ),
               rdSetElemLoc(b, e.typ)])
-        else: 
+        else:
           initLocExpr(p, e.sons[i], a)
-          appf(p.s[cpsStmts], 
-               "$1 |=(1<<((" & ts & ")($2)%(sizeof(" & ts & ")*8)));$n", 
+          appf(p.s[cpsStmts],
+               "$1 |=(1<<((" & ts & ")($2)%(sizeof(" & ts & ")*8)));$n",
                [rdLoc(d), rdSetElemLoc(a, e.typ)])
 
-proc genTupleConstr(p: BProc, n: PNode, d: var TLoc) = 
+proc genTupleConstr(p: BProc, n: PNode, d: var TLoc) =
   var rec: TLoc
-  if not handleConstExpr(p, n, d): 
+  if not handleConstExpr(p, n, d):
     var t = getUniqueType(n.typ)
     discard getTypeDesc(p.module, t) # so that any fields are initialized
     if d.k == locNone: getTemp(p, t, d)
-    for i in countup(0, sonsLen(n) - 1): 
+    for i in countup(0, sonsLen(n) - 1):
       var it = n.sons[i]
-      if it.kind == nkExprColonExpr: 
+      if it.kind == nkExprColonExpr:
         initLoc(rec, locExpr, it.sons[1].typ, d.s)
         if (t.n.sons[i].kind != nkSym): InternalError(n.info, "genTupleConstr")
-        rec.r = ropef("$1.$2", 
+        rec.r = ropef("$1.$2",
                       [rdLoc(d), mangleRecFieldName(t.n.sons[i].sym, t)])
         expr(p, it.sons[1], rec)
-      elif t.n == nil: 
+      elif t.n == nil:
         initLoc(rec, locExpr, it.typ, d.s)
         rec.r = ropef("$1.Field$2", [rdLoc(d), toRope(i)])
         expr(p, it, rec)
-      else: 
+      else:
         initLoc(rec, locExpr, it.typ, d.s)
-        if (t.n.sons[i].kind != nkSym): 
+        if (t.n.sons[i].kind != nkSym):
           InternalError(n.info, "genTupleConstr: 2")
-        rec.r = ropef("$1.$2", 
+        rec.r = ropef("$1.$2",
                       [rdLoc(d), mangleRecFieldName(t.n.sons[i].sym, t)])
         expr(p, it, rec)
 
-proc genArrayConstr(p: BProc, n: PNode, d: var TLoc) = 
+proc genArrayConstr(p: BProc, n: PNode, d: var TLoc) =
   var arr: TLoc
-  if not handleConstExpr(p, n, d): 
+  if not handleConstExpr(p, n, d):
     if d.k == locNone: getTemp(p, n.typ, d)
-    for i in countup(0, sonsLen(n) - 1): 
+    for i in countup(0, sonsLen(n) - 1):
       initLoc(arr, locExpr, elemType(skipTypes(n.typ, abstractInst)), d.s)
       arr.r = ropef("$1[$2]", [rdLoc(d), intLiteral(i)])
       expr(p, n.sons[i], arr)
 
-proc genComplexConst(p: BProc, sym: PSym, d: var TLoc) = 
+proc genComplexConst(p: BProc, sym: PSym, d: var TLoc) =
   genConstPrototype(p.module, sym)
   assert((sym.loc.r != nil) and (sym.loc.t != nil))
   putLocIntoDest(p, d, sym.loc)
 
-proc genStmtListExpr(p: BProc, n: PNode, d: var TLoc) = 
+proc genStmtListExpr(p: BProc, n: PNode, d: var TLoc) =
   var length = sonsLen(n)
   for i in countup(0, length - 2): genStmts(p, n.sons[i])
   if length > 0: expr(p, n.sons[length - 1], d)
-  
-proc upConv(p: BProc, n: PNode, d: var TLoc) = 
-  var 
+
+proc upConv(p: BProc, n: PNode, d: var TLoc) =
+  var
     a: TLoc
     dest, t: PType
     r, nilCheck: PRope
   initLocExpr(p, n.sons[0], a)
   dest = skipTypes(n.typ, abstractPtrs)
-  if (optObjCheck in p.options) and not (isPureObject(dest)): 
+  if (optObjCheck in p.options) and not (isPureObject(dest)):
     useMagic(p.module, "chckObj")
     r = rdLoc(a)
     nilCheck = nil
     t = skipTypes(a.t, abstractInst)
-    while t.kind in {tyVar, tyPtr, tyRef}: 
+    while t.kind in {tyVar, tyPtr, tyRef}:
       if t.kind != tyVar: nilCheck = r
       r = ropef("(*$1)", [r])
       t = skipTypes(t.sons[0], abstractInst)
-    if gCmd != cmdCompileToCpp: 
-      while (t.kind == tyObject) and (t.sons[0] != nil): 
+    if gCmd != cmdCompileToCpp:
+      while (t.kind == tyObject) and (t.sons[0] != nil):
         app(r, ".Sup")
         t = skipTypes(t.sons[0], abstractInst)
-    if nilCheck != nil: 
-      appf(p.s[cpsStmts], "if ($1) chckObj($2.m_type, $3);$n", 
+    if nilCheck != nil:
+      appf(p.s[cpsStmts], "if ($1) chckObj($2.m_type, $3);$n",
            [nilCheck, r, genTypeInfo(p.module, dest)])
-    else: 
-      appf(p.s[cpsStmts], "chckObj($1.m_type, $2);$n", 
+    else:
+      appf(p.s[cpsStmts], "chckObj($1.m_type, $2);$n",
            [r, genTypeInfo(p.module, dest)])
-  if n.sons[0].typ.kind != tyObject: 
-    putIntoDest(p, d, n.typ, 
+  if n.sons[0].typ.kind != tyObject:
+    putIntoDest(p, d, n.typ,
                 ropef("(($1) ($2))", [getTypeDesc(p.module, n.typ), rdLoc(a)]))
-  else: 
-    putIntoDest(p, d, n.typ, ropef("(*($1*) ($2))", 
+  else:
+    putIntoDest(p, d, n.typ, ropef("(*($1*) ($2))",
                                    [getTypeDesc(p.module, dest), addrLoc(a)]))
-  
-proc downConv(p: BProc, n: PNode, d: var TLoc) = 
-  if gCmd == cmdCompileToCpp: 
+
+proc downConv(p: BProc, n: PNode, d: var TLoc) =
+  if gCmd == cmdCompileToCpp:
     expr(p, n.sons[0], d)     # downcast does C++ for us
-  else: 
+  else:
     var dest = skipTypes(n.typ, abstractPtrs)
     var src = skipTypes(n.sons[0].typ, abstractPtrs)
     var a: TLoc
     initLocExpr(p, n.sons[0], a)
     var r = rdLoc(a)
-    if skipTypes(n.sons[0].typ, abstractInst).kind in {tyRef, tyPtr, tyVar}: 
+    if skipTypes(n.sons[0].typ, abstractInst).kind in {tyRef, tyPtr, tyVar}:
       app(r, "->Sup")
       for i in countup(2, abs(inheritanceDiff(dest, src))): app(r, ".Sup")
       r = con("&", r)
-    else: 
+    else:
       for i in countup(1, abs(inheritanceDiff(dest, src))): app(r, ".Sup")
     putIntoDest(p, d, n.typ, r)
 
 proc genBlock(p: BProc, t: PNode, d: var TLoc)
-proc expr(p: BProc, e: PNode, d: var TLoc) = 
+proc expr(p: BProc, e: PNode, d: var TLoc) =
   case e.kind
-  of nkSym: 
+  of nkSym:
     var sym = e.sym
     case sym.Kind
-    of skMethod: 
-      if sym.ast.sons[codePos] == nil: 
+    of skMethod:
+      if sym.ast.sons[codePos] == nil:
         # we cannot produce code for the dispatcher yet:
         fillProcLoc(sym)
         genProcPrototype(p.module, sym)
-      else: 
+      else:
         genProc(p.module, sym)
       putLocIntoDest(p, d, sym.loc)
-    of skProc, skConverter: 
+    of skProc, skConverter:
       genProc(p.module, sym)
-      if ((sym.loc.r == nil) or (sym.loc.t == nil)): 
+      if ((sym.loc.r == nil) or (sym.loc.t == nil)):
         InternalError(e.info, "expr: proc not init " & sym.name.s)
       putLocIntoDest(p, d, sym.loc)
-    of skConst: 
-      if isSimpleConst(sym.typ): 
+    of skConst:
+      if isSimpleConst(sym.typ):
         putIntoDest(p, d, e.typ, genLiteral(p, sym.ast, sym.typ))
-      else: 
+      else:
         genComplexConst(p, sym, d)
-    of skEnumField: 
+    of skEnumField:
       putIntoDest(p, d, e.typ, toRope(sym.position))
-    of skVar: 
+    of skVar:
       if (sfGlobal in sym.flags): genVarPrototype(p.module, sym)
-      if ((sym.loc.r == nil) or (sym.loc.t == nil)): 
+      if ((sym.loc.r == nil) or (sym.loc.t == nil)):
         InternalError(e.info, "expr: var not init " & sym.name.s)
       putLocIntoDest(p, d, sym.loc)
-    of skForVar, skTemp: 
-      if ((sym.loc.r == nil) or (sym.loc.t == nil)): 
+    of skForVar, skTemp:
+      if ((sym.loc.r == nil) or (sym.loc.t == nil)):
         InternalError(e.info, "expr: temp not init " & sym.name.s)
       putLocIntoDest(p, d, sym.loc)
-    of skParam: 
-      if ((sym.loc.r == nil) or (sym.loc.t == nil)): 
+    of skParam:
+      if ((sym.loc.r == nil) or (sym.loc.t == nil)):
         InternalError(e.info, "expr: param not init " & sym.name.s)
       putLocIntoDest(p, d, sym.loc)
     else: InternalError(e.info, "expr(" & $sym.kind & "); unknown symbol")
-  of nkStrLit..nkTripleStrLit, nkIntLit..nkInt64Lit, nkFloatLit..nkFloat64Lit, 
-     nkNilLit, nkCharLit: 
+  of nkStrLit..nkTripleStrLit, nkIntLit..nkInt64Lit, nkFloatLit..nkFloat64Lit,
+     nkNilLit, nkCharLit:
     putIntoDest(p, d, e.typ, genLiteral(p, e))
-  of nkCall, nkHiddenCallConv, nkInfix, nkPrefix, nkPostfix, nkCommand, 
-     nkCallStrLit: 
-    if (e.sons[0].kind == nkSym) and (e.sons[0].sym.magic != mNone): 
+  of nkCall, nkHiddenCallConv, nkInfix, nkPrefix, nkPostfix, nkCommand,
+     nkCallStrLit:
+    if (e.sons[0].kind == nkSym) and (e.sons[0].sym.magic != mNone):
       genMagicExpr(p, e, d, e.sons[0].sym.magic)
-    else: 
+    else:
       genCall(p, e, d)
   of nkCurly: genSetConstr(p, e, d)
-  of nkBracket: 
-    if (skipTypes(e.typ, abstractVarRange).kind == tySequence): 
+  of nkBracket:
+    if (skipTypes(e.typ, abstractVarRange).kind == tySequence):
       genSeqConstr(p, e, d)
-    else: 
+    else:
       genArrayConstr(p, e, d)
   of nkPar: genTupleConstr(p, e, d)
   of nkCast: genCast(p, e, d)
   of nkHiddenStdConv, nkHiddenSubConv, nkConv: genConv(p, e, d)
   of nkHiddenAddr, nkAddr: genAddr(p, e, d)
-  of nkBracketExpr: 
+  of nkBracketExpr:
     var ty = skipTypes(e.sons[0].typ, abstractVarRange)
     if ty.kind in {tyRef, tyPtr}: ty = skipTypes(ty.sons[0], abstractVarRange)
     case ty.kind
@@ -1758,31 +1758,31 @@ proc expr(p: BProc, e: PNode, d: var TLoc) =
   of nkCStringToString: convCStrToStr(p, e, d)
   of nkPassAsOpenArray: passToOpenArray(p, e, d)
   else: InternalError(e.info, "expr(" & $e.kind & "); unknown node kind")
-  
-proc genNamedConstExpr(p: BProc, n: PNode): PRope = 
+
+proc genNamedConstExpr(p: BProc, n: PNode): PRope =
   if n.kind == nkExprColonExpr: result = genConstExpr(p, n.sons[1])
   else: result = genConstExpr(p, n)
-  
-proc genConstSimpleList(p: BProc, n: PNode): PRope = 
+
+proc genConstSimpleList(p: BProc, n: PNode): PRope =
   var length = sonsLen(n)
   result = toRope("{")
-  for i in countup(0, length - 2): 
+  for i in countup(0, length - 2):
     appf(result, "$1,$n", [genNamedConstExpr(p, n.sons[i])])
   if length > 0: app(result, genNamedConstExpr(p, n.sons[length - 1]))
   app(result, '}' & tnl)
 
-proc genConstExpr(p: BProc, n: PNode): PRope = 
+proc genConstExpr(p: BProc, n: PNode): PRope =
   case n.Kind
-  of nkHiddenStdConv, nkHiddenSubConv: 
+  of nkHiddenStdConv, nkHiddenSubConv:
     result = genConstExpr(p, n.sons[1])
-  of nkCurly: 
+  of nkCurly:
     var cs: TBitSet
     toBitSet(n, cs)
     result = genRawSetData(cs, int(getSize(n.typ)))
-  of nkBracket, nkPar: 
+  of nkBracket, nkPar:
     # XXX: tySequence!
     result = genConstSimpleList(p, n)
-  else: 
+  else:
     #  result := genLiteral(p, n)
     var d: TLoc
     initLocExpr(p, n, d)