search for: emmit

Displaying 13 results from an estimated 13 matches for "emmit".

Did you mean: emit
2012 Apr 27
4
[LLVMdev] RE : Detect if a basicblock is part of a loop
...de April de 2012 at 11:57, Hal Finkel wrote: > > Rinaldini, > > What exactly did you run? Specifically, you may be missing some > analysis passes that are necessary for LoopInfo to have the loop > information you desire. > > -Hal I'm running opt with my lib on a ir code emmitted by clang: $ clang -emit-llvm -S -o main.ll main.c and opt: $ ../build/Release/bin/opt -load ../build/Release/lib/LLVMobfuscationTest.so -flattening -S main.ll -o main.opt.ll No others optimization applied...
2012 Apr 27
0
[LLVMdev] RE : Detect if a basicblock is part of a loop
> I'm running opt with my lib on a ir code emmitted by clang: $ clang -emit-llvm -S -o main.ll main.c > and opt: $ ../build/Release/bin/opt -load ../build/Release/lib/LLVMobfuscationTest.so -flattening -S main.ll -o main.opt.ll What's the clang default opt level? Maybe you should use "-O0" explicitly. Regards, chenwj -- Wei...
2014 Feb 19
1
Re: event-test.py cannot detects domain shutdown
...Regards, >> Jim >> >> From c05615b29f8870d20b4457a2e8abe5e4195275c2 Mon Sep 17 00:00:00 2001 >> From: Jim Fehlig <jfehlig@suse.com> >> Date: Tue, 18 Feb 2014 20:34:47 -0700 >> Subject: [PATCH] libxl: queue shutdown event on domain shutdown >> >> Emmit libvirt shutdown event when receiving LIBXL_SHUTDOWN_REASON_POWEROFF >> event from libxl. >> >> Signed-off-by: Jim Fehlig <jfehlig@suse.com> >> --- >> src/libxl/libxl_driver.c | 3 +++ >> 1 file changed, 3 insertions(+) >> >> diff --git a/src/l...
2014 Feb 19
2
Re: event-test.py cannot detects domain shutdown
Cole Robinson wrote: > On 02/18/2014 05:12 AM, Kim Larry wrote: > >> The thing I found today is that if libvirt uses xend driver, shutdown events >> are delivered, but if libvirt uses libxl drvier, doesn't show up anything. It >> seems there are bugs on shutdown event, so I did dig into the libvirt source >> briefly, but I couldn't find where libxl driver
2007 Oct 19
3
Memory problems with CentOS box
Hello all I am running CentOS 5 on a small server and I am having very strange memory malfunctions. The computer runs perfectly with no problems whatsoever. From time to time, after a soft reboot, the computer emmits beeps corresponding to a memory fault. It never reboots again until I find and remove a now defective DIMM. That DIMM can never be used again because it is out of order. This just happened for the *fourth* time and is costing me a lot of hassle and perhaps expense if the manufacturer does not rep...
2010 Mar 08
2
[LLVMdev] Machine Function pass
I am trying to write a MachineFunction pass and build it as a loadable module. I want the pass to run after prolog/epilog emmiter. So far, I have been using MachineFunctionPass, but by inserting it to lib/Codegen and hacking the LLVMTargetMachine file, and Pass.h files. I have created a directory "lib/Transforms/MyPass", and inside I have the code of the pass (which is just a placeholder for now): -------------...
2010 Jun 07
0
Still no(isy) app_jack in the box
Hello everyone! So now I'm testing with chan_sip and I discovered, that I can make calls, even if they're only listed as active channels. But JACK just emmits white noise, with a highger frequency than 8kHz, in my believe. A call with app_record shows, that the signal is clear and very ear friendly though. So how to proceed from here? What can I do to help someone look into app_jack, as I can't beyond the simplest of levels. Kindly yours...
2011 Jul 31
0
Regarding xlive/GFWL problems
...e3Launcher.exe crash with wine) The game launch, I can see MS and Lionhead movies and then a black screen with "Estimating performances..." and it stay like this forever...If I try to use config files from a windows install, there is just a black screen after movies. Either way, no sound emmited, no wine/game error output, nothing, it just loop forever. I also tried to build wine 1.3.23/1.2.24/1.3.25 with xliveless patch here : http://joe.paco-net.ch/xlivelesswine.patch but when I apply it I always have the same thing : Code: patch -p1 < xlivelesswine.patch patching file configure...
2014 Feb 19
0
Re: event-test.py cannot detects domain shutdown
...hat > tomorrow. > > Regards, > Jim > > From c05615b29f8870d20b4457a2e8abe5e4195275c2 Mon Sep 17 00:00:00 2001 > From: Jim Fehlig <jfehlig@suse.com> > Date: Tue, 18 Feb 2014 20:34:47 -0700 > Subject: [PATCH] libxl: queue shutdown event on domain shutdown > > Emmit libvirt shutdown event when receiving LIBXL_SHUTDOWN_REASON_POWEROFF > event from libxl. > > Signed-off-by: Jim Fehlig <jfehlig@suse.com> > --- > src/libxl/libxl_driver.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/src/libxl/libxl_driver.c b/src/libx...
2017 Nov 20
2
Nowaday Scalar Evolution's Problem.
...0 %1 -> if(%1 == 10) goto %6; else %i = %2; %2 -> %2 = (%1 == 4) + %3; %3 -> %3 = (%1 == 7) + %4; %4 -> %4 = 1; %5 -> goto %1; %6 -> label %6; This is a current add-recurrence SCEV node emmited from SCEV. for now, %2 and %3 cannot be evoluted. we cannot calculate the backedge-taken count for this node. the SCEVAddRec node can only handle a constant variable. so it will be like.. SCEV: What is Loop-Latch? : %1 Is The Loop-Latch is only one? : Yes Is the Loop-Latch i...
2012 Apr 26
0
[LLVMdev] Detect if a basicblock is part of a loop
Hi, Depending on what have run before your pass, the loop may have been unrolled or simplified if the computation inside the loop is too simple. Cheers, -- Arnaud de Grandmaison ________________________________________ From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Cristianno Martins [cristiannomartins at gmail.com] Sent: Thursday, April 26, 2012 5:52 PM To:
2012 Apr 26
2
[LLVMdev] Detect if a basicblock is part of a loop
Hi Rinaldini, In order to find information about loops inside a given function you should use something like "LoopInfo *LI = P->getAnalysis<LoopInfo>()", remembering to add "AU.addRequired<LoopInfo>();" to your getAnalysisUsage method. If the function you are interested to is not located in the module being compiled (if you created it as an auxiliary function,
2008 Nov 23
14
CDR Design
I've taken the liberty of starting a new thread to discuss the design of the Asterisk CDR mechanism. The discussion has been kindly initiated by murf putting together a proposal: http://svn.digium.com/svn/asterisk/team/murf/RFCs. After reading the proposal I still don't think it's the right way to go. To my mind adding more channel variables increases the complexity in a situation