cgendata.nim 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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, sets
  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. cfsHeaders, # section for C include file headers
  17. cfsFrameDefines # section for nim frame macros
  18. cfsForwardTypes, # section for C forward typedefs
  19. cfsTypes, # section for C typedefs
  20. cfsSeqTypes, # section for sequence types only
  21. # this is needed for strange type generation
  22. # reasons
  23. cfsTypeInfo, # section for type information (ag ABI checks)
  24. cfsProcHeaders, # section for C procs prototypes
  25. cfsStrData, # section for constant string literals
  26. cfsData, # section for C constant data
  27. cfsVars, # section for C variable declarations
  28. cfsProcs, # section for C procs that are not inline
  29. cfsInitProc, # section for the C init proc
  30. cfsDatInitProc, # section for the C datInit proc
  31. cfsTypeInit1, # section 1 for declarations of type information
  32. cfsTypeInit3, # section 3 for init of type information
  33. cfsDynLibInit, # section for init of dynamic library binding
  34. TCTypeKind* = enum # describes the type kind of a C type
  35. ctVoid, ctChar, ctBool,
  36. ctInt, ctInt8, ctInt16, ctInt32, ctInt64,
  37. ctFloat, ctFloat32, ctFloat64, ctFloat128,
  38. ctUInt, ctUInt8, ctUInt16, ctUInt32, ctUInt64,
  39. ctArray, ctPtrToArray, ctStruct, ctPtr, ctNimStr, ctNimSeq, ctProc,
  40. ctCString
  41. TCFileSections* = array[TCFileSection, Rope] # represents a generated C file
  42. TCProcSection* = enum # the sections a generated C proc consists of
  43. cpsLocals, # section of local variables for C proc
  44. cpsInit, # section for init of variables for C proc
  45. cpsStmts # section of local statements for C proc
  46. TCProcSections* = array[TCProcSection, Rope] # represents a generated C proc
  47. BModule* = ref TCGen
  48. BProc* = ref TCProc
  49. TBlock* = object
  50. id*: int # the ID of the label; positive means that it
  51. label*: Rope # generated text for the label
  52. # nil if label is not used
  53. sections*: TCProcSections # the code belonging
  54. isLoop*: bool # whether block is a loop
  55. nestedTryStmts*: int16 # how many try statements is it nested into
  56. nestedExceptStmts*: int16 # how many except statements is it nested into
  57. frameLen*: int16
  58. TCProcFlag* = enum
  59. beforeRetNeeded,
  60. threadVarAccessed,
  61. hasCurFramePointer,
  62. noSafePoints,
  63. nimErrorFlagAccessed,
  64. nimErrorFlagDeclared,
  65. nimErrorFlagDisabled
  66. TCProc = object # represents C proc that is currently generated
  67. prc*: PSym # the Nim proc that this C proc belongs to
  68. flags*: set[TCProcFlag]
  69. lastLineInfo*: TLineInfo # to avoid generating excessive 'nimln' statements
  70. currLineInfo*: TLineInfo # AST codegen will make this superfluous
  71. nestedTryStmts*: seq[tuple[fin: PNode, inExcept: bool, label: Natural]]
  72. # in how many nested try statements we are
  73. # (the vars must be volatile then)
  74. # bool is true when are in the except part of a try block
  75. finallySafePoints*: seq[Rope] # For correctly cleaning up exceptions when
  76. # using return in finally statements
  77. labels*: Natural # for generating unique labels in the C proc
  78. blocks*: seq[TBlock] # nested blocks
  79. breakIdx*: int # the block that will be exited
  80. # with a regular break
  81. options*: TOptions # options that should be used for code
  82. # generation; this is the same as prc.options
  83. # unless prc == nil
  84. optionsStack*: seq[TOptions]
  85. module*: BModule # used to prevent excessive parameter passing
  86. withinLoop*: int # > 0 if we are within a loop
  87. splitDecls*: int # > 0 if we are in some context for C++ that
  88. # requires 'T x = T()' to become 'T x; x = T()'
  89. # (yes, C++ is weird like that)
  90. withinTryWithExcept*: int # required for goto based exception handling
  91. withinBlockLeaveActions*: int # complex to explain
  92. sigConflicts*: CountTable[string]
  93. inUncheckedAssignSection*: int
  94. TTypeSeq* = seq[PType]
  95. TypeCache* = Table[SigHash, Rope]
  96. TypeCacheWithOwner* = Table[SigHash, tuple[str: Rope, owner: int32]]
  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. useAliveDataFromDce # use the `alive: IntSet` field instead of
  106. # computing alive data on our own.
  107. BModuleList* = ref object of RootObj
  108. mainModProcs*, mainModInit*, otherModsInit*, mainDatInit*: Rope
  109. mapping*: Rope # the generated mapping file (if requested)
  110. modules*: seq[BModule] # list of all compiled modules
  111. modulesClosed*: seq[BModule] # list of the same compiled modules, but in the order they were closed
  112. forwardedProcs*: seq[PSym] # proc:s that did not yet have a body
  113. generatedHeader*: BModule
  114. typeInfoMarker*: TypeCacheWithOwner
  115. typeInfoMarkerV2*: TypeCacheWithOwner
  116. config*: ConfigRef
  117. graph*: ModuleGraph
  118. strVersion*, seqVersion*: int # version of the string/seq implementation to use
  119. nimtv*: Rope # Nim thread vars; the struct body
  120. nimtvDeps*: seq[PType] # type deps: every module needs whole struct
  121. nimtvDeclared*: IntSet # so that every var/field exists only once
  122. # in the struct
  123. # 'nimtv' is incredibly hard to modularize! Best
  124. # effort is to store all thread vars in a ROD
  125. # section and with their type deps and load them
  126. # unconditionally...
  127. # nimtvDeps is VERY hard to cache because it's
  128. # not a list of IDs nor can it be made to be one.
  129. TCGen = object of PPassContext # represents a C source file
  130. s*: TCFileSections # sections of the C file
  131. flags*: set[CodegenFlag]
  132. module*: PSym
  133. filename*: AbsoluteFile
  134. cfilename*: AbsoluteFile # filename of the module (including path,
  135. # without extension)
  136. tmpBase*: Rope # base for temp identifier generation
  137. typeCache*: TypeCache # cache the generated types
  138. typeABICache*: HashSet[SigHash] # cache for ABI checks; reusing typeCache
  139. # would be ideal but for some reason enums
  140. # don't seem to get cached so it'd generate
  141. # 1 ABI check per occurence in code
  142. forwTypeCache*: TypeCache # cache for forward declarations of types
  143. declaredThings*: IntSet # things we have declared in this .c file
  144. declaredProtos*: IntSet # prototypes we have declared in this .c file
  145. alive*: IntSet # symbol IDs of alive data as computed by `dce.nim`
  146. headerFiles*: seq[string] # needed headers to include
  147. typeInfoMarker*: TypeCache # needed for generating type information
  148. typeInfoMarkerV2*: TypeCache
  149. initProc*: BProc # code for init procedure
  150. preInitProc*: BProc # code executed before the init proc
  151. hcrCreateTypeInfosProc*: Rope # type info globals are in here when HCR=on
  152. inHcrInitGuard*: bool # We are currently within a HCR reloading guard.
  153. typeStack*: TTypeSeq # used for type generation
  154. dataCache*: TNodeTable
  155. typeNodes*, nimTypes*: int # used for type info generation
  156. typeNodesName*, nimTypesName*: Rope # used for type info generation
  157. labels*: Natural # for generating unique module-scope names
  158. extensionLoaders*: array['0'..'9', Rope] # special procs for the
  159. # OpenGL wrapper
  160. sigConflicts*: CountTable[SigHash]
  161. g*: BModuleList
  162. ndi*: NdiFile
  163. template config*(m: BModule): ConfigRef = m.g.config
  164. template config*(p: BProc): ConfigRef = p.module.g.config
  165. template vccAndC*(p: BProc): bool = p.module.config.cCompiler == ccVcc and p.module.config.backend == backendC
  166. proc includeHeader*(this: BModule; header: string) =
  167. if not this.headerFiles.contains header:
  168. this.headerFiles.add header
  169. proc s*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  170. # section in the current block
  171. result = p.blocks[^1].sections[s]
  172. proc procSec*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  173. # top level proc sections
  174. result = p.blocks[0].sections[s]
  175. proc initBlock*(): TBlock =
  176. result = TBlock()
  177. for i in low(result.sections)..high(result.sections):
  178. result.sections[i] = newRopeAppender()
  179. proc newProc*(prc: PSym, module: BModule): BProc =
  180. new(result)
  181. result.prc = prc
  182. result.module = module
  183. result.options = if prc != nil: prc.options
  184. else: module.config.options
  185. result.blocks = @[initBlock()]
  186. result.nestedTryStmts = @[]
  187. result.finallySafePoints = @[]
  188. result.sigConflicts = initCountTable[string]()
  189. proc newModuleList*(g: ModuleGraph): BModuleList =
  190. BModuleList(typeInfoMarker: initTable[SigHash, tuple[str: Rope, owner: int32]](),
  191. config: g.config, graph: g, nimtvDeclared: initIntSet())
  192. iterator cgenModules*(g: BModuleList): BModule =
  193. for m in g.modulesClosed:
  194. # iterate modules in the order they were closed
  195. yield m