search for: nehal

Displaying 20 results from an estimated 26 matches for "nehal".

Did you mean: neal
2006 Dec 15
6
Samba Configuration on Linux
...BUF=8192 [UNIX] comment = UNIX Team's Data path = /unixdata valid users = abc public = no writable = yes create mask = 0760 Guide me thru the configuration as i think, i have missed out something, which is not letting me access samba shared folder in my network. Thanks Nehal
2010 Jun 04
3
[LLVMdev] Inserting a function call into bitcode
...quite sure what you meant by verifier. I checked online documents and found that there is a function verifyAnalysis() in Pass but it is empty. So do you suggest implementing that function? If it is the case, what should I look while implementing that function? Or something else altogether? Thanks, Nehal. -----Original Message----- From: Nick Lewycky [mailto:nicholas at mxc.ca] Sent: Friday, June 04, 2010 2:29 AM To: Nehal Gandhi Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Inserting a function call into bitcode Have you tried running the verifier after ConditionProfile runs? Just add it t...
2010 Jun 05
0
[LLVMdev] Inserting a function call into bitcode
Nehal Gandhi wrote: > Hi Nick > > I am not quite sure what you meant by verifier. I checked online documents > and found that there is a function verifyAnalysis() in Pass but it is empty. > So do you suggest implementing that function? If it is the case, what should > I look while imple...
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
Hi Eli, I have attached a tar file containing Pass (ConditionPass.cpp), External function (PrintRes.cpp) and test program (try.c). I use command chain as describe in previous mail. Thanks, Nehal. -----Original Message----- From: Eli Friedman [mailto:eli.friedman at gmail.com] Sent: Friday, June 04, 2010 3:39 AM To: Nehal Gandhi Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Inserting a function call into bitcode On Fri, Jun 4, 2010 at 12:09 AM, Nehal Gandhi <nbg2k7 at gmail.com&gt...
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
On Fri, Jun 4, 2010 at 1:09 AM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: > Hi Eli, > > I have attached a tar file containing Pass (ConditionPass.cpp), External > function (PrintRes.cpp) and test program (try.c). I use command chain as > describe in previous mail. Can you just attach the final program.bc you pass...
2010 Jun 04
1
[LLVMdev] Inserting a function call into bitcode
Here you go. -----Original Message----- From: Eli Friedman [mailto:eli.friedman at gmail.com] Sent: Friday, June 04, 2010 7:42 AM To: Nehal Gandhi Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Inserting a function call into bitcode On Fri, Jun 4, 2010 at 1:09 AM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: > Hi Eli, > > I have attached a tar file containing Pass (ConditionPass.cpp), External > function (PrintRes.cp...
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
On Thu, Jun 3, 2010 at 10:45 PM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: >> Hi Eli, >> >> Thanks for that. Rookie mistake on my side. It solves the linking issue. >> However, it was not the main problem. The problem is when I execute the >> linked file ( modified bitcode + file containing the functi...
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
On Fri, Jun 4, 2010 at 12:09 AM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: > On Thu, Jun 3, 2010 at 10:45 PM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: >>> Hi Eli, >>> >>> Thanks for that. Rookie mistake on my side. It solves the linking issue. >>> However, it was not the main problem....
2010 Jun 04
5
[LLVMdev] Inserting a function call into bitcode
...herits ModulePass and does not have any other method except runOnModule. Am I missing something during call insertion or bitcode modification? I am using LLVM-2.6. The same code in LLVM-2.5 works correctly. (except Type::getInt32Ty, llvm-2.5 has Type::Int32Ty and no LLVMContext object) Thanks, Nehal bool ConditionProfile::runOnModule(Module &M) { // Iterates through all functions of the module for(Module::iterator mi = M.begin(), me = M.end(); mi!=me; mi++) { // Iterates through all basic blocks of the function f...
2005 Feb 26
1
[patch] fixes for avi2vp3
...y mode is not default. 2. win32 does not understand chmod flags, ie: (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) 3. buffer = malloc(AVI_max_video_chunk(avifile)); for some reason, AVI_max_video_chunk(avifile) returns 0, i've set an arbitrary high value for it until someone fixes it correctly. -- Nehal -------------- next part -------------- A non-text attachment was scrubbed... Name: avi2vp3-fixes-nehal.diff Type: application/octet-stream Size: 1856 bytes Desc: not available Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20050226/2e1f7cef/avi2vp3-fixes-nehal.obj
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
...mp; "Code generation didn't add function to GlobalAddress table!"' failed. So my main concern - is that a correct way to insert a call instruction in the bitcode the way I did? The same code for inserting a function call instruction works correctly with LLVM2.5 . Thanks, Nehal. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100604/e8dba601/attachment.html>
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
Have you tried running the verifier after ConditionProfile runs? Just add it to the pass manager to run right afterwards and see what it picks up. Nick Nehal Gandhi wrote: > > > Hi All, > > I am trying to write code for simple instrumentation. What I want to do > is to insert a call to an external function for result of each > conditional branch instruction. This external function simply print true > or false based on the result...
2010 May 25
1
[LLVMdev] DEBUG INFO at the bytecode level
...urce file information" section, there is a > small code snippet this describes how to extract this information. > > - > Devang > Hi Devang, I think the link you provided above is for LLVM 2.7. Is there any way to get source line number from bitcode in LLVM 2.5/2.6? Thanks, Nehal.
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
On Thu, Jun 3, 2010 at 10:45 PM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: > Hi Eli, > > > > Thanks for that. Rookie mistake on my side. It solves the linking issue. > However, it was not the main problem. The problem is when I execute the > linked file ( modified bitcode + file containing the function), I get...
2002 Dec 10
2
mingw compiling problem for libogg
...list) Hi, there is a small compiling problem for mingw when compiling on libogg.. in include/ogg/os_types.h : ogg_int64_t, ogg_int32_t, etc are defined correctly on cygwin and MSVC/Borland but not on mingw... i have attached a patch that will fix this problem (i hope it attaches correctly) thx, Nehal --- os_types.h.old Fri Jul 19 02:25:52 2002 +++ os_types.h Tue Dec 10 14:15:44 2002 @@ -32,6 +32,13 @@ typedef __int32 ogg_int32_t; typedef unsigned __int32 ogg_uint32_t; typedef __int16 ogg_int16_t; +# elif defined(__MINGW32_VERSION) + /* Mingw */ +# include <stdint.h> +...
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
On Thu, Jun 3, 2010 at 9:43 PM, Nehal Gandhi <nbg2k7 at gmail.com> wrote: > Hi All, > > > > I am trying to write code for simple instrumentation. What I want to do is > to insert a call to an external function for result of each conditional > branch instruction. This external function simply print true or fal...
2013 Nov 21
2
Query:: Reg: Libvirt Networking
...rent active networks share the same bridge? Example, can the xml of two active networks have the same line <bridge name='virbr0' stp='on' delay='0'/> ? (iii) If the answer for (ii) is false, how can I obtain the interface name for a given bridge name in libvirt? -- Nehal J Wani
2013 May 12
1
Check Swap Usage on Guest VM from Host
I was wondering if swap usage of Guest VM can be checked from Host machine via command line.Is it possible? -- Nehal J. Wani UG2, BTech CS+MS(CL) IIIT-Hyderabad http://commanlinewani.blogspot.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20130512/bee20a7e/attachment.htm>
2013 Nov 22
1
Re: Query:: Reg: Libvirt Networking
...from the host's point of > view. > Apologies for the typo error. I was actually asking: How can I obtain the network name for a given bridge name in libvirt? > libvirt-users mailing list > libvirt-users@redhat.com > https://www.redhat.com/mailman/listinfo/libvirt-users -- Nehal J Wani
1999 Apr 08
6
PopUp messages
Dear all, as you already know, it is possible to send short winpopup messages to Win boxes using the command smbclient -M host. If a Win user wants to reply, it should be possible to use the Windows' WinPopUp GUI to reply, but the message gets lost somewhere. For example: smbclient -M winbox Added interface ip=192.1.1.125 bcast=192.1.1.255 nmask=255.255.255.0 Connected. Type your message,