similar to: [LLVMdev] OpenCL Backend

Displaying 20 results from an estimated 4000 matches similar to: "[LLVMdev] OpenCL Backend"

2011 Aug 27
0
[LLVMdev] Is LLVM compatible with AMD?
Villmow, excuse me about the previous reply. :$ So, I'm thinking about OpenGL, or other generic graphical libraries. 2011/8/26 Villmow, Micah <Micah.Villmow at amd.com> > In what context? Also, please have all replies go to the mailing list and > not to the contributor directly.**** > > ** ** > > Thanks,**** > > Micah**** > > ** ** > > *From:*
2011 Aug 26
4
[LLVMdev] Is LLVM compatible with AMD?
Hi all! I'm getting starting with LLVM, and I'm creating a new cross-platform programming language LLVM-based with a Standard Library POSIX-based. The language has sintatic sugar of Object Pascal and Ruby. My doubt is if LLVM is compatible with AMD (e.g. Fusion), allowing so that my StdLib can be used to create Games, in future... Regards! -------------- next part -------------- An HTML
2011 Aug 27
1
[LLVMdev] OpenCL Backend
Hi Simon! I'm too interested in your project. I'm creating something like. []'s 2011/8/27 Tobias Grosser <tobias at grosser.es> > On 08/27/2011 09:56 AM, Simon Moll wrote: > > Hi, > > > > as you come to speak of it, i have implemented an OpenCL-Backend for > > LLVM as part of my bachelor thesis (and for GLSlang as well, see > >
2011 Aug 26
0
[LLVMdev] Is LLVM compatible with AMD?
You can find out about OpenCL here: http://www.khronos.org/opencl/ That being said, AMD OpenCL is not a target of LLVM. AMD uses LLVM for its optimizer and code generation paths for the OpenCL compiler. Micah From: geovanisouza92 at gmail.com [mailto:geovanisouza92 at gmail.com] Sent: Friday, August 26, 2011 10:06 AM To: Villmow, Micah Subject: Re: [LLVMdev] Is LLVM compatible with AMD? So,
2011 Aug 28
2
[LLVMdev] LLVM supports Unicode?
> geovanisouza92 at gmail.com wrote: >> Thanks for reply, Nick! >> >> The project has this feature in roadmap? > > What feature? LLVM is not a text editor, it is not obvious what LLVM has > to do with Unicode. Please explain. > > Nick Presumably he means identifier names.
2011 Aug 28
0
[LLVMdev] LLVM supports Unicode?
Well, LLVM is a compiler infrastructure, right? So, it don't should support Unicode for construct programming languages over it? Or, the front-end of my programming language has to analize the source code, and convert it to LLVM-IR? If this is right way, sorry for my confusion... []'s 2011/8/28 FlyLanguage <flylanguage at gmail.com> > geovanisouza92 at gmail.com wrote:
2011 Aug 27
0
[LLVMdev] OpenCL Backend
On 08/27/2011 09:56 AM, Simon Moll wrote: > Hi, > > as you come to speak of it, i have implemented an OpenCL-Backend for > LLVM as part of my bachelor thesis (and for GLSlang as well, see > http://www.cdl.uni-saarland.de/publications/theses/moll_bsc.pdf ). > However, the code is currently unreleased. But that could be arranged, > if you are interested in using it. Hi Simon,
2011 Aug 28
2
[LLVMdev] LLVM supports Unicode?
Thanks for reply, Nick! The project has this feature in roadmap? []'s 2011/8/27 Nick Lewycky <nicholas at mxc.ca> > geovanisouza92 at gmail.com wrote: > >> Hi everyone! >> >> LLVM supports Unicode? >> >> Is possible adapt LLVM to support Unicode? What problems can happen on >> try this? >> > > Value names can be any sequence of
2011 Aug 28
0
[LLVMdev] LLVM supports Unicode?
geovanisouza92 at gmail.com wrote: > Thanks for reply, Nick! > > The project has this feature in roadmap? What feature? LLVM is not a text editor, it is not obvious what LLVM has to do with Unicode. Please explain. Nick > > []'s > > > 2011/8/27 Nick Lewycky <nicholas at mxc.ca <mailto:nicholas at mxc.ca>> > > geovanisouza92 at gmail.com
2011 Aug 27
0
[LLVMdev] LLVM supports Unicode?
geovanisouza92 at gmail.com wrote: > Hi everyone! > > LLVM supports Unicode? > > Is possible adapt LLVM to support Unicode? What problems can happen on > try this? Value names can be any sequence of bytes, even including nulls. LLVM itself does not have any particular support for Unicode, or for any encoding except ASCII. Nick
2011 Aug 27
2
[LLVMdev] LLVM supports Unicode?
Hi everyone! LLVM supports Unicode? Is possible adapt LLVM to support Unicode? What problems can happen on try this? []'s -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110827/be9f08ca/attachment.html>
2011 Sep 08
2
[LLVMdev] How to fix an error like "Don't have a definition for uint64_t on this platform"?
Hi everyone! I'm trying compile an compiler project that uses LLVM 2.9, and I'm having difficult with the error "Don't have a definition for uint64_t on this platform". I set the '__STDC_LIMIT_MACROS' and '__STDC_CONSTANT_MACROS' defines, and save the "DataTypes.h.in" as "DataTypes.h", to compiler can locate them. I'm using
2011 Aug 28
0
[LLVMdev] LLVM supports Unicode?
Hi, Jo! I'm trying create a new programming language, and I want that it have Unicode support (support for read and manipulate rightly the source-code and string literals). But, in addition, my programming language supports "string interpolation" string, and in these interpolations, tiny snippets of code, like expressions, or variable names. So, I need read each char, separating
2011 Sep 09
0
[LLVMdev] How to fix an error like "Don't have a definition for uint64_t on this platform"?
On Thu, Sep 8, 2011 at 11:52 PM, geovanisouza92 at gmail.com < geovanisouza92 at gmail.com> wrote: > I set the '__STDC_LIMIT_MACROS' and '__STDC_CONSTANT_MACROS' defines, and > save the "DataTypes.h.in" as "DataTypes.h", to compiler can locate them. > Don't do this, it's wrong. The "DataTypes.h" should be created from "
2011 Aug 28
4
[LLVMdev] LLVM supports Unicode?
Am 28.08.2011 16:02, schrieb geovanisouza92 at gmail.com: > Well, have you any idea about how I can implement rightly Unicode in C/C++? What do you mean with "implement in C/C++"? If you mean adding libraries to C/C++ that correctly deal with Unicode: that's nothing you do with a compiler infrastructure. And probably duplicate work, since Unicode libraries already exist. If
2012 Mar 09
1
[LLVMdev] How to avoid include the same source-file more than once?
How can I avoid include the same source-file more than once or the different files with the same content, when all files will be merged in only one binary file? Let me clear this: In my programming language project, two classes with the same names will be merged, not generating a semantic error or whatever. Isn't a bug, is a feature. :o) E.g. ## file1.arc include "base.arc" ##
2011 Aug 28
1
[LLVMdev] LLVM supports Unicode?
geovanisouza92 at gmail.com wrote: > I'm trying create a new programming language, and I want that it have > Unicode support (support for read and manipulate rightly the source-code and > string literals). LLVM IR iteself only supports one string ty, which is an array of i8 (8 bit integers). In your compile you can use utf-8 and any utf8 string literal can be stored in an i8 array
2011 Aug 28
2
[LLVMdev] LLVM supports Unicode?
Am 28.08.2011 20:02, schrieb geovanisouza92 at gmail.com: > Hi, Jo! > > I'm trying create a new programming language, and I want that it have > Unicode support (support for read and manipulate rightly the source-code and > string literals). > > But, in addition, my programming language supports "string interpolation" > string, and in these interpolations, tiny
2011 Aug 28
0
[LLVMdev] LLVM supports Unicode?
Well, have you any idea about how I can implement rightly Unicode in C/C++? Thanks. 2011/8/28 FlyLanguage <flylanguage at gmail.com> > Or, the front-end of my programming language has to analize the source >> code, and convert it to LLVM-IR? >> > > Yes > -- @geovanisouza92 - Geovani de Souza -------------- next part -------------- An HTML attachment was
2011 Aug 28
2
[LLVMdev] Which level of LLVM integration with native code, like DLLs?
Hi everyone! I come here to learn about integration of LLVM with native code. It can work with other native libraries (like dll)? Thanks again. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110828/77390c93/attachment.html>