search for: rodney

Displaying 20 results from an estimated 142 matches for "rodney".

2014 Dec 02
3
[LLVMdev] Questions about deallocation responsibilities
...ne? Will I need to do deeper disposing myself? I presume at least I will need to free strings I allocated myself, such as the module name I passed in. What about, for example, llvm::DIBuilder::DICreateCompileUnit? I haven't been able so far to find a companion dispose for this object. -- Rodney Bates rodney.m.bates at acm.org
2016 Feb 24
3
How to resolve debug info forward types
...nction that seems to do this. My one wild guess that giving the forward decl and the resolving decl the same UniqueId might do it is not working. I am currently using 3.6.1, but I see nothing the voluminous diff of DIBuilder from 3.6.1 to 3.7.1 that looks like it has anything to do with this. -- Rodney Bates rodney.m.bates at acm.org
2017 Jul 23
2
Advise on which copy to use.
...r to use the ssl parameter or load the memory copy? I can imagine the ssl value might avoid unnecessary fetches, but then, it might also sometimes result in storage of a second copy in a memory temp. Also, do I need to do something to prevent the unused copy from being eliminated altogether? -- Rodney Bates rodney.m.bates at acm.org
2015 Feb 22
2
[LLVMdev] Resolving an opaque type in llvm-assembly
...r redeclare the name. But that gives an error: %TO = type opaque %TF = type i32 ( %TO* ) %TO = type %TF gives: $ llvm-as types1.ll llvm-as: types1.ll:3:1: error: redefinition of type %TO = type %TF ^ Also, what is the set of things that can be done with an as-yet unresolved opaque type? -- Rodney Bates rodney.m.bates at acm.org
2008 May 23
2
Don't Understand Error Entry
...as the administrator on this system and I noticed the same error entry over and over in the logs. I went to /var/log/dovecot.err and see: imap(rangry): May 22 13:33:31 Error: Error parsing IMAP envelope: "Thu, 20 Apr 2006 10:10:01 -0400" "Re: Hi there I have a question" (("Rodney Angry" NIL "rodney.s.angry" "example.com")) (("Rodney Angry" NIL "rodney.s.angry" " example.com")) ((NIL NIL "rodney.s.angry" "example.com")) (("Gryder, Connie" NIL "CONSTANCE.L.GRYDER" "example.com&...
2015 Feb 19
4
[LLVMdev] Parameter names in IR and debug info
...type. This appears to imply that, in debug info, the formal names are also part of the function type, which thus cannot be reused for a different function with different formal names. Can I build a DI function type without having an actual function of that type? This happens in my language. -- Rodney Bates rodney.m.bates at acm.org
2017 Aug 17
3
How do set 'nest' addribute in an indirect call?
...e an i8* pointer to the function code.) The comment on LLVMAddAttribute says " Add an attribute to a function argument", which, to me, "argument" means an actual parameter. But When I try that, I get an assertion failure, which I am having trouble interpreting: m3llvm: /home/rodney/proj/llvm/llvm-3.6.1/llvm-3.6.1.src/include/llvm/Support/Casting.h:237: typename cast_retty<X, Y *>::ret_type llvm::cast(Y *) [X = llvm::Argument, Y = llvm::Value]: Assertion `isa<X>(Val) && "cast<Ty>() argument of incompatible type!"' failed. My actual para...
2016 Feb 24
0
How to resolve debug info forward types
...de = /* the result from createReplaceableCompositeType earlier */ llvm::TempMDNode fwd_decl(node); m_DIBuilder->replaceTemporary(std::move(fwd_decl), result); You will need to keep a map of outstanding temporary forward declarations to do this. On Wed, Feb 24, 2016 at 5:09 PM, Rodney M. Bates via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Before metadata was separated from values, I could create a debug info > forward > declaration and eventually resolve it using LLVMReplaceAllUsesWith in > core.h. > Now, I can't figure out how to resolve it. I c...
2007 Dec 16
0
Integration Testing - hang with post parameters
...;', :email => ''john-S5xpjNk2yVFBDgjK7y7TUQ@public.gmane.org'', :zipcode => ''12111'', :password => ''hello'', :password_confirmation => ''hello''} When I do a ctrl-C I get a bit of a trace... any ideas? from /Users/rodney/code/puppy/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb:76:in `read_body'' from /Users/rodney/code/puppy/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb:88:in `read_params'' from /Users/rodney/code/puppy/vendor/rails/actionpac...
2015 Jul 25
4
[LLVMdev] [un]wrapping llvm:DITypeRef
...to Metadata. If I try to make my C type a struct with one pointer, I can't cast it to DITypeRef. If I try to go inside the classes and use the pointer, I can cast, but can't construct a DITypeRef when unwrapping, as both its pointer field 'Val' and the constructor are private. -- Rodney Bates rodney.m.bates at acm.org
2015 Jul 27
2
[LLVMdev] [un]wrapping llvm:DITypeRef
On 07/25/2015 08:57 PM, Andrew Wilkins wrote: > On Sun, 26 Jul 2015 at 06:48 Rodney M. Bates <rodney_bates at lcwb.coop <mailto:rodney_bates at lcwb.coop>> wrote: > > In trying to write a C binding for DIBuilder of llvm 3.6.1, I can't see a way to unwrap > llvm::DITypeRef, declared in include/llvm/IR/DebugInfo.h. This is a class with one >...
2017 Aug 24
2
How do set 'nest' addribute in an indirect call?
On 08/24/2017 09:40 AM, Tim Northover wrote: > On 17 August 2017 at 15:15, Rodney M. Bates via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> For an indirect call, i.e., on a function whose address is runtime variable, >> I can't find any place/way to attach this attribute. LLVMAddAttribute >> won't take a type. > > In the C++ API you...
2015 Nov 16
2
Why is llvm.maxnum.f32 coming through unreduced?
On 11/15/2015 01:29 PM, Tim Northover wrote: > On 15 November 2015 at 09:01, Rodney M. Bates via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> The latter is reduced to machine code by llc, the former is not, instead >> coming through as an external function call, which then fails to link. > > Is this for x86? I don't think that has a single instr...
2015 Jul 27
0
[LLVMdev] [un]wrapping llvm:DITypeRef
On 07/27/2015 10:59 AM, Rodney M. Bates wrote: > > > On 07/25/2015 08:57 PM, Andrew Wilkins wrote: >> On Sun, 26 Jul 2015 at 06:48 Rodney M. Bates <rodney_bates at lcwb.coop <mailto:rodney_bates at lcwb.coop>> wrote: >> >> In trying to write a C binding for DIBuilder of llvm 3.6.1, I ca...
2004 Dec 01
3
grandstream bt100 upgrade 1.0.5.18
...phone and it can't resgister with asterisk Dec 1 13:25:49 NOTICE[1112980400]: chan_sip.c:7519 handle_request: Registration from '<sip:@172.16.4.249>' failed for '172.16.4.226' is was working with the version 1.0.5.3 some bady now what is hapening? thanks in advance Rodney
2004 Nov 25
3
configuring voicemail
i was looking but i dont find how do this: configure the password for the extensions read the messages and some other things related with this can some bady help me with some material or a explicit example. thanks in advance Rodney Acosta Coya.
2014 Apr 11
2
[LLVMdev] Advice on field access, adding a Modula-3 front end
On 04/10/2014 09:02 PM, Krzysztof Parzyszek wrote: > On 4/10/2014 8:40 PM, Rodney M. Bates wrote: >> >> I could probably create llvm IR in this style by generating explicit >> address arithmetic, but I suspect that might hurt the optimization >> possibilities, perhaps a lot. It looks like re-raising the level to >> field numbers would not be horrib...
2014 Aug 04
2
[LLVMdev] Can't build clang 3.4.2
On 08/03/2014 05:30 PM, Justin Bogner wrote: > "Rodney M. Bates" <rodney_bates at lcwb.coop> writes: >> I can build llvm 3.4.2 fine, using instructions in GettingStarted.html, >> and making assumptions to account for my using tar files instead of svn. >> Although I had downloaded and extracted both llvm-3.4.2.src.tar.gz and...
2015 Nov 15
3
Why is llvm.maxnum.f32 coming through unreduced?
..., Intrinsic::maxnum, Tys) Intrinsic::getDeclaration( M, Intrinsic::fabs, Tys) where Tys contains a single floating type. As generated, both declarations occur after the calls, but moving the maxnum decl before the calls changes nothing. This is llvm 3.6.1. Any help would be appreciated. -- Rodney Bates rodney.m.bates at acm.org
2006 Jun 08
3
Foreign key confusion
I have 2 models right now: "users" and "posts". When a user creates a post I would like their id to be recorded under "user_id" in the "posts" table. Under the "user" model I have: class User < ActiveRecord::Base has_many :posts end And under the "posts" model I have: class Post < ActiveRecord::Base belongs_to :user