search for: loadm

Displaying 8 results from an estimated 8 matches for "loadm".

Did you mean: load
2008 Oct 06
1
[LLVMdev] sign extensions on loads?
...uction? Here is my current pattern: def generic_load : PatFrag<(ops node:$ptr), (ld node:$ptr), [{ return isGenericLoad(dyn_cast<LoadSDNode>(N)); }]>; def ADDRf : ComplexPattern<i32, 2, "SelectADDRf", [frameindex], []>; // Load Memory Operations multiclass LOADm<string asm, PatFrag OpNode, ComplexPattern addr> { def _i32 : OneInOneOut<IL_OP_MOV, (outs GPR:$dst), (ins MEM:$ptr), asm, [(set (i32 GPR:$dst), (OpNode addr:$ptr))]>; def _f32 : OneInOneOut<IL_OP_MOV, (outs GPR:$dst), (ins MEM:$ptr), asm, [(set (f32 GPR:$...
2014 Oct 28
2
[LLVMdev] Adding masked vector load and store intrinsics
Many oveloaded intrinsics may be replaced with instructions - fabs or fma or sqrt. Chandler will probably explain the criteria. What the diff between fma and fadd? Or fptrunc and fabs? A new instruction like %a = loadm <4 x i32>* %addr, <4 x i32> %passthru, i32 4, <4 x i1>%mask is possible, but may be not very useful for most of targets. So we start from intrinsics. - Elena From: Owen Anderson [mailto:resistor at mac.com] Sent: Monday, October 27, 2014 18:59 To: Demikhovsky, Elena C...
2014 Dec 18
2
Samba4 on Ubuntu server
...2014/12/16 07:48:00.198457, 2] ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) Not authoritative for 'helix.beanstock.co', forwarding [2014/12/16 07:48:00.199562, 2] ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) Not authoritative for 'loadm.exelator.com', forwarding [2014/12/16 07:48:00.199884, 2] ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) Not authoritative for 'mpp.vindicosuite.com', forwarding [2014/12/16 07:48:02.128537, 3] ../lib/ldb-samba/ldb_wrap.c:320(ldb_wrap_connect) ldb_wrap op...
2014 Dec 18
4
Samba4 on Ubuntu server
...y.c:629(dns_server_process_query_send) >> >> Not authoritative for 'helix.beanstock.co', forwarding >> >> [2014/12/16 07:48:00.199562, 2] >> ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) >> >> Not authoritative for 'loadm.exelator.com', forwarding >> >> [2014/12/16 07:48:00.199884, 2] >> ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) >> >> Not authoritative for 'mpp.vindicosuite.com', forwarding >> >> [2014/12/16 07:48:02.128537, 3] &gt...
2014 Dec 18
0
Samba4 on Ubuntu server
...source4/dns_server/dns_query.c:629(dns_server_process_query_send) > > Not authoritative for 'helix.beanstock.co', forwarding > > [2014/12/16 07:48:00.199562, 2] > ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) > > Not authoritative for 'loadm.exelator.com', forwarding > > [2014/12/16 07:48:00.199884, 2] > ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) > > Not authoritative for 'mpp.vindicosuite.com', forwarding > > [2014/12/16 07:48:02.128537, 3] > ../lib/ldb-samba/ldb_wra...
2014 Dec 19
0
Samba4 on Ubuntu server
...gt;>> Not authoritative for 'helix.beanstock.co', forwarding >>>> >>>> [2014/12/16 07:48:00.199562, 2] >>>> >../source4/dns_server/dns_query.c:629(dns_server_process_query_send) >>>> >>>> Not authoritative for 'loadm.exelator.com', forwarding >>>> >>>> [2014/12/16 07:48:00.199884, 2] >>>> >../source4/dns_server/dns_query.c:629(dns_server_process_query_send) >>>> >>>> Not authoritative for 'mpp.vindicosuite.com', forwarding >>&...
2014 Dec 22
2
Samba4 on Ubuntu server
...ive for 'helix.beanstock.co', forwarding > >>>> > >>>> [2014/12/16 07:48:00.199562, 2] > >>>> > >../source4/dns_server/dns_query.c:629(dns_server_process_query_send) > >>>> > >>>> Not authoritative for 'loadm.exelator.com', forwarding > >>>> > >>>> [2014/12/16 07:48:00.199884, 2] > >>>> > >../source4/dns_server/dns_query.c:629(dns_server_process_query_send) > >>>> > >>>> Not authoritative for 'mpp.vindicosuite.c...
2014 Oct 27
4
[LLVMdev] Adding masked vector load and store intrinsics
we just follow a common recommendation to start with intrinsics: http://llvm.org/docs/ExtendingLLVM.html - Elena From: Owen Anderson [mailto:resistor at mac.com] Sent: Sunday, October 26, 2014 23:57 To: Demikhovsky, Elena Cc: llvmdev at cs.uiuc.edu; dag at cray.com Subject: Re: [LLVMdev] Adding masked vector load and store intrinsics What is the motivation for using intrinsics