search for: setuo

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

Did you mean: setup
2012 Jul 10
1
[LLVMdev] floating point: seto opcode
Hi, Given the following in ISDOpcodes.h SETO, // 0 1 1 1 True if ordered (no nans) SETUO, // 1 0 0 0 True if unordered: isnan(X) | isnan(Y) Is it safe to assume that SETO is not of SETUO? We have support for setuo in the architecture but not seto. Sirish -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.o...
2006 Jan 25
3
install IE6
...frontpage sucessfully. Aftert that, I installed OUTLOOK and Frontpage. they require Internet Explorer to run. When I tried to install IE6, it says 'A previous installation has pending work requiring a reboot. You need to restart your computer to complete that installation before run IE setup. Setuo will now close' How to fix this??
2017 Feb 25
2
Help understanding and lowering LLVM IDS conditional codes correctly
...D_GE; break; case ISD::SETOLT: case ISD::SETLT: CondCode = XXXCC::COND_LT; break; case ISD::SETOLE: case ISD::SETLE: CondCode = XXXCC::COND_LE; break; case ISD::SETONE: case ISD::SETNE: CondCode = XXXCC::COND_NE; break; case ISD::SETUO: CondCode = XXXCC::COND_UN; break; case ISD::SETO: case ISD::SETUEQ: case ISD::SETUGT: case ISD::SETUGE: case ISD::SETULT: case ISD::SETULE: case ISD::SETUNE: CC = getSetCCInverse(CC,false); getFPCCtoMBCC(CC,CondCode); break; } } I am ge...
2017 Mar 09
2
Help understanding and lowering LLVM IDS conditional codes correctly
...SETLT: > CondCode = XXXCC::COND_LT; > break; > case ISD::SETOLE: > case ISD::SETLE: > CondCode = XXXCC::COND_LE; > break; > case ISD::SETONE: > case ISD::SETNE: > CondCode = XXXCC::COND_NE; > break; > case ISD::SETUO: > CondCode = XXXCC::COND_UN; > break; > case ISD::SETO: > case ISD::SETUEQ: > case ISD::SETUGT: > case ISD::SETUGE: > case ISD::SETULT: > case ISD::SETULE: > case ISD::SETUNE: > CC = getSetCCInverse(CC,false); > g...
2008 Sep 23
2
problem with running adobe photo shop cs3
In The Name Of God Hello; I'll be thankfull if you guide me to fix this error ; When i want to run setuo.exe of photoshop cs3 trial version ,i face this error ; Code: debian:~# wine "/root/photoshop/Setup.exe" fixme:console:AttachConsole stub ffffffff Begin Adobe Setup UI mode: Full GUI err:ole:COMPOBJ_DllList_Add couldn't load in-process dll L"%SystemRoot%C:\\windows\\system32\\m...
2008 Nov 05
1
Hogs of War: doesn't dwar some textures
Hi. I have found super game Hogs of War and would like to play it, but wine doesn't draw some textures. The game isn't playable [Image: http://img136.imageshack.us/img136/6518/200811050920061024x768smj7.th.png ] (http://img136.imageshack.us/my.php?image=200811050920061024x768smj7.png)[Image: http://img136.imageshack.us/images/thpix.gif ] (http://g.imageshack.us/thpix.php) How do I can
2017 Mar 14
2
Help understanding and lowering LLVM IDS conditional codes correctly
...t; case ISD::SETLE: >> CondCode = XXXCC::COND_LE; >> break; >> case ISD::SETONE: >> case ISD::SETNE: >> CondCode = XXXCC::COND_NE; >> break; >> case ISD::SETUO: >> CondCode = XXXCC::COND_UN; >> break; >> case ISD::SETO: >> case ISD::SETUEQ: >> case ISD::SETUGT: >> case ISD::SETUGE: >> case ISD::SETULT: >> case...
2008 Jul 03
2
[LLVMdev] Problems expanding fcmp to a libcall
...0x97a3c78, 0x97a4350 0x97a4200: f64 = build_pair 0x97a42e0, 0x97a4388 0x97a4200: <multiple use> 0x97a43e0: i64 = bit_convert 0x97a4200 0x97a43e0: <multiple use> 0x97a3da8: i32 = Constant <1> 0x97a4428: i32 = extract_element 0x97a43e0, 0x97a3da8 0x97a4490: ch = setuo 0x97a4200: <multiple use> 0x97a4200: <multiple use> 0x97a4490: <multiple use> 0x97a44c8: i32 = setcc 0x97a4200, 0x97a4200, 0x97a4490 0x97a3e58: <multiple use> 0x97a3e58: <multiple use> 0x97a53f8: f64 = build_pair 0x97a3e58, 0x97a3e58:1 0x97a...
2008 Jul 02
0
[LLVMdev] Problems expanding fcmp to a libcall
On Jul 1, 2008, at 3:42 PM, Richard Osborne wrote: > Evan Cheng wrote: >> On Jun 25, 2008, at 5:13 AM, Richard Osborne wrote: >> >> >>> Evan Cheng wrote: >>> >>>> On Jun 23, 2008, at 5:35 AM, Richard Osborne wrote: >>>> >>>> >>>>> I'm trying to write a backend for a target with no hardware
2008 Jul 01
2
[LLVMdev] Problems expanding fcmp to a libcall
Evan Cheng wrote: > On Jun 25, 2008, at 5:13 AM, Richard Osborne wrote: > > >> Evan Cheng wrote: >> >>> On Jun 23, 2008, at 5:35 AM, Richard Osborne wrote: >>> >>> >>>> I'm trying to write a backend for a target with no hardware floating >>>> point support. I've added a single i32 register class. I'm
2009 May 21
0
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On Wed, May 20, 2009 at 4:55 PM, Dan Gohman <gohman at apple.com> wrote: > Can you explain why you chose the approach of using a new pass? > I pictured removing LegalizeDAG's type legalization code would > mostly consist of finding all the places that use TLI.getTypeAction > and just deleting code for handling its Expand and Promote. Are you > anticipating something more
2009 May 20
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On May 20, 2009, at 1:34 PM, Eli Friedman wrote: > On Wed, May 20, 2009 at 1:19 PM, Eli Friedman > <eli.friedman at gmail.com> wrote: > >> Per subject, this patch adding an additional pass to handle vector >> >> operations; the idea is that this allows removing the code from >> >> LegalizeDAG that handles illegal types, which should be a significant
2009 May 21
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
...4; - break; - case ISD::SETLE: - case ISD::SETOLE: - LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64; - break; - case ISD::SETGT: - case ISD::SETOGT: - LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64; - break; - case ISD::SETUO: - LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; - break; - case ISD::SETO: - LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64; - break; - default: - LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; - switch (cast<CondCodeS...