newruntime: make dynamic destructors compatible with C++

This commit is contained in:
Andreas Rumpf
2019-03-15 11:18:05 +01:00
parent 5dea7c5ad7
commit 831626be85
2 changed files with 4 additions and 3 deletions

View File

@@ -1255,7 +1255,7 @@ proc genObjectInfoV2(m: BModule, t, origType: PType, name: Rope; info: TLineInfo
else:
d = rope("NIM_NIL")
addf(m.s[cfsVars], "TNimType $1;$n", [name])
addf(m.s[cfsTypeInit3], "$1.destructor = $2; $1.size = sizeof($3); $1.name = $4;$n", [
addf(m.s[cfsTypeInit3], "$1.destructor = (void*)$2; $1.size = sizeof($3); $1.name = $4;$n", [
name, d, getTypeDesc(m, t), genTypeInfo2Name(m, t)])
proc genTypeInfo(m: BModule, t: PType; info: TLineInfo): Rope =

View File

@@ -27,8 +27,9 @@ hash of ``package & "." & module & "." & name`` to save space.
type
TNimNode {.compilerProc.} = object # to keep the code generator simple
DestructorProc = proc (p: pointer) {.nimcall, benign.}
TNimType {.compilerProc.} = object
destructor: proc (p: pointer) {.nimcall, benign.}
destructor: pointer
size: int
name: cstring
PNimType = ptr TNimType
@@ -65,7 +66,7 @@ proc nimRawDispose(p: pointer) {.compilerRtl.} =
proc nimDestroyAndDispose(p: pointer) {.compilerRtl.} =
let d = cast[ptr PNimType](p)[].destructor
if d != nil: d(p)
if d != nil: cast[DestructorProc](d)(p)
nimRawDispose(p)
proc isObj(obj: PNimType, subclass: cstring): bool {.compilerproc.} =