cgendata.nim 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. #
  2. #
  3. # The Nim Compiler
  4. # (c) Copyright 2012 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. ## This module contains the data structures for the C code generation phase.
  10. import
  11. ast, ropes, options, intsets,
  12. tables, ndi, lineinfos, pathutils, modulegraphs
  13. type
  14. TLabel* = Rope # for the C generator a label is just a rope
  15. TCFileSection* = enum # the sections a generated C file consists of
  16. cfsMergeInfo, # section containing merge information
  17. cfsHeaders, # section for C include file headers
  18. cfsFrameDefines # section for nim frame macros
  19. cfsForwardTypes, # section for C forward typedefs
  20. cfsTypes, # section for C typedefs
  21. cfsSeqTypes, # section for sequence types only
  22. # this is needed for strange type generation
  23. # reasons
  24. cfsFieldInfo, # section for field information
  25. cfsTypeInfo, # section for type information
  26. cfsProcHeaders, # section for C procs prototypes
  27. cfsVars, # section for C variable declarations
  28. cfsData, # section for C constant data
  29. cfsProcs, # section for C procs that are not inline
  30. cfsInitProc, # section for the C init proc
  31. cfsDatInitProc, # section for the C datInit proc
  32. cfsTypeInit1, # section 1 for declarations of type information
  33. cfsTypeInit2, # section 2 for init of type information
  34. cfsTypeInit3, # section 3 for init of type information
  35. cfsDebugInit, # section for init of debug information
  36. cfsDynLibInit, # section for init of dynamic library binding
  37. cfsDynLibDeinit # section for deinitialization of dynamic
  38. # libraries
  39. TCTypeKind* = enum # describes the type kind of a C type
  40. ctVoid, ctChar, ctBool,
  41. ctInt, ctInt8, ctInt16, ctInt32, ctInt64,
  42. ctFloat, ctFloat32, ctFloat64, ctFloat128,
  43. ctUInt, ctUInt8, ctUInt16, ctUInt32, ctUInt64,
  44. ctArray, ctPtrToArray, ctStruct, ctPtr, ctNimStr, ctNimSeq, ctProc,
  45. ctCString
  46. TCFileSections* = array[TCFileSection, Rope] # represents a generated C file
  47. TCProcSection* = enum # the sections a generated C proc consists of
  48. cpsLocals, # section of local variables for C proc
  49. cpsInit, # section for init of variables for C proc
  50. cpsStmts # section of local statements for C proc
  51. TCProcSections* = array[TCProcSection, Rope] # represents a generated C proc
  52. BModule* = ref TCGen
  53. BProc* = ref TCProc
  54. TBlock* = object
  55. id*: int # the ID of the label; positive means that it
  56. label*: Rope # generated text for the label
  57. # nil if label is not used
  58. sections*: TCProcSections # the code belonging
  59. isLoop*: bool # whether block is a loop
  60. nestedTryStmts*: int16 # how many try statements is it nested into
  61. nestedExceptStmts*: int16 # how many except statements is it nested into
  62. frameLen*: int16
  63. TCProc = object # represents C proc that is currently generated
  64. prc*: PSym # the Nim proc that this C proc belongs to
  65. beforeRetNeeded*: bool # true iff 'BeforeRet' label for proc is needed
  66. threadVarAccessed*: bool # true if the proc already accessed some threadvar
  67. hasCurFramePointer*: bool # true if _nimCurFrame var needed to recover after
  68. # exception is generated
  69. noSafePoints*: bool # the proc doesn't use safe points in exception handling
  70. lastLineInfo*: TLineInfo # to avoid generating excessive 'nimln' statements
  71. currLineInfo*: TLineInfo # AST codegen will make this superfluous
  72. nestedTryStmts*: seq[tuple[fin: PNode, inExcept: bool]]
  73. # in how many nested try statements we are
  74. # (the vars must be volatile then)
  75. # bool is true when are in the except part of a try block
  76. finallySafePoints*: seq[Rope] # For correctly cleaning up exceptions when
  77. # using return in finally statements
  78. labels*: Natural # for generating unique labels in the C proc
  79. blocks*: seq[TBlock] # nested blocks
  80. breakIdx*: int # the block that will be exited
  81. # with a regular break
  82. options*: TOptions # options that should be used for code
  83. # generation; this is the same as prc.options
  84. # unless prc == nil
  85. maxFrameLen*: int # max length of frame descriptor
  86. module*: BModule # used to prevent excessive parameter passing
  87. withinLoop*: int # > 0 if we are within a loop
  88. splitDecls*: int # > 0 if we are in some context for C++ that
  89. # requires 'T x = T()' to become 'T x; x = T()'
  90. # (yes, C++ is weird like that)
  91. gcFrameId*: Natural # for the GC stack marking
  92. gcFrameType*: Rope # the struct {} we put the GC markers into
  93. sigConflicts*: CountTable[string]
  94. TTypeSeq* = seq[PType]
  95. TypeCache* = Table[SigHash, Rope]
  96. TypeCacheWithOwner* = Table[SigHash, tuple[str: Rope, owner: PSym]]
  97. CodegenFlag* = enum
  98. preventStackTrace, # true if stack traces need to be prevented
  99. usesThreadVars, # true if the module uses a thread var
  100. frameDeclared, # hack for ROD support so that we don't declare
  101. # a frame var twice in an init proc
  102. isHeaderFile, # C source file is the header file
  103. includesStringh, # C source file already includes ``<string.h>``
  104. objHasKidsValid # whether we can rely on tfObjHasKids
  105. BModuleList* = ref object of RootObj
  106. mainModProcs*, mainModInit*, otherModsInit*, mainDatInit*: Rope
  107. mapping*: Rope # the generated mapping file (if requested)
  108. modules*: seq[BModule] # list of all compiled modules
  109. modulesClosed*: seq[BModule] # list of the same compiled modules, but in the order they were closed
  110. forwardedProcs*: seq[PSym] # proc:s that did not yet have a body
  111. generatedHeader*: BModule
  112. typeInfoMarker*: TypeCacheWithOwner
  113. config*: ConfigRef
  114. graph*: ModuleGraph
  115. strVersion*, seqVersion*: int # version of the string/seq implementation to use
  116. nimtv*: Rope # Nim thread vars; the struct body
  117. nimtvDeps*: seq[PType] # type deps: every module needs whole struct
  118. nimtvDeclared*: IntSet # so that every var/field exists only once
  119. # in the struct
  120. # 'nimtv' is incredibly hard to modularize! Best
  121. # effort is to store all thread vars in a ROD
  122. # section and with their type deps and load them
  123. # unconditionally...
  124. # nimtvDeps is VERY hard to cache because it's
  125. # not a list of IDs nor can it be made to be one.
  126. TCGen = object of PPassContext # represents a C source file
  127. s*: TCFileSections # sections of the C file
  128. flags*: set[CodegenFlag]
  129. module*: PSym
  130. filename*: AbsoluteFile
  131. cfilename*: AbsoluteFile # filename of the module (including path,
  132. # without extension)
  133. tmpBase*: Rope # base for temp identifier generation
  134. typeCache*: TypeCache # cache the generated types
  135. forwTypeCache*: TypeCache # cache for forward declarations of types
  136. declaredThings*: IntSet # things we have declared in this .c file
  137. declaredProtos*: IntSet # prototypes we have declared in this .c file
  138. headerFiles*: seq[string] # needed headers to include
  139. typeInfoMarker*: TypeCache # needed for generating type information
  140. initProc*: BProc # code for init procedure
  141. preInitProc*: BProc # code executed before the init proc
  142. hcrCreateTypeInfosProc*: Rope # type info globals are in here when HCR=on
  143. inHcrInitGuard*: bool # We are currently within a HCR reloading guard.
  144. typeStack*: TTypeSeq # used for type generation
  145. dataCache*: TNodeTable
  146. typeNodes*, nimTypes*: int # used for type info generation
  147. typeNodesName*, nimTypesName*: Rope # used for type info generation
  148. labels*: Natural # for generating unique module-scope names
  149. extensionLoaders*: array['0'..'9', Rope] # special procs for the
  150. # OpenGL wrapper
  151. injectStmt*: Rope
  152. sigConflicts*: CountTable[SigHash]
  153. g*: BModuleList
  154. ndi*: NdiFile
  155. template config*(m: BModule): ConfigRef = m.g.config
  156. template config*(p: BProc): ConfigRef = p.module.g.config
  157. proc includeHeader*(this: BModule; header: string) =
  158. if not this.headerFiles.contains header:
  159. this.headerFiles.add header
  160. proc s*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  161. # section in the current block
  162. result = p.blocks[p.blocks.len-1].sections[s]
  163. proc procSec*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  164. # top level proc sections
  165. result = p.blocks[0].sections[s]
  166. proc newProc*(prc: PSym, module: BModule): BProc =
  167. new(result)
  168. result.prc = prc
  169. result.module = module
  170. if prc != nil: result.options = prc.options
  171. else: result.options = module.config.options
  172. newSeq(result.blocks, 1)
  173. result.nestedTryStmts = @[]
  174. result.finallySafePoints = @[]
  175. result.sigConflicts = initCountTable[string]()
  176. proc newModuleList*(g: ModuleGraph): BModuleList =
  177. BModuleList(typeInfoMarker: initTable[SigHash, tuple[str: Rope, owner: PSym]](),
  178. config: g.config, graph: g, nimtvDeclared: initIntSet())
  179. iterator cgenModules*(g: BModuleList): BModule =
  180. for m in g.modulesClosed:
  181. # iterate modules in the order they were closed
  182. yield m