1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #
- #
- # The Nim Compiler
- # (c) Copyright 2017 Andreas Rumpf
- #
- # See the file "copying.txt", included in this
- # distribution, for details about the copyright.
- #
- ## This module implements the generation of ``.ndi`` files for better debugging
- ## support of Nim code. "ndi" stands for "Nim debug info".
- import ast, msgs, ropes, options, pathutils
- type
- NdiFile* = object
- enabled: bool
- f: File
- buf: string
- proc doWrite(f: var NdiFile; s: PSym; conf: ConfigRef) =
- f.buf.setLen 0
- f.buf.add s.info.line.int
- f.buf.add "\t"
- f.buf.add s.info.col.int
- f.f.write(s.name.s, "\t")
- f.f.writeRope(s.loc.r)
- f.f.writeLine("\t", toFullPath(conf, s.info), "\t", f.buf)
- template writeMangledName*(f: NdiFile; s: PSym; conf: ConfigRef) =
- if f.enabled: doWrite(f, s, conf)
- proc open*(f: var NdiFile; filename: AbsoluteFile; conf: ConfigRef) =
- f.enabled = not filename.isEmpty
- if f.enabled:
- f.f = open(filename.string, fmWrite, 8000)
- f.buf = newStringOfCap(20)
- proc close*(f: var NdiFile) =
- if f.enabled: close(f.f)
|