search for: mypass2

Displaying 7 results from an estimated 7 matches for "mypass2".

Did you mean: mypass
2013 Oct 06
3
[LLVMdev] Pass sequence
Hi all, I wrote 2 passes and I want to make run llvm run the passes in this order: -mem2reg -load=…/mypass1.dylib -mypass1 -load=…/mypass2.dylib -mypass2 -O1 -O2 -O3 I know I can do this by manually passing them as an argument to opt. Is there any way to force this sequence directly from clang? I am asking this because I am trying to compile a program and I can specify in the ./configure the CC and CFLAGS options. So if there is...
2013 Oct 07
0
[LLVMdev] Pass sequence
On Oct 5, 2013, at 9:17 PM, Niko Zarzani <koni10 at hotmail.it> wrote: > Hi all, > > I wrote 2 passes and I want to make run llvm run the passes in this order: > -mem2reg -load=…/mypass1.dylib -mypass1 -load=…/mypass2.dylib -mypass2 -O1 -O2 -O3 > > I know I can do this by manually passing them as an argument to opt. > > Is there any way to force this sequence directly from clang? > > I am asking this because I am trying to compile a program and I can specify in the ./configure the CC and CFL...
2010 Dec 06
3
[LLVMdev] using bugpoint
...bug some of my passes. I have read the documentation, but I don't completely understand it. I have a bitcode file X.bc that I transform using the following commands: opt -mypass1 -f -o X.1.bc X.bc // transform with mypass1 llvm-link -f -o X.2.bc X.1.bc support.bc // link with support.bc opt -mypass2 -f -o X.3.bc X.2.bc // transform with mypass2 After transforming X.bc into X.3.bc, if my passes work then I can run X.3.bc with llc using the following command: llc X.3.bc arg1 arg2 That llc command is currently seg faulting because of a bug in one of my passes or in support.bc. Can I use bugp...
2014 Oct 01
2
[LLVMdev] [cfe-dev][Openmp-dev] Provide LLVM IR and OpenMP LLVM IR as input in a Pass
...MP LLVM IR, I need to do some operation in the LLVM IR, that is the IR code obtained compiling the program without the flag “-fopenmp”. So, to be clear my working flow would be: - Run MyPass with in input the LLVM IR - Do some operation on it and get results - Run MyPass again or a different one (MyPass2) with in input the OpenMP LLVM IR and the results of the previous operations - Do other operations Would it be possible doing something like this? Do you have any idea how should I proceed? I hope this is clear and you can give me some suggestion. Thanks. Best Regards, Simone
2005 Feb 11
1
Still stuck trying to make Asterisk read MySQL
...ain: [mysql1] dsn = MySQL-asterisk username = myuser password = mypass pre-connect = yes [mysql1] dsn = asterisk_vm username = myuser ;; changed to my userid on mysql password = mypass ;; changed to my password on mysql pre-connect = yes [mysql2] dsn = MySQL2-asterisk username = myuser2 password = mypass2 enabled = no [ENV] VAR=VALUE 7) Inserted glue to tell asterisk where to look: ; /etc/asterisk/res_config_odbc.conf [settings] table = ast_config connection = mysql1 8) Rerouted Asterisk's config engine: ; /etc/asterisk/extconfig.conf [settings] ;queues.conf => odbc voicemail.conf =&gt...
2015 Jul 03
3
upsd: ERR ACCESS-DENIED with PowerWalker UPS
...to protect the portmapper use the name "rpcbind" for the # daemon name. See rpcbind(8) and rpc.mountd(8) for further information. # upsd : admin at localhost : ALLOW </code> /etc/nut/upsd.users: <code> [ups_admin] password = mypass1 upsmon master [admin] password = mypass2 actions = set actions = fsd instcmds = all </code> upscmd -l PowerWalker at localhost: <code> Instant commands supported on UPS [PowerWalker]: beeper.toggle - Toggle the UPS beeper load.off - Turn off the load immediately load.on - Turn on the load immediately...
2014 Oct 21
2
[LLVMdev] [cfe-dev][Openmp-dev] Provide LLVM IR and OpenMP LLVM IR as input in a Pass
...gram without the flag “-fopenmp”. > > > > > > So, to be clear my working flow would be: > > > > > > - Run MyPass with in input the LLVM IR > > > - Do some operation on it and get results > > > - Run MyPass again or a different one (MyPass2) with in input the > OpenMP LLVM IR and the results of the previous operations > > > - Do other operations > > > > > > Would it be possible doing something like this? Do you have any idea > how should I proceed? > I think it would be better if you gave u...