search for: umail

Displaying 20 results from an estimated 66 matches for "umail".

Did you mean: mail
2010 May 07
1
[LLVMdev] Unreachable code executed crash
...ed, May 5, 2010 at 8:39 PM, Nick Lewycky >> <nlewycky at google.com <mailto:nlewycky at google.com> >> <mailto:nlewycky at google.com <mailto:nlewycky at google.com>>> wrote: >> >> On 5 May 2010 17:12, Adarsh Yoga <ayoga at umail.iu.edu >> <mailto:ayoga at umail.iu.edu> >> <mailto:ayoga at umail.iu.edu <mailto:ayoga at umail.iu.edu>>> wrote: >> >> Hi, >> >> I've written a pass that basically does some code >>...
2010 Aug 19
0
[LLVMdev] VMKit Boehm MMTk Compilation
...fray at gmail.com>: > I am running revision 107246 of llvm-gcc. > > You can still debug LLVM Makefile framework. I use it to compile my c++ > files to llvm bitcode and then to native. > > Nicolas > > On Fri, Aug 13, 2010 at 10:47 PM, Kyle T. Klein > <kyleklein at umail.ucsb.edu>wrote: > >> Hi Nicolas, >> >> I suppose the only thing I have yet to try is to match the revision of >> llvmgcc as well as llvm. So what is the revision of llvmgcc you are using? I >> shall try that and see if it helps. >> >> Best, >> &...
2010 May 06
2
[LLVMdev] Unreachable code executed crash
...? > > I'll try to reproduce this and fix the verifier to catch it. > > Nick > > On Wed, May 5, 2010 at 8:39 PM, Nick Lewycky <nlewycky at google.com >> <mailto:nlewycky at google.com>> wrote: >> >> On 5 May 2010 17:12, Adarsh Yoga <ayoga at umail.iu.edu >> <mailto:ayoga at umail.iu.edu>> wrote: >> >> Hi, >> >> I've written a pass that basically does some code >> transformations to enable parallel execution of loops. After the >> transformation llvm runs...
2010 May 07
0
[LLVMdev] Unreachable code executed crash
...On Wed, May 5, 2010 at 8:39 PM, Nick Lewycky > <nlewycky at google.com <mailto:nlewycky at google.com> > <mailto:nlewycky at google.com <mailto:nlewycky at google.com>>> wrote: > > On 5 May 2010 17:12, Adarsh Yoga <ayoga at umail.iu.edu > <mailto:ayoga at umail.iu.edu> > <mailto:ayoga at umail.iu.edu <mailto:ayoga at umail.iu.edu>>> wrote: > > Hi, > > I've written a pass that basically does some code > transforma...
2010 Aug 05
2
[LLVMdev] VMKit Boehm MMTk Compilation
Hello, I've been able to get J3 working with the single and multimap garbage collectors but have hit several snags with Boehm and MMTk. For MMTk I get here: Buildfile: /cs/student/kyleklein/vmkit/mmtk/java/build.xml main: [mkdir] Created dir: /cs/student/kyleklein/vmkit/mmtk/java/classes [javac] Compiling 373 source files to /cs/student/kyleklein/vmkit/mmtk/java/classes
2010 May 06
2
[LLVMdev] Unreachable code executed crash
...ly the pass was crashing when the module when the module verifier was running. I was able to solve that and now it is crashing when the bit writer pass is running. On Wed, May 5, 2010 at 8:39 PM, Nick Lewycky <nlewycky at google.com> wrote: > On 5 May 2010 17:12, Adarsh Yoga <ayoga at umail.iu.edu> wrote: > >> Hi, >> >> I've written a pass that basically does some code transformations to >> enable parallel execution of loops. After the transformation llvm runs >> BitCode Writer pass , which is aborting with Unreachable Executed error. >>...
2010 Mar 26
0
[LLVMdev] CFG Manipulation is LLVM
...the list of uses of "variables" (aka instructions) is maintained automatically. Ciao, Duncan. PS: Please reply to the list rather than me personally. I've CC'd the list. > > Thanks, > Rohith. > > On Thu, Mar 18, 2010 at 4:55 PM, Rohith Goparaju <rgoparaj at umail.iu.edu > <mailto:rgoparaj at umail.iu.edu>> wrote: > > Thanks Duncan...That was helpful. > > > On Thu, Mar 18, 2010 at 4:54 AM, Duncan Sands <baldrick at free.fr > <mailto:baldrick at free.fr>> wrote: > > Hi Rohith, > >...
2010 May 06
0
[LLVMdev] Unreachable code executed crash
...an instruction in another function? I'll try to reproduce this and fix the verifier to catch it. Nick > On Wed, May 5, 2010 at 8:39 PM, Nick Lewycky <nlewycky at google.com > <mailto:nlewycky at google.com>> wrote: > > On 5 May 2010 17:12, Adarsh Yoga <ayoga at umail.iu.edu > <mailto:ayoga at umail.iu.edu>> wrote: > > Hi, > > I've written a pass that basically does some code > transformations to enable parallel execution of loops. After the > transformation llvm runs BitCode Writer pass ,...
2010 Mar 17
3
[LLVMdev] CFG Manipulation is LLVM
Hi, Is there any API within llvm that provides methods to access the CFG and do some manipulations on the CFG. Thanks, Rohith. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100317/5536c443/attachment.html>
2014 Apr 02
3
Typeof for character vector in dataframe returns integer
Hi , I want to know is this behavior expected and why is that ? Need some help gender <- c("F", "M", "M", "F", "F", "M", "F", "F") > age <- c(23, 25, 27, 29, 31, 33, 35, 37) > df<- data.frame(gender,age) > typeof(df[[1]]) [1] "integer"
2010 Apr 26
2
[LLVMdev] Creating a GEP instruction.
Hi, I'm trying to create a GEP (inbounds) instruction . I was looking at the createinboundsGEP method . I didnt get the inputiterator part. My question how do i create a GEP instruction and what do i pass for the input iterator arguments. Thanks, Rohith. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Apr 26
0
[LLVMdev] Creating a GEP instruction.
On Sun, Apr 25, 2010 at 5:15 PM, Rohith Goparaju <rgoparaj at umail.iu.edu> wrote: >  Hi, > >    I'm trying to create a GEP (inbounds) instruction . I was looking at the > createinboundsGEP method . I didnt get the inputiterator part. My question > how do i create a GEP instruction and what do i pass for the input iterator > arguments. Gen...
2010 Apr 26
1
[LLVMdev] Creating a GEP instruction.
...akes the base pointer and the index value and a name. When i try passing '0' as the index im running into problems. Thanks, Rohith. On Sun, Apr 25, 2010 at 10:27 PM, Eli Friedman <eli.friedman at gmail.com>wrote: > On Sun, Apr 25, 2010 at 5:15 PM, Rohith Goparaju <rgoparaj at umail.iu.edu> > wrote: > > Hi, > > > > I'm trying to create a GEP (inbounds) instruction . I was looking at > the > > createinboundsGEP method . I didnt get the inputiterator part. My > question > > how do i create a GEP instruction and what do i pass for...
2010 May 02
0
[LLVMdev] Unreachable Executed error.
Run the verifier pass after your pass. The bitcode readers and writers assume that the IR is well-formed, which yours may not be. Reid On Sun, May 2, 2010 at 1:08 AM, Rohith Goparaju <rgoparaj at umail.iu.edu> wrote: > Hi, > >   I've written a pass that basically does some code transformations to > enable parallel execution. After the transformation llvm runs BitCode Writer > pass , which is aborting with Unreachable Executed error.  What does this > error generally mean?...
2010 May 06
0
[LLVMdev] Unreachable code executed crash
On 5 May 2010 17:12, Adarsh Yoga <ayoga at umail.iu.edu> wrote: > Hi, > > I've written a pass that basically does some code transformations to > enable parallel execution of loops. After the transformation llvm runs > BitCode Writer pass , which is aborting with Unreachable Executed error. > I have attached the input l...
2010 May 02
2
[LLVMdev] Unreachable Executed error.
Hi, I've written a pass that basically does some code transformations to enable parallel execution. After the transformation llvm runs BitCode Writer pass , which is aborting with Unreachable Executed error. What does this error generally mean?. Any pointers on how to go about debugging this. Thanks, Rohith. -------------- next part -------------- An HTML attachment was scrubbed...
2010 Oct 17
1
Wrong box.
...16 22:52:49 mta0 dovecot: master: Warning: Killed with signal 15 (by pid=12190 uid=0 code=kill) Oct 16 22:52:57 mta0 dovecot: imap(testador at uff.br): Server shutting down. bytes=63/1673 Oct 16 22:52:59 mta0 dovecot: lda(mtahsp at vm.uff.br): sieve: msgid=< MAILSENDER2003BHUdm00087164 at mailer.umail.com.br>: stored mail into mailbox 'Spam' Oct 16 22:52:59 mta0 dovecot: lda(valeriavet at vm.uff.br): msgid=<FD.E7.04337.F8F18BC4 at mta01>: saved mail to INBOX Oct 16 22:52:59 mta0 dovecot: lda(santelli at geoq.uff.br): sieve: msgid=<3627207d2597dcb14860bb050c442be3 at localhost...
2010 May 06
2
[LLVMdev] Unreachable code executed crash
Hi, I've written a pass that basically does some code transformations to enable parallel execution of loops. After the transformation llvm runs BitCode Writer pass , which is aborting with Unreachable Executed error. I have attached the input llvm code and the output llvm code for reference. I am stuck at this problem for a few days now. Please let me know if you are able to find anything
2011 Jun 26
4
Sven Power Pro 1000+
Hello. I recently upgraded from Ubuntu Maverick to Natty and hence upgraded nut from 2.4.3-1ubuntu5 to 2.6.0-1ubuntu3. My Sven PowerPro+ 1000 UPS ( http://en.sven.ru/catalog/ups/power_pro_plus_1000.htm ) worked fine with the previous version, using megatec_usb driver, but doesn't work with the current version, since megatec_usb is no longer available. Here is the output from blazer_usb.
2009 Sep 01
0
[LLVMdev] LLVM based project idea in computer security
...binary instrumentation tool the closest thing to working in hades). Anyway, I am in the process of doing my due diligence, checking for previous work and related topics. I would very much appreciate input on this subject and I thank you for your time :) -- Nicholas Childers nickchilders at umail.ucsb.edu