diff options
author | cooldome <cdome@bk.ru> | 2020-04-16 22:27:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 23:27:08 +0200 |
commit | d3b0132061235f316ac554690eb7e471caf95955 (patch) | |
tree | 0c97534f32b2b8cb01af355071bf6ed6ba4d6daf /compiler | |
parent | 9295251e68ee86b512de51a2f650729ac6893104 (diff) | |
download | Nim-d3b0132061235f316ac554690eb7e471caf95955.tar.gz |
Step2: fixes #13781, fixes #13805 (#13897)
* Fix sym owner in wrapper proc * threadpool changes * revert lowerings * add newFastMoveStmt * try fixing test by switching to cpp Co-authored-by: cooldome <ariabushenko@bk.ru>
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/injectdestructors.nim | 13 | ||||
-rw-r--r-- | compiler/lowerings.nim | 7 | ||||
-rw-r--r-- | compiler/spawn.nim | 24 |
3 files changed, 27 insertions, 17 deletions
diff --git a/compiler/injectdestructors.nim b/compiler/injectdestructors.nim index 07ab2730d..680a38397 100644 --- a/compiler/injectdestructors.nim +++ b/compiler/injectdestructors.nim @@ -44,7 +44,7 @@ type graph: ModuleGraph emptyNode: PNode otherRead: PNode - inLoop, hasUnstructuredCf, inDangerousBranch: int + inLoop, inSpawn, hasUnstructuredCf, inDangerousBranch: int declaredVars: IntSet # variables we already moved to the top level uninit: IntSet # set of uninit'ed vars uninitComputed: bool @@ -398,7 +398,7 @@ proc passCopyToSink(n: PNode; c: var Con): PNode = var m = genCopy(c, tmp, n) m.add p(n, c, normal) result.add m - if isLValue(n) and not isClosureEnv(n) and n.typ.skipTypes(abstractInst).kind != tyRef: + if isLValue(n) and not isClosureEnv(n) and n.typ.skipTypes(abstractInst).kind != tyRef and c.inSpawn == 0: message(c.graph.config, n.info, hintPerformance, ("passing '$1' to a sink parameter introduces an implicit copy; " & "use 'move($1)' to prevent it") % $n) @@ -830,6 +830,12 @@ proc p(n: PNode; c: var Con; mode: ProcessMode): PNode = if mode == normal and isRefConstr: result = ensureDestruction(result, c) of nkCallKinds: + let inSpawn = c.inSpawn + if n[0].kind == nkSym and n[0].sym.magic == mSpawn: + c.inSpawn.inc + elif c.inSpawn > 0: + c.inSpawn.dec + let parameters = n[0].typ let L = if parameters != nil: parameters.len else: 0 @@ -840,7 +846,7 @@ proc p(n: PNode; c: var Con; mode: ProcessMode): PNode = result = shallowCopy(n) for i in 1..<n.len: - if i < L and isSinkTypeForParam(parameters[i]): + if i < L and (isSinkTypeForParam(parameters[i]) or inSpawn > 0): result[i] = p(n[i], c, sinkArg) else: result[i] = p(n[i], c, normal) @@ -1085,7 +1091,6 @@ proc injectDestructorCalls*(g: ModuleGraph; owner: PSym; n: PNode): PNode = let t = params[i].sym.typ if isSinkTypeForParam(t) and hasDestructor(t.skipTypes({tySink})): c.destroys.add genDestroy(c, params[i]) - #if optNimV2 in c.graph.config.globalOptions: # injectDefaultCalls(n, c) let body = p(n, c, normal) diff --git a/compiler/lowerings.nim b/compiler/lowerings.nim index 091b291c2..575bfe8aa 100644 --- a/compiler/lowerings.nim +++ b/compiler/lowerings.nim @@ -59,6 +59,13 @@ proc newFastAsgnStmt*(le, ri: PNode): PNode = result[0] = le result[1] = ri +proc newFastMoveStmt*(g: ModuleGraph, le, ri: PNode): PNode = + result = newNodeI(nkFastAsgn, le.info, 2) + result[0] = le + result[1] = newNodeIT(nkCall, ri.info, ri.typ) + result[1].add newSymNode(getSysMagic(g, ri.info, "move", mMove)) + result[1].add ri + proc lowerTupleUnpacking*(g: ModuleGraph; n: PNode; owner: PSym): PNode = assert n.kind == nkVarTuple let value = n.lastSon diff --git a/compiler/spawn.nim b/compiler/spawn.nim index 2f078309b..c60dd934c 100644 --- a/compiler/spawn.nim +++ b/compiler/spawn.nim @@ -10,7 +10,7 @@ ## This module implements threadpool's ``spawn``. import ast, types, idents, magicsys, msgs, options, modulegraphs, - lowerings + lowerings, liftdestructors from trees import getMagic, getRoot proc callProc(a: PNode): PNode = @@ -36,8 +36,9 @@ proc spawnResult*(t: PType; inParallel: bool): TSpawnResult = elif inParallel and not containsGarbageCollectedRef(t): srByVar else: srFlowVar -proc flowVarKind(t: PType): TFlowVarKind = - if t.skipTypes(abstractInst).kind in {tyRef, tyString, tySequence}: fvGC +proc flowVarKind(c: ConfigRef, t: PType): TFlowVarKind = + if c.selectedGC in {gcArc, gcOrc}: fvBlob + elif t.skipTypes(abstractInst).kind in {tyRef, tyString, tySequence}: fvGC elif containsGarbageCollectedRef(t): fvInvalid else: fvBlob @@ -66,17 +67,11 @@ proc addLocalVar(g: ModuleGraph; varSection, varInit: PNode; owner: PSym; typ: P varSection.add vpart if varInit != nil: if g.config.selectedGC in {gcArc, gcOrc}: - if typ.attachedOps[attachedAsgn] != nil: - var call = newNode(nkCall) - call.add newSymNode(typ.attachedOps[attachedAsgn]) - call.add genAddrOf(newSymNode(result), tyVar) - call.add v - varInit.add call - else: - varInit.add newFastAsgnStmt(newSymNode(result), v) + # inject destructors pass will do its own analysis + varInit.add newFastMoveStmt(g, newSymNode(result), v) else: if useShallowCopy and typeNeedsNoDeepCopy(typ) or optTinyRtti in g.config.globalOptions: - varInit.add newFastAsgnStmt(newSymNode(result), v) + varInit.add newFastMoveStmt(g, newSymNode(result), v) else: let deepCopyCall = newNodeI(nkCall, varInit.info, 3) deepCopyCall[0] = newSymNode(getSysMagic(g, varSection.info, "deepCopy", mDeepCopy)) @@ -145,7 +140,7 @@ proc createWrapperProc(g: ModuleGraph; f: PNode; threadParam, argsParam: PSym; if spawnKind == srByVar: body.add newAsgnStmt(genDeref(threadLocalProm.newSymNode), call) elif fv != nil: - let fk = fv.typ[1].flowVarKind + let fk = flowVarKind(g.config, fv.typ[1]) if fk == fvInvalid: localError(g.config, f.info, "cannot create a flowVar of type: " & typeToString(fv.typ[1])) @@ -333,6 +328,8 @@ proc wrapProcForSpawn*(g: ModuleGraph; owner: PSym; spawnExpr: PNode; retType: P wrapperProc = newSym(skProc, getIdent(g.cache, name), owner, fn.info, g.config.options) threadParam = newSym(skParam, getIdent(g.cache, "thread"), wrapperProc, n.info, g.config.options) argsParam = newSym(skParam, getIdent(g.cache, "args"), wrapperProc, n.info, g.config.options) + + wrapperProc.flags.incl sfInjectDestructors block: let ptrType = getSysType(g, n.info, tyPointer) threadParam.typ = ptrType @@ -411,6 +408,7 @@ proc wrapProcForSpawn*(g: ModuleGraph; owner: PSym; spawnExpr: PNode; retType: P fvAsExpr = indirectAccess(castExpr, field, n.info) result.add newFastAsgnStmt(newDotExpr(scratchObj, field), genAddrOf(dest)) + createTypeBoundOps(g, nil, objType, n.info) createWrapperProc(g, fn, threadParam, argsParam, varSection, varInit, call, barrierAsExpr, fvAsExpr, spawnKind, wrapperProc) |