HomeSort by: relevance | last modified time | path
    Searched refs:FltOfs (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 6787 // FltOfs = select Sel, 0, 0x8000000000000000
6789 // Result = fp_to_sint(Src - FltOfs) ^ IntOfs
6792 SDValue FltOfs = DAG.getSelect(dl, SrcVT, Sel,
6801 { Chain, Src, FltOfs });
6806 SDValue Val = DAG.getNode(ISD::FSUB, dl, SrcVT, Src, FltOfs);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 8095 // FltOfs = select Sel, 0.0, 0x80000000
8097 // Result = fp_to_sint(Src - FltOfs) ^ IntOfs
8107 SDValue FltOfs = DAG.getSelect(
8113 {Chain, Src, FltOfs}, Flags);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 20638 // FltOfs = (Value >= Thresh) ? 0x80000000 : 0;
20639 // FistSrc = (Value - FltOfs);
20690 SDValue FltOfs = DAG.getSelect(DL, TheVT, Cmp, ThreshVal,
20695 { Chain, Value, FltOfs });
20698 Value = DAG.getNode(ISD::FSUB, DL, TheVT, Value, FltOfs);
    [all...]

Completed in 178 milliseconds