search for: clp

Displaying 20 results from an estimated 35 matches for "clp".

Did you mean: cl
2005 May 04
1
strange problems with permissions
...setup and the samba configuration. Let me know if you would like any more details. ---------- Linux 2.4.21-9.0.1.ELsmp #1 SMP Mon Feb 9 22:26:51 EST 2004 i686 i686 i386 GNU/Linux smbd Version 3.0.14a ---------- $ testparm Load smb config files from /usr/lib/smb.conf Processing section "[clp]" Processing section "[managers]" Loaded services file OK. Server role: ROLE_STANDALONE Press enter to see a dump of your service definitions # Global parameters [global] workgroup = CLPMAIN server string = samba server security = SHARE password serve...
2002 Jun 11
0
Problem, Samba as PDC
...'t exists in the PDC or password is invalid'. I don?t understand because the machine account exists in samba and I can set rigths on the Windows Server to users in Samba. Sorry my bad english. Please, I need help ----- Windows System Event Log ID: 3210 NETLOGON Err. authenticating with \\CLP-REDHAT, a NT PDC or W2K for COOPESALUD.COM domain. ----- log.clp-w2k [dd/mm/yyyy hh:ss,0] smb/service.c/make_connection(248) clp-w2k (172.16.0.3) couldn't find service ::{2227a280-3aea-1069-a2de-08002b30309d} ----- log.nmbd [dd/mm/yyyy hh:ss,0] nmbd/nmbd_response_record.c:find_response_record...
2010 Nov 29
3
Samsung CLP-325W network connection?
Anyone got this working over a LAN under CentOS? The instructions claim it is easy to connect after pressing the WPS button on printer and router. Sadly, I don't see a WPS button on my Linksys WRT54GL router. When I press the WPS button on the printer the WiFi icon flashes, but I don't see any attempt to connect in /var/log/messages on my CentOS-5.5 server. Any advice or suggestions
2018 May 04
0
How to constraint instructions reordering from patterns?
Here is a last example to illustrate my concern. The problem is about the lowering of node t13. Initial selection DAG: BB#0 '_start:entry' SelectionDAG has 44 nodes: t11: i16 = Constant<0> t0: ch = EntryToken t3: ch = llvm.clp.set.rspa t0, TargetConstant:i16<392>, Constant:i32<64> t5: ch = llvm.clp.set.rspb t3, TargetConstant:i16<393>, Constant:i32<64> t8: ch = llvm.clp.set.rspsu t5, TargetConstant:i16<394>, Constant:i32<8> t13: ch = store<Volatil...
2018 May 04
2
How to constraint instructions reordering from patterns?
...ncern. > > The problem is about the lowering of node t13. > > Initial selection DAG: BB#0 '_start:entry' > > SelectionDAG has 44 nodes: > >   t11: i16 = Constant<0> > >                   t0: ch = EntryToken > >                 t3: ch = llvm.clp.set.rspa t0, TargetConstant:i16<392>, > Constant:i32<64> > > t5: ch = llvm.clp.set.rspb t3, TargetConstant:i16<393>, Constant:i32<64> > >             t8: ch = llvm.clp.set.rspsu t5, TargetConstant:i16<394>, > Constant:i32<8> > >    ...
2018 May 04
2
How to constraint instructions reordering from patterns?
Hi, Is there a kind of scope mechanism in the instruction lowering pattern language in order to control where instructions are inserted or how they are later reordered during the SelectionDiag linearization? I know the glue chain that stick instructions together. But such mechanism in not provided in instruction lowering pattern. I'm facing many situations where some patterns are lowered into
2017 Jul 27
2
Are there some strong naming conventions in TableGen?
...evelopment of a new micro-controller backend, I try to lowering the following store SDNode: t5: ch = store<ST2[%ptr2](align=4)> t0, Constant:i16<3>, FrameIndex:i16<1>, undef:i16 I have defined the following instruction and associated DAG pattern. def MOVSUTO_A_i32o : CLPFPU_A_i32o_Inst<0b1000001101, (ins IMM16Operand:$ImmA,FPUaOffsetOperand:$OffsetB), (outs ), [], "mov...
2018 May 04
0
How to constraint instructions reordering from patterns?
...source file of my test case. The 3 builtins initialize some stack pointers. They have to be executed before any other instruction. extern float fdivfaddfmul_a(float a, float b, float c, float d); volatile static float x1,x2,x3,x4; void _start(void) { float res; __builtin_clp_set_rspa(64); __builtin_clp_set_rspb(64); __builtin_clp_set_rspsu(8); x1 = 1.0f; x2 = 2.0f; x3 = 3.0f; x4 = 4.0f; res = fdivfaddfmul_a(x1,x2,x3,x4); } -----Original Message----- From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On...
2018 Apr 03
1
Mapping virtual registers to physical registers
...o map function input parameters to machine specific registers. My solution I found is based to the RegInfo.setSimpleHint() API. Here is the body of the parameters loop of TargetLowering::LowerFormalArguments VReg = RegInfo.createVirtualRegister(RC); RegInfo.setSimpleHint(VReg,CLP::FA_ROFF1+i); RegInfo.addLiveIn(CLP::FA_ROFF1+i, VReg); Load = DAG.getCopyFromReg(Chain, Loc, VReg, ValVT.getSimpleVT().SimpleTy); Thanks again for your support, Dominique T. -----Original Message----- From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Krzyszt...
2018 Mar 29
4
Mapping virtual registers to physical registers
...irect mapping as following: MachineOperand destination = MI->getOperand(0); MachineOperand offset = MI->getOperand(1); unsigned destinationReg = destination.getReg(); int64_t FrameIndex = offset.getIndex(); destination.setReg(CLP::FA_ROFF0+FrameIndex); destination.setIsDef(true); TII->loadRegFromStackSlot(*MBB, MI, destinationReg, FrameIndex, &CLP::FPUaOffsetClassRegClass, TRI); The code a...
2018 Apr 02
0
Mapping virtual registers to physical registers
...       MachineOperand destination = MI->getOperand(0); > >             MachineOperand offset = MI->getOperand(1); > > *unsigned*destinationReg = destination.getReg(); > >             int64_t  FrameIndex = offset.getIndex(); > >                 destination.setReg(CLP::FA_ROFF0+FrameIndex); > >                 destination.setIsDef(true); > >                 TII->loadRegFromStackSlot(*MBB, > >                                                 MI, destinationReg, > FrameIndex, > >...
2018 Mar 30
0
Mapping virtual registers to physical registers
...irect mapping as following: MachineOperand destination = MI->getOperand(0); MachineOperand offset = MI->getOperand(1); unsigned destinationReg = destination.getReg(); int64_t FrameIndex = offset.getIndex(); destination.setReg(CLP::FA_ROFF0+FrameIndex); destination.setIsDef(true); TII->loadRegFromStackSlot(*MBB, MI, destinationReg, FrameIndex, &CLP::FPUaOffsetClassRegClass, TRI); The code a...
2018 Jun 20
2
Node deletion during DAG Combination ?
...undef:i16 t57: v2f32,ch = load<Volatile LD8[%l1]> t56, FrameIndex:i16<0>, undef:i16 t58: v2f32,ch = load<Volatile LD8[%l1]> t57:1, FrameIndex:i16<0>, undef:i16 t59: f32 = extract_vector_elt t58, Constant:i16<0> t62: ch = llvm.clp.writeapb.f32 t58:1, TargetConstant:i16<397>, Constant:i32<24575>, t59 Combining: t59: f32 = extract_vector_elt t58, Constant:i16<0> ... into: t72: f32 = CLPISD::LOAD_VECTOR_EXTRACT_o t57:1, FrameIndex:i16<0>, Constant:i16<0> Combining: t56: ch = store<Volatile ST8...
2011 Jul 05
4
[LLVMdev] Licensing requirements
My impression from reading http://llvm.org/docs/DeveloperPolicy.html#clp is that it's intended to be possible to compile programs using llvm and distribute the resulting binaries freely. This does not seem to be the case. I'm assuming no portion of LLVM is included in the compiled binaries, only the runtime library components, so that the compiled binaries a...
2011 Jan 25
1
[LLVMdev] LLVM grammar for ANTLR
...ction (easily done) (2) translating each llvm statement to a corresponding data flow language (needs ASTs to traverse) (3) translating control flow graph to a regular expression (4) translating data flow language statements to non-deterministic language (5) translating non-deterministic language to CLP (Prolog like solver) (6) finding a Prolog solution as proof of or absence of buffer overflows I have implemented Step (1) & (2) above by writing a transform pass. Remaining steps (3) to (6) have been written in Haskell. Step (2), translation from llvm to dfl language has been done by implemen...
2009 Feb 05
1
nfs umount soft hang
I have an NFS server and NFS client separated by a firewall. Both servers are FreeBSD 7.1. Server configuration: nfs_server_enable="YES" nfs_server_flags="-t -n 4" rpcbind_enable="YES" mountd_flags="-r -p 737" mountd_enable="YES" The firewall allows tcp and udp to port 111, but only tcp to ports 2049 and 737 (configured for mountd, see above).
2009 May 01
2
Shared clipboard, drag and drop, Linux <> Wine 1.1.20
Can Wine be set up to allow "drag and drop" between Ubuntu 9.04 Nautilus 2.26.2 file manager and a Windows app running in Wine? The Windows application is the "Yamaha File Utility" v1.1.0 which allows MIDI files to be transferred to a Yamaha CLP-150 Clavinova digital piano. Unfortunately, the software relies on drag and drop for the file transfer. In native Windows, I would drag a MIDI file from Windows Explorer and drop it on the Yamaha File Utility window. This would then trigger the transfer of the file to the piano. There is no oth...
2005 Aug 21
0
Patch for Element.Class - wrong regexp
Hello, I noticed (due to a recent post by Martin Honnen to clp) that Element.Class uses wrong regexps for its operations. E.g., Element.Class.has() will find "classA" in "classA-foobar" I also changed the interface of .has() to the more general one used in .has_any() --- util.js.old 2005-08-21 19:18:40.000000000 +0200 +++ util.js 200...
2006 Nov 04
1
Message could not be delivered
The message was not delivered due to the following reason(s): Your message could not be delivered because the destination server was not reachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely there is a network problem that prevented delivery, but it is also possible that the computer is
2007 Apr 26
1
pciback.hide sundance
Hi, I am trying to set up a Xen server using two 4-port NIC cards. The exact type: D-Link DFE 580TX. There are no problems using this cards under plain linux. The driver is called ''sundance''. But when I use pciback.hide the DomU can''t access this card. I have had the same task when using the NIC BCM 5708 (NetXtreme II). I had found a message in