123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- #
- #
- # The Nim Compiler
- # (c) Copyright 2015 Andreas Rumpf
- #
- # See the file "copying.txt", included in this
- # distribution, for details about the copyright.
- #
- ## This module implements the canonalization for the various caching mechanisms.
- import strutils, db_sqlite, md5
- var db: DbConn
- # We *hash* the relevant information into 128 bit hashes. This should be good
- # enough to prevent any collisions.
- type
- TUid = distinct MD5Digest
- # For name mangling we encode these hashes via a variant of base64 (called
- # 'base64a') and prepend the *primary* identifier to ease the debugging pain.
- # So a signature like:
- #
- # proc gABI(c: PCtx; n: PNode; opc: TOpcode; a, b: TRegister; imm: BiggestInt)
- #
- # is mangled into:
- # gABI_MTdmOWY5MTQ1MDcyNGQ3ZA
- #
- # This is a good compromise between correctness and brevity. ;-)
- const
- cb64 = [
- "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
- "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
- "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n",
- "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
- "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
- "_A", "_B"]
- proc toBase64a(s: cstring, len: int): string =
- ## encodes `s` into base64 representation. After `lineLen` characters, a
- ## `newline` is added.
- result = newStringOfCap(((len + 2) div 3) * 4)
- var i = 0
- while i < s.len - 2:
- let a = ord(s[i])
- let b = ord(s[i+1])
- let c = ord(s[i+2])
- result.add cb64[a shr 2]
- result.add cb64[((a and 3) shl 4) or ((b and 0xF0) shr 4)]
- result.add cb64[((b and 0x0F) shl 2) or ((c and 0xC0) shr 6)]
- result.add cb64[c and 0x3F]
- inc(i, 3)
- if i < s.len-1:
- let a = ord(s[i])
- let b = ord(s[i+1])
- result.add cb64[a shr 2]
- result.add cb64[((a and 3) shl 4) or ((b and 0xF0) shr 4)]
- result.add cb64[((b and 0x0F) shl 2)]
- elif i < s.len:
- let a = ord(s[i])
- result.add cb64[a shr 2]
- result.add cb64[(a and 3) shl 4]
- proc toBase64a(u: TUid): string = toBase64a(cast[cstring](u), sizeof(u))
- proc `&=`(c: var MD5Context, s: string) = md5Update(c, s, s.len)
- proc hashSym(c: var MD5Context, s: PSym) =
- if sfAnon in s.flags or s.kind == skGenericParam:
- c &= ":anon"
- else:
- var it = s.owner
- while it != nil:
- hashSym(c, it)
- c &= "."
- it = s.owner
- c &= s.name.s
- proc hashTree(c: var MD5Context, n: PNode) =
- if n == nil:
- c &= "\255"
- return
- var k = n.kind
- md5Update(c, cast[cstring](addr(k)), 1)
- # 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)
- of nkCharLit..nkUInt64Lit:
- var v = n.intVal
- md5Update(c, cast[cstring](addr(v)), sizeof(v))
- of nkFloatLit..nkFloat64Lit:
- var v = n.floatVal
- md5Update(c, cast[cstring](addr(v)), sizeof(v))
- of nkStrLit..nkTripleStrLit:
- c &= n.strVal
- else:
- for i in 0..<n.len: hashTree(c, n[i])
- proc hashType(c: var MD5Context, t: PType) =
- # modelled after 'typeToString'
- if t == nil:
- c &= "\254"
- return
- var k = t.kind
- md5Update(c, cast[cstring](addr(k)), 1)
- if t.sym != nil and sfAnon notin t.sym.flags:
- # t.n for literals, but not for e.g. objects!
- if t.kind in {tyFloat, tyInt}: c.hashNode(t.n)
- c.hashSym(t.sym)
- case t.kind
- of tyGenericBody, tyGenericInst, tyGenericInvocation:
- for i in 0..<t.len-ord(t.kind != tyGenericInvocation):
- c.hashType t[i]
- of tyUserTypeClass:
- internalAssert t.sym != nil and t.sym.owner != nil
- c &= t.sym.owner.name.s
- of tyUserTypeClassInst:
- let body = t.base
- c.hashSym body.sym
- for i in 1..<t.len-1:
- c.hashType t[i]
- of tyFromExpr:
- c.hashTree(t.n)
- of tyArray:
- c.hashTree(t[0].n)
- c.hashType(t[1])
- of tyTuple:
- if t.n != nil:
- assert(t.n.len == t.len)
- for i in 0..<t.n.len:
- assert(t.n[i].kind == nkSym)
- c &= t.n[i].sym.name.s
- c &= ":"
- c.hashType(t[i])
- c &= ","
- else:
- for i in 0..<t.len: c.hashType t[i]
- of tyRange:
- c.hashTree(t.n)
- c.hashType(t[0])
- of tyProc:
- c &= (if tfIterator in t.flags: "iterator " else: "proc ")
- for i in 0..<t.len: c.hashType(t[i])
- md5Update(c, cast[cstring](addr(t.callConv)), 1)
- if tfNoSideEffect in t.flags: c &= ".noSideEffect"
- if tfThread in t.flags: c &= ".thread"
- else:
- for i in 0..<t.len: c.hashType(t[i])
- if tfNotNil in t.flags: c &= "not nil"
- proc canonConst(n: PNode): TUid =
- var c: MD5Context
- md5Init(c)
- c.hashTree(n)
- c.hashType(n.typ)
- md5Final(c, MD5Digest(result))
- proc canonSym(s: PSym): TUid =
- var c: MD5Context
- md5Init(c)
- c.hashSym(s)
- md5Final(c, MD5Digest(result))
- proc pushType(w: PRodWriter, t: PType) =
- # check so that the stack does not grow too large:
- if iiTableGet(w.index.tab, t.id) == InvalidKey:
- w.tstack.add(t)
- proc pushSym(w: PRodWriter, s: PSym) =
- # check so that the stack does not grow too large:
- if iiTableGet(w.index.tab, s.id) == InvalidKey:
- w.sstack.add(s)
- proc encodeNode(w: PRodWriter, fInfo: TLineInfo, n: PNode,
- result: var string) =
- if n == nil:
- # nil nodes have to be stored too:
- result.add("()")
- return
- result.add('(')
- encodeVInt(ord(n.kind), result)
- # we do not write comments for now
- # Line information takes easily 20% or more of the filesize! Therefore we
- # omit line information if it is the same as the father's line information:
- if fInfo.fileIndex != n.info.fileIndex:
- result.add('?')
- encodeVInt(n.info.col, result)
- result.add(',')
- encodeVInt(n.info.line, result)
- result.add(',')
- encodeVInt(fileIdx(w, toFilename(n.info)), result)
- elif fInfo.line != n.info.line:
- result.add('?')
- encodeVInt(n.info.col, result)
- result.add(',')
- encodeVInt(n.info.line, result)
- elif fInfo.col != n.info.col:
- result.add('?')
- encodeVInt(n.info.col, result)
- var f = n.flags * PersistentNodeFlags
- if f != {}:
- result.add('$')
- encodeVInt(cast[int32](f), result)
- if n.typ != nil:
- result.add('^')
- encodeVInt(n.typ.id, result)
- pushType(w, n.typ)
- case n.kind
- of nkCharLit..nkInt64Lit:
- if n.intVal != 0:
- result.add('!')
- encodeVBiggestInt(n.intVal, result)
- of nkFloatLit..nkFloat64Lit:
- if n.floatVal != 0.0:
- result.add('!')
- encodeStr($n.floatVal, result)
- of nkStrLit..nkTripleStrLit:
- if n.strVal != "":
- result.add('!')
- encodeStr(n.strVal, result)
- of nkIdent:
- result.add('!')
- encodeStr(n.ident.s, result)
- of nkSym:
- result.add('!')
- encodeVInt(n.sym.id, result)
- pushSym(w, n.sym)
- else:
- for i in 0..<n.len:
- encodeNode(w, n.info, n[i], result)
- result.add(')')
- proc encodeLoc(w: PRodWriter, loc: TLoc, result: var string) =
- var oldLen = result.len
- result.add('<')
- if loc.k != low(loc.k): encodeVInt(ord(loc.k), result)
- if loc.s != low(loc.s):
- result.add('*')
- encodeVInt(ord(loc.s), result)
- if loc.flags != {}:
- result.add('$')
- encodeVInt(cast[int32](loc.flags), result)
- if loc.t != nil:
- result.add('^')
- encodeVInt(cast[int32](loc.t.id), result)
- pushType(w, loc.t)
- if loc.r != nil:
- result.add('!')
- encodeStr($loc.r, result)
- if loc.a != 0:
- result.add('?')
- encodeVInt(loc.a, result)
- if oldLen + 1 == result.len:
- # no data was necessary, so remove the '<' again:
- setLen(result, oldLen)
- else:
- result.add('>')
- proc encodeType(w: PRodWriter, t: PType, result: var string) =
- if t == nil:
- # nil nodes have to be stored too:
- result.add("[]")
- return
- # we need no surrounding [] here because the type is in a line of its own
- if t.kind == tyForward: internalError("encodeType: tyForward")
- # for the new rodfile viewer we use a preceding [ so that the data section
- # can easily be disambiguated:
- result.add('[')
- encodeVInt(ord(t.kind), result)
- result.add('+')
- encodeVInt(t.id, result)
- if t.n != nil:
- encodeNode(w, unknownLineInfo, t.n, result)
- if t.flags != {}:
- result.add('$')
- encodeVInt(cast[int32](t.flags), result)
- if t.callConv != low(t.callConv):
- result.add('?')
- encodeVInt(ord(t.callConv), result)
- if t.owner != nil:
- result.add('*')
- encodeVInt(t.owner.id, result)
- pushSym(w, t.owner)
- if t.sym != nil:
- result.add('&')
- encodeVInt(t.sym.id, result)
- pushSym(w, t.sym)
- if t.size != - 1:
- result.add('/')
- encodeVBiggestInt(t.size, result)
- if t.align != - 1:
- result.add('=')
- encodeVInt(t.align, result)
- encodeLoc(w, t.loc, result)
- for i in 0..<t.len:
- if t[i] == nil:
- result.add("^()")
- else:
- result.add('^')
- encodeVInt(t[i].id, result)
- pushType(w, t[i])
- proc encodeLib(w: PRodWriter, lib: PLib, info: TLineInfo, result: var string) =
- result.add('|')
- encodeVInt(ord(lib.kind), result)
- result.add('|')
- encodeStr($lib.name, result)
- result.add('|')
- encodeNode(w, info, lib.path, result)
- proc encodeSym(w: PRodWriter, s: PSym, result: var string) =
- if s == nil:
- # nil nodes have to be stored too:
- result.add("{}")
- return
- # we need no surrounding {} here because the symbol is in a line of its own
- encodeVInt(ord(s.kind), result)
- result.add('+')
- encodeVInt(s.id, result)
- result.add('&')
- encodeStr(s.name.s, result)
- if s.typ != nil:
- result.add('^')
- encodeVInt(s.typ.id, result)
- pushType(w, s.typ)
- result.add('?')
- if s.info.col != -1'i16: encodeVInt(s.info.col, result)
- result.add(',')
- if s.info.line != -1'i16: encodeVInt(s.info.line, result)
- result.add(',')
- encodeVInt(fileIdx(w, toFilename(s.info)), result)
- if s.owner != nil:
- result.add('*')
- encodeVInt(s.owner.id, result)
- pushSym(w, s.owner)
- if s.flags != {}:
- result.add('$')
- encodeVInt(cast[int32](s.flags), result)
- if s.magic != mNone:
- result.add('@')
- encodeVInt(ord(s.magic), result)
- if s.options != w.options:
- result.add('!')
- encodeVInt(cast[int32](s.options), result)
- if s.position != 0:
- result.add('%')
- encodeVInt(s.position, result)
- if s.offset != - 1:
- result.add('`')
- encodeVInt(s.offset, result)
- encodeLoc(w, s.loc, result)
- if s.annex != nil: encodeLib(w, s.annex, s.info, result)
- if s.constraint != nil:
- result.add('#')
- encodeNode(w, unknownLineInfo, s.constraint, result)
- # lazy loading will soon reload the ast lazily, so the ast needs to be
- # the last entry of a symbol:
- if s.ast != nil:
- # we used to attempt to save space here by only storing a dummy AST if
- # it is not necessary, but Nim's heavy compile-time evaluation features
- # make that unfeasible nowadays:
- encodeNode(w, s.info, s.ast, result)
- proc createDb() =
- db.exec(sql"""
- create table if not exists Module(
- id integer primary key,
- name varchar(256) not null,
- fullpath varchar(256) not null,
- interfHash varchar(256) not null,
- fullHash varchar(256) not null,
- created timestamp not null default (DATETIME('now'))
- );""")
- db.exec(sql"""
- create table if not exists Backend(
- id integer primary key,
- strongdeps varchar(max) not null,
- weakdeps varchar(max) not null,
- header varchar(max) not null,
- code varchar(max) not null
- )
- create table if not exists Symbol(
- id integer primary key,
- module integer not null,
- backend integer not null,
- name varchar(max) not null,
- data varchar(max) not null,
- created timestamp not null default (DATETIME('now')),
- foreign key (module) references Module(id),
- foreign key (backend) references Backend(id)
- );""")
- db.exec(sql"""
- create table if not exists Type(
- id integer primary key,
- module integer not null,
- name varchar(max) not null,
- data varchar(max) not null,
- created timestamp not null default (DATETIME('now')),
- foreign key (module) references module(id)
- );""")
|