Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp277 bool Promoted = true; in operator ()() local
287 Promoted = false; in operator ()()
292 Promoted = true; in operator ()()
296 if (Promoted) in operator ()()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTypePromotion.cpp113 SmallPtrSet<Value *, 8> Promoted; member in __anone4b1306d0111::IRPromoter
459 Promoted.insert(V); in ExtendSources()
499 Promoted.insert(I); in PromoteTree()
513 if ((!Promoted.count(V) && !NewInsts.count(V)) || Sources.count(V)) in TruncateSinks()
H A DCodeGenPrepare.cpp5735 bool Promoted = false; in tryToPromoteExts() local
5821 Promoted = true; in tryToPromoteExts()
5823 return Promoted; in tryToPromoteExts()
6285 bool Promoted = false; in performAddressTypePromotion() local
6305 Promoted = true; in performAddressTypePromotion()
6335 Promoted = true; in performAddressTypePromotion()
6343 return Promoted; in performAddressTypePromotion()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp665 SDValue Promoted, Chain; in PromoteFP_TO_INT() local
667 Promoted = DAG.getNode(NewOpc, dl, {NVT, MVT::Other}, in PromoteFP_TO_INT()
669 Chain = Promoted.getValue(1); in PromoteFP_TO_INT()
671 Promoted = DAG.getNode(NewOpc, dl, NVT, Node->getOperand(0)); in PromoteFP_TO_INT()
682 Promoted = DAG.getNode(NewOpc, dl, NVT, Promoted, in PromoteFP_TO_INT()
684 Promoted = DAG.getNode(ISD::TRUNCATE, dl, VT, Promoted); in PromoteFP_TO_INT()
685 Results.push_back(Promoted); in PromoteFP_TO_INT()
H A DLegalizeFloatTypes.cpp954 Promoted = (MVT::SimpleValueType)IntVT; in findFPToIntLibcall()
956 if (Promoted.bitsGE(RetVT)) in findFPToIntLibcall()
957 LC = Signed ? RTLIB::getFPTOSINT(SrcVT, Promoted) in findFPToIntLibcall()
958 : RTLIB::getFPTOUINT(SrcVT, Promoted); in findFPToIntLibcall()
2132 SDValue Promoted = GetPromotedFloat(N->getOperand(0)); in PromoteFloatOp_BITCAST() local
2133 EVT PromotedVT = Promoted->getValueType(0); in PromoteFloatOp_BITCAST()
2138 IVT, Promoted); in PromoteFloatOp_BITCAST()
2210 SDValue Promoted = GetPromotedFloat(Val); in PromoteFloatOp_STORE() local
2216 IVT, Promoted); in PromoteFloatOp_STORE()
3047 SDValue Promoted = GetSoftPromotedHalf(Val); in SoftPromoteHalfOp_STORE() local
[all …]
H A DLegalizeIntegerTypes.cpp5446 SDValue Promoted; in PromoteIntRes_EXTEND_VECTOR_INREG() local
5450 Promoted = SExtPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG()
5453 Promoted = ZExtPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG()
5456 Promoted = GetPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG()
5461 return DAG.getNode(N->getOpcode(), dl, NVT, Promoted); in PromoteIntRes_EXTEND_VECTOR_INREG()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp271 unsigned Promoted = 0; in run() local
295 Promoted++; in run()
296 if (Promoted >= MaxProm) in run()
304 LLVM_DEBUG(dbgs() << Promoted << " counters promoted for loop (depth=" in run()
306 return Promoted != 0; in run()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLICM.cpp482 bool Promoted = false; in runOnLoop() local
492 Promoted |= LocalPromoted; in runOnLoop()
501 if (Promoted) in runOnLoop()
504 Changed |= Promoted; in runOnLoop()
/llvm-project-15.0.7/llvm/cmake/modules/
H A DHandleLLVMOptions.cmake658 # Promoted warnings.
661 # Promoted warnings to errors.
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp267 SmallPtrSet<MachineInstr *, 4> &Promoted) const;
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DTargetInfo.cpp8232 llvm::Value *Promoted = CGF.Builder.CreateLoad(Addr); in EmitVAArg() local
8237 llvm::Value *V = CGF.Builder.CreateTrunc(Promoted, IntTy); in EmitVAArg()