similar to: [LLVMdev] obtain programer-defined structure name.

Displaying 20 results from an estimated 100 matches similar to: "[LLVMdev] obtain programer-defined structure name."

2010 Aug 15
1
[LLVMdev] A few small errors in the language reference guide
Hi, * The example under http://llvm.org/docs/LangRef.html#modulestructure is missing several line breaks * The link under "void" at http://llvm.org/docs/LangRef.html#namedtypes goes to an invalid destination Jonas
2009 Nov 05
5
[LLVMdev] llvm-gcc-4.2-2.6 build failed,
I try to build llvm-gcc-4.2-2.6.source before build and install llvm-2.6, the configure is shown bellow ../llvm-gcc-4.2/configure --prefix=/home/ts/program/ --program-prefix=llvm- --enable-llvm=/home/ts/llvm/llvm-2.6 --enable-languages=c,c++ where, it is the path where llvm-2.6 source is stored, -enable-llvm=/home/ts/llvm/llvm-2.6 the "make" gave error message as bellow:
2008 Jun 02
2
problems with netback
hi I've some problems with netback 1.what's mmap_pages for, which come from balloon operation ? mmap_pages = alloc_empty_pages_and_pagevec(MAX_PENDING_REQS) 2.what's the meaning of "refcnt" defined in netif_t (netif->refcnt) 3.irq enable and disable such as disable_irq(netif->irq); why netback use such enable & disable operations while netfront dont use for its
2009 Nov 06
1
[LLVMdev] llvm-gcc-4.2-2.6 build failed,
Thank you for reply, I have tried building llvm-2.6 first in place, and configure llvm-gcc-4.2 with --enable-llvm=/path\to\llvm-2.6/, but, still the same problerm, and there's no files missed reported in the error message, such as "lvm/System/DataTypes.h", in the file system including /usr/include and ~/llvm/llvm-2.6/include/. May these files should be generated during llvm-2.6
2003 Jun 06
1
Problerm building R-1.7.0 on OpenBSD3.2/sparc64
Hi all, I try to build R-1.7.0 + patches. when problem arise. I start with appling the patches and second configure and make. Any ideas whats wrong (wrong compiler wrong make version or missing an essential library...) /Ulf D heres the log: **** cut************ making method_meta_data.d from method_meta_data.c making slot.d from slot.c making class_support.d from class_support.c making tests.d
2004 Nov 17
0
[LLVMdev] Re: questions about LLVM
Shuo, >> I have a few questions about LLVM: >> (1) The LLVM tutorial says LLVM can be used in architecture research. >> If I want to run my program on an instruction set defined by myself, >> is LLVM a right tool to do that? What kind of instruction set do you have in mind? The closer it is to one we already target, the easier this is, but it is quite possible to
2004 Nov 17
2
[LLVMdev] Re: questions about LLVM
Prof. Adve, The idea is to develop a memory model where each byte is extended with 3 extra bits. Programs are running on this memory model. Load/store instructions, including those in LibC functions, needs to deal with the extra bits in a certain manner. Basically, my questions are: (1) Is it feasible to implement the memory model where each byte is extended with 3 extra bit? (2) Is there a
2004 Nov 17
4
[LLVMdev] Re: questions about LLVM
Hi Shuo, I am CCing your questions to the LLVM developers list so others can reply or correct me. >I have a few questions about LLVM: >(1) The LLVM tutorial says LLVM can be used in architecture research. If >I want to run my program on an instruction set defined by myself, is LLVM >a right tool to do that? > I don't think so. >In this aspect, is LLVM similar to
2005 Aug 10
1
port blocking/disruption i think
hi list this is as probably more of networking problem than an icecast problem but it is related - hope people don't mind. I've been running tests for a project that starts 20 August. I'm sending stream from my audio software to a local icecast server, then relaying this to a commercial shoutcast service. Initially i was using 7000 for the relay port. Worked fine. Then one morning
2004 Nov 18
0
[LLVMdev] Re: questions about LLVM
Shuo Chen wrote: >Prof. Adve, > >The idea is to develop a memory model where each byte is extended with >3 extra bits. Programs are running on this memory model. >Load/store instructions, including those in LibC functions, >needs to deal with the extra bits in a certain manner. Basically, my >questions are: >(1) Is it feasible to implement the memory model where each
2004 Nov 18
0
[LLVMdev] Re: questions about LLVM
Shuo Chen wrote: >John, > >Thank you very much. > > >>Dinakar is correct; the SAFECode website is a version of Apache compiled >>with LLVM and running on the LLVM x86 JIT. >> >> >This is exciting. Do you mean that the Apache server is compiled to the VM >code format, which gets executed one instruction by another by the >interpretor? x86
2015 Oct 22
1
how to build smbtorture using static linked libraries
Hello all: I am trying to build smbtorture using static linked libraries. The samba source code I have is samba-4.1.13 for configure, I did: waf configure --builtin-libraries=ALL for build, I did: waf build --targets=smbtorture (so that it only build target smbtorture) But, the waf build fails immediately. Then, I tried to only link with lib talloc and tevent statically, so I did: waf
2002 Jun 18
0
Re : Re: performance problem ??? AN ANSWER PLEASE ...
Did someone of you find a solution for our problerm ??? I send you the documented as you asked it but I always got the same problems. I tried some possibilites for optimizing my system but I always stay with my problem for writing files. Reading files from my shares is not a problem but writing causes "buffers" problems with windows and windows says he could not write all the blocks.
2010 Aug 04
1
Build fails due to missing ovirt-node-recipe.ks
> - ace -d install ovirt has one error : package ovirt-node-image-pxe > not > found I get an error when FreeIPA is set up. Then a whole heap of notices and warning about a missing dependancy (presumably FreeIPA) debug: //freeipa::bundled/Single_exec[ipa_server_install]: Executing '/usr/sbin/ipa-server-install -r ovirt.priv -p 'supersecretpw' -P 'supersecretpw' -a
2020 Sep 22
3
[PATCH v3] i2c: virtio: add a virtio i2c frontend driver
Add an I2C bus driver for virtio para-virtualization. The controller can be emulated by the backend driver in any device model software by following the virtio protocol. This driver communicates with the backend driver through a virtio I2C message structure which includes following parts: - Header: i2c_msg addr, flags, len. - Data buffer: the pointer to the I2C msg data. - Status: the
2020 Sep 22
3
[PATCH v3] i2c: virtio: add a virtio i2c frontend driver
Add an I2C bus driver for virtio para-virtualization. The controller can be emulated by the backend driver in any device model software by following the virtio protocol. This driver communicates with the backend driver through a virtio I2C message structure which includes following parts: - Header: i2c_msg addr, flags, len. - Data buffer: the pointer to the I2C msg data. - Status: the
2020 Sep 03
9
[PATCH] i2c: virtio: add a virtio i2c frontend driver
Add an I2C bus driver for virtio para-virtualization. The controller can be emulated by the backend driver in any device model software by following the virtio protocol. This driver communicates with the backend driver through a virtio I2C message structure which includes following parts: - Header: i2c_msg addr, flags, len. - Data buffer: the pointer to the i2c msg data. - Status: the
2020 Sep 03
9
[PATCH] i2c: virtio: add a virtio i2c frontend driver
Add an I2C bus driver for virtio para-virtualization. The controller can be emulated by the backend driver in any device model software by following the virtio protocol. This driver communicates with the backend driver through a virtio I2C message structure which includes following parts: - Header: i2c_msg addr, flags, len. - Data buffer: the pointer to the i2c msg data. - Status: the
2020 Sep 03
0
[PATCH] i2c: virtio: add a virtio i2c frontend driver
On 2020/9/3 ??1:34, Jie Deng wrote: > Add an I2C bus driver for virtio para-virtualization. > > The controller can be emulated by the backend driver in > any device model software by following the virtio protocol. > > This driver communicates with the backend driver through a > virtio I2C message structure which includes following parts: > > - Header: i2c_msg addr,
2020 Sep 03
0
[PATCH] i2c: virtio: add a virtio i2c frontend driver
On Thu, Sep 03, 2020 at 01:34:45PM +0800, Jie Deng wrote: > Add an I2C bus driver for virtio para-virtualization. > > The controller can be emulated by the backend driver in > any device model software by following the virtio protocol. > > This driver communicates with the backend driver through a > virtio I2C message structure which includes following parts: > > -