cgendata.nim 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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, astalgo, ropes, passes, options, intsets, platform, sighashes,
  12. tables, ndi, lineinfos, pathutils
  13. from modulegraphs import ModuleGraph, PPassContext
  14. type
  15. TLabel* = Rope # for the C generator a label is just a rope
  16. TCFileSection* = enum # the sections a generated C file consists of
  17. cfsMergeInfo, # section containing merge information
  18. cfsHeaders, # section for C include file headers
  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. lastLineInfo*: TLineInfo # to avoid generating excessive 'nimln' statements
  70. currLineInfo*: TLineInfo # AST codegen will make this superfluous
  71. nestedTryStmts*: seq[tuple[n: PNode, inExcept: bool]]
  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. maxFrameLen*: int # max length of frame descriptor
  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. gcFrameId*: Natural # for the GC stack marking
  91. gcFrameType*: Rope # the struct {} we put the GC markers into
  92. sigConflicts*: CountTable[string]
  93. TTypeSeq* = seq[PType]
  94. TypeCache* = Table[SigHash, Rope]
  95. Codegenflag* = enum
  96. preventStackTrace, # true if stack traces need to be prevented
  97. usesThreadVars, # true if the module uses a thread var
  98. frameDeclared, # hack for ROD support so that we don't declare
  99. # a frame var twice in an init proc
  100. isHeaderFile, # C source file is the header file
  101. includesStringh, # C source file already includes ``<string.h>``
  102. objHasKidsValid # whether we can rely on tfObjHasKids
  103. BModuleList* = ref object of RootObj
  104. mainModProcs*, mainModInit*, otherModsInit*, mainDatInit*: Rope
  105. mapping*: Rope # the generated mapping file (if requested)
  106. modules*: seq[BModule] # list of all compiled modules
  107. modules_closed*: seq[BModule] # list of the same compiled modules, but in the order they were closed
  108. forwardedProcs*: seq[PSym] # proc:s that did not yet have a body
  109. generatedHeader*: BModule
  110. breakPointId*: int
  111. breakpoints*: Rope # later the breakpoints are inserted into the main proc
  112. typeInfoMarker*: TypeCache
  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. typeStack*: TTypeSeq # used for type generation
  143. dataCache*: TNodeTable
  144. typeNodes*, nimTypes*: int # used for type info generation
  145. typeNodesName*, nimTypesName*: Rope # used for type info generation
  146. labels*: Natural # for generating unique module-scope names
  147. extensionLoaders*: array['0'..'9', Rope] # special procs for the
  148. # OpenGL wrapper
  149. injectStmt*: Rope
  150. sigConflicts*: CountTable[SigHash]
  151. g*: BModuleList
  152. ndi*: NdiFile
  153. template config*(m: BModule): ConfigRef = m.g.config
  154. template config*(p: BProc): ConfigRef = p.module.g.config
  155. proc includeHeader*(this: BModule; header: string) =
  156. if not this.headerFiles.contains header:
  157. this.headerFiles.add header
  158. proc s*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  159. # section in the current block
  160. result = p.blocks[p.blocks.len-1].sections[s]
  161. proc procSec*(p: BProc, s: TCProcSection): var Rope {.inline.} =
  162. # top level proc sections
  163. result = p.blocks[0].sections[s]
  164. proc newProc*(prc: PSym, module: BModule): BProc =
  165. new(result)
  166. result.prc = prc
  167. result.module = module
  168. if prc != nil: result.options = prc.options
  169. else: result.options = module.config.options
  170. newSeq(result.blocks, 1)
  171. result.nestedTryStmts = @[]
  172. result.finallySafePoints = @[]
  173. result.sigConflicts = initCountTable[string]()
  174. proc newModuleList*(g: ModuleGraph): BModuleList =
  175. BModuleList(typeInfoMarker: initTable[SigHash, Rope](), config: g.config,
  176. graph: g, nimtvDeclared: initIntSet())
  177. iterator cgenModules*(g: BModuleList): BModule =
  178. for m in g.modules_closed:
  179. # iterate modules in the order they were closed
  180. yield m