search for: shishir

Displaying 20 results from an estimated 27 matches for "shishir".

2020 Jun 09
3
Preventing function call from being optimized out in LTO
...ticular trap is guaranteed to occur on line 22, and so optimizes out the rest of the function, even though the pre-opt version of the function has the "optnone" attribute. Does this seem like intended behavior or some sort of bug? Is there any way to disable this behavior? Thanks! Best, Shishir On Tue, Jun 9, 2020 at 3:53 PM David Blaikie <dblaikie at gmail.com> wrote: > On Tue, Jun 9, 2020 at 1:29 PM Shishir V Jessu <shishir.jessu at utexas.edu> > wrote: > > > > Hi David, > > > > Thanks for your detailed comments. > > > >> but wi...
2020 Apr 08
3
Building libjpeg-turbo with LTO
...ed by jcstest.c:114 >>> lto.tmp:(main) This only occurs when compiling with the -flto flag. Has anyone been able to build libjpeg-turbo with LTO? Are there any modifications I need to make to the makefile or other configuration in order to do so? Thanks for your help! Best, Shishir Jessu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200408/4cca8811/attachment.html>
2020 Apr 09
3
Building libjpeg-turbo with LTO
Adding a couple of lld folks. I helped Shishir debug this, the link line looked like: /home/sjessu/build/bin/clang -O0 -flto -o jcstest jcstest.o ./.libs/libjpeg.a and the issue was that libjpeg.a was created with the system ar instead of llvm-ar. It worked when recreating libjpeg.a with llvm-ar. I noticed that the lld code has some specia...
2020 Jun 09
3
Preventing function call from being optimized out in LTO
...> wrote: > optnone on such functions should suffice - well, unless the calls turn out > to be dead & I don't think there's anything you can do to thwart dead code > removal. So what are you trying to preserve the function calls for? > > On Tue, Jun 9, 2020 at 11:01 AM Shishir V Jessu via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hello, >> >> I am adding function calls to an LLVM link-time optimization (LTO) pass, >> using the IRBuilder::CreateCall method. I want these calls to remain in >> the final x86 binary at any...
2007 Oct 03
4
form_remote_tag :onsubmit not working.
...input()" %> <%= text_field_tag :newmessage, nil, {:style => "width: 100%", :maxlength => "1000",:autocomplete => "off"} %> <%= hidden_field_tag :send_to, value = '''' %> <%= end_form_tag %> Anything buggy here?? TIA ~Shishir --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send...
2020 Mar 16
2
Passing arguments to LLVM pass through Clang
...e as input. I am able to input this filename as a command line argument when I invoke this pass using opt, but I ultimately need to pass this argument to my code when I compile code with clang. How can I pass this argument to clang so that I can use it in my LLVM pass? Thanks for your help! Best, Shishir Jessu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200316/558b1711/attachment.html>
2020 Jun 09
5
Preventing function call from being optimized out in LTO
...urthermore, I have confirmed that all the calls I've created are present in the LLVM IR that results immediately after my pass. Thus, I know some future LTO pass is optimizing out some of these calls. How can I ensure that none of the calls I add are optimized out? Thanks for your help! Best, Shishir Jessu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200609/ae51a7d1/attachment.html>
2020 Jul 08
2
Extracting the !dbg property from LLVM IR function calls
...dbg !29*, !nosanitize !2 And finally, the line *CallInst -> getDebugLoc() -> getLine()* returns *61* for this call, not 69 or 29. Am I misunderstanding the purpose of getDebugLoc() for a CallInst? Is there any way I can extract the correct !dbg for a given line? Thanks for your help! Best, Shishir Jessu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200708/bdc62a4c/attachment.html>
2019 Sep 30
3
Debugging LowerTypeTests in LLVM Using GDB
...n indirect call), and am able to see the CFI jump tables in the resulting assembly, but I cannot reach the code that produces these jump tables in GDB. Am I targeting the wrong code for these changes, or is there something more I need in order to run through this code in GDB? Thanks for your help! Shishir Jessu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190930/2a8594de/attachment.html>
2020 Apr 30
2
Discrepancy between Debug and Release+Asserts versions of Clang/LLVM
...that a couple times. Either do what David suggested or use a normal array: Metadata *mdArray[] = {ConstantInt::get(Int64Ty, 0), newMD}; ~Craig On Thu, Apr 30, 2020 at 9:56 AM David Blaikie via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > > On Thu, Apr 30, 2020 at 9:51 AM Shishir V Jessu via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hello, >> >> I am editing the LowerTypeTests pass in LLVM, and part of my additions >> include the following 3 lines of code: >> >> // newTypeName is a std::string >> MDString* new...
2019 Dec 03
2
Using different opt with clang
...en I run clang with the appropriate flags to invoke the pass, it invokes the pass as originally written, but when I run opt on the relevant bitcode, it invokes the pass as I have written it. How can I modify clang to make it use my version of opt to run the pass I've changed? Thanks! Regards, Shishir Jessu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20191203/24601ad0/attachment.html>
2020 Apr 30
2
Discrepancy between Debug and Release+Asserts versions of Clang/LLVM
...s not occur in the Debug version*, so I am lost as to how to diagnose it. I have checked that newMD is non-null and contains the value I expect. Are there any discrepancies in the Debug version as compared to the Release + Asserts version that would cause such an error? Thanks for your help! Best, Shishir Jessu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200430/e40566db/attachment.html>
2012 Jun 11
1
"mismatching layouts" flooding in the logs
I have the following appended to gluster logs at around 100kB of logs per second, on all 10 gluster servers: [2012-06-11 15:08:15.729429] I [dht-layout.c:682:dht_layout_dir_mismatch] 0-sites-dht: subvol: sites-client-41; inode layout - 966367638 - 1002159031; disk layout - 930576244 - 966367637 [2012-06-11 15:08:15.729465] I [dht-common.c:525:dht_revalidate_cbk] 0-sites-dht: mismatching layouts
2013 Oct 22
1
Asterisk AMI 1.3 Specification
Hi folks, We are upgrading from AMI 1.0 to AMI 1.3 and looking for any documents or AMI 1.3 Specifications. I found AMI 1.4 Specification in wiki.asterisk.org but not for AMI 1.3. Can someone provide me the link for AMI 1.3 specification ? Thanks in advance Shishir -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20131022/398b20a2/attachment.html>
2015 Sep 17
2
Asterisk AMI events filtering
Hi folks, I have one server with multiple companies (multi-tenant). >From AMI I get all events of all extensions so any one that connect can see other extensions, from different company (context). How can I limit specific user to get just specific context? Sam -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Jan 31
1
Problem with intersection between two different tables
...   0 "c"  300  301    9 "c"  310  311   10 --------------------------------- tp2< v1      v2       v3 "a"     20      40 "a"     70      80 "b"      90    110 "b"     130    140 "c"     190    230 Thank you Shishir [[alternative HTML version deleted]]
2012 Jun 10
1
Garena Messenger Chat not working
...sers\\Public\\Application Data\\GarenaMessenger\\plugins\\plugin.log" 1 4 (nil) (nil) 0x168860 (nil) fixme:advapi:SetNamedSecurityInfoW L"C:\\users\\Public\\Application Data\\GarenaMessenger\\app.ini" 1 4 (nil) (nil) 0x168940 (nil) fixme:advapi:SetNamedSecurityInfoW L"C:\\users\\shishir\\Application Data\\GarenaPlus\\" 1 4 (nil) (nil) 0x136290 (nil) fixme:advapi:SetNamedSecurityInfoW L"C:\\users\\shishir\\Application Data\\GarenaPlus" 1 4 (nil) (nil) 0x136290 (nil) fixme:advapi:SetNamedSecurityInfoW L"C:\\users\\shishir\\Application Data\\GarenaPlus\\history.da...
2012 Aug 24
1
ext4 issues
Hi, I have seen that there are issues with gluster on ext4. Just to be clear, is this something which is only related to clients using nfs, i.e., can I happily use gluster (without downgrading kernel) if all clients are using gluster native client? Thanks, /jon -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Jan 06
1
Link files showing on mount point, 3.3.1
Can anyone tell me how to fix having link files show on the client mount point. This started after an upgrade to 3.3.1 file name and user and group info have been changed, but this is the basic problem. There are about 5 files in just this directory, and I am sure there are more directories with this issue. -rw-r--r-- 1 user group 29120 Aug 17 2010 file1 ---------T 1 root root 0
2007 Sep 20
0
How to get stream ID.
...onnection like this : @cl = Jabber::Client::new(@jid) @cl.connect(host=''host'', port=5223) @cl.auth_nonsasl(@password, false) I don''t see any method defined for the client object @cl which can give me the id for underlying stream. Any help would be appreciated. Thanks, Shishir --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send...