cgendata.nim 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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 beloging
  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[n: 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. breakPointId*: int
  113. breakpoints*: Rope # later the breakpoints are inserted into the main proc
  114. typeInfoMarker*: TypeCacheWithOwner
  115. config*: ConfigRef
  116. graph*: ModuleGraph
  117. strVersion*, seqVersion*: int # version of the string/seq implementation to use
  118. nimtv*: Rope # Nim thread vars; the struct body
  119. nimtvDeps*: seq[PType] # type deps: every module needs whole struct
  120. nimtvDeclared*: IntSet # so that every var/field exists only once
  121. # in the struct
  122. # 'nimtv' is incredibly hard to modularize! Best
  123. # effort is to store all thread vars in a ROD
  124. # section and with their type deps and load them
  125. # unconditionally...
  126. # nimtvDeps is VERY hard to cache because it's
  127. # not a list of IDs nor can it be made to be one.
  128. TCGen = object of PPassContext # represents a C source file
  129. s*: TCFileSections # sections of the C file
  130. flags*: set[CodegenFlag]
  131. module*: PSym
  132. filename*: AbsoluteFile
  133. cfilename*: AbsoluteFile # filename of the module (including path,
  134. # without extension)
  135. tmpBase*: Rope # base for temp identifier generation
  136. typeCache*: TypeCache # cache the generated types
  137. forwTypeCache*: TypeCache # cache for forward declarations of types
  138. declaredThings*: IntSet # things we have declared in this .c file
  139. declaredProtos*: IntSet # prototypes we have declared in this .c file
  140. headerFiles*: seq[string] # needed headers to include
  141. typeInfoMarker*: TypeCache # needed for generating type information
  142. initProc*: BProc # code for init procedure
  143. preInitProc*: BProc # code executed before the init proc
  144. hcrCreateTypeInfosProc*: Rope # type info globals are in here when HCR=on
  145. inHcrInitGuard*: bool # We are currently withing a HCR reloading guard.
  146. typeStack*: TTypeSeq # used for type generation
  147. dataCache*: TNodeTable
  148. typeNodes*, nimTypes*: int # used for type info generation
  149. typeNodesName*, nimTypesName*: Rope # used for type info generation
  150. labels*: Natural # for generating unique module-scope names
  151. extensionLoaders*: array['0'..'9', Rope] # special procs for the
  152. # OpenGL wrapper
  153. injectStmt*: Rope
  154. sigConflicts*: CountTable[SigHash]
  155. g*: BModuleList
  156. ndi*: NdiFile
  157. template config*(m: BModule): ConfigRef = m.g.config
  158. template config*(p: BProc): ConfigRef = p.module.g.config
  159. proc includeHeader*(this: BModule; header: string) =
  160. if not this.headerFiles.contains header:
  161. this.headerFiles.add header
  162. proc s*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  163. # section in the current block
  164. result = p.blocks[p.blocks.len-1].sections[s]
  165. proc procSec*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  166. # top level proc sections
  167. result = p.blocks[0].sections[s]
  168. proc newProc*(prc: PSym, module: BModule): BProc =
  169. new(result)
  170. result.prc = prc
  171. result.module = module
  172. if prc != nil: result.options = prc.options
  173. else: result.options = module.config.options
  174. newSeq(result.blocks, 1)
  175. result.nestedTryStmts = @[]
  176. result.finallySafePoints = @[]
  177. result.sigConflicts = initCountTable[string]()
  178. proc newModuleList*(g: ModuleGraph): BModuleList =
  179. BModuleList(typeInfoMarker: initTable[SigHash, tuple[str: Rope, owner: PSym]](),
  180. config: g.config, graph: g, nimtvDeclared: initIntSet())
  181. iterator cgenModules*(g: BModuleList): BModule =
  182. for m in g.modulesClosed:
  183. # iterate modules in the order they were closed
  184. yield m