search for: gode

Displaying 20 results from an estimated 71 matches for "gode".

Did you mean: code
2011 Oct 04
2
[LLVMdev] collect end line number for scope
What do you mean by "current top of tree"?   Pankaj ________________________________ From: Eric Christopher <echristo at apple.com> To: Pankaj Gode <godepankaj at yahoo.com> Cc: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu> Sent: Monday, October 3, 2011 10:32 PM Subject: Re: [LLVMdev] collect end line number for scope On Oct 3, 2011, at 4:36 AM, Pankaj Gode wrote: For the above code, i want to collect endline (in...
2011 Oct 04
0
[LLVMdev] collect end line number for scope
Hi, He is referring to current SVN head. Regards, Alex On Tue, Oct 4, 2011 at 12:08 PM, Pankaj Gode <godepankaj at yahoo.com> wrote: > What do you mean by "current top of tree"? > > Pankaj > From: Eric Christopher <echristo at apple.com> > To: Pankaj Gode <godepankaj at yahoo.com> > Cc: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>...
2011 Oct 05
2
[LLVMdev] collect end line number for scope
...e "asm printing", traverse through the machine instruction and collect the information in similar way as 1.   I am not sure whether I should collect it from Clang AST nodes.   Regards, Pankaj     ________________________________ From: Devang Patel <dpatel at apple.com> To: Pankaj Gode <godepankaj at yahoo.com> Cc: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu> Sent: Tuesday, October 4, 2011 10:08 PM Subject: Re: [LLVMdev] collect end line number for scope Pankaj, On Oct 3, 2011, at 4:36 AM, Pankaj Gode wrote: Hi All, > >int global; >int fu...
2011 Oct 04
1
[LLVMdev] collect end line number for scope
...in LLVM. Reference: http://llvm.org/docs/SourceLevelDebugging.html#format_common_lifetime   There are 2 classes I am referring, viz, DIScope and DbgScope. I am also not sure on the approach.   Regards, Pankaj   ________________________________ From: Alex <xtzgzorex at gmail.com> To: Pankaj Gode <godepankaj at yahoo.com> Cc: Eric Christopher <echristo at apple.com>; "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu> Sent: Tuesday, October 4, 2011 3:42 PM Subject: Re: [LLVMdev] collect end line number for scope Hi, He is referring to current SVN head. Regards,...
2011 Oct 05
0
[LLVMdev] collect end line number for scope
...nstruction in that scope. Now, if you want to find out start and end MachineInstrs for a lexical scope (and corresponding line numbers) then see CodeGen/LexicalScopes pass. It collects lexical scope information and maps MIs to respective lexical scopes. - Devang On Oct 5, 2011, at 3:48 AM, Pankaj Gode wrote: > Hi, > > The link and the information shared was helpful. > > I will make my problem definition more clear. > While I am "asm printing" target code, I also want to emit scope related information. > Scope related information includes, > - for each scope...
2011 Oct 03
4
[LLVMdev] collect end line number for scope
Hi All,   int global; int func( int t) {    //scope 1   {      ....   } <-----   return x; }   For the above code, i want to collect endline (indicated by <---) for the scope. Can we get this information from the Dwarf Information in llvm 2.9 ?     Thanks & Regards, Pankaj -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Apr 29
1
[LLVMdev] LowerDbgDeclare results in redeclaration of local variable
...rieve the scope information, I do not get exact scope, after optimization. As you said that this is a work in progress, so can we expect full version on this in llvm3.3 release ?   Regards, Pankaj   ________________________________ From: Eric Christopher <echristo at gmail.com> To: Pankaj Gode <godepankaj at yahoo.com>; Adrian Prantl <aprantl at apple.com> Cc: llvm Developers <llvmdev at cs.uiuc.edu> Sent: Monday, April 29, 2013 12:24 PM Subject: Re: [LLVMdev] LowerDbgDeclare results in redeclaration of local variable There was a patch committed the other day that s...
2005 Sep 13
4
Remove vector elements from another vector
...s of different lengths. Fx a <- 1:9; b <- c(4, 5). What is the best way to remove the elements in vector b from vector a so that the result would be a vector with elements c(1,2,3,6,7,8,9)? Best regards, Kalle _________________________________________________________________ Find masser af gode tilbud p?? MSN Shopping http://shopping.msn.dk/
2011 Oct 03
0
[LLVMdev] collect end line number for scope
On Oct 3, 2011, at 4:36 AM, Pankaj Gode wrote: > For the above code, i want to collect endline (indicated by <---) for the scope. Can we get this information from the Dwarf Information in llvm 2.9 ? > I don't know about 2.9 in specific, but current top of tree will get you that information. -eric -------------- next part...
2013 Apr 29
0
[LLVMdev] LowerDbgDeclare results in redeclaration of local variable
There was a patch committed the other day that should, at least, work around some of the behavior you describe. Optimized debug info is an area that's being worked on in ToT and previous releases are particularly bad. I'd use that. -eric On Mon, Apr 29, 2013 at 7:02 AM, Pankaj Gode <godepankaj at yahoo.com> wrote: > Hi All, > > Due to 'LowerDbgDeclare' call ( as part of 'instruction combining' > optimization), a local variable gets declared and initialized inside the > basic blocks it is used in. > Is there anyway I can avoid this ? &gt...
2013 Apr 29
2
[LLVMdev] LowerDbgDeclare results in redeclaration of local variable
Hi All,   Due to 'LowerDbgDeclare' call ( as part of 'instruction combining' optimization), a local variable gets declared and initialized inside the basic blocks it is used in. Is there anyway I can avoid this ?   This is with reference with my previous question. http://lists.cs.uiuc.edu/pipermail/llvmdev/2013-April/061644.html     Regards, Pankaj -------------- next part
2011 Dec 06
0
[LLVMdev] Regarding anonymous types
Pankaj, I encourage you to read Chris's excellent blog entry on type system @ http://blog.llvm.org/2011/11/llvm-30-type-system-rewrite.html - Devang On Dec 6, 2011, at 3:54 AM, Pankaj Gode wrote: > Hi All, > > While collecting type information for "anonymous types", I had below observation. > > For the example with anonymous types, given below > struct test > { > struct { > union { > Char a[4]; > }; > }; > stru...
2011 Oct 04
0
[LLVMdev] collect end line number for scope
Pankaj, On Oct 3, 2011, at 4:36 AM, Pankaj Gode wrote: > Hi All, > > int global; > int func( int t) > { > //scope 1 > { > .... > } <----- > return x; > } > > For the above code, i want to collect endline (indicated by <---) for the scope. Can we get this information from the Dwarf I...
2011 Nov 16
0
[LLVMdev] CallSite in innermost loop
On Nov 16, 2011, at 2:43 AM, Pankaj Gode wrote: > In order to detect whether CallSite is present in innermost loop, do I need to insert logic from LoopInfo pass for collecting loops, within a CallGraphSCC pass? > > Is there any other approach for this? > PassManager not only schedules passes, it also - manages memory -...
2011 Nov 16
2
[LLVMdev] CallSite in innermost loop
In order to detect whether CallSite is present in innermost loop, do I need to insert logic from LoopInfo pass for collecting loops, within a CallGraphSCC pass?   Is there any other approach for this?   Regards, Pankaj -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111116/cd9d51b7/attachment.html>
2004 Jul 30
3
Connecting Asterisk and Avaya Definity By E1 . Incoming work, but not outgoing
Yes, I can make a call on that extension from other definity phone, if you mean it. -----Original Message----- From: Ken Godee [mailto:ken@perfect-image.com] Sent: 30 ÉÀÌÑ 2004 Ç. 19:14 To: asterisk-users@lists.digium.com Subject: Re: [Asterisk-Users] Connecting Asterisk and Avaya Definity By E1. Incoming work, but not outgoing Roman Bessyadovskii wrote: > Hi All. > > I connect asterisk and definity by manual...
2011 Oct 13
1
[LLVMdev] Local variable information in scope
...Debug.cpp" as reference, to find mapping of "MachineInstruction" to "llvm.dbg.declare", to extract variables declared in scope.   I am not sure whether there is any other way to get to variables declared in scope.     Regards, Pankaj   On Oct 12, 2011, at 3:14 AM, Pankaj Gode wrote: Hi all, > >Using "CodeGen/LexicalScopes" pass, I could collect scope information i.e. start and end line numbers. > >I also want to collect information of variables within the scope. > >For the below example: > >int global; >int func( int t) >{  &gt...
2005 Feb 26
16
yum stalls <?>
I just installed a fresh 3.3 system (because those are the ISO's I had on hand). Upon running yum update, it starts to download headers and then stalls. I hit Ctl-C and it continues to download about 4-5 more headers and stalls. I hit Ctl-C again and it pulls a few more headers. Anyone seen this and/or know how to fix it? TIA Mike
2011 Oct 17
0
[LLVMdev] Variable name from metadata
...           StringRef varName = DV.getName();                   const char *tmpvarname = varName.data();                   if( i == 1) //points to metadata for variable name                   {   Sorry for posting trivial question.   Regards, Pankaj   ________________________________ From: Pankaj Gode <godepankaj at yahoo.com> To: llvm Developers <llvmdev at cs.uiuc.edu> Sent: Monday, October 17, 2011 5:38 PM Subject: [LLVMdev] Variable name from metadata Hi All, Can we extract name of variable name from "MDNode" ? 1. Neither temp_MDNode->getName() nor temp_MDNode-&g...
2011 Dec 06
3
[LLVMdev] Regarding anonymous types
Hi All,   While collecting type information for "anonymous types", I had below observation.   For the example with anonymous types, given below struct test {   struct {     union {       Char a[4];     };   };   struct {     int b;     char c;   }; };   LLVM 2.6 defines the types as %struct.anon1 = type { %union.anon0} %struct.anon2 = type { i32, i8} %struct.test = type {