search for: targetcc

Displaying 4 results from an estimated 4 matches for "targetcc".

2017 Mar 14
2
Help understanding and lowering LLVM IDS conditional codes correctly
...g we should fix. > > What is ideal place where I can convert unordered comparison to un > comparison + OR + ordered comparison ? > Can I do it by adding required SDNodes ? > for example I am trying to do it in LowerBR_CC as shown below: > getFPCCtoMBCC(CC,TCC); > TargetCC = DAG.getConstant(TCC, dl, MVT::i8); > Flag = DAG.getNode(XXXISD::FCMP, dl, MVT::Glue, LHS, RHS, > TargetCC); > if (isUnordered) { > TCC = XXX::COND_UN; > TargetCC = DAG.getConstant(TCC, dl, MVT::i8); > SDValue UnComp = DAG.ge...
2017 Mar 09
2
Help understanding and lowering LLVM IDS conditional codes correctly
...so I have added following code in LowerBR_CC function in > XXXISelLowering.cpp > > const XXXSubtarget &STI = static_cast<const XXXSubtarget&> > (DAG.getSubtarget()); > XXXCC::CondCodes TCC; > getFPCCtoXXCC(CC,TCC); > TargetCC = DAG.getConstant(TCC, dl, MVT::i8); > if (STI.useHardFloat()) { > // if fcmp instruction is available use it > SDValue Flag = DAG.getNode(XXXISD::FCMP, dl, MVT::Glue, LHS, RHS, > TargetCC); > return DAG.getNode(XXXISD::BR_CC, dl, Op.getValueType(), &...
2017 Feb 25
2
Help understanding and lowering LLVM IDS conditional codes correctly
...need to generate a library call, so I have added following code in LowerBR_CC function in XXXISelLowering.cpp const XXXSubtarget &STI = static_cast<const XXXSubtarget&> (DAG.getSubtarget()); XXXCC::CondCodes TCC; getFPCCtoXXCC(CC,TCC); TargetCC = DAG.getConstant(TCC, dl, MVT::i8); if (STI.useHardFloat()) { // if fcmp instruction is available use it SDValue Flag = DAG.getNode(XXXISD::FCMP, dl, MVT::Glue, LHS, RHS, TargetCC); return DAG.getNode(XXXISD::BR_CC, dl, Op.getValueType(), Chain, D...
2007 Oct 14
0
2 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_strings.c
...935101077b7a291cf50aa63714ef0a00224a43 Author: Benjamin Otte <otte at gnome.org> Date: Sun Oct 14 20:05:21 2007 +0200 don't generate swfdec_as_strings.h with a self-compiled program, use awk instead This is a cross-compile fix, so we don't need to fiddle with HOSTCC vs TARGETCC. It's probably awesome code, but I'm neither a master of shell nor awk. Patches welcome. diff --git a/configure.ac b/configure.ac index 449c9c9..75e5a0a 100644 --- a/configure.ac +++ b/configure.ac @@ -53,6 +53,7 @@ AC_PROG_CC AM_PROG_CC_STDC AM_PROG_CC_C_O AM_PROG_AS +AC_PROG_A...