Displaying 13 results from an estimated 13 matches for "xmc".
Did you mean:
lmc
2012 Aug 24
2
[LLVMdev] Stop opt from producing 832 bit integer?
...ndering if there's a way to prevent
opt from producing ridiculously sized integers, so that my code doesn't
have to deal with them.
I tried to get a small sample of code to produce this problem, so that
you'd have an example:
*
*
*void gsm_print (unsigned char *c)*
*{*
* short xmc[52];*
* xmc[19] = (*c >> 2) & 0x7;*
* xmc[22] = (*c >> 1) & 0x7;*
* xmc[24] = (*c >> 3) & 0x7;*
* xmc[28] = (*c++ & 0x1) << 2;*
* xmc[29] = (*c >> 3) & 0x7;*
* printf("%.2d %.2d %.2d\n", xmc...
2011 Aug 31
0
xendomains not starting at boot
...ate the domain.
-p, --paused Leave the domain paused after it is created.
-c, --console_autoconnect
Connect to the console after the domain is created.
!
[failed] [FAILED]
The actual command executed turns out to be:
XMC=`xm create --quiet --defconfig $dom`
where dom=/etc/xen/auto/fszele
If I issue the command from the command line, the dom starts as
expected. After some debugging on /etc/init.d/xendomains it turns out to
work if I change this line:
diff xendomains*
283c283
< XMC=$(xm create --qu...
2015 Nov 23
3
Qs about TwoOperandAliasConstraint and TIED_TO
in llvm-3.6.2.src
1. when I put this around one of my instruction definitions in my target "InstrInfo.td" file,
let TwoOperandAliasConstraint = "$dst = $rs1" in {
}
I do not see any TIED_TO in the generated GenInstrInfo.inc file for the OperandInfo used by the instruction,
the question is what am I doing wrong ?
2. I've noticed that TwoOperandAliasConstraint
2004 Sep 28
3
building a phone recorder
How feasible would it be to build a phone recorder with Asterisk (takes
a number of analog phone lines in and records them when there is
conversation). Has such a thing already been done or are there aspects
of such a thing that would require significant changes to Asterisk to
handle?
-David Powers
2019 Nov 04
3
Puzzled about a new method for "[".
On 5/11/19 3:41 AM, Hadley Wickham wrote:
> For what it's worth, I don't think this strategy can work in general,
> because a class might have attributes that depend on its data/contents
> (e.g. https://vctrs.r-lib.org/articles/s3-vector.html#cached-sum). I
> don't think these are particularly common in practice, but it's
> dangerous to assume that you can restore a
2014 Dec 06
1
Bug#772274: xen-utils-common: when upgrading package: insserv: Service xenstored has to be enabled to start service xendomains
...ive attention.
for dom in $XENDOMAINS_AUTO/*; do
echo -n " ${dom##*/}"
shortdom=$(echo $dom | sed -n 's/^.*\/\(.*\)$/\1/p')
echo $saved_domains | grep -w $shortdom > /dev/null
if [ $? -eq 0 ] || is_running $dom; then
echo -n "(skip)"
else
XMC=`$CMD create --quiet --defconfig $dom`
if [ $? -ne 0 ]; then
echo -e "\nAn error occurred while creating domain ${dom##*/}: $XMC\n"
rc_failed $?
echo -e '!'
else
usleep $XENDOMAINS_CREATE_USLEEP
fi
fi
done
fi
}
all_zombies()
{
name=;id=...
2009 Oct 30
2
[LLVMdev] Should LLVM JIT default to lazy or non-lazy?
...tate
while (atomic_load(&callsite_patch_state) != 2) {
waitJIT();
}
// serialize
CPUID
patchsite2:
// execute new code
jmp <nop nop nop nop nop nop nop nop> // will be patched
waitJIT:
jitLock()
jitUnlock()
^This should be consistent with the Intel Manual's requirements on XMC,
which has a similar algorithm, except for the fast-path.
CompilationCallBack:
jitLock();
if (isJITed(F)) {jitUnlock(); return;}
JIT function
patch_callsite(&patchsite, compiledFunctionAddress);
patch_callsite(&patchsite2, compiledFunctionAddress);...
2004 Oct 06
7
Comedian Mail User Guide
Is there a user guide for Comedian Mail? I need to give some training
materials to my end users.
So far, I have been unable to find anything through google or the Digium
site.
THanks,
Wiley
The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other
2009 Nov 01
0
[LLVMdev] Should LLVM JIT default to lazy or non-lazy?
...gt; waitJIT();
> }
> // serialize
> CPUID
> patchsite2:
> // execute new code
> jmp <nop nop nop nop nop nop nop nop> // will be patched
>
> waitJIT:
> jitLock()
> jitUnlock()
>
> ^This should be consistent with the Intel Manual's requirements on XMC,
> which has a similar algorithm, except for the fast-path.
>
> CompilationCallBack:
> jitLock();
> if (isJITed(F)) {jitUnlock(); return;}
> JIT function
>
> patch_callsite(&patchsite, compiledFunctionAddress);
> patch_callsite(&patch...
2009 Oct 29
0
[LLVMdev] Should LLVM JIT default to lazy or non-lazy?
On Thu, Oct 29, 2009 at 2:30 PM, Nicolas Geoffray
<nicolas.geoffray at lip6.fr> wrote:
> Hi Jeffrey,
>
> Jeffrey Yasskin wrote:
>>
>> Cool, I'll start implementing it.
>>
>
> Great! Thanks.
>
> Just to clarify things: on my end, it doesn't really matter what is the
> default behavior, as long as vmkit can continue to have the existing
>
2009 Oct 29
3
[LLVMdev] Should LLVM JIT default to lazy or non-lazy?
Hi Jeffrey,
Jeffrey Yasskin wrote:
> Cool, I'll start implementing it.
>
Great! Thanks.
Just to clarify things: on my end, it doesn't really matter what is the
default behavior, as long as vmkit can continue to have the existing
behavior of lazy compilation. With Chris' solution, I was wondering how
you would implement the getPointerToFunction{Eager, Lazy} functions when
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list.
I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without
modifications.
How did I try it?
Created a (non-root) build environment (not a mock )
Installed the kernel.scr.rpm and did a
rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee
prep-out.log
The build failed at the end:
Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL
Checking
2003 Oct 01
0
oss Errors
Hi,
Anybody seen this error?
Getting an odd error on the console when I place a call from console to
a SIP station. As soon as the station answers, here is the error.
SIP/172.16.10.24-527b answered OSS/dsp
WARNING[1298960704]: File chan_oss.c, Line 679 (oss_indicate): Don't
know how to display condition -1 on OSS/dsp
<< Console call has been answered >>