Home
last modified time | relevance | path

Searched refs:Promoted (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp313 bool Promoted = true; in operator ()() local
323 Promoted = false; in operator ()()
328 Promoted = true; in operator ()()
332 if (Promoted) in operator ()()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTypePromotion.cpp115 SmallPtrSet<Value *, 8> Promoted; member in __anonab9dbb3d0111::IRPromoter
470 Promoted.insert(V); in ExtendSources()
518 Promoted.insert(I); in PromoteTree()
532 if ((!Promoted.count(V) && !NewInsts.count(V)) || Sources.count(V)) in TruncateSinks()
H A DCodeGenPrepare.cpp6478 bool Promoted = false; in tryToPromoteExts() local
6567 Promoted = true; in tryToPromoteExts()
6569 return Promoted; in tryToPromoteExts()
7043 bool Promoted = false; in performAddressTypePromotion() local
7063 Promoted = true; in performAddressTypePromotion()
7093 Promoted = true; in performAddressTypePromotion()
7101 return Promoted; in performAddressTypePromotion()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DMips.cpp402 llvm::Value *Promoted = Res.getScalarVal(); in EmitVAArg() local
406 llvm::Value *V = CGF.Builder.CreateTrunc(Promoted, IntTy); in EmitVAArg()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp1264 static RTLIB::Libcall findFPToIntLibcall(EVT SrcVT, EVT RetVT, EVT &Promoted, in findFPToIntLibcall() argument
1270 Promoted = (MVT::SimpleValueType)IntVT; in findFPToIntLibcall()
1272 if (Promoted.bitsGE(RetVT)) in findFPToIntLibcall()
1273 LC = Signed ? RTLIB::getFPTOSINT(SrcVT, Promoted) in findFPToIntLibcall()
1274 : RTLIB::getFPTOUINT(SrcVT, Promoted); in findFPToIntLibcall()
2653 SDValue Promoted = GetPromotedFloat(N->getOperand(0)); in PromoteFloatOp_BITCAST() local
2654 EVT PromotedVT = Promoted->getValueType(0); in PromoteFloatOp_BITCAST()
2659 IVT, Promoted); in PromoteFloatOp_BITCAST()
2764 SDValue Promoted = GetPromotedFloat(Val); in PromoteFloatOp_STORE() local
2769 NewVal = DAG.getNode(GetPromotionOpcode(Promoted.getValueType(), VT), DL, in PromoteFloatOp_STORE()
[all …]
H A DLegalizeVectorOps.cpp882 SDValue Promoted, Chain; in PromoteFP_TO_INT() local
884 Promoted = DAG.getNode(NewOpc, dl, {NVT, MVT::Other}, in PromoteFP_TO_INT()
886 Chain = Promoted.getValue(1); in PromoteFP_TO_INT()
888 Promoted = DAG.getNode(NewOpc, dl, NVT, Node->getOperand(0)); in PromoteFP_TO_INT()
899 Promoted = DAG.getNode(NewOpc, dl, NVT, Promoted, in PromoteFP_TO_INT()
901 Promoted = DAG.getNode(ISD::TRUNCATE, dl, VT, Promoted); in PromoteFP_TO_INT()
902 Results.push_back(Promoted); in PromoteFP_TO_INT()
H A DLegalizeIntegerTypes.cpp2225 SDValue Promoted = GetPromotedInteger(InOp); in PromoteIntOp_BITCAST() local
2226 SDValue Cast = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Promoted); in PromoteIntOp_BITCAST()
6240 SDValue Promoted; in PromoteIntRes_EXTEND_VECTOR_INREG() local
6244 Promoted = SExtPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG()
6247 Promoted = ZExtPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG()
6250 Promoted = GetPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG()
6255 return DAG.getNode(N->getOpcode(), dl, NVT, Promoted); in PromoteIntRes_EXTEND_VECTOR_INREG()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp546 unsigned Promoted = 0; in run() local
570 Promoted++; in run()
571 if (Promoted >= MaxProm) in run()
579 LLVM_DEBUG(dbgs() << Promoted << " counters promoted for loop (depth=" in run()
581 return Promoted != 0; in run()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLICM.cpp509 bool Promoted = false; in runOnLoop() local
520 Promoted |= LocalPromoted; in runOnLoop()
529 if (Promoted) in runOnLoop()
532 Changed |= Promoted; in runOnLoop()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp284 SmallPtrSet<MachineInstr *, 4> &Promoted) const;