Re: [Tinycc-devel] Extend tcc to use viable.

2022-02-24 Thread Christian Jullien
Hello Yair, I only speak for myself but I doubt we will accept an extension to support a translator for a DLS that nobody knows. As you write a translator to C, I'm sure that you can translate to something that will implement your behavior (macro, lib, ...). Remember that all C++ version up to

[Tinycc-devel] Extend tcc to use viable.

2022-02-24 Thread Yair Lenga
Hi, I am working on a project to convert a proprietary DSL language into standard one. The proprietary language is executed by interpreter engine from intermedia representation. The challenge is maintaining the language and the runtime. I am exploring an option to use compile-on-the-fly approac

Re: [Tinycc-devel] Can a biggener (and idiot) like me read and understand TCC's backend so I can create my own frontend with it?

2022-02-24 Thread Ivo van Poorten
On Thu, 24 Feb 2022 11:16:54 -0500 Christopher Conforti wrote: > I hope I got this all straight, and I hope it helps! Yes, you basically nailed it. If you have a parser for language, you can either execute it directly in the language your parser is written in (interpreter), or output intermediate

Re: [Tinycc-devel] Can a biggener (and idiot) like me read and understand TCC's backend so I can create my own frontend with it?

2022-02-24 Thread Christopher Conforti
On Sat, 29 Jan 2022 10:08:11 +0100 (CET) rempas via Tinycc-devel wrote: > > 29 Ιαν 2022, 03:20 Από s...@conman.org: > > > It was thus said that the Great rempas via Tinycc-devel once stated: > > > >> Thanks! However, I don't understand how this will help me. I mean, I don't > >> even want to crea