search for: ldc

Displaying 20 results from an estimated 147 matches for "ldc".

Did you mean: dc
2013 Dec 02
3
[LLVMdev] Please update LDC references on LLVM website
Hi! I like to submit some updates to the LLVM website regarding the LDC compiler. All links are currently out-of-date. The following pages need updates: On page http://www.llvm.org/Users.html, please replace the existing entry "LLVM D Compiler" in section "Open Source Projects" with: <tr> <td><a href="http://wiki.dla...
2013 Dec 03
0
[LLVMdev] Please update LDC references on LLVM website
Can you send a patch? On 2 December 2013 06:44, Kai Nacke <kai at redstar.de> wrote: > Hi! > > I like to submit some updates to the LLVM website regarding the LDC > compiler. All links are currently out-of-date. The following pages need > updates: > > On page http://www.llvm.org/Users.html, please replace the existing entry > "LLVM D Compiler" in section "Open Source Projects" with: > > <tr> > <td&gt...
2013 Dec 03
1
[LLVMdev] Please update LDC references on LLVM website
...i Rafael, the patch is attached. @Mikael, Tim Thanks for the help. I really needed only the link to the repo. Regards, Kai > > On 2 December 2013 06:44, Kai Nacke <kai at redstar.de> wrote: >> Hi! >> >> I like to submit some updates to the LLVM website regarding the LDC >> compiler. All links are currently out-of-date. The following pages need >> updates: >> >> On page http://www.llvm.org/Users.html, please replace the existing entry >> "LLVM D Compiler" in section "Open Source Projects" with: >> >>...
2013 Dec 03
2
[LLVMdev] Please update LDC references on LLVM website
...roduce a diff between the 2 versions? Regards, Kai On 03.12.2013 14:30, Rafael Espíndola wrote: > Can you send a patch? > > On 2 December 2013 06:44, Kai Nacke <kai at redstar.de> wrote: >> Hi! >> >> I like to submit some updates to the LLVM website regarding the LDC >> compiler. All links are currently out-of-date. The following pages need >> updates: >> >> On page http://www.llvm.org/Users.html, please replace the existing entry >> "LLVM D Compiler" in section "Open Source Projects" with: >> >>...
2008 Oct 28
2
[LLVMdev] ldc (LLVM backend for the D Programming Language) has x86-64 support
Hello everyone, I just thought I would let people here know that ldc (llvm backend for the D Programming Language) is getting pretty usable (a few larger libraries compile) and it now has x86-64 support added. I decided to run some timings on some D and C++ code to compare ldc to dmd (the mainline compiler), gdc (the gcc based D compiler) and g++. I used a ray traci...
2013 Dec 03
0
[LLVMdev] Please update LDC references on LLVM website
...; Kai > > On 03.12.2013 14:30, Rafael Espíndola wrote: > >> Can you send a patch? >> >> On 2 December 2013 06:44, Kai Nacke <kai at redstar.de> wrote: >> >>> Hi! >>> >>> I like to submit some updates to the LLVM website regarding the LDC >>> compiler. All links are currently out-of-date. The following pages need >>> updates: >>> >>> On page http://www.llvm.org/Users.html, please replace the existing >>> entry >>> "LLVM D Compiler" in section "Open Source Projects&...
2008 Oct 28
0
[LLVMdev] ldc (LLVM backend for the D Programming Language) has x86-64 support
On Oct 27, 2008, at 11:03 PM, Kelly W wrote: > Hello everyone, > > I just thought I would let people here know that ldc (llvm backend > for the D Programming Language) is getting pretty usable (a few > larger libraries compile) and it now has x86-64 support added. I > decided to run some timings on some D and C++ code to compare ldc to > dmd (the mainline compiler), gdc (the gcc based D compiler)...
2009 Jan 09
0
[LLVMdev] LLVM based D compiler released
Maybe it's time to add it to the LLVM projects list. :) The original annoucement on digitalmars.D.announce and http://www.incasoftware.de/~kamm/projects/index.php/2009/01/09/ldc-09-released/ was: --- The first version of LDC (http://www.dsource.org/projects/ldc), the LLVM based compiler for version one of the D programming language has been released for x86-32 Linux. Get it here: http://www.incasoftware.de/~kamm/ldc/ldc-0.9.tbz2 We had already announced this release dur...
2017 Jul 05
3
MSP430 code generation from LLVM IR
Hello, While trying to find out why the LDC compiler refuses to generate object code for MSP430 targets (but generates MSP430 assembly or LLVM IR/bitcode), I came across the following apparent inconsistency. This works: $ clang --target=msp430 -c test.c This doesn't work: $ clang --target=msp430 -S -emit-llvm test.c $ llc -filetype=o...
2009 May 18
4
[LLVMdev] [PATCH] llvm-config: add svn revision to --version
At the moment llvm-config outputs "2.6svn" if llvm is build from trunk $ llvm-config --version 2.6svn Some external projects (built out-of-tree) need to know which revision of llvm is installed. LDC currently asks llvm-config --src-root for the source directory and then parses svn info's output to get the revision number. This requires the user to keep the llvm source tree around even if it is not needed to build ldc. The attached patch modifies the llvm build system (both autotools...
2009 May 18
0
[LLVMdev] [PATCH] llvm-config: add svn revision to --version
Benjamin Kramer wrote: > At the moment llvm-config outputs "2.6svn" if llvm is build from trunk > > $ llvm-config --version > 2.6svn > > Some external projects (built out-of-tree) need to know which revision > of llvm is installed. LDC currently asks llvm-config --src-root for the > source directory and then parses svn info's output to get the revision > number. This requires the user to keep the llvm source tree around even > if it is not needed to build ldc. Not technically true; it's not *required*. Howeve...
2017 Jul 06
2
MSP430 code generation from LLVM IR
On Thu, Jul 6, 2017 at 1:35 AM, Nicholas Wilson < iamthewilsonator at hotmail.com> wrote: > Luís, try using the -no-integrated-as flag to execute the assembler for > you. > We should probably make that the default for MSP430. > Cool. When I did that on macOS, LDC generated a lot of complaints, possibly because it is assuming mach-o files. I tried changing from -mtriple=msp430 to -mtriple=msp430-unknown-elf, to no avail. E.g.: $ ldc2 -mtriple=msp430-unknown-elf -c -no-integrated-as qosd.d ldc-ad1c8f0.s:3:11: error: mach-o section specifier requires a segmen...
2009 May 18
2
[LLVMdev] [PATCH] llvm-config: add svn revision to --version
...Benjamin Kramer wrote: > >> At the moment llvm-config outputs "2.6svn" if llvm is build from trunk >> >> $ llvm-config --version >> 2.6svn >> >> Some external projects (built out-of-tree) need to know which revision >> of llvm is installed. LDC currently asks llvm-config --src-root for the >> source directory and then parses svn info's output to get the revision >> number. This requires the user to keep the llvm source tree around even >> if it is not needed to build ldc. >> > > Not technically tr...
2017 Jul 06
2
MSP430 code generation from LLVM IR
On Thu, Jul 6, 2017 at 2:19 AM, Tim Northover <t.p.northover at gmail.com> wrote: > On 5 July 2017 at 17:51, Luís Marques via llvm-dev > <llvm-dev at lists.llvm.org> wrote: > > Cool. When I did that on macOS, LDC generated a lot of complaints, > possibly > > because it is assuming mach-o files. I tried changing from > -mtriple=msp430 > > to -mtriple=msp430-unknown-elf, to no avail. E.g.: > > Clang has a bunch of complicated logic to find the correct assembler > if it's install...
2010 Dec 13
0
[LLVMdev] ldc a D compiler search contributor
hi LLVM community, Maybe it is the wrong place, sorry LDC it is a D compiler D1 : http://www.dsource.org/projects/ldc D2 : http://bitbucket.org/prokhin_alexey/ldc2 We need some LLVM developper for help this project, they are an ric channel on freenode #ldc Any help are welcome Thanks for all Yours sincerely, -- jonathan MERCIER <bioinfornatics a...
2008 Oct 28
0
[LLVMdev] ldc (LLVM backend for the D Programming Language) has x86-64 support
Hey Chris et al., >> Hello everyone, >> >> I just thought I would let people here know that ldc (llvm backend >> for the D Programming Language) is getting pretty usable (a few >> larger libraries compile) and it now has x86-64 support added. . . >Wow, very very nice! Have you pointed this out to the other D users? >-Chris Yes, I have let the main D user list...
2006 Oct 02
1
py-htbstat
Hi all, updated py-htbstat: http://www2.ldc.net/~dor/py-htbstat/ Some screenshots: http://www2.ldc.net/~dor/py-htbstat/shots/shots.html It''s now possible to use classids in form ''xxxx:xxxx'' now (actually i dont know why i''ve made it to use ''1:xxxx'' only :-) -- _,-=._...
2015 Dec 15
2
Debugging INVALID_OPCODE / MULTIPLE_WARP_ERRORS ?
...hat should be fine. One thing which does stand out is that this: 0: ld u32 %r219 c0[0x0000000000000000+0x0] (0) 1: ld u32 %r222 c0[0x4] (0) 2: ld u64 { %r225 %r228 } c0[0x8] (0) 3: ld u32 %r234 c0[0x10] (0) Gets translated into (nvdisasm output) : /*0008*/ LDC R4, c[0x0][0x0]; /* 0x1400000003f11c86 */ /*0010*/ MOV R2, c[0x0][0x4]; /* 0x2800400010009de4 */ /*0018*/ LDC.64 R0, c[0x0][0x8]; /* 0x1400000023f01ca6 */ /*0020...
2003 Oct 10
3
BudgeTone-102 MWI&CID with Asterisk
...idering giving the Grandstream BudgeTone-102 phones a try. I've been using Cisco 7960's to date, but the low cost of the Grandstream phones are hard to ignore. I have two questions: 1) Does the message waiting indicator on the BudgeTone's work with Asterisk? 2) The one line 12-digit LDC concerns me a bit. Is the LCD able to display both the CID number and name on the LDC? How does that work, does it toogle between the two? I know the BudgeTone-102D has a 2 line LCD, but I don't believe the 102D is available yet. I've searched google for these two questions, but they ne...
2009 May 18
0
[LLVMdev] [PATCH] llvm-config: add svn revision to --version
...amer wrote: >>> The attached patch modifies the llvm build system (both autotools and >>> cmake) to write the revision into PACKAGE_VERSION: >>> >>> $ llvm-config --version >>> 2.6-71981 >>> >> I don't think that's enough for LDC; we want to be able to compare the version >> with #if, so we need it to produce something like '#define LLVM_REV 71981' (i.e. >> a raw integer, not a string). >> > When we build Icedtea shark JIT we use the llvm-config version to make > the icedtea code compat...