search for: pass3

Displaying 20 results from an estimated 29 matches for "pass3".

Did you mean: pass
2012 Jun 26
0
[LLVMdev] Does anaysis group only contain passes?
...result as it likes, asks the next analysis in the chain (see http://llvm.org/docs/WritingAnLLVMPass.html#AU::addRequired). > If yes, which pass will be used for the call of > getAnaysis<AnalysisGroup>()? I believe the chain is in reverse order. So if you specify opt -pass1 -pass2 -pass3 -transform, and transform queries the analysis group to which pass1, pass2, and pass3 belong, then pass3 is queried first. If pass3 then queries another pass in the analysis group, the query will be sent to pass2. Likewise, if pass2 queries another analysis in the group, it will be sent to pa...
2012 Jun 26
2
[LLVMdev] Does anaysis group only contain passes?
Thanks, John. This sounds reasonable that the analysis group just provides an interface to its implementors (pass). Then I have another question, is it allowed to specify multiple pass in the same analysis group in the command line for opt? If yes, which pass will be used for the call of getAnaysis<AnalysisGroup>()? -Thomson On Mon, Jun 25, 2012 at 10:34 PM, John Criswell <criswell at
2003 Jun 26
2
Is there something sppecial about pass4 ?
...lt;COMPAQ BD009122BA 3B07> at scbus0 target 0 lun 0 (pass0,da0) <COMPAQ BD009122C6 B016> at scbus0 target 1 lun 0 (pass1,da1) <COMPAQ BD009122BA 3B07> at scbus0 target 2 lun 0 (pass2,da2) <COMPAQ BD00962373 BCJE> at scbus0 target 3 lun 0 (pass3,da3) <IBM IC35L018UCPR15-0 S70H> at scbus0 target 5 lun 0 (pass4,da4) smaug# ls -l /dev/pass* crw------- 1 root operator 31, 0 Jun 26 15:54 /dev/pass0 crw------- 1 root operator 31, 1 Jun 26 15:54 /dev/pass1 crw------- 1 root operator 31, 2 Jun 26 15:54 /dev/pass2 cr...
2010 Feb 21
1
[LLVMdev] patch: purdy colours for makefiles
...X 10.6.2, gcc-4.2, 8 core host - build llvm + clang (debug) - llvm and clang trunk at 96719 - timing command: time make -j8 (times shown are in seconds, USER SYSTEM ELAPSED) BEFORE PATCH: >time make -j8 pass1. 1384.373u 226.969s 4:22.87 612.9% pass2. 1385.766u 227.542s 4:18.40 624.3% pass3. 1379.234u 224.674s 4:17.56 622.7% AFTER PATCH: >setenv MAKE_BANNER_ANSI=1 >time make -j8 pass1. 1387.113u 228.287s 4:20.97 618.9% pass2. 1389.143u 228.544s 4:20.58 620.7% pass3. 1386.785u 228.141s 4:20.37 620.2% --kb -------------- next part -------------- An embedded and charse...
2004 Nov 18
3
[LLVMdev] A few beginner level questions..
1. If we run a few passes in a sequence ..is the bytecode file transformed after each pass in sequence i.e if we have a) opt -pass1 -pass2 -pass3 < in.bc > out.bc b)opt -pass1 -pass2 < in.bc > tmp.bc opt -pass3 < tmp.bc > out.bc are the above two equivalent ? what I basically want is to run my pass on an optimised bytecode , so should i optimize it and get a new bytecode file first or I can just put my pass at the en...
2013 May 21
1
[LLVMdev] a callback for opt plugin unloading event
Hello, My opt plugin contains multiple passes in it and each pass produces some results and saves them in a global data structure. $ opt -load myplugin.dylib -pass1 -pass2 -pass3 test.bc After all passes finish running, I need to flush out the collected results to a disk file. But I don't know when I can do it. Is there a way/callback for my plugin to know when opt is done with it? Perhaps the last pass could take care of the flushing but my understanding is that it&...
2008 Jul 16
0
[LLVMdev] bugpoint / cbe Problems
...ray.com> wrote: > What's the proper incantation to get bugpoint to run things through opt > but use llc to generate asm? As noted, CBE has issues generating > correct code so using it isn't an option right now. It should be something like bugpoint x.bc -llc-safe -pass1 -pass2 -pass3. The -llc-safe forces it to never use CBE. -Eli
2009 Apr 21
11
can we decrypt the cipher encrypted using Digest::SHA1.hexdigest
what i have done is as follows password = Digest::SHA1.hexdigest("#{salt}:#{password}") pass1 = Digest::SHA1.hexdigest("#{salt}:asdfgh") pass2 = Digest::SHA1.hexdigest("#{salt}:asdfgh") pass3 = Digest::SHA1.hexdigest("#{salt}:qwerty") puts pass1==pass2 puts pass1==pass3 This works fine but i need to get the decrypted password how can i get it any help is highly appreciated Thanks in advance Krishnaprasad Varma India
2008 Jul 16
2
[LLVMdev] bugpoint / cbe Problems
On Wednesday 16 July 2008 10:31, David Greene wrote: > On Wednesday 16 July 2008 10:12, David Greene wrote: > > I'm having some trouble using bugpoint with newer version of gcc > > (bugpoint debug output below). > > I was using gcc 4.1.2. When I try 3.2.3 I get: > > bugpoint-test-program.bc.cbe.c:237: warning: conflicting types for built-in > function
2010 Nov 30
1
Compiling ocfs2-tools-1.6.3 on slackware64-13.1
...--build=$ARCH-slackware-linux \ --enable-dynamic-fsck \ --enable-dynamic-ctl I get this error: gcc -O2 -fPIC -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -pipe -o fsck.ocfs2 fsck.o dirblocks.o dirparents.o extent.o icount.o journal.o pass0.o pass1.o pass1b.o pass2.o pass3.o pass4.o pass5.o problem.o refcount.o slot_recovery.o strings.o util.o xattr.o ../libocfs2/libocfs2.a ../libo2dlm/libo2dlm.a ../libo2cb/libo2cb.a -L../libocfs2 -locfs2 -L../libo2dlm -lo2dlm -L../libo2cb -lo2cb -L/lib64 -lcom_err /lib64/libcom_err.a(error_message.o): In function `s...
2004 Nov 18
0
[LLVMdev] A few beginner level questions..
On Wed, 2004-11-17 at 23:19, Abhijit Ray wrote: > 1. If we run a few passes in a sequence ..is the bytecode file > transformed after each pass in sequence i.e > > if we have > a) opt -pass1 -pass2 -pass3 < in.bc > out.bc > b)opt -pass1 -pass2 < in.bc > tmp.bc > opt -pass3 < tmp.bc > out.bc > > are the above two equivalent ? Yes, they're equivalent. > what I basically want is to run my pass on an optimised bytecode , so > should i optimize it and get...
2010 Feb 13
3
ocfs2 compile error in x86_64
...#39;%lu' expects type 'long unsigned int', but argument 8 has type '__u64' gcc -m64 -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -pipe -static -o fsck.ocfs2 fsck.o dirblocks.o dirparents.o extent.o icount.o journal.o pass0.o pass1.o pass1b.o pass2.o pass3.o pass4.o pass5.o problem.o refcount.o slot_recovery.o strings.o util.o xattr.o ../libocfs2/libocfs2.a ../libo2dlm/libo2dlm.a ../libo2cb/libo2cb.a -L../libocfs2 -locfs2 -L../libo2dlm -lo2dlm -L../libo2cb -lo2cb -lcom_err /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../../lib/libcom_err.a(error...
2010 Feb 13
3
ocfs2 compile error in x86_64
...#39;%lu' expects type 'long unsigned int', but argument 8 has type '__u64' gcc -m64 -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -pipe -static -o fsck.ocfs2 fsck.o dirblocks.o dirparents.o extent.o icount.o journal.o pass0.o pass1.o pass1b.o pass2.o pass3.o pass4.o pass5.o problem.o refcount.o slot_recovery.o strings.o util.o xattr.o ../libocfs2/libocfs2.a ../libo2dlm/libo2dlm.a ../libo2cb/libo2cb.a -L../libocfs2 -locfs2 -L../libo2dlm -lo2dlm -L../libo2cb -lo2cb -lcom_err /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../../lib/libcom_err.a(error...
2015 Sep 26
1
dovecot quota service for postfix
...ervice inet:SERVER-HIDDEN-FOR-SECRUITY.com:12340 service quota-status { executable = quota-status -p postfix inet_listener { port = 12340 } client_limit = 1 } now in order to configure dovecot specific quota for user named (user1) i use passwd-file as follow user1:{plain}pass3:1002:1002::/home/user1::userdb_mail=mbox:~/mymail:INBOX=/var/mail/user1 userdb_quota_rule=*:bytes=300M All other users except users1 should have 1GB storage according to this configuration. which user1 will only have 300MB Please advise what is my configuration is missing and if i need to add any...
2013 Nov 14
0
[ler@lerctr.org: 10-BETA3: Bad negotiation on AHD controller]
...-3 device pass1: Serial Number DAA0P7A054G3 pass1: 320.000MB/s transfers (160.000MHz, offset 127, 16bit), Command Queueing Enabled pass2: <SEAGATE ST3146707LC 0004> Fixed Direct Access SCSI-3 device pass2: Serial Number 3KS2NFJG00007611CFPX pass2: 3.300MB/s transfers, Command Queueing Enabled pass3: <SEAGATE ST3146707LC 0004> Fixed Direct Access SCSI-3 device pass3: Serial Number 3KS1Z2KF00007620X9K1 pass3: 3.300MB/s transfers, Command Queueing Enabled # dmesg.boot: Copyright (c) 1992-2013 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 T...
2013 Mar 05
2
make_dev_physpath_alias
...TA device ses0: phy 0: parent 500304800182f4ff addr 500304800182f4ec ses0: probe10,pass2,da1: Element descriptor: 'Slot 02' ses0: probe10,pass2,da1: SAS Device Slot Element: 1 Phys at Slot 1 ses0: phy 0: SATA device ses0: phy 0: parent 500304800182f4ff addr 500304800182f4ed ses0: probe11,pass3,da2: Element descriptor: 'Slot 03' ses0: probe11,pass3,da2: SAS Device Slot Element: 1 Phys at Slot 2 ses0: phy 0: SATA device ses0: phy 0: parent 500304800182f4ff addr 500304800182f4ee ses0: probe12,pass4,da3: Element descriptor: 'Slot 04' ses0: probe12,pass4,da3: SAS Device Slot...
2002 Dec 07
0
[LLVMdev] Got bugs? Perhaps bugpoint can help...
...pass crashes on a testcase. Merely tell it the input testcase and the name of your pass, and it will try to reduce the testcase as much as possible, trying to make your debugging a bit easier. Usage is just like opt or analyze, but slightly more general: $ bugpoint foo1.bc foo2.ll -pass1 -pass2 -pass3 You can give it an arbitrary number of .ll or .bc files, and you can give it 'opt' passes or 'analyze' passes. Of course you can use -load just like opt or analyze. Note that this tool will currently only help you if your pass _crashes_. It cannot yet help with infinite loops or...
2009 Dec 28
3
Mail storage creation fails with virtual users
...mail/user1 dovecot: Dec 28 13:06:28 Error: child 27667 (imap) returned error 89 my [test] passdb file: user1:{PLAIN}pass1:2001:2001:User 1 Name:/var/mail/folders/user1:: mail_plugins=cmusieve user2:{PLAIN}pass2:2002:2002:User 2 Name:/var/mail/folders/user2:: mail_plugins=cmusieve user3:{PLAIN}pass3:2003:2003:User 3 Name:/var/mail/folders/user3:: mail_plugins=cmusieve user4:{PLAIN}pass4:2004:2004:User 4 Name:/var/mail/folders/user4:: mail_plugins=cmusieve Conf settings: -bash-3.2# /usr/local/sbin/dovecot -n # 1.0.13: /usr/local/etc/dovecot.conf base_dir: /usr/local/var/run/ log_path: /var...
2010 May 19
1
postfix+lda+ virtual users, confusion
...y at domainxxx.com hostname = mail.domain1.com sendmail_path = /usr/sbin/sendmail auth_socket_path = /var/run/dovecot/auth-master mail_plugins = expire } auth default { mechanisms = plain passdb passwd-file { args = scheme=plain-md5 username_format=%n /usr/local/dovecot/etc/imap.pass3 } userdb static { args = uid=1001 gid=1001 home=/home/vmail/%n } userdb passwd { } user = root socket listen { master { path = /var/run/dovecot/auth-master mode = 0600 user = vmail group= vmail } client { path = /var/spool/postfix/priva...
2015 Oct 03
0
dovecot quota service for postfix
...executable = quota-status -p postfix >> inet_listener { >> port = 12340 >> } >> client_limit = 1 >> } >> now in order to configure dovecot specific quota for user named (user1) i >> use passwd-file as follow >> user1:{plain}pass3:1002:1002::/home/user1::userdb_mail=mbox:~/mymail:INBOX=/var/mail/user1 userdb_quota_rule=*:bytes=300M >> All other users except users1 should have 1GB storage according to this configuration. which user1 will only have 300MB >> Please advise what is my configuration is missing and if i...