Searched refs:FV (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DDwarf.cpp767 unsigned FV = FormVersion(F); local
768 return FV > 0 && FV <= Version;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp376 if (Constant *FV = ConstantFoldLoadThroughBitcast(Val, Ty, DL)) {
378 return FV;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h335 APFloat FV(V);
336 FV.convert(Val.getSemantics(), APFloat::rmNearestTiesToEven, &ignored);
337 return isExactlyValue(FV);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp88 // %A = icmp eq %TV, %FV
91 // %D = select %C, %TV, %FV
93 // %FV
95 // %A = icmp ne %TV, %FV
98 // %D = select %C, %TV, %FV
411 Value *FV; local
414 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
417 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
422 if (TV == FV)
427 return FV;
488 Value *FV = SI->getFalseValue(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp312 DWARFFormValue FV = DWARFFormValue::createFromUValue(
314 FV.dump(OS, DumpOpts);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp1189 Value *TV = UseI->getOperand(1), *FV = UseI->getOperand(2); local
1190 if (Early.count(TV) || Early.count(FV)) {
1191 if (Late.count(TV) || Late.count(FV))
1194 } else if (Late.count(TV) || Late.count(FV)) {
1195 if (Early.count(TV) || Early.count(FV))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp854 APFloat FV(V);
856 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
858 Constant *C = get(Context, FV);
882 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
883 Constant *C = get(Context, FV);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp892 Value *FV = SI->getFalseValue(); local
893 if (!(isa<Constant>(TV) || isa<Constant>(FV)))
948 if ((areLooselyEqual(TV, Op0) && areLooselyEqual(FV, Op1)) ||
949 (areLooselyEqual(FV, Op0) && areLooselyEqual(TV, Op1)))
955 Value *NewFV = foldOperationIntoSelectOperand(Op, FV, Builder);
H A DInstCombineAddSub.cpp1370 Value *FV = SI->getFalseValue(); local
1375 if (match(FV, m_Zero()) && match(TV, m_Sub(m_Value(N), m_Specific(A))))
1379 if (match(TV, m_Zero()) && match(FV, m_Sub(m_Value(N), m_Specific(A))))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp8097 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3); local
8103 if (Subtarget.hasP9Vector() && LHS == TV && RHS == FV) {
8131 std::swap(TV, FV);
8136 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
8140 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
8143 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
8149 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
8152 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
8159 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
8166 std::swap(TV, FV);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1343 Value *FV = SI.getFalseValue();
1352 LoadInst *FL = IRB.CreateLoad(LI->getType(), FV,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp21233 auto *FV = dyn_cast<ConstantFPSDNode>(N3); local
21235 if (!TV || !FV || !TLI.isTypeLegal(VT))
21241 TLI.isFPImmLegal(FV->getValueAPF(), FV->getValueType(0), ForCodeSize))
21246 if (!TV->hasOneUse() && !FV->hasOneUse())
21249 Constant *Elts[] = { const_cast<ConstantFP*>(FV->getConstantFPValue()),
21264 SDValue One = DAG.getIntPtrConstant(EltSize, SDLoc(FV));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5697 APFloat FV(APFloat::IEEEsingle(), V);
5698 Ops.push_back(DAG.getConstantFP(FV, dl, EltVT));
5700 APFloat FV(APFloat::IEEEdouble(), V);
5701 Ops.push_back(DAG.getConstantFP(FV, dl, EltVT));
[all...]

Completed in 724 milliseconds