Home
last modified time | relevance | path

Searched refs:IsFP (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/compiler/
Dregister-allocator-verifier.cc172 if (sequence()->IsFP(vreg)) { in BuildConstraint()
179 DCHECK(!sequence()->IsFP(vreg)); in BuildConstraint()
196 if (sequence()->IsFP(vreg)) { in BuildConstraint()
Dinstruction.h1528 bool IsFP(int virtual_register) const { in NON_EXPORTED_BASE()
/external/llvm/lib/Target/Mips/
DMipsSEISelLowering.h101 bool IsFP) const;
DMipsSEISelLowering.cpp3214 bool IsFP) const { in emitINSERT_DF_VIDX()
3261 if (IsFP) { in emitINSERT_DF_VIDX()
3287 if (IsFP) { in emitINSERT_DF_VIDX()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsSEISelLowering.h111 bool IsFP) const;
DMipsSEISelLowering.cpp3305 bool IsFP) const { in emitINSERT_DF_VIDX()
3352 if (IsFP) { in emitINSERT_DF_VIDX()
3378 if (IsFP) { in emitINSERT_DF_VIDX()
/external/llvm/include/llvm/CodeGen/
DISDOpcodes.h834 NodeType getExtForLoadExtType(bool IsFP, LoadExtType);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp967 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local
969 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode()
976 return IsFP ? Instruction::FAdd : Instruction::Add; in getDecodedBinaryOpcode()
978 return IsFP ? Instruction::FSub : Instruction::Sub; in getDecodedBinaryOpcode()
980 return IsFP ? Instruction::FMul : Instruction::Mul; in getDecodedBinaryOpcode()
982 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode()
984 return IsFP ? Instruction::FDiv : Instruction::SDiv; in getDecodedBinaryOpcode()
986 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode()
988 return IsFP ? Instruction::FRem : Instruction::SRem; in getDecodedBinaryOpcode()
990 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DISDOpcodes.h897 NodeType getExtForLoadExtType(bool IsFP, LoadExtType);
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp794 bool IsFP = Ty->isFPOrFPVectorTy(); in getDecodedBinaryOpcode() local
796 if (!IsFP && !Ty->isIntOrIntVectorTy()) in getDecodedBinaryOpcode()
803 return IsFP ? Instruction::FAdd : Instruction::Add; in getDecodedBinaryOpcode()
805 return IsFP ? Instruction::FSub : Instruction::Sub; in getDecodedBinaryOpcode()
807 return IsFP ? Instruction::FMul : Instruction::Mul; in getDecodedBinaryOpcode()
809 return IsFP ? -1 : Instruction::UDiv; in getDecodedBinaryOpcode()
811 return IsFP ? Instruction::FDiv : Instruction::SDiv; in getDecodedBinaryOpcode()
813 return IsFP ? -1 : Instruction::URem; in getDecodedBinaryOpcode()
815 return IsFP ? Instruction::FRem : Instruction::SRem; in getDecodedBinaryOpcode()
817 return IsFP ? -1 : Instruction::Shl; in getDecodedBinaryOpcode()
[all …]
/external/capstone/arch/AArch64/
DAArch64Disassembler.c1006 bool IsFP; in DecodeSignedLdStInstruction() local
1180 IsFP = fieldFromInstruction(insn, 26, 1) != 0; in DecodeSignedLdStInstruction()
1183 if (IsLoad && IsIndexed && !IsFP && Rn != 31 && Rt == Rn) in DecodeSignedLdStInstruction()
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp2232 static unsigned getVectorComparison(ISD::CondCode CC, bool IsFP) { in getVectorComparison() argument
2236 return IsFP ? SystemZISD::VFCMPE : SystemZISD::VICMPE; in getVectorComparison()
2240 return IsFP ? SystemZISD::VFCMPHE : static_cast<SystemZISD::NodeType>(0); in getVectorComparison()
2244 return IsFP ? SystemZISD::VFCMPH : SystemZISD::VICMPH; in getVectorComparison()
2247 return IsFP ? static_cast<SystemZISD::NodeType>(0) : SystemZISD::VICMPHL; in getVectorComparison()
2258 static unsigned getVectorComparisonOrInvert(ISD::CondCode CC, bool IsFP, in getVectorComparisonOrInvert() argument
2260 if (unsigned Opcode = getVectorComparison(CC, IsFP)) { in getVectorComparisonOrInvert()
2265 CC = ISD::getSetCCInverse(CC, !IsFP); in getVectorComparisonOrInvert()
2266 if (unsigned Opcode = getVectorComparison(CC, IsFP)) { in getVectorComparisonOrInvert()
2306 bool IsFP = CmpOp0.getValueType().isFloatingPoint(); in lowerVectorSETCC() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp2385 static unsigned getVectorComparison(ISD::CondCode CC, bool IsFP) { in getVectorComparison() argument
2389 return IsFP ? SystemZISD::VFCMPE : SystemZISD::VICMPE; in getVectorComparison()
2393 return IsFP ? SystemZISD::VFCMPHE : static_cast<SystemZISD::NodeType>(0); in getVectorComparison()
2397 return IsFP ? SystemZISD::VFCMPH : SystemZISD::VICMPH; in getVectorComparison()
2400 return IsFP ? static_cast<SystemZISD::NodeType>(0) : SystemZISD::VICMPHL; in getVectorComparison()
2411 static unsigned getVectorComparisonOrInvert(ISD::CondCode CC, bool IsFP, in getVectorComparisonOrInvert() argument
2413 if (unsigned Opcode = getVectorComparison(CC, IsFP)) { in getVectorComparisonOrInvert()
2418 CC = ISD::getSetCCInverse(CC, !IsFP); in getVectorComparisonOrInvert()
2419 if (unsigned Opcode = getVectorComparison(CC, IsFP)) { in getVectorComparisonOrInvert()
2465 bool IsFP = CmpOp0.getValueType().isFloatingPoint(); in lowerVectorSETCC() local
[all …]
/external/llvm/lib/Target/AArch64/Disassembler/
DAArch64Disassembler.cpp1072 bool IsFP = fieldFromInstruction(insn, 26, 1); in DecodeSignedLdStInstruction() local
1075 if (IsLoad && IsIndexed && !IsFP && Rn != 31 && Rt == Rn) in DecodeSignedLdStInstruction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/Disassembler/
DAArch64Disassembler.cpp1270 bool IsFP = fieldFromInstruction(insn, 26, 1); in DecodeSignedLdStInstruction() local
1273 if (IsLoad && IsIndexed && !IsFP && Rn != 31 && Rt == Rn) in DecodeSignedLdStInstruction()
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc1495 sequence()->IsFP(GetVirtualRegister(input.node))) { in EmitPrepareArguments()
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc1039 sequence()->IsFP(GetVirtualRegister(input.node)) in EmitPrepareArguments()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp233 ISD::NodeType ISD::getExtForLoadExtType(bool IsFP, ISD::LoadExtType ExtType) { in getExtForLoadExtType() argument
236 return IsFP ? ISD::FP_EXTEND : ISD::ANY_EXTEND; in getExtForLoadExtType()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp317 ISD::NodeType ISD::getExtForLoadExtType(bool IsFP, ISD::LoadExtType ExtType) { in getExtForLoadExtType() argument
320 return IsFP ? ISD::FP_EXTEND : ISD::ANY_EXTEND; in getExtForLoadExtType()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp18753 bool IsFP = Op1.getSimpleValueType().isFloatingPoint(); in LowerSETCC() local
18754 X86::CondCode X86CC = TranslateX86CC(CC, dl, IsFP, Op0, Op1, DAG); in LowerSETCC()