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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64LowerHomogeneousPrologEpilog.cpp 200 bool IsFloat = AArch64::FPR64RegClass.contains(Reg1);
201 assert(!(IsFloat ^ AArch64::FPR64RegClass.contains(Reg2)));
204 Opc = IsFloat ? AArch64::STPDpre : AArch64::STPXpre;
206 Opc = IsFloat ? AArch64::STPDi : AArch64::STPXi;
223 bool IsFloat = AArch64::FPR64RegClass.contains(Reg1);
224 assert(!(IsFloat ^ AArch64::FPR64RegClass.contains(Reg2)));
227 Opc = IsFloat ? AArch64::LDPDpost : AArch64::LDPXpost;
229 Opc = IsFloat ? AArch64::LDPDi : AArch64::LDPXi;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsFastISel.cpp 707 bool IsFloat = Left->getType()->isFloatTy();
709 if (!IsFloat && !IsDouble)
714 Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32;
718 Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32;
722 Opc = IsFloat ? Mips::C_OLT_S : Mips::C_OLT_D32;
726 Opc = IsFloat ? Mips::C_OLE_S : Mips::C_OLE_D32;
730 Opc = IsFloat ? Mips::C_ULE_S : Mips::C_ULE_D32;
734 Opc = IsFloat ? Mips::C_ULT_S : Mips::C_ULT_D32;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AutoUpgrade.cpp 1206 bool IsFloat = Ty->isFPOrFPVectorTy();
1208 if (VecWidth == 128 && EltWidth == 32 && IsFloat)
1210 else if (VecWidth == 128 && EltWidth == 32 && !IsFloat)
1212 else if (VecWidth == 128 && EltWidth == 64 && IsFloat)
1214 else if (VecWidth == 128 && EltWidth == 64 && !IsFloat)
1216 else if (VecWidth == 256 && EltWidth == 32 && IsFloat)
1218 else if (VecWidth == 256 && EltWidth == 32 && !IsFloat)
1220 else if (VecWidth == 256 && EltWidth == 64 && IsFloat)
1222 else if (VecWidth == 256 && EltWidth == 64 && !IsFloat)
1224 else if (VecWidth == 512 && EltWidth == 32 && IsFloat)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 228 void classifyArgUse(Value *Val, Function *F, bool IsFloat,
  /src/external/apache2/llvm/dist/libcxx/src/filesystem/
filesystem_common.h 278 bool IsFloat = is_floating_point<typename FileTimeT::rep>::value>
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 536 bool IsFloat = Ty->isFPOrFPVectorTy();
539 unsigned OpCost = (IsFloat ? 2 : 1);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 2165 bool IsFloat = Arg->getType()->isFloatTy();
2172 classifyArgUse(U, F, IsFloat, SinCalls, CosCalls, SinCosCalls);
2179 insertSinCosCall(B, CI->getCalledFunction(), Arg, IsFloat, Sin, Cos, SinCos);
2195 Value *Val, Function *F, bool IsFloat,
2214 if (IsFloat) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 762 bool IsFloat = Ty->isFPOrFPVectorTy();
765 InstructionCost OpCost = (IsFloat ? 2 : 1);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 2410 bool IsFloat = Token.is(MIToken::kw_floatpred);
2420 if (IsFloat) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp 10554 bool IsFloat = Ty->isRealFloatingType();
10556 if (IsInt || IsFloat) {
10563 if (IsFloat && (Size > FLen || Size < 32))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 2798 bool IsFloat = OutVT.isFloatingPoint();
2832 EVT HalfElementVT = IsFloat ?
2873 return IsFloat
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 13600 static bool isValidMVECond(unsigned CC, bool IsFloat) {
13611 return !IsFloat;

Completed in 63 milliseconds