Home
last modified time | relevance | path

Searched refs:getValueType (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp182 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)); in SoftenFloatRes_Unary()
189 EVT OpVT = N->getOperand(0 + Offset).getValueType(); in SoftenFloatRes_Unary()
190 CallOptions.setTypeListBeforeSoften(OpVT, N->getValueType(0), true); in SoftenFloatRes_Unary()
201 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)); in SoftenFloatRes_Binary()
209 EVT OpsVT[2] = { N->getOperand(0 + Offset).getValueType(), in SoftenFloatRes_Binary()
210 N->getOperand(1 + Offset).getValueType() }; in SoftenFloatRes_Binary()
211 CallOptions.setTypeListBeforeSoften(OpsVT, N->getValueType(0), true); in SoftenFloatRes_Binary()
225 EVT Ty = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)); in SoftenFloatRes_FREEZE()
231 EVT Ty = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)); in SoftenFloatRes_ARITH_FENCE()
247 N->getValueType(0)), in SoftenFloatRes_BUILD_PAIR()
[all …]
H A DLegalizeTypesGeneric.cpp41 EVT OutVT = N->getValueType(0); in ExpandRes_BITCAST()
44 EVT InVT = InOp.getValueType(); in ExpandRes_BITCAST()
202 assert(Part.getValueType() == N->getValueType(0) && in ExpandRes_EXTRACT_ELEMENT()
211 ElementCount OldEltCount = OldVec.getValueType().getVectorElementCount(); in ExpandRes_EXTRACT_VECTOR_ELT()
212 EVT OldEltVT = OldVec.getValueType().getVectorElementType(); in ExpandRes_EXTRACT_VECTOR_ELT()
217 EVT OldVT = N->getValueType(0); in ExpandRes_EXTRACT_VECTOR_ELT()
236 Idx = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, Idx); in ExpandRes_EXTRACT_VECTOR_ELT()
239 Idx = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, in ExpandRes_EXTRACT_VECTOR_ELT()
240 DAG.getConstant(1, dl, Idx.getValueType())); in ExpandRes_EXTRACT_VECTOR_ELT()
[all...]
H A DLegalizeVectorTypes.cpp234 LHS.getValueType(), LHS, RHS, N->getFlags()); in ScalarizeVecRes_BinOp()
242 if (getTypeAction(LHS.getValueType()) == in ScalarizeVecRes_CMP()
247 EVT VT = LHS.getValueType().getVectorElementType(); in ScalarizeVecRes_CMP()
255 N->getValueType(0).getVectorElementType(), LHS, RHS); in ScalarizeVecRes_CMP()
262 return DAG.getNode(N->getOpcode(), SDLoc(N), Op0.getValueType(), Op0, Op1, in ScalarizeVecRes_TernaryOp()
270 return DAG.getNode(N->getOpcode(), SDLoc(N), Op0.getValueType(), Op0, Op1, in ScalarizeVecRes_FIX()
275 assert(N->getValueType(0).getVectorNumElements() == 1 && in ScalarizeVecRes_FFREXP()
279 EVT VT0 = N->getValueType(0); in ScalarizeVecRes_FFREXP()
280 EVT VT1 = N->getValueType(1); in ScalarizeVecRes_FFREXP()
290 EVT OtherVT = N->getValueType(OtherNo); in ScalarizeVecRes_FFREXP()
[all …]
H A DLegalizeIntegerTypes.cpp46 if (CustomLowerNode(N, N->getValueType(ResNo), true)) { in PromoteIntegerResult()
357 Op.getValueType(), Op, N->getOperand(1)); in PromoteIntRes_AssertSext()
364 Op.getValueType(), Op, N->getOperand(1)); in PromoteIntRes_AssertZext()
368 EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)); in PromoteIntRes_Atomic0()
415 EVT SVT = getSetCCResultType(N->getOperand(2).getValueType()); in PromoteIntRes_AtomicCmpSwap()
416 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(1)); in PromoteIntRes_AtomicCmpSwap()
423 SDVTList VTs = DAG.getVTList(N->getValueType(0), SVT, MVT::Other); in PromoteIntRes_AtomicCmpSwap()
452 DAG.getVTList(Op2.getValueType(), N->getValueType(1), MVT::Other); in PromoteIntRes_AtomicCmpSwap()
464 EVT InVT = InOp.getValueType(); in PromoteIntRes_BITCAST()
466 EVT OutVT = N->getValueType(0); in PromoteIntRes_BITCAST()
[all …]
H A DLegalizeTypes.cpp139 } else if (isTypeLegal(Res.getValueType()) || IgnoreNodeResults(&Node)) { in PerformExpensiveChecks()
246 EVT ResultVT = N->getValueType(i); in run()
312 EVT OpVT = Op.getValueType(); in run()
457 if (!isTypeLegal(Node.getValueType(i))) { in run()
466 !isTypeLegal(Node.getOperand(i).getValueType())) { in run()
708 assert(Result.getValueType() == in SetPromotedInteger()
709 TLI.getTypeToTransformTo(*DAG.getContext(), Op.getValueType()) && in SetPromotedInteger()
722 EVT VT = Result.getValueType(); in SetSoftenedFloat()
725 VT == TLI.getTypeToTransformTo(Ctx, Op.getValueType())) && in SetSoftenedFloat()
736 assert(Result.getValueType() == in SetPromotedFloat()
[all …]
H A DLegalizeDAG.cpp321 EVT VT = CFP->getValueType(0); in ExpandConstantFP()
371 EVT VT = CP->getValueType(0); in ExpandConstant()
391 EVT EltVT = Vec.getValueType().getVectorElementType(); in ExpandINSERT_VECTOR_ELT()
392 if (Val.getValueType() == EltVT || in ExpandINSERT_VECTOR_ELT()
393 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) { in ExpandINSERT_VECTOR_ELT()
395 Vec.getValueType(), Val); in ExpandINSERT_VECTOR_ELT()
397 unsigned NumElts = Vec.getValueType().getVectorNumElements(); in ExpandINSERT_VECTOR_ELT()
405 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec, ShufOps); in ExpandINSERT_VECTOR_ELT()
434 if (CFP->getValueType(0) == MVT::f32 && in OptimizeFloatStore()
443 if (CFP->getValueType(0) == MVT::f64 && in OptimizeFloatStore()
[all …]
H A DLegalizeVectorOps.cpp278 [](SDValue O) { return O.getValueType().isVector(); }); in LegalizeOp()
292 Action = TLI.getLoadExtAction(ExtType, LD->getValueType(0), LoadedVT); in LegalizeOp()
304 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); in LegalizeOp()
313 ValVT = Node->getValueType(0); in LegalizeOp()
316 ValVT = Node->getOperand(1).getValueType(); in LegalizeOp()
461 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); in LegalizeOp()
473 Node->getValueType(0), Scale); in LegalizeOp()
496 Node->getOperand(0).getValueType()); in LegalizeOp()
501 Node->getOperand(1).getValueType()); in LegalizeOp()
514 EVT LegalizeVT = LEGALPOS < 0 ? Node->getValueType(-(1 + LEGALPOS)) \ in LegalizeOp()
[all …]
H A DSelectionDAG.cpp148 N->getValueType(0).getVectorElementType().getSizeInBits(); in isConstantSplatVector()
166 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits(); in isConstantSplatVector()
210 unsigned EltSize = N->getValueType(0).getScalarSizeInBits(); in isConstantSplatVectorAllOnes()
254 unsigned EltSize = N->getValueType(0).getScalarSizeInBits(); in isConstantSplatVectorAllZeros()
307 assert(N->getValueType(0).isVector() && "Expected a vector!"); in isVectorShrinkable()
309 unsigned EltSize = N->getValueType(0).getScalarSizeInBits(); in isVectorShrinkable()
314 return (N->getOperand(0).getValueType().getScalarSizeInBits() <= in isVectorShrinkable()
319 return (N->getOperand(0).getValueType().getScalarSizeInBits() <= in isVectorShrinkable()
368 EVT SVT = Op.getValueType().getScalarType(); in matchUnaryPredicateImpl()
377 if (!Cst || Cst->getValueType(0) != SVT || !Match(Cst)) in matchUnaryPredicateImpl()
[all …]
H A DDAGCombiner.cpp343 EVT VT = Op.getValueType(); in SimplifyDemandedBits()
355 if (Op.getValueType().isScalableVector()) in SimplifyDemandedVectorElts()
358 unsigned NumElts = Op.getValueType().getVectorNumElements(); in SimplifyDemandedVectorElts()
989 if (TLI.getBooleanContents(N.getValueType()) == in isSetCCEquivalent()
1097 N1.getValueType().getFixedSizeInBits() <= 64) { in reassociationCanBreakAddressingModePattern()
1196 EVT VT = N0.getValueType(); in reassociateOpsCommutative()
1298 if (N0.getValueType().isFloatingPoint() || in reassociateOps()
1299 N1.getValueType().isFloatingPoint()) in reassociateOps()
1317 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType() && in reassociateReduction()
1319 TLI.isOperationLegalOrCustom(Opc, N0.getOperand(0).getValueType()) && in reassociateReduction()
[all …]
H A DSelectionDAGBuilder.cpp260 EVT PartEVT = Val.getValueType(); in getCopyFromParts()
285 DAG.getValueType(ValueVT)); in getCopyFromParts()
293 if (ValueVT.bitsLT(Val.getValueType())) { in getCopyFromParts()
412 EVT PartEVT = Val.getValueType(); in getCopyFromPartsVector()
516 EVT ValueVT = Val.getValueType(); in getCopyToParts()
575 ValueVT = Val.getValueType(); in getCopyToParts()
648 EVT ValueVT = Val.getValueType(); in widenVectorToPartType()
694 EVT ValueVT = Val.getValueType(); in getCopyToPartsVector()
754 assert(Val.getValueType() == PartVT && "Unexpected vector part value type"); in getCopyToPartsVector()
811 assert(Val.getValueType() == BuiltVectorTy && "Unexpected vector value type"); in getCopyToPartsVector()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2241 EVT VT = Op.getValueType(); in optimizeLogicalImm()
2272 EVT VT = Op.getValueType(); in targetShrinkDemandedConstant()
2400 MVT VT = Op.getOperand(1).getValueType().getSimpleVT(); in computeKnownBitsForTargetNode()
2416 MVT VT = Op.getOperand(1).getValueType().getSimpleVT(); in computeKnownBitsForTargetNode()
2437 EVT VT = Op.getValueType(); in ComputeNumSignBitsForTargetNode()
3437 EVT VT = LHS.getValueType(); in emitStrictFPComparison()
3457 EVT VT = LHS.getValueType(); in emitComparison()
3569 if (LHS.getValueType().isFloatingPoint()) { in emitConditionalComparison()
3570 assert(LHS.getValueType() != MVT::f128); in emitConditionalComparison()
3571 if ((LHS.getValueType() == MVT::f16 && !FullFP16) || in emitConditionalComparison()
[all …]
H A DAArch64ISelDAGToDAG.cpp167 EVT VT = N->getValueType(0); in SelectExtractHigh()
168 EVT LVT = N->getOperand(0).getValueType(); in SelectExtractHigh()
181 EVT VT = Op.getValueType(); in SelectRoundingVLShr()
288 EVT EltVT = N->getValueType(0).getVectorElementType(); in SelectSVEShiftSplatImmR()
581 dl, Op.getValueType(), in SelectInlineAsmMemoryOperand()
641 if (N.getValueType() == MVT::i32) in SelectNegArithImmed()
728 EVT VT = N.getValueType(); in SelectShiftedRegisterFromAnd()
812 SrcVT = N.getOperand(0).getValueType(); in getExtendTypeForNode()
825 EVT SrcVT = N.getOperand(0).getValueType(); in getExtendTypeForNode()
911 if (N.getValueType() == MVT::i32) in narrowIfNeeded()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp410 EVT ResTy = Op->getValueType(0); in lowerSELECT()
602 EVT Ty = N->getValueType(0); in performORCombine()
832 EVT VT = N->getValueType(0); in performMULCombine()
872 EVT Ty = N->getValueType(0); in performSHLCombine()
895 EVT Ty = N->getValueType(0); in performSRACombine()
941 EVT Ty = N->getValueType(0); in performSRLCombine()
968 EVT Ty = N->getValueType(0); in performSETCCCombine()
981 EVT Ty = N->getValueType(0); in performVSELECTCombine()
999 EVT Ty = N->getValueType(0); in performXORCombine()
1182 EVT PtrVT = Ptr.getValueType(); in lowerLOAD()
[all …]
H A DMipsSEISelDAGToDAG.cpp210 EVT VT = LHS.getValueType(); in selectAddE()
271 EVT ValTy = Addr.getValueType(); in selectAddrFrameIndex()
287 EVT ValTy = Addr.getValueType(); in selectAddrFrameIndexOffset()
365 Offset = CurDAG->getTargetConstant(0, SDLoc(Addr), Addr.getValueType()); in selectAddrDefault()
554 EVT EltTy = N->getValueType(0).getVectorElementType(); in selectVSplatCommon()
630 EVT EltTy = N->getValueType(0).getVectorElementType(); in selectVSplatUimmPow2()
661 EVT EltTy = N->getValueType(0).getVectorElementType(); in selectVSplatMaskL()
694 EVT EltTy = N->getValueType(0).getVectorElementType(); in selectVSplatMaskR()
715 EVT EltTy = N->getValueType(0).getVectorElementType(); in selectVSplatUimmInvPow2()
769 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) { in trySelect()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCloneModule.cpp72 *New, I.getValueType(), I.isConstant(), I.getLinkage(), in CloneModule()
82 Function::Create(cast<FunctionType>(I.getValueType()), I.getLinkage(), in CloneModule()
96 if (I.getValueType()->isFunctionTy()) in CloneModule()
97 GV = Function::Create(cast<FunctionType>(I.getValueType()), in CloneModule()
101 GV = new GlobalVariable(*New, I.getValueType(), false, in CloneModule()
111 auto *GA = GlobalAlias::create(I.getValueType(), in CloneModule()
121 GlobalIFunc::create(I.getValueType(), I.getAddressSpace(), in CloneModule()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVECustomDAG.cpp57 return isMaskType(Op.getValueType()); in isMaskArithmetic()
258 return Op->getValueType(0); in getIdiomaticVectorType()
268 .getValueType(); in getIdiomaticVectorType()
273 return Op->getOperand(0).getValueType(); in getIdiomaticVectorType()
278 return Op->getValueType(0); in getIdiomaticVectorType()
281 return Op->getValueType(0); in getIdiomaticVectorType()
284 return Op->getOperand(1)->getValueType(0); in getIdiomaticVectorType()
288 return Op->getValueType(0); in getIdiomaticVectorType()
419 return DAG.getNOT(DL, Res, Res.getValueType()); in getConstantMask()
454 auto ScaVT = Scalar.getValueType(); in getBroadcast()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp422 EVT VecVT = VecOp.getValueType(); in shouldScalarizeBinop()
821 EVT ExtT = ExtVal.getValueType(); in isVectorLoadExtDesirable()
822 EVT MemT = cast<LoadSDNode>(ExtVal->getOperand(0))->getValueType(0); in isVectorLoadExtDesirable()
1173 EVT VT = Arg.getValueType(); in LowerCall()
1580 SDVTList Tys = DAG.getVTList(LN->getValueType(0), MVT::Other); in LowerLoad()
1592 EVT LocalVT = LN->getValueType(0); in LowerLoad()
1620 EVT VT = Src.getValueType(); in LowerCopyToReg()
1637 return DAG.getTargetFrameIndex(FI, Op.getValueType()); in LowerFrameIndex()
1656 return makeLibCall(DAG, RTLIB::RETURN_ADDRESS, Op.getValueType(), in LowerRETURNADDR()
1670 EVT VT = Op.getValueType(); in LowerFRAMEADDR()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineFunction.cpp101 DL.getValueOrABITypeAlignment(GV.getAlign(), GV.getValueType()); in allocateLDSGlobal()
130 ObjectStart + DL.getTypeAllocSize(GV.getValueType()); in allocateLDSGlobal()
146 StaticLDSSize += DL.getTypeAllocSize(GV.getValueType()); in allocateLDSGlobal()
155 StaticGDSSize += DL.getTypeAllocSize(GV.getValueType()); in allocateLDSGlobal()
204 assert(DL.getTypeAllocSize(GV.getValueType()).isZero()); in setDynLDSAlign()
207 DL.getValueOrABITypeAlignment(GV.getAlign(), GV.getValueType()); in setDynLDSAlign()
H A DR600ISelLowering.cpp441 return DAG.getNode(AMDGPUISD::R600_EXPORT, DL, Op.getValueType(), Args); in LowerOperation()
452 EVT VT = Op.getValueType(); in LowerOperation()
587 if (N->getValueType(0) == MVT::i1) { in ReplaceNodeResults()
596 if (N->getValueType(0) == MVT::i1) { in ReplaceNodeResults()
624 EVT VecVT = Vector.getValueType(); in vectorToVerticalVector()
647 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, Op.getValueType(), in LowerEXTRACT_VECTOR_ELT()
663 SDValue Insert = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, Op.getValueType(), in LowerINSERT_VECTOR_ELT()
686 EVT VT = Op.getValueType(); in LowerTrig()
727 EVT VT = Op.getValueType(); in LowerUADDSUBO()
735 DAG.getValueType(MVT::i1)); in LowerUADDSUBO()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1999 if (N->getValueType(0) != MVT::v16i8) in isVMerge()
2109 if (N->getValueType(0) != MVT::v16i8) in isVMerge()
2167 if (N->getValueType(0) != MVT::v16i8) in isVSLDOIShuffleMask()
2210 EVT VT = N->getValueType(0); in isSplatShuffleMask()
2358 assert(N->getValueType(0) == MVT::v16i8 && "Shuffle vector expects v16i8"); in isXXSLDWIShuffleMask()
2419 assert(N->getValueType(0) == MVT::v16i8 && "Shuffle vector expects v16i8"); in isXXBRShuffleMaskHelper()
2457 assert(N->getValueType(0) == MVT::v16i8 && "Shuffle vector expects v16i8"); in isXXPERMDIShuffleMask()
2515 EVT VT = SVOp->getValueType(0); in getSplatIdxForPPCMnemonics()
2605 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!"); in get_VSPLTI_elt()
2644 if (N->getValueType(0) == MVT::i32) in isIntS16Immediate()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp158 EVT ValueVT = LD->getValueType(0); in INITIALIZE_PASS()
174 if (LD->getValueType(0) == MVT::i64) in INITIALIZE_PASS()
187 if (LD->getValueType(0) == MVT::i64) in INITIALIZE_PASS()
481 EVT ValueVT = Value.getValueType(); in SelectIndexedStore()
585 if (N->getValueType(0) != MVT::i32 || Shl_1.getOpcode() != ISD::Constant) in SelectSHL()
697 SDValue R = CurDAG->getNode(N->getOpcode(), SDLoc(N), N->getValueType(0), in SelectIntrinsicWOChain()
708 MVT ResTy = N->getValueType(0).getSimpleVT(); in SelectExtractSubvector()
711 [[maybe_unused]] MVT InpTy = Inp.getValueType().getSimpleVT(); in SelectExtractSubvector()
731 if (N->getValueType(0) == MVT::f32) { in SelectConstantFP()
736 if (N->getValueType(0) == MVT::f64) { in SelectConstantFP()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1977 EVT VT = N->getValueType(i); in getSchedulingPreference()
2851 RegsToPass[i].second.getValueType())); in LowerCall()
3249 if (Arg.getValueType() == MVT::f32 && Arg.getOpcode() == ISD::BITCAST) { in LowerReturn()
3251 if (ZE.getOpcode() == ISD::ZERO_EXTEND && ZE.getValueType() == MVT::i32) { in LowerReturn()
3253 if (BC.getOpcode() == ISD::BITCAST && BC.getValueType() == MVT::i16) { in LowerReturn()
3330 VA.getLocReg(), ReturnF16 ? Arg.getValueType() : VA.getLocVT())); in LowerReturn()
3380 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue) in isUsedByReturnOnly()
3404 if (U->getOperand(U->getNumOperands() - 1).getValueType() == MVT::Glue) in isUsedByReturnOnly()
3419 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue) in isUsedByReturnOnly()
3458 assert(WriteValue.getValueType() == MVT::i64 in LowerWRITE_REGISTER()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp503 DAG.getValueType(VA.getLocVT())); in LowerFormalArguments_32()
661 DAG.getValueType(VA.getValVT())); in LowerFormalArguments_64()
665 DAG.getValueType(VA.getValVT())); in LowerFormalArguments_64()
1075 Ops.push_back(DAG.getRegister(Reg, RegsToPass[i].second.getValueType())); in LowerCall_32()
1404 RegsToPass[i].second.getValueType())); in LowerCall_64()
1483 DAG.getValueType(VA.getValVT())); in LowerCall_64()
1487 DAG.getValueType(VA.getValVT())); in LowerCall_64()
2100 GA->getValueType(0), in withTargetFlags()
2104 return DAG.getTargetConstantPool(CP->getConstVal(), CP->getValueType(0), in withTargetFlags()
2109 Op.getValueType(), in withTargetFlags()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kISelLowering.cpp301 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8; in MatchingStackOffset()
314 Arg.getValueType()) { in MatchingStackOffset()
369 if (VA.getLocVT().getSizeInBits() > Arg.getValueType().getSizeInBits()) { in MatchingStackOffset()
832 RegsToPass[i].second.getValueType())); in LowerCall()
962 DAG.getValueType(VA.getValVT())); in LowerFormalArguments()
965 DAG.getValueType(VA.getValVT())); in LowerFormalArguments()
1096 EVT ValVT = ValToCopy.getValueType(); in LowerReturn()
1449 GA->getGlobal(), GA, GA->getValueType(0), GA->getOffset(), TargetFlags); in getTLSGetAddr()
1476 DAG.getTargetGlobalAddress(GA->getGlobal(), GA, GA->getValueType(0), in LowerTLSLocalDynamic()
1486 DAG.getTargetGlobalAddress(GA->getGlobal(), GA, GA->getValueType(0), in LowerTLSInitialExec()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp1375 EVT ResTy = Op->getValueType(0); in lowerBUILD_VECTOR()
1431 EVT ResTy = Node->getValueType(0); in lowerBUILD_VECTOR()
1451 EVT VecTy = Op->getOperand(0)->getValueType(0); in lowerEXTRACT_VECTOR_ELT()
1491 if (Subtarget.is64Bit() && Op.getOperand(2).getValueType() == MVT::i32) { in lowerWRITE_REGISTER()
1497 if (!Subtarget.is64Bit() && Op.getOperand(2).getValueType() == MVT::i64) { in lowerWRITE_REGISTER()
1517 EVT VT = Op.getValueType(); in lowerFRAMEADDR()
1602 EVT OpVT = Op0.getValueType(); in lowerUINT_TO_FP()
1603 EVT RetVT = Op.getValueType(); in lowerUINT_TO_FP()
1610 makeLibCall(DAG, LC, Op.getValueType(), Op0, CallOptions, DL, Chain); in lowerUINT_TO_FP()
1627 EVT OpVT = Op0.getValueType(); in lowerSINT_TO_FP()
[all …]

12345678910>>...13