similar to: [LLVMdev] Getting a named value in llvm-c

Displaying 20 results from an estimated 50000 matches similar to: "[LLVMdev] Getting a named value in llvm-c"

2012 Nov 22
2
[LLVMdev] Getting a named value in llvm-c
That's what I am doing of course, It;s just odd that I can get a global by name but not a local. Bill. On 21 November 2012 09:35, Duncan Sands <baldrick at free.fr> wrote: > Hi Bill, > > >> I am wondering if there is a way to get a value by name in the C >> interface for the LLVM Jit? > > > since a Value includes simple constants like 42 that have no name,
2012 Nov 21
0
[LLVMdev] Getting a named value in llvm-c
Hi Bill, > I am wondering if there is a way to get a value by name in the C > interface for the LLVM Jit? since a Value includes simple constants like 42 that have no name, this is not possible in general. Moreover names are usually optional and have no real meaning: they are just there to make the IR easier to read (an exception being struct type names). Perhaps you could maintain a map
2012 Nov 22
0
[LLVMdev] Getting a named value in llvm-c
Hi Bill, On 22/11/12 01:52, Bill Hart wrote: > That's what I am doing of course, It;s just odd that I can get a > global by name but not a local. actually it's not that odd, since globals variables can be accessed by name from other compilation units, while local variables cannot. Ciao, Duncan. > > Bill. > > On 21 November 2012 09:35, Duncan Sands <baldrick at
2009 Mar 13
1
AGX Asterisk Addon - Can't find app_fax.c withspandsp-0.0.4
You now need to compile and install SpanDSP-0.0.6pre3 at least (AGX has been changed). After you've done that - try AGX again. HTH -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Olivier Sent: 11 March 2009 06:16 To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users]
2009 Nov 11
0
[LLVMdev] Proposal: intp type
I realize that most users of LLVM aren't affected by this, because most frontends aren't target-neutral, and thus know in advance how big a pointer is. At least, that's my impression. In my case, I've been attempting to build a target-neutral frontend. In my tool chain, the target is specified at link time, not at compile time. Among other things, that means that the same IR file
2009 Nov 11
4
[LLVMdev] Proposal: intp type
On Tue, Nov 10, 2009 at 6:10 PM, Talin <viridia at gmail.com> wrote: > In my case, I've been attempting to build a target-neutral frontend. In my > tool chain, the target is specified at link time, not at compile time. Among > other things, that means that the same IR file can be used for multiple > targets. That's the direction I'm going in too. > > What
2019 Dec 27
2
AGI: "Get variable" returns variable VALUE vs "Get full variable" returns variable NAME - bug or my misunderstanding?
Just trying out a node agi package (https://github.com/sergey12313/ts-agi/ , and it wasn't behaving as I expected, but when turning on agi debug, it looks like it might be Asterisk (using 17.1.0) This works as expected <Local/1000 at default-00000020;2>AGI Rx << SET VARIABLE myVar "Hello World!!!" <Local/1000 at default-00000020;2>AGI Tx >> 200 result=1
2019 Jul 12
2
[clang][AST] : extern "C" symbols not present or not visited when traversing TU decl
Hi, I'm using clang ast for a while now to do meta compilation, and I just fell into a problem when trying to parse vulkan library which has extern "C" in it. Every symbol inside extern "C" seem to be striped from the TU and ast. I tried to #undef __cplusplus and this time I got the symbols into the AST. I first supposed it was a problem with missing includes or else, but
2019 Dec 27
1
AGI: "Get variable" returns variable VALUE vs "Get full variable" returns variable NAME - bug or my misunderstanding?
OK, that works - looks like a documentation bug? (Also very confusing!) Should I report it on the page at https://wiki.asterisk.org/wiki/display/AST/Asterisk+17+AGICommand_get+full+variable or on the main tracker? Many thanks - couldn't figure out what was wrong! On Fri, 27 Dec 2019 at 19:36, Sean Bright <sean.bright at gmail.com> wrote: > On 12/27/2019 2:24 PM, Jonathan H wrote:
2009 Nov 02
2
[LLVMdev] Moving AVX Upstream
Hey everyone, I'm at the point with our local AVX tree that I'm ready to move some stuff upstream. We've got most of the basic stuff implemented. The more esoteric stuff still has to be done. Because the more esoteric stuff might require some extensive changes to the existing AVX infrastructure, I suspect there might be quite a bit of church until we get things stabilized. Due to
2009 Nov 11
0
[LLVMdev] Proposal: intp type
Kenneth Uildriks wrote: > On Tue, Nov 10, 2009 at 6:10 PM, Talin <viridia at gmail.com> wrote: >> In my case, I've been attempting to build a target-neutral frontend. In my >> tool chain, the target is specified at link time, not at compile time. Among >> other things, that means that the same IR file can be used for multiple >> targets. > > That's
2015 Feb 19
2
CentOS 7: software RAID 5 array with 4 disks and no spares?
Le 19/02/2015 05:43, Chris Murphy a ?crit : > My personal view on installers is extremely biased toward the user > staying out of trouble, they shouldn't have to read documentation for > a GUI installer. A *user* never has to even see - or use - an installer. A USER has to USE a computer, by which I mean the applications he or she needs to get some work done. The person who gets
2011 Nov 17
1
[LLVMdev] Instrumenting C/C++ programs
Hello guys, I am trying to know how clang generates AST from source code. But it is not clear for me how clang generates it. Can you tell me which class or function of clang is building/generating AST? I want to see the specific function or algorithm of clang which generates AST. Thanks in advance for your idea. On Thu, Sep 29, 2011 at 1:22 PM, Jim Grosbach <grosbach at apple.com> wrote:
2013 Nov 15
1
[LLVMdev] C sequence-point analyzer
Hi all, I'm trying to write a tool for detecting undefined behavior in C regarding sequence points and side effects. I'm not sure whether it should be a Clang plugin or LLVM run or something completely different (I'm really new to both Clang and LLVM) and that's what I need advice with. For my work, I need to use both AST and alias analysis Clang plugin: +relatively easy to
2012 Oct 07
2
[LLVMdev] getting pointer to CFG object for any given C program
Hi, Let say we have a C program, and we want to get pointer to CFG object for this code in order to traverse basic blocks and do some analysis using CFG object. From my main program main.cpp, how can I get pointer to CFG object if argv[1] = hello.c ? I have seen following places among many in clang/lib or clang/include:
2000 Mar 01
1
smbpasswd failure
I've attempted to change my smb password on a remote NT PDS, but it always fails with resolve_name: Attempting lmhosts lookup for name SERVER<0x20> getlmhostsent: lmhost entry: 127.0.0.1 localhost resolve_name: Attempting host lookup for name SERVER<0x20> Connecting to nnn.nnn.nnn.nnn at port 139 error connecting to nnn.nnn.nnn.nnn:139 (Connection refused) unable to connect to
2002 Aug 06
1
re| `By reference'
David Brahm <brahm at alum.mit.edu> wrote: >VBMorozov at lbl.gov wrote: >> I would like to pass variables to a function in R in "by reference"... >Just in case the ensuing discussion got too esoteric, here's one simple answer: >R> x <- 1:10 >R> MyFunc <- function(x, zz) assign(deparse(substitute(zz)), sum(x), 1) >R> MyFunc(x,y) >R>
2012 Nov 12
2
[LLVMdev] RFC: Code Ownership
On the topic of code owners: Would it make sense to add target-specific code owners for the codegen targets? Some of the targets are more esoteric (e.g. NVPTX, CellSPU, AMDGPU) and may benefit from more fine-grained code ownership. On Mon, Nov 12, 2012 at 11:26 AM, Renato Golin <rengolin at systemcall.org>wrote: > On 12 November 2012 15:55, Meador Inge <meadori at
2009 Nov 11
2
[LLVMdev] Proposal: intp type
On Wed, Nov 11, 2009 at 2:10 PM, Nick Lewycky <nicholas at mxc.ca> wrote: > Kenneth Uildriks wrote: >> >> On Tue, Nov 10, 2009 at 6:10 PM, Talin <viridia at gmail.com> wrote: >>> >>> In my case, I've been attempting to build a target-neutral frontend. In >>> my >>> tool chain, the target is specified at link time, not at compile
2012 Mar 08
1
[LLVMdev] fix a "does not name a type" bug in VASTContext.h
Hi all, I find a bug in the VASTContext.h of the latest clang. I fixed it and commit a patch for it. As follows: >From 447d31176b513a03b253eb25ef314c2a3c0e428a Mon Sep 17 00:00:00 2001 From: Tsingray <tsingray at buildbot-slave-desktop.(none)> Date: Thu, 8 Mar 2012 22:11:54 +0800 Subject: [PATCH] fix a 'does not name a type' bug in VASTContext.h ---