Giter Club home page Giter Club logo

Comments (2)

calvin2021y avatar calvin2021y commented on June 16, 2024

1.37.0-beta1

ldmd2 -betterC test1.d -I. -linkonce-templates 

test1.d

import test2;

@nogc nothrow:

enum ARR = idupArray!();

extern(C) int main(int argc, char** argv){
	return 0;
}

test2.d

module test2;

struct Column {
    @nogc nothrow:
	int id;
}

auto idupArray()(){
	if (!__ctfe)
			return null;
	Column[2] _arr;
	return _arr[0..1].idup;
}
import/core/internal/array/duplication.d(39): Error: appending to array in `res ~= cast(immutable(Column))e` requires the GC which is not available with -betterC

remove linkonce-templates fix the problem.

from ldc.

kinke avatar kinke commented on June 16, 2024

Thx for the nice test case. This ultimately boils down to __ctfe being a runtime-constant, so the .idup call still ends up being codegen'd at the IR level, and then drags in further templates, most notably

if (__ctfe)
return _dupCtfe!(T, U)(a);
version (D_BetterC)
{
return _dupCtfe!(T, U)(a);
}

-linkonce-templates per definition emits all instantiated symbols referenced at the IR level, so a _dupCtfe instantiation too, which is only forward-declared without -linkonce-templates. In fact, without linker culling getting rid of unreferenced symbols:

ldc2 test1.d -betterC -disable-linker-strip-dead
ld: error: undefined symbol: _D4core8internal5array11duplication__T8_dupCtfeTS5test26ColumnTySQqQmZQBgFNaNbNiNfMAQBkZAyQBa
>>> referenced by test1.d
>>>               test1.o:(_D4core8internal5array11duplication__T4_dupTS5test26ColumnTySQqQmZQBcFNaNbNiNeMAQBkZAyQBa)
collect2: error: ld returned 1 exit status

from ldc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.