Displaying 20 results from an estimated 400 matches similar to: "[LLVMdev] Optimisation of select/cmp/br"
2002 Oct 15
1
strange behavior on file copy from Novel
I am experienceing very strange behavior when copying files from Novel
shares to samba shares. This behavior is evident when using windows
explorer to copy files from a Novel network share to my samba shares, not
a. copying a file from my local partitions to the samba share
b. copying a file from a remote windows share.
Is anyone aware of strange Novel settings that would prevent copying files
2003 Jul 18
2
Samba 3 Beta3 using LDAP and NT4 Migrate
Hi,
I am trying a test of migrating a NT4 Domain to Samba 3 Beta 3 configured to
use LDAP on Redhat 8. Is this possible?
Details
-------
I previously had Beta 2 on LDAP running as it's own domain controller
without problem and could create users (in LDAP) with smbpasswd -a. XP
clients could join and login OK.
Now I have flushed that setup and have loaded Beta 3 configured to use LDAP,
2005 Apr 02
3
Bug#302744: logcheck-database: postfix rules
Package: logcheck-database
Version: 1.2.36
Severity: wishlist
Hello,
I recently blew away my old logcheck-databse and lost a number of changes that i had made to postfix entries. The default database for postfix reports the
following errors that do not seem to be important...
Apr 2 13:00:19 terminus postfix/local[29516]: 574B9B3B9F: to=<doug at localhost>, relay=local, delay=13,
2002 Oct 16
1
follow up to novell file issue and a question about "fstype"
Ok, I've done some further research into this one:
It appears that installing the Novell client on a Win machine has the
effect of replacing the file copy command with one from Novell. It also
seems that the NTFS filesystem has spaces for extra metadata, and the the
new Novell command is using those to store it's ACL. I"m guessing that
this metadata is not storable via Samba,
2005 Apr 07
1
Bug#303661: logcheck-database: openntpd rules
Package: logcheck-database
Version: 1.2.37
Severity: normal
Hello again,
openntpd gives messages like these failry often:
Apr 7 14:25:55 terminus ntpd[673]: peer 204.17.42.202 now invalid
Apr 7 14:26:10 terminus ntpd[673]: peer 204.17.42.202 now valid
I am not sure if this is something that an admin may find relevant but they happen fairly often and they do not offer a lot of info
for me.
2005 Sep 28
0
[PATCH][VT] Fix the mmio for cmp/test opcode
Currently the mmio_operands assumes writing to memory when operand 0 is
register or immediate, this is false for cmp/test opcode.
This patch resolve this problem, please review.
Signed-off-by: Yunhong Jiang <yunhong.jiang@intel.com>
Signed-off-by: Jun Nakajima <jun.nakajima@intel.com>
Thanks
Yunhong Jiang
_______________________________________________
Xen-devel mailing list
2008 Jun 27
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Hello, Gary
> I'm trying to figure out how to add the instructions required for
> llvm.atomic.cmp.swap.i32 on PowerPC. I figured out LWARX (patch
> attached)
Applied, thanks!
> but the other two (CMP_UNRESw and STWCX) require multiple
> instructions:
>
> let Defs = [CR0] in {
> def STWCX : Pseudo<(outs), (ins GPRC:$rS, memrr:$dst, i32imm:$label),
>
2008 Jun 27
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
On Jun 27, 2008, at 8:27 AM, Gary Benson wrote:
> def CMP_UNRESw : Pseudo<(outs), (ins GPRC:$rA, GPRC:$rB, i32imm:
> $label),
> "cmpw $rA, $rB\n\tbne- La${label}_exit",
> [(PPCcmp_unres GPRC:$rA, GPRC:$rB, imm:
> $label)]>;
> }
>
> ...and I can't figure out the syntax for that. Any suggestions?
Hi
2008 Jul 10
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Looks good.
+ unsigned temp;
+ if (is64bit)
+ temp = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
+ else
+ temp = RegInfo.createVirtualRegister(&PPC::G8RCRegClass);
How about?
const TargetRegisterClass *RC = is64Bit ? &PPC:GPRCRegClass :
&PPC:G8RCRegClass;
unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Evan
On Jul 9, 2008, at 9:16 AM, Gary
2008 Jul 12
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Committed. Thanks!
Evan
On Jul 11, 2008, at 1:07 PM, Gary Benson wrote:
> Hi Evan,
>
> Evan Cheng wrote:
>> This does not patch cleanly for me (PPCISelLowering.cpp). Can you
>> prepare a updated patch?
>
> This should work, though I won't have access to my test box now until
> next Thursday so no guarantees :)
>
> Cheers,
> Gary
>
> --
>
2009 Jul 08
0
[LLVMdev] v[if]cmp
Hi Nicholas,
The backend is updated, clang no longer generates them, feel free to
zap.
-Chris
2007 May 13
0
cmp: /usr/local/src/openssh-4.6p1/regress/ls.copy: No such file or directory
Dear all,
Hi. This is imacat from Taiwan. I'm new to this list.
I encountered the following failures when running "make tests" on
machines that haven't install OpenSSH yet. It seems to fail at
regress/multiplex.sh. It seems to specific to machines that haven't
install OpenSSH yet. Once I have installed OpenSSH, the failure is gone.
Might it be the case
2014 Feb 07
1
[PATCH] arm: Remove a superfluous 's' suffix from the cmp instruction
The 's' suffix on the cmp instruction is deprecated and
superfluous since the cmp instruction always sets conditional
flags.
This fixes building for iOS with inline assembly enabled.
---
libspeex/filters_arm4.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libspeex/filters_arm4.h b/libspeex/filters_arm4.h
index 7a74042..2c64625 100644
---
2008 Jun 27
2
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Hi all,
I'm trying to figure out how to add the instructions required for
llvm.atomic.cmp.swap.i32 on PowerPC. I figured out LWARX (patch
attached) but the other two (CMP_UNRESw and STWCX) require multiple
instructions:
let Defs = [CR0] in {
def STWCX : Pseudo<(outs), (ins GPRC:$rS, memrr:$dst, i32imm:$label),
"stwcx. $rS, $dst\n\tbne-
2008 Jul 04
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Hi Gary,
The patch looks great. But I do have one comment:
+let usesCustomDAGSchedInserter = 1 in {
+ let Uses = [CR0] in {
+ let Uses = [R0] in
+ def ATOMIC_LOAD_ADD_I32 : Pseudo<
The "let Uses = [R0]" is not needed. The pseudo instruction will be
expanded like this later:
+ BuildMI(BB, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
+
2008 Mar 12
2
bug with R CMP SHLIB (PR#10945)
Hello,
I'm working with R, I try to call C from R.
When I try to compile my file.c to make file.so, with the command :
R CMD SHLIB foo.c
return the message :
gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-mmacosx-version-min=10.4 -std=gnu99 -dynamiclib
-Wl,-headerpad_max_install_names -Wl,-macosx_version_min -Wl,10.4 -undefined
dynamic_lookup -single_module -multiply_defined
2008 Jul 08
0
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Look for createVirtualRegister. These are examples in
PPCISelLowering.cpp.
Evan
On Jul 8, 2008, at 8:24 AM, Gary Benson wrote:
> Hi Evan,
>
> Evan Cheng wrote:
>> The patch looks great. But I do have one comment:
>>
>> +let usesCustomDAGSchedInserter = 1 in {
>> + let Uses = [CR0] in {
>> + let Uses = [R0] in
>> + def ATOMIC_LOAD_ADD_I32 :
2008 Jul 08
3
[LLVMdev] Implementing llvm.atomic.cmp.swap.i32 on PowerPC
Hi Evan,
Evan Cheng wrote:
> The patch looks great. But I do have one comment:
>
> +let usesCustomDAGSchedInserter = 1 in {
> + let Uses = [CR0] in {
> + let Uses = [R0] in
> + def ATOMIC_LOAD_ADD_I32 : Pseudo<
>
> The "let Uses = [R0]" is not needed. The pseudo instruction will be
> expanded like this later:
>
> + BuildMI(BB,
2006 Mar 06
2
Convert \n newlines to html <br>
I have a textarea that accepts a shipping address, so I need to convert
newlines when it is displayed as html. I am new to ruby, and rails so an
example would be appreciated. I want to do this in the ''display'', not
the stored text if possible, since I use the newlines when generating a
pdf.
Thanks.
charley
--
Posted via http://www.ruby-forum.com/.
2006 May 27
0
:filter_html and :hard_breaks makes <br> ...weird
hi!
never posted to a mailing list before so I hope this
is an appropriate use.
Love redcloth btw!
I guess I just have a bug report though... if I turn
on hard_breaks and filter_html, all the <br />s turn
into <br>s. weird. For now I''m just doing this which
is fine:
textilized = RedCloth.new(text, [ :filter_html,
:hard_breaks ])
return