# # # The Nim Compiler # (c) Copyright 2017 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. # ## Computes hash values for routine (proc, method etc) signatures. import ast, tables, ropes, md5, modulegraphs from hashes import Hash import types proc `&=`(c: var MD5Context, s: string) = md5Update(c, s, s.len) proc `&=`(c: var MD5Context, ch: char) = # XXX suspicious code here; relies on ch being zero terminated? md5Update(c, unsafeAddr ch, 1) proc `&=`(c: var MD5Context, r: Rope) = for l in leaves(r): md5Update(c, l.cstring, l.len) proc `&=`(c: var MD5Context, i: BiggestInt) = md5Update(c, cast[cstring](unsafeAddr i), sizeof(i)) proc `&=`(c: var MD5Context, f: BiggestFloat) = md5Update(c, cast[cstring](unsafeAddr f), sizeof(f)) proc `&=`(c: var MD5Context, s: SigHash) = md5Update(c, cast[cstring](unsafeAddr s), sizeof(s)) template lowlevel(v) = md5Update(c, cast[cstring](unsafeAddr(v)), sizeof(v)) type ConsiderFlag* = enum CoProc CoType CoOwnerSig CoIgnoreRange CoConsiderOwned CoDistinct CoHashTypeInsideNode proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) proc hashSym(c: var MD5Context, s: PSym) = if sfAnon in s.flags or s.kind == skGenericParam: c &= ":anon" else: var it = s while it != nil: c &= it.name.s c &= "." it = it.owner proc hashTypeSym(c: var MD5Context, s: PSym) = if sfAnon in s.flags or s.kind == skGenericParam: c &= ":anon" else: var it = s while it != nil: if sfFromGeneric in it.flags and it.kind in routineKinds and it.typ != nil: hashType c, it.typ, {CoProc} c &= it.name.s c &= "." it = it.owner proc hashTree(c: var MD5Context, n: PNode; flags: set[ConsiderFlag]) = if n == nil: c &= "\255" return let k = n.kind c &= char(k) # we really must not hash line information. 'n.typ' is debatable but # shouldn't be necessary for now and avoids potential infinite recursions. case n.kind of nkEmpty, nkNilLit, nkType: discard of nkIdent: c &= n.ident.s of nkSym: hashSym(c, n.sym) if CoHashTypeInsideNode in flags and n.sym.typ != nil: hashType(c, n.sym.typ, flags) of nkCharLit..nkUInt64Lit: let v = n.intVal lowlevel v of nkFloatLit..nkFloat64Lit: let v = n.floatVal lowlevel v of nkStrLit..nkTripleStrLit: c &= n.strVal else: for i in 0.. 0: let oldFlags = symWithFlags.flags # Hack to prevent endless recursion # xxx instead, use a hash table to indicate we've already visited a type, which # would also be more efficient. symWithFlags.flags.excl {sfAnon, sfGenSym} hashTree(c, t.n, flags + {CoHashTypeInsideNode}) symWithFlags.flags = oldFlags else: # The object has no fields: we _must_ add something here in order to # make the hash different from the one we produce by hashing only the # type name. c &= ".empty" else: c &= t.id if t.len > 0 and t[0] != nil: hashType c, t[0], flags of tyRef, tyPtr, tyGenericBody, tyVar: c &= char(t.kind) c.hashType t.lastSon, flags if tfVarIsPtr in t.flags: c &= ".varisptr" of tyFromExpr: c &= char(t.kind) c.hashTree(t.n, {}) of tyTuple: c &= char(t.kind) if t.n != nil and CoType notin flags: assert(t.n.len == t.len) for i in 0.. 1) order by hash; proc hashType*(t: PType; flags: set[ConsiderFlag] = {CoType}): SigHash = var c: MD5Context md5Init c hashType c, t, flags+{CoOwnerSig} md5Final c, result.MD5Digest when defined(debugSigHashes): db.exec(sql"INSERT OR IGNORE INTO sighashes(type, hash) VALUES (?, ?)", typeToString(t), $result) proc hashProc*(s: PSym): SigHash = var c: MD5Context md5Init c hashType c, s.typ, {CoProc} var m = s while m.kind != skModule: m = m.owner let p = m.owner assert p.kind == skPackage c &= p.name.s c &= "." c &= m.name.s if sfDispatcher in s.flags: c &= ".dispatcher" # so that createThread[void]() (aka generic specialization) gets a unique # hash, we also hash the line information. This is pretty bad, but the best # solution for now: #c &= s.info.line md5Final c, result.MD5Digest proc hashNonProc*(s: PSym): SigHash = var c: MD5Context md5Init c hashSym(c, s) var it = s while it != nil: c &= it.name.s c &= "." it = it.owner # for bug #5135 we also take the position into account, but only # for parameters, because who knows what else position dependency # might cause: if s.kind == skParam: c &= s.position md5Final c, result.MD5Digest proc hashOwner*(s: PSym): SigHash = var c: MD5Context md5Init c var m = s while m.kind != skModule: m = m.owner let p = m.owner assert p.kind == skPackage c &= p.name.s c &= "." c &= m.name.s md5Final c, result.MD5Digest proc sigHash*(s: PSym): SigHash = if s.kind in routineKinds and s.typ != nil: result = hashProc(s) else: result = hashNonProc(s) proc symBodyDigest*(graph: ModuleGraph, sym: PSym): SigHash proc hashBodyTree(graph: ModuleGraph, c: var MD5Context, n: PNode) proc hashVarSymBody(graph: ModuleGraph, c: var MD5Context, s: PSym) = assert: s.kind in {skParam, skResult, skVar, skLet, skConst, skForVar} if sfGlobal notin s.flags: c &= char(s.kind) c &= s.name.s else: c &= hashNonProc(s) # this one works for let and const but not for var. True variables can change value # later on. it is user resposibility to hash his global state if required if s.ast != nil and s.ast.kind == nkIdentDefs: hashBodyTree(graph, c, s.ast[^1]) else: hashBodyTree(graph, c, s.ast) proc hashBodyTree(graph: ModuleGraph, c: var MD5Context, n: PNode) = # hash Nim tree recursing into simply if n == nil: c &= "nil" return c &= char(n.kind) case n.kind of nkEmpty, nkNilLit, nkType: discard of nkIdent: c &= n.ident.s of nkSym: if n.sym.kind in skProcKinds: c &= symBodyDigest(graph, n.sym) elif n.sym.kind in {skParam, skResult, skVar, skLet, skConst, skForVar}: hashVarSymBody(graph, c, n.sym) else: c &= hashNonProc(n.sym) of nkProcDef, nkFuncDef, nkTemplateDef, nkMacroDef: discard # we track usage of proc symbols not their definition of nkCharLit..nkUInt64Lit: c &= n.intVal of nkFloatLit..nkFloat64Lit: c &= n.floatVal of nkStrLit..nkTripleStrLit: c &= n.strVal else: for i in 0..