79#include "llvm/IR/IntrinsicsAArch64.h"
80#include "llvm/IR/IntrinsicsAMDGPU.h"
81#include "llvm/IR/IntrinsicsWebAssembly.h"
114#define DEBUG_TYPE "isel"
122 cl::desc(
"Insert the experimental `assertalign` node."),
127 cl::desc(
"Generate low-precision inline sequences "
128 "for some float libcalls"),
134 cl::desc(
"Set the case probability threshold for peeling the case from a "
135 "switch statement. A value greater than 100 will void this "
155 const SDValue *Parts,
unsigned NumParts,
158 std::optional<CallingConv::ID> CC);
167 unsigned NumParts,
MVT PartVT,
EVT ValueVT,
const Value *V,
169 std::optional<CallingConv::ID> CC = std::nullopt,
170 std::optional<ISD::NodeType> AssertOp = std::nullopt) {
174 PartVT, ValueVT, CC))
181 assert(NumParts > 0 &&
"No parts to assemble!");
192 unsigned RoundBits = PartBits * RoundParts;
193 EVT RoundVT = RoundBits == ValueBits ?
199 if (RoundParts > 2) {
203 PartVT, HalfVT, V, InChain);
214 if (RoundParts < NumParts) {
216 unsigned OddParts = NumParts - RoundParts;
219 OddVT, V, InChain, CC);
235 assert(ValueVT ==
EVT(MVT::ppcf128) && PartVT == MVT::f64 &&
246 !PartVT.
isVector() &&
"Unexpected split");
258 if (PartEVT == ValueVT)
262 ValueVT.
bitsLT(PartEVT)) {
275 if (ValueVT.
bitsLT(PartEVT)) {
280 Val = DAG.
getNode(*AssertOp,
DL, PartEVT, Val,
295 llvm::Attribute::StrictFP)) {
297 DAG.
getVTList(ValueVT, MVT::Other), InChain, Val,
309 if (PartEVT == MVT::x86mmx && ValueVT.
isInteger() &&
310 ValueVT.
bitsLT(PartEVT)) {
319 const Twine &ErrMsg) {
322 return Ctx.emitError(ErrMsg);
325 if (CI->isInlineAsm()) {
327 *CI, ErrMsg +
", possible invalid constraint for vector type"));
330 return Ctx.emitError(
I, ErrMsg);
339 const SDValue *Parts,
unsigned NumParts,
342 std::optional<CallingConv::ID> CallConv) {
344 assert(NumParts > 0 &&
"No parts to assemble!");
345 const bool IsABIRegCopy = CallConv.has_value();
354 unsigned NumIntermediates;
359 *DAG.
getContext(), *CallConv, ValueVT, IntermediateVT,
360 NumIntermediates, RegisterVT);
364 NumIntermediates, RegisterVT);
367 assert(NumRegs == NumParts &&
"Part count doesn't match vector breakdown!");
369 assert(RegisterVT == PartVT &&
"Part type doesn't match vector breakdown!");
372 "Part type sizes don't match!");
376 if (NumIntermediates == NumParts) {
379 for (
unsigned i = 0; i != NumParts; ++i)
381 V, InChain, CallConv);
382 }
else if (NumParts > 0) {
385 assert(NumParts % NumIntermediates == 0 &&
386 "Must expand into a divisible number of parts!");
387 unsigned Factor = NumParts / NumIntermediates;
388 for (
unsigned i = 0; i != NumIntermediates; ++i)
390 IntermediateVT, V, InChain, CallConv);
405 DL, BuiltVectorTy,
Ops);
411 if (PartEVT == ValueVT)
427 "Cannot narrow, it would be a lossy transformation");
433 if (PartEVT == ValueVT)
458 }
else if (ValueVT.
bitsLT(PartEVT)) {
467 *DAG.
getContext(), V,
"non-trivial scalar-to-vector conversion");
498 std::optional<CallingConv::ID> CallConv);
505 unsigned NumParts,
MVT PartVT,
const Value *V,
506 std::optional<CallingConv::ID> CallConv = std::nullopt,
520 unsigned OrigNumParts = NumParts;
522 "Copying to an illegal type!");
528 EVT PartEVT = PartVT;
529 if (PartEVT == ValueVT) {
530 assert(NumParts == 1 &&
"No-op copy with multiple parts!");
539 assert(NumParts == 1 &&
"Do not know what to promote to!");
550 "Unknown mismatch!");
552 Val = DAG.
getNode(ExtendKind,
DL, ValueVT, Val);
553 if (PartVT == MVT::x86mmx)
558 assert(NumParts == 1 && PartEVT != ValueVT);
564 "Unknown mismatch!");
567 if (PartVT == MVT::x86mmx)
574 "Failed to tile the value with PartVT!");
577 if (PartEVT != ValueVT) {
579 "scalar-to-vector conversion failed");
588 if (NumParts & (NumParts - 1)) {
591 "Do not know what to expand to!");
593 unsigned RoundBits = RoundParts * PartBits;
594 unsigned OddParts = NumParts - RoundParts;
603 std::reverse(Parts + RoundParts, Parts + NumParts);
605 NumParts = RoundParts;
617 for (
unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
618 for (
unsigned i = 0; i < NumParts; i += StepSize) {
619 unsigned ThisBits = StepSize * PartBits / 2;
622 SDValue &Part1 = Parts[i+StepSize/2];
629 if (ThisBits == PartBits && ThisVT != PartVT) {
637 std::reverse(Parts, Parts + OrigNumParts);
659 if (ValueEVT == MVT::bf16 && PartEVT == MVT::f16) {
661 "Cannot widen to illegal type");
665 }
else if (PartEVT != ValueEVT) {
680 Ops.append((PartNumElts - ValueNumElts).getFixedValue(), EltUndef);
691 std::optional<CallingConv::ID> CallConv) {
695 const bool IsABIRegCopy = CallConv.has_value();
698 EVT PartEVT = PartVT;
699 if (PartEVT == ValueVT) {
745 "lossy conversion of vector to scalar type");
760 unsigned NumIntermediates;
764 *DAG.
getContext(), *CallConv, ValueVT, IntermediateVT, NumIntermediates,
769 NumIntermediates, RegisterVT);
772 assert(NumRegs == NumParts &&
"Part count doesn't match vector breakdown!");
774 assert(RegisterVT == PartVT &&
"Part type doesn't match vector breakdown!");
777 "Mixing scalable and fixed vectors when copying in parts");
779 std::optional<ElementCount> DestEltCnt;
789 if (ValueVT == BuiltVectorTy) {
813 for (
unsigned i = 0; i != NumIntermediates; ++i) {
828 if (NumParts == NumIntermediates) {
831 for (
unsigned i = 0; i != NumParts; ++i)
833 }
else if (NumParts > 0) {
836 assert(NumIntermediates != 0 &&
"division by zero");
837 assert(NumParts % NumIntermediates == 0 &&
838 "Must expand into a divisible number of parts!");
839 unsigned Factor = NumParts / NumIntermediates;
840 for (
unsigned i = 0; i != NumIntermediates; ++i)
848 if (
I.hasOperandBundlesOtherThan(AllowedBundles)) {
852 for (
unsigned i = 0, e =
I.getNumOperandBundles(); i != e; ++i) {
855 OS << LS << U.getTagName();
858 Twine(
"cannot lower ", Name)
864 EVT valuevt, std::optional<CallingConv::ID> CC)
870 std::optional<CallingConv::ID> CC) {
884 for (
unsigned i = 0; i != NumRegs; ++i)
885 Regs.push_back(Reg + i);
886 RegVTs.push_back(RegisterVT);
888 Reg = Reg.id() + NumRegs;
915 for (
unsigned i = 0; i != NumRegs; ++i) {
921 *Glue =
P.getValue(2);
924 Chain =
P.getValue(1);
952 EVT FromVT(MVT::Other);
956 }
else if (NumSignBits > 1) {
964 assert(FromVT != MVT::Other);
970 RegisterVT, ValueVT, V, Chain,
CallConv);
986 unsigned NumRegs =
Regs.size();
1001 NumParts, RegisterVT, V,
CallConv, ExtendKind);
1007 for (
unsigned i = 0; i != NumRegs; ++i) {
1019 if (NumRegs == 1 || Glue)
1030 Chain = Chains[NumRegs-1];
1036 unsigned MatchingIdx,
const SDLoc &dl,
1038 std::vector<SDValue> &
Ops)
const {
1043 Flag.setMatchingOp(MatchingIdx);
1044 else if (!
Regs.empty() &&
Regs.front().isVirtual()) {
1052 Flag.setRegClass(RC->
getID());
1063 "No 1:1 mapping from clobbers to regs?");
1066 for (
unsigned I = 0, E =
ValueVTs.size();
I != E; ++
I) {
1071 "If we clobbered the stack pointer, MFI should know about it.");
1080 for (
unsigned i = 0; i != NumRegs; ++i) {
1081 assert(Reg <
Regs.size() &&
"Mismatch in # registers expected");
1093 unsigned RegCount = std::get<0>(CountAndVT);
1094 MVT RegisterVT = std::get<1>(CountAndVT);
1112 SL->init(
DAG.getTargetLoweringInfo(), TM,
DAG.getDataLayout());
1114 *
DAG.getMachineFunction().getFunction().getParent());
1119 UnusedArgNodeMap.clear();
1121 PendingExports.clear();
1122 PendingConstrainedFP.clear();
1123 PendingConstrainedFPStrict.clear();
1131 DanglingDebugInfoMap.clear();
1138 if (Pending.
empty())
1144 unsigned i = 0, e = Pending.
size();
1145 for (; i != e; ++i) {
1147 if (Pending[i].
getNode()->getOperand(0) == Root)
1155 if (Pending.
size() == 1)
1182 if (!PendingConstrainedFPStrict.empty()) {
1183 assert(PendingConstrainedFP.empty());
1184 updateRoot(PendingConstrainedFPStrict);
1197 if (!PendingConstrainedFP.empty()) {
1198 assert(PendingConstrainedFPStrict.empty());
1199 updateRoot(PendingConstrainedFP);
1203 return DAG.getRoot();
1211 PendingConstrainedFP.size() +
1212 PendingConstrainedFPStrict.size());
1214 PendingConstrainedFP.end());
1215 PendingLoads.append(PendingConstrainedFPStrict.begin(),
1216 PendingConstrainedFPStrict.end());
1217 PendingConstrainedFP.clear();
1218 PendingConstrainedFPStrict.clear();
1225 PendingExports.append(PendingConstrainedFPStrict.begin(),
1226 PendingConstrainedFPStrict.end());
1227 PendingConstrainedFPStrict.clear();
1228 return updateRoot(PendingExports);
1235 assert(Variable &&
"Missing variable");
1242 <<
"dbg_declare: Dropping debug info (bad/undef/unused-arg address)\n");
1258 if (IsParameter && FINode) {
1260 SDV =
DAG.getFrameIndexDbgValue(Variable,
Expression, FINode->getIndex(),
1261 true,
DL, SDNodeOrder);
1266 FuncArgumentDbgValueKind::Declare,
N);
1269 SDV =
DAG.getDbgValue(Variable,
Expression,
N.getNode(),
N.getResNo(),
1270 true,
DL, SDNodeOrder);
1272 DAG.AddDbgValue(SDV, IsParameter);
1277 FuncArgumentDbgValueKind::Declare,
N)) {
1279 <<
" (could not emit func-arg dbg_value)\n");
1290 for (
auto It = FnVarLocs->locs_begin(&
I), End = FnVarLocs->locs_end(&
I);
1292 auto *Var = FnVarLocs->getDILocalVariable(It->VariableID);
1294 if (It->Values.isKillLocation(It->Expr)) {
1300 It->Values.hasArgList())) {
1303 FnVarLocs->getDILocalVariable(It->VariableID),
1304 It->Expr, Vals.
size() > 1, It->DL, SDNodeOrder);
1317 bool SkipDbgVariableRecords =
DAG.getFunctionVarLocs();
1320 for (
DbgRecord &DR :
I.getDbgRecordRange()) {
1322 assert(DLR->getLabel() &&
"Missing label");
1324 DAG.getDbgLabel(DLR->getLabel(), DLR->getDebugLoc(), SDNodeOrder);
1325 DAG.AddDbgLabel(SDV);
1329 if (SkipDbgVariableRecords)
1337 if (
FuncInfo.PreprocessedDVRDeclares.contains(&DVR))
1339 LLVM_DEBUG(
dbgs() <<
"SelectionDAG visiting dbg_declare: " << DVR
1365 SDNodeOrder, IsVariadic)) {
1376 if (
I.isTerminator()) {
1377 HandlePHINodesInSuccessorBlocks(
I.getParent());
1384 bool NodeInserted =
false;
1385 std::unique_ptr<SelectionDAG::DAGNodeInsertedListener> InsertedListener;
1386 MDNode *PCSectionsMD =
I.getMetadata(LLVMContext::MD_pcsections);
1387 MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra);
1388 if (PCSectionsMD || MMRA) {
1389 InsertedListener = std::make_unique<SelectionDAG::DAGNodeInsertedListener>(
1390 DAG, [&](
SDNode *) { NodeInserted =
true; });
1400 if (PCSectionsMD || MMRA) {
1401 auto It = NodeMap.find(&
I);
1402 if (It != NodeMap.end()) {
1404 DAG.addPCSections(It->second.getNode(), PCSectionsMD);
1406 DAG.addMMRAMetadata(It->second.getNode(), MMRA);
1407 }
else if (NodeInserted) {
1410 errs() <<
"warning: loosing !pcsections and/or !mmra metadata ["
1411 <<
I.getModule()->getName() <<
"]\n";
1420void SelectionDAGBuilder::visitPHI(
const PHINode &) {
1430#define HANDLE_INST(NUM, OPCODE, CLASS) \
1431 case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break;
1432#include "llvm/IR/Instruction.def"
1469 DanglingDebugInfoMap[
Values[0]].emplace_back(Var, Expr,
DL, Order);
1474 auto isMatchingDbgValue = [&](DanglingDebugInfo &DDI) {
1475 DIVariable *DanglingVariable = DDI.getVariable();
1477 if (DanglingVariable == Variable && Expr->
fragmentsOverlap(DanglingExpr)) {
1479 << printDDI(
nullptr, DDI) <<
"\n");
1485 for (
auto &DDIMI : DanglingDebugInfoMap) {
1486 DanglingDebugInfoVector &DDIV = DDIMI.second;
1490 for (
auto &DDI : DDIV)
1491 if (isMatchingDbgValue(DDI))
1494 erase_if(DDIV, isMatchingDbgValue);
1502 auto DanglingDbgInfoIt = DanglingDebugInfoMap.find(V);
1503 if (DanglingDbgInfoIt == DanglingDebugInfoMap.end())
1506 DanglingDebugInfoVector &DDIV = DanglingDbgInfoIt->second;
1507 for (
auto &DDI : DDIV) {
1509 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder();
1512 assert(Variable->isValidLocationForIntrinsic(
DL) &&
1513 "Expected inlined-at fields to agree");
1523 if (!EmitFuncArgumentDbgValue(V, Variable, Expr,
DL,
1524 FuncArgumentDbgValueKind::Value, Val)) {
1526 << printDDI(V, DDI) <<
"\n");
1533 <<
"changing SDNodeOrder from " << DbgSDNodeOrder <<
" to "
1534 << ValSDNodeOrder <<
"\n");
1535 SDV = getDbgValue(Val, Variable, Expr,
DL,
1536 std::max(DbgSDNodeOrder, ValSDNodeOrder));
1537 DAG.AddDbgValue(SDV,
false);
1541 <<
" in EmitFuncArgumentDbgValue\n");
1543 LLVM_DEBUG(
dbgs() <<
"Dropping debug info for " << printDDI(V, DDI)
1547 DAG.getConstantDbgValue(Variable, Expr,
Poison,
DL, DbgSDNodeOrder);
1548 DAG.AddDbgValue(SDV,
false);
1555 DanglingDebugInfo &DDI) {
1560 const Value *OrigV = V;
1564 unsigned SDOrder = DDI.getSDNodeOrder();
1593 if (!AdditionalValues.
empty())
1603 dbgs() <<
"Salvaged debug location info for:\n " << *Var <<
"\n"
1604 << *OrigV <<
"\nBy stripping back to:\n " << *V <<
"\n");
1612 assert(OrigV &&
"V shouldn't be null");
1614 auto *SDV =
DAG.getConstantDbgValue(Var, Expr,
Poison,
DL, SDNodeOrder);
1615 DAG.AddDbgValue(SDV,
false);
1617 << printDDI(OrigV, DDI) <<
"\n");
1634 unsigned Order,
bool IsVariadic) {
1639 if (visitEntryValueDbgValue(
Values, Var, Expr, DbgLoc))
1644 for (
const Value *V :
Values) {
1654 if (CE->getOpcode() == Instruction::IntToPtr) {
1673 N = UnusedArgNodeMap[V];
1678 EmitFuncArgumentDbgValue(V, Var, Expr, DbgLoc,
1679 FuncArgumentDbgValueKind::Value,
N))
1706 bool IsParamOfFunc =
1714 auto VMI =
FuncInfo.ValueMap.find(V);
1715 if (VMI !=
FuncInfo.ValueMap.end()) {
1720 V->getType(), std::nullopt);
1726 unsigned BitsToDescribe = 0;
1728 BitsToDescribe = *VarSize;
1730 BitsToDescribe =
Fragment->SizeInBits;
1733 if (
Offset >= BitsToDescribe)
1736 unsigned RegisterSize = RegAndSize.second;
1737 unsigned FragmentSize = (
Offset + RegisterSize > BitsToDescribe)
1738 ? BitsToDescribe -
Offset
1741 Expr,
Offset, FragmentSize);
1745 Var, *FragmentExpr, RegAndSize.first,
false, DbgLoc, Order);
1746 DAG.AddDbgValue(SDV,
false);
1762 DAG.getDbgValueList(Var, Expr, LocationOps, Dependencies,
1763 false, DbgLoc, Order, IsVariadic);
1764 DAG.AddDbgValue(SDV,
false);
1770 for (
auto &Pair : DanglingDebugInfoMap)
1771 for (
auto &DDI : Pair.second)
1779 auto It =
FuncInfo.ValueMap.find(V);
1782 if (It !=
FuncInfo.ValueMap.end()) {
1786 DAG.getDataLayout(), InReg, Ty,
1803 if (
N.getNode())
return N;
1818 if (V->getType()->isVoidTy())
1823 V->getType(), ValueVTs);
1873 return DAG.getSplatBuildVector(
1876 return DAG.getConstant(*CI,
DL, VT);
1888 getValue(CPA->getAddrDiscriminator()),
1889 getValue(CPA->getDiscriminator()));
1905 visit(CE->getOpcode(), *CE);
1907 assert(N1.
getNode() &&
"visit didn't populate the NodeMap!");
1913 for (
const Use &U :
C->operands()) {
1919 for (
unsigned i = 0, e = Val->
getNumValues(); i != e; ++i)
1920 Constants.push_back(
SDValue(Val, i));
1929 for (uint64_t i = 0, e = CDS->getNumElements(); i != e; ++i) {
1933 for (
unsigned i = 0, e = Val->
getNumValues(); i != e; ++i)
1942 if (
C->getType()->isStructTy() ||
C->getType()->isArrayTy()) {
1944 "Unknown struct or array constant!");
1948 unsigned NumElts = ValueVTs.
size();
1952 for (
unsigned i = 0; i != NumElts; ++i) {
1953 EVT EltVT = ValueVTs[i];
1955 Constants[i] =
DAG.getUNDEF(EltVT);
1966 return DAG.getBlockAddress(BA, VT);
1969 return getValue(Equiv->getGlobalValue());
1974 if (VT == MVT::aarch64svcount) {
1975 assert(
C->isNullValue() &&
"Can only zero this target type!");
1981 assert(
C->isNullValue() &&
"Can only zero this target type!");
1991 if (VT == MVT::externref || VT == MVT::funcref) {
1992 assert(
C->isNullValue() &&
"Can only zero this target type!");
1995 Intrinsic::ID IID = VT == MVT::externref ? Intrinsic::wasm_ref_null_extern
1996 : Intrinsic::wasm_ref_null_func;
2008 for (
unsigned i = 0; i != NumElements; ++i)
2035 return DAG.getFrameIndex(
2043 Inst->getType(), std::nullopt);
2057void SelectionDAGBuilder::visitCatchPad(
const CatchPadInst &
I) {
2070 if (IsMSVCCXX || IsCoreCLR)
2076 MachineBasicBlock *TargetMBB =
FuncInfo.getMBB(
I.getSuccessor());
2077 FuncInfo.MBB->addSuccessor(TargetMBB);
2084 if (TargetMBB != NextBlock(
FuncInfo.MBB) ||
2093 DAG.getMachineFunction().setHasEHContTarget(
true);
2099 Value *ParentPad =
I.getCatchSwitchParentPad();
2102 SuccessorColor = &
FuncInfo.Fn->getEntryBlock();
2105 assert(SuccessorColor &&
"No parent funclet for catchret!");
2106 MachineBasicBlock *SuccessorColorMBB =
FuncInfo.getMBB(SuccessorColor);
2107 assert(SuccessorColorMBB &&
"No MBB for SuccessorColor!");
2112 DAG.getBasicBlock(SuccessorColorMBB));
2116void SelectionDAGBuilder::visitCleanupPad(
const CleanupPadInst &CPI) {
2122 FuncInfo.MBB->setIsEHFuncletEntry();
2123 FuncInfo.MBB->setIsCleanupFuncletEntry();
2152 UnwindDests.emplace_back(FuncInfo.
getMBB(EHPadBB), Prob);
2158 UnwindDests.emplace_back(FuncInfo.
getMBB(EHPadBB), Prob);
2159 UnwindDests.back().first->setIsEHScopeEntry();
2162 UnwindDests.back().first->setIsEHFuncletEntry();
2166 for (
const BasicBlock *CatchPadBB : CatchSwitch->handlers()) {
2167 UnwindDests.emplace_back(FuncInfo.
getMBB(CatchPadBB), Prob);
2169 if (IsMSVCCXX || IsCoreCLR)
2170 UnwindDests.back().first->setIsEHFuncletEntry();
2172 UnwindDests.back().first->setIsEHScopeEntry();
2174 NewEHPadBB = CatchSwitch->getUnwindDest();
2180 if (BPI && NewEHPadBB)
2182 EHPadBB = NewEHPadBB;
2189 auto UnwindDest =
I.getUnwindDest();
2190 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
2191 BranchProbability UnwindDestProb =
2196 for (
auto &UnwindDest : UnwindDests) {
2197 UnwindDest.first->setIsEHPad();
2198 addSuccessorWithProb(
FuncInfo.MBB, UnwindDest.first, UnwindDest.second);
2200 FuncInfo.MBB->normalizeSuccProbs();
2203 MachineBasicBlock *CleanupPadMBB =
2204 FuncInfo.getMBB(
I.getCleanupPad()->getParent());
2210void SelectionDAGBuilder::visitCatchSwitch(
const CatchSwitchInst &CSI) {
2214void SelectionDAGBuilder::visitRet(
const ReturnInst &
I) {
2215 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
2216 auto &
DL =
DAG.getDataLayout();
2228 if (
I.getParent()->getTerminatingDeoptimizeCall()) {
2242 Type *RetTy =
I.getOperand(0)->getType();
2243 Align BaseAlign =
DL.getPrefTypeAlign(RetTy);
2246 SDValue RetOp =
getValue(
I.getOperand(0));
2249 SmallVector<uint64_t, 4>
Offsets;
2251 unsigned NumValues = ValueVTs.
size();
2254 for (
unsigned i = 0; i != NumValues; ++i) {
2261 if (MemVTs[i] != ValueVTs[i])
2263 Chains[i] =
DAG.getStore(
2271 MVT::Other, Chains);
2272 }
else if (
I.getNumOperands() != 0) {
2275 unsigned NumValues =
Types.size();
2277 SDValue RetOp =
getValue(
I.getOperand(0));
2279 const Function *
F =
I.getParent()->getParent();
2282 I.getOperand(0)->getType(),
F->getCallingConv(),
2286 if (
F->getAttributes().hasRetAttr(Attribute::SExt))
2288 else if (
F->getAttributes().hasRetAttr(Attribute::ZExt))
2291 LLVMContext &
Context =
F->getContext();
2292 bool RetInReg =
F->getAttributes().hasRetAttr(Attribute::InReg);
2294 for (
unsigned j = 0;
j != NumValues; ++
j) {
2307 &Parts[0], NumParts, PartVT, &
I, CC, ExtendKind);
2310 ISD::ArgFlagsTy
Flags = ISD::ArgFlagsTy();
2314 if (
I.getOperand(0)->getType()->isPointerTy()) {
2316 Flags.setPointerAddrSpace(
2320 if (NeedsRegBlock) {
2321 Flags.setInConsecutiveRegs();
2322 if (j == NumValues - 1)
2323 Flags.setInConsecutiveRegsLast();
2331 else if (
F->getAttributes().hasRetAttr(Attribute::NoExt))
2334 for (
unsigned i = 0; i < NumParts; ++i) {
2337 VT, Types[j], 0, 0));
2347 const Function *
F =
I.getParent()->getParent();
2349 F->getAttributes().hasAttrSomewhere(Attribute::SwiftError)) {
2351 ISD::ArgFlagsTy
Flags = ISD::ArgFlagsTy();
2352 Flags.setSwiftError();
2364 bool isVarArg =
DAG.getMachineFunction().getFunction().isVarArg();
2366 DAG.getMachineFunction().getFunction().getCallingConv();
2367 Chain =
DAG.getTargetLoweringInfo().LowerReturn(
2372 "LowerReturn didn't return a valid chain!");
2383 if (V->getType()->isEmptyTy())
2386 auto VMI =
FuncInfo.ValueMap.find(V);
2387 if (VMI !=
FuncInfo.ValueMap.end()) {
2389 "Unused value assigned virtual registers!");
2402 if (
FuncInfo.isExportedInst(V))
return;
2414 if (VI->getParent() == FromBB)
2440 const BasicBlock *SrcBB = Src->getBasicBlock();
2441 const BasicBlock *DstBB = Dst->getBasicBlock();
2445 auto SuccSize = std::max<uint32_t>(
succ_size(SrcBB), 1);
2455 Src->addSuccessorWithoutProb(Dst);
2458 Prob = getEdgeProbability(Src, Dst);
2459 Src->addSuccessor(Dst, Prob);
2465 return I->getParent() == BB;
2489 if (CurBB == SwitchBB ||
2495 InvertCond ? IC->getInversePredicate() : IC->getPredicate();
2500 InvertCond ? FC->getInversePredicate() : FC->getPredicate();
2502 if (FC->hasNoNaNs() ||
2510 CaseBlock CB(Condition, BOp->getOperand(0), BOp->getOperand(1),
nullptr,
2512 SL->SwitchCases.push_back(CB);
2521 SL->SwitchCases.push_back(CB);
2529 unsigned Depth = 0) {
2538 if (Necessary !=
nullptr) {
2541 if (Necessary->contains(
I))
2549 for (
unsigned OpIdx = 0,
E =
I->getNumOperands(); OpIdx <
E; ++OpIdx)
2569 if (BPI !=
nullptr) {
2575 std::optional<bool> Likely;
2578 else if (BPI->
isEdgeHot(
I.getParent(), IfFalse))
2582 if (
Opc == (*Likely ? Instruction::And : Instruction::Or))
2594 if (CostThresh <= 0)
2615 Value *BrCond =
I.getCondition();
2616 auto ShouldCountInsn = [&RhsDeps, &BrCond](
const Instruction *Ins) {
2617 for (
const auto *U : Ins->users()) {
2620 if (UIns != BrCond && !RhsDeps.
contains(UIns))
2633 for (
unsigned PruneIters = 0; PruneIters < MaxPruneIters; ++PruneIters) {
2635 for (
const auto &InsPair : RhsDeps) {
2636 if (!ShouldCountInsn(InsPair.first)) {
2637 ToDrop = InsPair.first;
2641 if (ToDrop ==
nullptr)
2643 RhsDeps.erase(ToDrop);
2646 for (
const auto &InsPair : RhsDeps) {
2651 CostOfIncluding +=
TTI->getInstructionCost(
2654 if (CostOfIncluding > CostThresh)
2680 const Value *BOpOp0, *BOpOp1;
2694 if (BOpc == Instruction::And)
2695 BOpc = Instruction::Or;
2696 else if (BOpc == Instruction::Or)
2697 BOpc = Instruction::And;
2703 bool BOpIsInOrAndTree = BOpc && BOpc ==
Opc && BOp->
hasOneUse();
2708 TProb, FProb, InvertCond);
2718 if (
Opc == Instruction::Or) {
2739 auto NewTrueProb = TProb / 2;
2740 auto NewFalseProb = TProb / 2 + FProb;
2743 NewFalseProb, InvertCond);
2750 Probs[1], InvertCond);
2752 assert(
Opc == Instruction::And &&
"Unknown merge op!");
2772 auto NewTrueProb = TProb + FProb / 2;
2773 auto NewFalseProb = FProb / 2;
2776 NewFalseProb, InvertCond);
2783 Probs[1], InvertCond);
2792 if (Cases.size() != 2)
return true;
2796 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
2797 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
2798 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
2799 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
2805 if (Cases[0].CmpRHS == Cases[1].CmpRHS &&
2806 Cases[0].CC == Cases[1].CC &&
2809 if (Cases[0].CC ==
ISD::SETEQ && Cases[0].TrueBB == Cases[1].ThisBB)
2811 if (Cases[0].CC ==
ISD::SETNE && Cases[0].FalseBB == Cases[1].ThisBB)
2818void SelectionDAGBuilder::visitUncondBr(
const UncondBrInst &
I) {
2828 if (Succ0MBB != NextBlock(BrMBB) ||
2837void SelectionDAGBuilder::visitCondBr(
const CondBrInst &
I) {
2838 MachineBasicBlock *BrMBB =
FuncInfo.MBB;
2840 MachineBasicBlock *Succ0MBB =
FuncInfo.getMBB(
I.getSuccessor(0));
2844 const Value *CondVal =
I.getCondition();
2845 MachineBasicBlock *Succ1MBB =
FuncInfo.getMBB(
I.getSuccessor(1));
2864 bool IsUnpredictable =
I.hasMetadata(LLVMContext::MD_unpredictable);
2866 if (!
DAG.getTargetLoweringInfo().isJumpExpensive() && BOp &&
2869 const Value *BOp0, *BOp1;
2872 Opcode = Instruction::And;
2874 Opcode = Instruction::Or;
2881 DAG.getTargetLoweringInfo().getJumpConditionMergingParams(
2882 Opcode, BOp0, BOp1,
FuncInfo.Fn))) {
2884 getEdgeProbability(BrMBB, Succ0MBB),
2885 getEdgeProbability(BrMBB, Succ1MBB),
2890 assert(
SL->SwitchCases[0].ThisBB == BrMBB &&
"Unexpected lowering!");
2894 for (
unsigned i = 1, e =
SL->SwitchCases.size(); i != e; ++i) {
2901 SL->SwitchCases.erase(
SL->SwitchCases.begin());
2907 for (
unsigned i = 1, e =
SL->SwitchCases.size(); i != e; ++i)
2908 FuncInfo.MF->erase(
SL->SwitchCases[i].ThisBB);
2910 SL->SwitchCases.clear();
2916 nullptr, Succ0MBB, Succ1MBB, BrMBB,
getCurSDLoc(),
2937 if (CB.
TrueBB != NextBlock(SwitchBB)) {
2944 auto &TLI =
DAG.getTargetLoweringInfo();
2968 Cond =
DAG.getSetCC(dl, MVT::i1, CondLHS, CondRHS, CB.
CC);
2980 Cond =
DAG.getSetCC(dl, MVT::i1, CmpOp,
DAG.getConstant(
High, dl, VT),
2984 VT, CmpOp,
DAG.getConstant(
Low, dl, VT));
2985 Cond =
DAG.getSetCC(dl, MVT::i1, SUB,
3000 if (CB.
TrueBB == NextBlock(SwitchBB)) {
3016 BrCond =
DAG.getNode(
ISD::BR, dl, MVT::Other, BrCond,
3019 DAG.setRoot(BrCond);
3025 assert(JT.
SL &&
"Should set SDLoc for SelectionDAG!");
3026 assert(JT.
Reg &&
"Should lower JT Header first!");
3027 EVT PTy =
DAG.getTargetLoweringInfo().getJumpTableRegTy(
DAG.getDataLayout());
3031 Index.getValue(1),
Table, Index);
3032 DAG.setRoot(BrJumpTable);
3040 assert(JT.
SL &&
"Should set SDLoc for SelectionDAG!");
3047 DAG.getConstant(JTH.
First, dl, VT));
3062 JT.
Reg = JumpTableReg;
3070 Sub.getValueType()),
3074 MVT::Other, CopyTo, CMP,
3078 if (JT.
MBB != NextBlock(SwitchBB))
3079 BrCond =
DAG.getNode(
ISD::BR, dl, MVT::Other, BrCond,
3080 DAG.getBasicBlock(JT.
MBB));
3082 DAG.setRoot(BrCond);
3085 if (JT.
MBB != NextBlock(SwitchBB))
3087 DAG.getBasicBlock(JT.
MBB)));
3089 DAG.setRoot(CopyTo);
3113 if (PtrTy != PtrMemTy)
3129 auto &
DL =
DAG.getDataLayout();
3138 SDValue StackSlotPtr =
DAG.getFrameIndex(FI, PtrTy);
3145 PtrMemTy, dl,
DAG.getEntryNode(), StackSlotPtr,
3163 assert(GuardCheckFn &&
"Guard check function is null");
3174 Entry.IsInReg =
true;
3175 Args.push_back(Entry);
3181 getValue(GuardCheckFn), std::move(Args));
3183 std::pair<SDValue, SDValue> Result = TLI.
LowerCallTo(CLI);
3184 DAG.setRoot(Result.second);
3196 Guard =
DAG.getLoad(PtrMemTy, dl, Chain, GuardPtr,
3202 Guard =
DAG.getPOISON(PtrMemTy);
3211 Guard =
DAG.getLoad(PtrMemTy, dl, Chain, GuardPtr,
3217 Guard =
DAG.getPOISON(PtrMemTy);
3263 auto &
DL =
DAG.getDataLayout();
3271 SDValue StackSlotPtr =
DAG.getFrameIndex(FI, PtrTy);
3277 PtrMemTy, dl,
DAG.getEntryNode(), StackSlotPtr,
3292 if (GuardCheckFn->hasParamAttribute(0, Attribute::AttrKind::InReg))
3293 Entry.IsInReg =
true;
3294 Args.push_back(Entry);
3300 getValue(GuardCheckFn), std::move(Args));
3306 Chain = TLI.
makeLibCall(
DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL, MVT::isVoid,
3329 DAG.getNode(
ISD::SUB, dl, VT, SwitchOp,
DAG.getConstant(
B.First, dl, VT));
3333 bool UsePtrType =
false;
3357 if (!
B.FallthroughUnreachable)
3358 addSuccessorWithProb(SwitchBB,
B.Default,
B.DefaultProb);
3359 addSuccessorWithProb(SwitchBB,
MBB,
B.Prob);
3363 if (!
B.FallthroughUnreachable) {
3372 DAG.getBasicBlock(
B.Default));
3376 if (
MBB != NextBlock(SwitchBB))
3394 if (PopCount == 1) {
3401 }
else if (PopCount == BB.
Range) {
3409 DAG.getConstant(1, dl, VT), ShiftOp);
3413 VT, SwitchVal,
DAG.getConstant(
B.Mask, dl, VT));
3420 addSuccessorWithProb(SwitchBB,
B.TargetBB,
B.ExtraProb);
3422 addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext);
3430 Cmp,
DAG.getBasicBlock(
B.TargetBB));
3433 if (NextMBB != NextBlock(SwitchBB))
3434 BrAnd =
DAG.getNode(
ISD::BR, dl, MVT::Other, BrAnd,
3435 DAG.getBasicBlock(NextMBB));
3440void SelectionDAGBuilder::visitInvoke(
const InvokeInst &
I) {
3458 const Value *Callee(
I.getCalledOperand());
3461 visitInlineAsm(
I, EHPadBB);
3466 case Intrinsic::donothing:
3468 case Intrinsic::seh_try_begin:
3469 case Intrinsic::seh_scope_begin:
3470 case Intrinsic::seh_try_end:
3471 case Intrinsic::seh_scope_end:
3477 case Intrinsic::experimental_patchpoint_void:
3478 case Intrinsic::experimental_patchpoint:
3479 visitPatchpoint(
I, EHPadBB);
3481 case Intrinsic::experimental_gc_statepoint:
3487 case Intrinsic::wasm_throw: {
3489 std::array<SDValue, 4>
Ops = {
3500 case Intrinsic::wasm_rethrow: {
3501 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
3502 std::array<SDValue, 2>
Ops = {
3511 }
else if (
I.hasDeoptState()) {
3532 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
3533 BranchProbability EHPadBBProb =
3539 addSuccessorWithProb(InvokeMBB, Return);
3540 for (
auto &UnwindDest : UnwindDests) {
3541 UnwindDest.first->setIsEHPad();
3542 addSuccessorWithProb(InvokeMBB, UnwindDest.first, UnwindDest.second);
3548 DAG.getBasicBlock(Return)));
3557void SelectionDAGBuilder::visitCallBrIntrinsic(
const CallBrInst &
I) {
3560 DAG.getTargetLoweringInfo().getTgtMemIntrinsic(
3561 Infos,
I,
DAG.getMachineFunction(),
I.getIntrinsicID());
3562 assert(Infos.
empty() &&
"Intrinsic touches memory");
3565 auto [HasChain, OnlyLoad] = getTargetIntrinsicCallProperties(
I);
3568 getTargetIntrinsicOperands(
I, HasChain, OnlyLoad);
3569 SDVTList VTs = getTargetIntrinsicVTList(
I, HasChain);
3573 getTargetNonMemIntrinsicNode(*
I.getType(), HasChain,
Ops, VTs);
3574 Result = handleTargetIntrinsicRet(
I, HasChain, OnlyLoad, Result);
3579void SelectionDAGBuilder::visitCallBr(
const CallBrInst &
I) {
3580 MachineBasicBlock *CallBrMBB =
FuncInfo.MBB;
3582 if (
I.isInlineAsm()) {
3589 assert(!
I.hasOperandBundles() &&
3590 "Can't have operand bundles for intrinsics");
3591 visitCallBrIntrinsic(
I);
3596 SmallPtrSet<BasicBlock *, 8> Dests;
3597 Dests.
insert(
I.getDefaultDest());
3607 if (
I.isInlineAsm()) {
3608 for (BasicBlock *Dest :
I.getIndirectDests()) {
3610 Target->setIsInlineAsmBrIndirectTarget();
3616 Target->setLabelMustBeEmitted();
3618 if (Dests.
insert(Dest).second)
3627 DAG.getBasicBlock(Return)));
3630void SelectionDAGBuilder::visitResume(
const ResumeInst &RI) {
3631 llvm_unreachable(
"SelectionDAGBuilder shouldn't visit resume instructions!");
3634void SelectionDAGBuilder::visitLandingPad(
const LandingPadInst &LP) {
3636 "Call to landingpad not in landing pad!");
3640 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
3645 PersonalityFn) == 0)
3658 assert(ValueVTs.
size() == 2 &&
"Only two-valued landingpads are supported");
3663 if (
FuncInfo.ExceptionPointerVirtReg) {
3664 Ops[0] =
DAG.getZExtOrTrunc(
3665 DAG.getCopyFromReg(
DAG.getEntryNode(), dl,
3672 Ops[1] =
DAG.getZExtOrTrunc(
3673 DAG.getCopyFromReg(
DAG.getEntryNode(), dl,
3680 DAG.getVTList(ValueVTs),
Ops);
3688 if (JTB.first.HeaderBB ==
First)
3689 JTB.first.HeaderBB =
Last;
3702 for (
unsigned i = 0, e =
I.getNumSuccessors(); i != e; ++i) {
3704 bool Inserted =
Done.insert(BB).second;
3709 addSuccessorWithProb(IndirectBrMBB, Succ);
3719 if (!
I.shouldLowerToTrap(
DAG.getTarget().Options.TrapUnreachable,
3720 DAG.getTarget().Options.NoTrapAfterNoreturn))
3726void SelectionDAGBuilder::visitUnary(
const User &
I,
unsigned Opcode) {
3729 Flags.copyFMF(*FPOp);
3732 SDValue UnNodeValue =
DAG.getNode(Opcode,
getCurSDLoc(),
Op.getValueType(),
3737void SelectionDAGBuilder::visitBinary(
const User &
I,
unsigned Opcode) {
3740 Flags.setNoSignedWrap(OFBinOp->hasNoSignedWrap());
3741 Flags.setNoUnsignedWrap(OFBinOp->hasNoUnsignedWrap());
3744 Flags.setExact(ExactOp->isExact());
3746 Flags.setDisjoint(DisjointOp->isDisjoint());
3748 Flags.copyFMF(*FPOp);
3750 SDValue Op1 =
getValue(
I.getOperand(0));
3751 SDValue Op2 =
getValue(
I.getOperand(1));
3757void SelectionDAGBuilder::visitShift(
const User &
I,
unsigned Opcode) {
3758 SDValue Op1 =
getValue(
I.getOperand(0));
3759 SDValue Op2 =
getValue(
I.getOperand(1));
3761 EVT ShiftTy =
DAG.getTargetLoweringInfo().getShiftAmountTy(
3766 if (!
I.getType()->isVectorTy() && Op2.
getValueType() != ShiftTy) {
3768 "Unexpected shift type");
3778 if (
const OverflowingBinaryOperator *OFBinOp =
3780 nuw = OFBinOp->hasNoUnsignedWrap();
3781 nsw = OFBinOp->hasNoSignedWrap();
3783 if (
const PossiblyExactOperator *ExactOp =
3785 exact = ExactOp->isExact();
3788 Flags.setExact(exact);
3789 Flags.setNoSignedWrap(nsw);
3790 Flags.setNoUnsignedWrap(nuw);
3796void SelectionDAGBuilder::visitSDiv(
const User &
I) {
3797 SDValue Op1 =
getValue(
I.getOperand(0));
3798 SDValue Op2 =
getValue(
I.getOperand(1));
3807void SelectionDAGBuilder::visitICmp(
const ICmpInst &
I) {
3809 SDValue Op1 =
getValue(
I.getOperand(0));
3810 SDValue Op2 =
getValue(
I.getOperand(1));
3813 auto &TLI =
DAG.getTargetLoweringInfo();
3826 Flags.setSameSign(
I.hasSameSign());
3828 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3834void SelectionDAGBuilder::visitFCmp(
const FCmpInst &
I) {
3836 SDValue Op1 =
getValue(
I.getOperand(0));
3837 SDValue Op2 =
getValue(
I.getOperand(1));
3841 if (FPMO->hasNoNaNs() ||
3842 (
DAG.isKnownNeverNaN(Op1) &&
DAG.isKnownNeverNaN(Op2)))
3846 Flags.copyFMF(*FPMO);
3848 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3858 return isa<SelectInst>(V);
3862void SelectionDAGBuilder::visitSelect(
const User &
I) {
3866 unsigned NumValues = ValueVTs.
size();
3867 if (NumValues == 0)
return;
3871 SDValue LHSVal =
getValue(
I.getOperand(1));
3872 SDValue RHSVal =
getValue(
I.getOperand(2));
3877 bool IsUnaryAbs =
false;
3878 bool Negate =
false;
3882 Flags.copyFMF(*FPOp);
3884 Flags.setUnpredictable(
3889 EVT VT = ValueVTs[0];
3890 LLVMContext &Ctx = *
DAG.getContext();
3891 auto &TLI =
DAG.getTargetLoweringInfo();
3901 bool UseScalarMinMax = VT.
isVector() &&
3910 switch (SPR.Flavor) {
3919 switch (SPR.NaNBehavior) {
3926 Flags.setNoSignedZeros(
true);
3934 switch (SPR.NaNBehavior) {
3941 Flags.setNoSignedZeros(
true);
3977 for (
unsigned i = 0; i != NumValues; ++i) {
3986 for (
unsigned i = 0; i != NumValues; ++i) {
4000void SelectionDAGBuilder::visitTrunc(
const User &
I) {
4003 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4007 Flags.setNoSignedWrap(Trunc->hasNoSignedWrap());
4008 Flags.setNoUnsignedWrap(Trunc->hasNoUnsignedWrap());
4014void SelectionDAGBuilder::visitZExt(
const User &
I) {
4018 auto &TLI =
DAG.getTargetLoweringInfo();
4023 Flags.setNonNeg(PNI->hasNonNeg());
4028 if (
Flags.hasNonNeg() &&
4037void SelectionDAGBuilder::visitSExt(
const User &
I) {
4041 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4046void SelectionDAGBuilder::visitFPTrunc(
const User &
I) {
4052 Flags.copyFMF(*FPOp);
4053 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4056 DAG.getTargetConstant(
4061void SelectionDAGBuilder::visitFPExt(
const User &
I) {
4064 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4068 Flags.copyFMF(*FPOp);
4072void SelectionDAGBuilder::visitFPToUI(
const User &
I) {
4075 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4080void SelectionDAGBuilder::visitFPToSI(
const User &
I) {
4083 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4088void SelectionDAGBuilder::visitUIToFP(
const User &
I) {
4091 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4100void SelectionDAGBuilder::visitSIToFP(
const User &
I) {
4103 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4111void SelectionDAGBuilder::visitPtrToAddr(
const User &
I) {
4114 const auto &TLI =
DAG.getTargetLoweringInfo();
4122void SelectionDAGBuilder::visitPtrToInt(
const User &
I) {
4126 auto &TLI =
DAG.getTargetLoweringInfo();
4127 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4136void SelectionDAGBuilder::visitIntToPtr(
const User &
I) {
4140 auto &TLI =
DAG.getTargetLoweringInfo();
4148void SelectionDAGBuilder::visitBitCast(
const User &
I) {
4151 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4156 if (DestVT !=
N.getValueType())
4164 setValue(&
I,
DAG.getConstant(
C->getValue(), dl, DestVT,
false,
4170void SelectionDAGBuilder::visitAddrSpaceCast(
const User &
I) {
4171 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4172 const Value *
SV =
I.getOperand(0);
4176 unsigned SrcAS =
SV->getType()->getPointerAddressSpace();
4177 unsigned DestAS =
I.getType()->getPointerAddressSpace();
4179 if (!TM.isNoopAddrSpaceCast(SrcAS, DestAS)) {
4182 Flags.setNonNull(ASC->hasNonNull());
4189void SelectionDAGBuilder::visitInsertElement(
const User &
I) {
4190 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4191 SDValue InVec =
getValue(
I.getOperand(0));
4192 SDValue InVal =
getValue(
I.getOperand(1));
4197 InVec, InVal, InIdx));
4200void SelectionDAGBuilder::visitExtractElement(
const User &
I) {
4201 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4202 SDValue InVec =
getValue(
I.getOperand(0));
4210void SelectionDAGBuilder::visitShuffleVector(
const User &
I) {
4211 SDValue Src1 =
getValue(
I.getOperand(0));
4212 SDValue Src2 =
getValue(
I.getOperand(1));
4215 Mask = SVI->getShuffleMask();
4219 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4227 DAG.getVectorIdxConstant(0,
DL));
4238 unsigned MaskNumElts =
Mask.size();
4240 if (SrcNumElts == MaskNumElts) {
4246 if (SrcNumElts < MaskNumElts) {
4250 if (MaskNumElts % SrcNumElts == 0) {
4254 unsigned NumConcat = MaskNumElts / SrcNumElts;
4255 bool IsConcat =
true;
4256 SmallVector<int, 8> ConcatSrcs(NumConcat, -1);
4257 for (
unsigned i = 0; i != MaskNumElts; ++i) {
4263 if ((Idx % SrcNumElts != (i % SrcNumElts)) ||
4264 (ConcatSrcs[i / SrcNumElts] >= 0 &&
4265 ConcatSrcs[i / SrcNumElts] != (
int)(Idx / SrcNumElts))) {
4270 ConcatSrcs[i / SrcNumElts] = Idx / SrcNumElts;
4277 for (
auto Src : ConcatSrcs) {
4290 unsigned PaddedMaskNumElts =
alignTo(MaskNumElts, SrcNumElts);
4291 unsigned NumConcat = PaddedMaskNumElts / SrcNumElts;
4296 SDValue UndefVal =
DAG.getUNDEF(SrcVT);
4307 SmallVector<int, 8> MappedOps(PaddedMaskNumElts, -1);
4308 for (
unsigned i = 0; i != MaskNumElts; ++i) {
4310 if (Idx >= (
int)SrcNumElts)
4311 Idx -= SrcNumElts - PaddedMaskNumElts;
4315 SDValue
Result =
DAG.getVectorShuffle(PaddedVT,
DL, Src1, Src2, MappedOps);
4319 if (MaskNumElts != PaddedMaskNumElts)
4321 DAG.getVectorIdxConstant(0,
DL));
4327 assert(SrcNumElts > MaskNumElts);
4331 int StartIdx[2] = {-1, -1};
4332 bool CanExtract =
true;
4333 for (
int Idx : Mask) {
4338 if (Idx >= (
int)SrcNumElts) {
4346 int NewStartIdx =
alignDown(Idx, MaskNumElts);
4347 if (NewStartIdx + MaskNumElts > SrcNumElts ||
4348 (StartIdx[Input] >= 0 && StartIdx[Input] != NewStartIdx))
4352 StartIdx[Input] = NewStartIdx;
4355 if (StartIdx[0] < 0 && StartIdx[1] < 0) {
4361 for (
unsigned Input = 0; Input < 2; ++Input) {
4362 SDValue &Src = Input == 0 ? Src1 : Src2;
4363 if (StartIdx[Input] < 0)
4364 Src =
DAG.getUNDEF(VT);
4367 DAG.getVectorIdxConstant(StartIdx[Input],
DL));
4372 SmallVector<int, 8> MappedOps(Mask);
4373 for (
int &Idx : MappedOps) {
4374 if (Idx >= (
int)SrcNumElts)
4375 Idx -= SrcNumElts + StartIdx[1] - MaskNumElts;
4380 setValue(&
I,
DAG.getVectorShuffle(VT,
DL, Src1, Src2, MappedOps));
4389 for (
int Idx : Mask) {
4393 Res =
DAG.getUNDEF(EltVT);
4395 SDValue &Src = Idx < (int)SrcNumElts ? Src1 : Src2;
4396 if (Idx >= (
int)SrcNumElts) Idx -= SrcNumElts;
4399 DAG.getVectorIdxConstant(Idx,
DL));
4409 ArrayRef<unsigned> Indices =
I.getIndices();
4410 const Value *Op0 =
I.getOperand(0);
4412 Type *AggTy =
I.getType();
4419 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4425 unsigned NumAggValues = AggValueVTs.
size();
4426 unsigned NumValValues = ValValueVTs.
size();
4430 if (!NumAggValues) {
4438 for (; i != LinearIndex; ++i)
4439 Values[i] = IntoUndef ?
DAG.getUNDEF(AggValueVTs[i]) :
4444 for (; i != LinearIndex + NumValValues; ++i)
4445 Values[i] = FromUndef ?
DAG.getUNDEF(AggValueVTs[i]) :
4449 for (; i != NumAggValues; ++i)
4450 Values[i] = IntoUndef ?
DAG.getUNDEF(AggValueVTs[i]) :
4458 ArrayRef<unsigned> Indices =
I.getIndices();
4459 const Value *Op0 =
I.getOperand(0);
4461 Type *ValTy =
I.getType();
4466 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4470 unsigned NumValValues = ValValueVTs.
size();
4473 if (!NumValValues) {
4482 for (
unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
4483 Values[i - LinearIndex] =
4492void SelectionDAGBuilder::visitGetElementPtr(
const User &
I) {
4493 Value *Op0 =
I.getOperand(0);
4499 auto &TLI =
DAG.getTargetLoweringInfo();
4504 bool IsVectorGEP =
I.getType()->isVectorTy();
4505 ElementCount VectorElementCount =
4511 const Value *Idx = GTI.getOperand();
4512 if (StructType *StTy = GTI.getStructTypeOrNull()) {
4517 DAG.getDataLayout().getStructLayout(StTy)->getElementOffset(
Field);
4527 N =
DAG.getMemBasePlusOffset(
4528 N,
DAG.getConstant(
Offset, dl,
N.getValueType()), dl, Flags);
4534 unsigned IdxSize =
DAG.getDataLayout().getIndexSizeInBits(AS);
4536 TypeSize ElementSize =
4537 GTI.getSequentialElementStride(
DAG.getDataLayout());
4542 bool ElementScalable = ElementSize.
isScalable();
4548 C =
C->getSplatValue();
4551 if (CI && CI->isZero())
4553 if (CI && !ElementScalable) {
4554 APInt Offs = ElementMul * CI->getValue().sextOrTrunc(IdxSize);
4557 if (
N.getValueType().isVector())
4558 OffsVal =
DAG.getConstant(
4561 OffsVal =
DAG.getConstant(Offs, dl, IdxTy);
4568 Flags.setNoUnsignedWrap(
true);
4571 OffsVal =
DAG.getSExtOrTrunc(OffsVal, dl,
N.getValueType());
4573 N =
DAG.getMemBasePlusOffset(
N, OffsVal, dl, Flags);
4581 if (
N.getValueType().isVector()) {
4583 VectorElementCount);
4584 IdxN =
DAG.getSplat(VT, dl, IdxN);
4588 N =
DAG.getSplat(VT, dl,
N);
4594 IdxN =
DAG.getSExtOrTrunc(IdxN, dl,
N.getValueType());
4596 SDNodeFlags ScaleFlags;
4605 if (ElementScalable) {
4606 EVT VScaleTy =
N.getValueType().getScalarType();
4607 SDValue VScale =
DAG.getNode(
4609 DAG.getConstant(ElementMul.getZExtValue(), dl, VScaleTy));
4610 if (
N.getValueType().isVector())
4611 VScale =
DAG.getSplatVector(
N.getValueType(), dl, VScale);
4612 IdxN =
DAG.getNode(
ISD::MUL, dl,
N.getValueType(), IdxN, VScale,
4617 if (ElementMul != 1) {
4618 if (ElementMul.isPowerOf2()) {
4619 unsigned Amt = ElementMul.logBase2();
4622 DAG.getShiftAmountConstant(Amt,
N.getValueType(), dl),
4625 SDValue Scale =
DAG.getConstant(ElementMul.getZExtValue(), dl,
4627 IdxN =
DAG.getNode(
ISD::MUL, dl,
N.getValueType(), IdxN, Scale,
4637 SDNodeFlags AddFlags;
4641 N =
DAG.getMemBasePlusOffset(
N, IdxN, dl, AddFlags);
4645 if (IsVectorGEP && !
N.getValueType().isVector()) {
4647 N =
DAG.getSplat(VT, dl,
N);
4658 N =
DAG.getPtrExtendInReg(
N, dl, PtrMemTy);
4663void SelectionDAGBuilder::visitAlloca(
const AllocaInst &
I) {
4670 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4671 auto &
DL =
DAG.getDataLayout();
4672 TypeSize TySize =
I.getAllocationBaseSize(
DL);
4675 SDValue AllocSize =
getValue(
I.getArraySize());
4679 AllocSize =
DAG.getZExtOrTrunc(AllocSize, dl, IntPtr);
4681 AllocSize =
DAG.getNode(
4683 DAG.getZExtOrTrunc(
DAG.getTypeSize(dl, MVT::i64, TySize), dl, IntPtr));
4688 Align StackAlign =
DAG.getSubtarget().getFrameLowering()->getStackAlign();
4689 if (*Alignment <= StackAlign)
4697 DAG.getConstant(StackAlignMask, dl, IntPtr),
4702 DAG.getSignedConstant(~StackAlignMask, dl, IntPtr));
4706 DAG.getConstant(Alignment ?
Alignment->value() : 0, dl, IntPtr)};
4716 return I.getMetadata(LLVMContext::MD_range);
4721 if (std::optional<ConstantRange> CR = CB->getRange())
4725 return std::nullopt;
4730 return CB->getRetNoFPClass();
4734void SelectionDAGBuilder::visitLoad(
const LoadInst &
I) {
4736 return visitAtomicLoad(
I);
4738 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4739 const Value *
SV =
I.getOperand(0);
4744 if (Arg->hasSwiftErrorAttr())
4745 return visitLoadFromSwiftError(
I);
4749 if (Alloca->isSwiftError())
4750 return visitLoadFromSwiftError(
I);
4756 Type *Ty =
I.getType();
4760 unsigned NumValues = ValueVTs.
size();
4765 AAMDNodes AAInfo =
I.getAAMetadata();
4768 bool isVolatile =
I.isVolatile();
4773 bool ConstantMemory =
false;
4780 BatchAA->pointsToConstantMemory(MemoryLocation(
4785 Root =
DAG.getEntryNode();
4786 ConstantMemory =
true;
4790 Root =
DAG.getRoot();
4801 unsigned ChainI = 0;
4802 for (
unsigned i = 0; i != NumValues; ++i, ++ChainI) {
4818 MachinePointerInfo PtrInfo =
4820 ? MachinePointerInfo(SV, Offsets[i].getKnownMinValue())
4821 : MachinePointerInfo();
4823 SDValue
A =
DAG.getObjectPtrOffset(dl, Ptr, Offsets[i]);
4825 DAG.getLoad(MemVTs[i], dl, Root,
A, PtrInfo, Alignment, MMOFlags,
4826 MMOMetadata(AAInfo, Ranges, MemCacheHint));
4827 Chains[ChainI] =
L.getValue(1);
4829 if (MemVTs[i] != ValueVTs[i])
4830 L =
DAG.getPtrExtOrTrunc(L, dl, ValueVTs[i]);
4832 if (MDNode *NoFPClassMD =
I.getMetadata(LLVMContext::MD_nofpclass)) {
4833 uint64_t FPTestInt =
4835 cast<ConstantAsMetadata>(NoFPClassMD->getOperand(0))->getValue())
4837 if (FPTestInt != fcNone) {
4838 SDValue FPTestConst =
4839 DAG.getTargetConstant(FPTestInt, SDLoc(), MVT::i32);
4840 L = DAG.getNode(ISD::AssertNoFPClass, dl, L.getValueType(), L,
4847 if (!ConstantMemory) {
4853 PendingLoads.push_back(Chain);
4857 DAG.getVTList(ValueVTs),
Values));
4860void SelectionDAGBuilder::visitStoreToSwiftError(
const StoreInst &
I) {
4861 assert(
DAG.getTargetLoweringInfo().supportSwiftError() &&
4862 "call visitStoreToSwiftError when backend supports swifterror");
4865 SmallVector<uint64_t, 4>
Offsets;
4866 const Value *SrcV =
I.getOperand(0);
4868 SrcV->
getType(), ValueVTs,
nullptr, &Offsets, 0);
4869 assert(ValueVTs.
size() == 1 && Offsets[0] == 0 &&
4870 "expect a single EVT for swifterror");
4879 SDValue(Src.getNode(), Src.getResNo()));
4880 DAG.setRoot(CopyNode);
4883void SelectionDAGBuilder::visitLoadFromSwiftError(
const LoadInst &
I) {
4884 assert(
DAG.getTargetLoweringInfo().supportSwiftError() &&
4885 "call visitLoadFromSwiftError when backend supports swifterror");
4888 !
I.hasMetadata(LLVMContext::MD_nontemporal) &&
4889 !
I.hasMetadata(LLVMContext::MD_invariant_load) &&
4890 "Support volatile, non temporal, invariant for load_from_swift_error");
4892 const Value *
SV =
I.getOperand(0);
4893 Type *Ty =
I.getType();
4896 !
BatchAA->pointsToConstantMemory(MemoryLocation(
4898 I.getAAMetadata()))) &&
4899 "load_from_swift_error should not be constant memory");
4902 SmallVector<uint64_t, 4>
Offsets;
4904 ValueVTs,
nullptr, &Offsets, 0);
4905 assert(ValueVTs.
size() == 1 && Offsets[0] == 0 &&
4906 "expect a single EVT for swifterror");
4909 SDValue
L =
DAG.getCopyFromReg(
4916void SelectionDAGBuilder::visitStore(
const StoreInst &
I) {
4918 return visitAtomicStore(
I);
4920 const Value *SrcV =
I.getOperand(0);
4921 const Value *PtrV =
I.getOperand(1);
4923 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4928 if (Arg->hasSwiftErrorAttr())
4929 return visitStoreToSwiftError(
I);
4933 if (Alloca->isSwiftError())
4934 return visitStoreToSwiftError(
I);
4941 SrcV->
getType(), ValueVTs, &MemVTs, &Offsets);
4942 unsigned NumValues = ValueVTs.
size();
4956 AAMDNodes AAInfo =
I.getAAMetadata();
4957 const MDNode *MemCacheHint =
4962 unsigned ChainI = 0;
4963 for (
unsigned i = 0; i != NumValues; ++i, ++ChainI) {
4973 MachinePointerInfo PtrInfo =
4975 ? MachinePointerInfo(PtrV, Offsets[i].getKnownMinValue())
4976 : MachinePointerInfo();
4978 SDValue
Add =
DAG.getObjectPtrOffset(dl, Ptr, Offsets[i]);
4979 SDValue Val = SDValue(Src.getNode(), Src.getResNo() + i);
4980 if (MemVTs[i] != ValueVTs[i])
4981 Val =
DAG.getPtrExtOrTrunc(Val, dl, MemVTs[i]);
4983 DAG.getStore(Root, dl, Val,
Add, PtrInfo, Alignment, MMOFlags,
4984 MMOMetadata(AAInfo,
nullptr, MemCacheHint));
4985 Chains[ChainI] = St;
4991 DAG.setRoot(StoreNode);
4994void SelectionDAGBuilder::visitMaskedStore(
const CallInst &
I,
4995 bool IsCompressing) {
4998 Value *Src0Operand =
I.getArgOperand(0);
4999 Value *PtrOperand =
I.getArgOperand(1);
5000 Value *MaskOperand =
I.getArgOperand(2);
5003 SDValue Ptr =
getValue(PtrOperand);
5004 SDValue Src0 =
getValue(Src0Operand);
5010 const auto &TLI =
DAG.getTargetLoweringInfo();
5014 if (
I.hasMetadata(LLVMContext::MD_nontemporal))
5019 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5020 MachinePointerInfo(PtrOperand), MMOFlags,
5022 MMOMetadata(
I.getAAMetadata(),
nullptr, MemCacheHint));
5025 !IsCompressing &&
TTI->hasConditionalLoadStoreForType(
5026 I.getArgOperand(0)->getType(),
true)
5032 DAG.setRoot(StoreNode);
5062 C =
C->getSplatValue();
5076 if (!
GEP ||
GEP->getParent() != CurBB)
5079 if (
GEP->getNumOperands() != 2)
5082 const Value *BasePtr =
GEP->getPointerOperand();
5083 const Value *IndexVal =
GEP->getOperand(
GEP->getNumOperands() - 1);
5089 TypeSize ScaleVal =
DL.getTypeAllocSize(
GEP->getResultElementType());
5094 if (ScaleVal != 1 &&
5106void SelectionDAGBuilder::visitMaskedScatter(
const CallInst &
I) {
5110 const Value *Ptr =
I.getArgOperand(1);
5111 SDValue Src0 =
getValue(
I.getArgOperand(0));
5115 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5124 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5134 EVT IdxVT =
Index.getValueType();
5142 SDValue Scatter =
DAG.getMaskedScatter(
DAG.getVTList(MVT::Other), VT, sdl,
5144 DAG.setRoot(Scatter);
5148void SelectionDAGBuilder::visitMaskedLoad(
const CallInst &
I,
bool IsExpanding) {
5151 Value *PtrOperand =
I.getArgOperand(0);
5152 Value *MaskOperand =
I.getArgOperand(1);
5153 Value *Src0Operand =
I.getArgOperand(2);
5156 SDValue Ptr =
getValue(PtrOperand);
5157 SDValue Src0 =
getValue(Src0Operand);
5162 AAMDNodes AAInfo =
I.getAAMetadata();
5170 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
5172 const auto &TLI =
DAG.getTargetLoweringInfo();
5176 if (
I.hasMetadata(LLVMContext::MD_nontemporal))
5178 if (
I.hasMetadata(LLVMContext::MD_invariant_load))
5181 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5182 MachinePointerInfo(PtrOperand), MMOFlags,
5184 MMOMetadata(AAInfo, Ranges, MemCacheHint));
5191 TTI->hasConditionalLoadStoreForType(Src0Operand->
getType(),
5196 DAG.getMaskedLoad(VT, sdl, InChain, Ptr,
Offset, Mask, Src0, VT, MMO,
5203void SelectionDAGBuilder::visitSpeculativeLoad(
const CallInst &
I) {
5205 Value *PtrOperand =
I.getArgOperand(0);
5208 SDValue Ptr =
getValue(PtrOperand);
5210 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5213 AAMDNodes AAInfo =
I.getAAMetadata();
5215 SDValue InChain =
DAG.getRoot();
5221 if (
I.hasMetadata(LLVMContext::MD_nontemporal))
5223 if (
I.hasMetadata(LLVMContext::MD_invariant_load))
5226 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5227 MachinePointerInfo(PtrOperand), MMOFlags,
5230 SDValue
Load =
DAG.getLoad(VT, sdl, InChain, Ptr, MMO);
5235void SelectionDAGBuilder::visitMaskedGather(
const CallInst &
I) {
5239 const Value *Ptr =
I.getArgOperand(0);
5240 SDValue Src0 =
getValue(
I.getArgOperand(2));
5243 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5249 SDValue Root =
DAG.getRoot();
5256 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5259 MMOMetadata(
I.getAAMetadata(), Ranges));
5268 EVT IdxVT =
Index.getValueType();
5277 DAG.getMaskedGather(
DAG.getVTList(VT, MVT::Other), VT, sdl,
Ops, MMO,
5293 SDVTList VTs =
DAG.getVTList(MemVT, MVT::i1, MVT::Other);
5295 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5301 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5302 I.getAlign(), MMOMetadata(AAMDNodes(),
nullptr, MemCacheHint),
5303 SSID, SuccessOrdering, FailureOrdering);
5306 dl, MemVT, VTs, InChain,
5311 SDValue OutChain =
L.getValue(2);
5314 DAG.setRoot(OutChain);
5317void SelectionDAGBuilder::visitAtomicRMW(
const AtomicRMWInst &
I) {
5320 switch (
I.getOperation()) {
5368 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5374 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5375 I.getAlign(), MMOMetadata(AAMDNodes(),
nullptr, MemCacheHint),
5379 DAG.getAtomic(NT, dl, MemVT, InChain,
5383 SDValue OutChain =
L.getValue(1);
5386 DAG.setRoot(OutChain);
5389void SelectionDAGBuilder::visitFence(
const FenceInst &
I) {
5391 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5394 Ops[1] =
DAG.getTargetConstant((
unsigned)
I.getOrdering(), dl,
5396 Ops[2] =
DAG.getTargetConstant(
I.getSyncScopeID(), dl,
5403void SelectionDAGBuilder::visitAtomicLoad(
const LoadInst &
I) {
5410 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5421 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5422 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5423 I.getAlign(), MMOMetadata(AAMDNodes(), Ranges, MemCacheHint), SSID,
5428 SDValue Ptr =
getValue(
I.getPointerOperand());
5432 SDValue OutChain =
L.getValue(1);
5434 L =
DAG.getPtrExtOrTrunc(L, dl, VT);
5437 DAG.setRoot(OutChain);
5440void SelectionDAGBuilder::visitAtomicStore(
const StoreInst &
I) {
5448 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5458 const MDNode *MemCacheHint =
5461 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5462 I.getAlign(), MMOMetadata(AAMDNodes(),
nullptr, MemCacheHint),
5465 SDValue Val =
getValue(
I.getValueOperand());
5467 Val =
DAG.getPtrExtOrTrunc(Val, dl, MemVT);
5468 SDValue Ptr =
getValue(
I.getPointerOperand());
5474 DAG.setRoot(OutChain);
5482std::pair<bool, bool>
5483SelectionDAGBuilder::getTargetIntrinsicCallProperties(
const CallBase &
I) {
5485 bool HasChain = !
F->doesNotAccessMemory();
5487 HasChain &&
F->onlyReadsMemory() &&
F->willReturn() &&
F->doesNotThrow();
5489 return {HasChain, OnlyLoad};
5493 const CallBase &
I,
bool HasChain,
bool OnlyLoad,
5495 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5502 Ops.push_back(
DAG.getRoot());
5515 for (
unsigned i = 0, e =
I.arg_size(); i != e; ++i) {
5516 const Value *Arg =
I.getArgOperand(i);
5517 if (!
I.paramHasAttr(i, Attribute::ImmArg)) {
5525 assert(CI->getBitWidth() <= 64 &&
5526 "large intrinsic immediates not handled");
5527 Ops.push_back(
DAG.getTargetConstant(*CI, SDLoc(), VT));
5534 if (std::optional<OperandBundleUse> Bundle =
5536 auto *Sym = Bundle->Inputs[0].get();
5539 Ops.push_back(SDSym);
5542 if (std::optional<OperandBundleUse> Bundle =
5544 Value *Token = Bundle->Inputs[0].get();
5545 SDValue ConvControlToken =
getValue(Token);
5546 assert(
Ops.back().getValueType() != MVT::Glue &&
5547 "Did not expect another glue node here.");
5550 Ops.push_back(ConvControlToken);
5558 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5566 return DAG.getVTList(ValueVTs);
5570SDValue SelectionDAGBuilder::getTargetNonMemIntrinsicNode(
5586 SDValue Chain =
Result.getValue(
Result.getNode()->getNumValues() - 1);
5593 if (
I.getType()->isVoidTy())
5608void SelectionDAGBuilder::visitTargetIntrinsic(
const CallInst &
I,
5610 auto [HasChain, OnlyLoad] = getTargetIntrinsicCallProperties(
I);
5613 if (!
DAG.getMachineFunction().getSubtarget().isIntrinsicSupported(
5616 DAG.getContext()->diagnose(DiagnosticInfoUnsupportedTargetIntrinsic(
5617 *
I.getFunction(), IntrinsicID,
DL.getDebugLoc()));
5622 if (HasChain && !OnlyLoad)
5631 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5634 TargetLowering::IntrinsicInfo *
Info = !Infos.
empty() ? &Infos[0] :
nullptr;
5637 getTargetIntrinsicOperands(
I, HasChain, OnlyLoad, Info);
5638 SDVTList VTs = getTargetIntrinsicVTList(
I, HasChain);
5643 Flags.copyFMF(*FPMO);
5644 SelectionDAG::FlagInserter FlagsInserter(
DAG, Flags);
5651 if (!Infos.
empty()) {
5656 for (
const auto &Info : Infos) {
5659 MachinePointerInfo MPI;
5661 MPI = MachinePointerInfo(
Info.ptrVal,
Info.offset);
5662 else if (
Info.fallbackAddressSpace)
5663 MPI = MachinePointerInfo(*
Info.fallbackAddressSpace);
5664 EVT MemVT =
Info.memVT;
5666 if (
Size.hasValue() && !
Size.getValue())
5670 MPI,
Info.flags,
Size, Alignment,
I.getAAMetadata(),
Info.ssid,
5678 Result = getTargetNonMemIntrinsicNode(*
I.getType(), HasChain,
Ops, VTs);
5681 Result = handleTargetIntrinsicRet(
I, HasChain, OnlyLoad, Result);
5738 SDValue TwoToFractionalPartOfX;
5815 if (
Op.getValueType() == MVT::f32 &&
5839 if (
Op.getValueType() == MVT::f32 &&
5938 if (
Op.getValueType() == MVT::f32 &&
6022 return DAG.
getNode(
ISD::FADD, dl, MVT::f32, LogOfExponent, Log2ofMantissa);
6035 if (
Op.getValueType() == MVT::f32 &&
6112 return DAG.
getNode(
ISD::FADD, dl, MVT::f32, LogOfExponent, Log10ofMantissa);
6123 if (
Op.getValueType() == MVT::f32 &&
6136 bool IsExp10 =
false;
6137 if (
LHS.getValueType() == MVT::f32 &&
RHS.getValueType() == MVT::f32 &&
6141 IsExp10 = LHSC->isExactlyValue(Ten);
6168 unsigned Val = RHSC->getSExtValue();
6197 CurSquare, CurSquare);
6202 if (RHSC->getSExtValue() < 0)
6216 EVT VT =
LHS.getValueType();
6239 if ((ScaleInt > 0 || (Saturating &&
Signed)) &&
6243 Opcode, VT, ScaleInt);
6278 switch (
N.getOpcode()) {
6282 Op.getValueType().getSizeInBits());
6307bool SelectionDAGBuilder::EmitFuncArgumentDbgValue(
6315 const TargetInstrInfo *
TII =
DAG.getSubtarget().getInstrInfo();
6319 auto MakeVRegDbgValue = [&](
Register Reg, DIExpression *FragExpr,
6324 auto &Inst =
TII->get(TargetOpcode::DBG_INSTR_REF);
6331 auto *NewDIExpr = FragExpr;
6338 return BuildMI(MF,
DL, Inst,
false, MOs, Variable, NewDIExpr);
6341 auto &Inst =
TII->get(TargetOpcode::DBG_VALUE);
6342 return BuildMI(MF,
DL, Inst, Indirect,
Reg, Variable, FragExpr);
6346 if (Kind == FuncArgumentDbgValueKind::Value) {
6351 if (!IsInEntryBlock)
6367 bool VariableIsFunctionInputArg =
Variable->isParameter() &&
6368 !
DL->getInlinedAt();
6370 if (!IsInPrologue && !VariableIsFunctionInputArg)
6404 if (VariableIsFunctionInputArg) {
6406 if (ArgNo >=
FuncInfo.DescribedArgs.size())
6407 FuncInfo.DescribedArgs.resize(ArgNo + 1,
false);
6408 else if (!IsInPrologue &&
FuncInfo.DescribedArgs.test(ArgNo))
6409 return !NodeMap[
V].getNode();
6414 bool IsIndirect =
false;
6415 std::optional<MachineOperand>
Op;
6417 int FI =
FuncInfo.getArgumentFrameIndex(Arg);
6418 if (FI != std::numeric_limits<int>::max())
6422 if (!
Op &&
N.getNode()) {
6425 if (ArgRegsAndSizes.
size() == 1)
6426 Reg = ArgRegsAndSizes.
front().first;
6429 MachineRegisterInfo &RegInfo = MF.
getRegInfo();
6436 IsIndirect =
Kind != FuncArgumentDbgValueKind::Value;
6440 if (!
Op &&
N.getNode()) {
6444 if (FrameIndexSDNode *FINode =
6451 auto splitMultiRegDbgValue =
6464 uint64_t ExprFragmentSizeInBits = ExprFragmentInfo->SizeInBits;
6467 if (
Offset >= ExprFragmentSizeInBits)
6471 if (
Offset + RegFragmentSizeInBits > ExprFragmentSizeInBits) {
6472 RegFragmentSizeInBits = ExprFragmentSizeInBits -
Offset;
6477 Expr,
Offset, RegFragmentSizeInBits);
6481 if (!FragmentExpr) {
6482 SDDbgValue *SDV =
DAG.getConstantDbgValue(
6484 DAG.AddDbgValue(SDV,
false);
6487 MachineInstr *NewMI = MakeVRegDbgValue(
6488 Reg, *FragmentExpr, Kind != FuncArgumentDbgValueKind::Value);
6489 FuncInfo.ArgDbgValues.push_back(NewMI);
6498 if (VMI !=
FuncInfo.ValueMap.end()) {
6499 const auto &TLI =
DAG.getTargetLoweringInfo();
6500 RegsForValue RFV(
V->getContext(), TLI,
DAG.getDataLayout(), VMI->second,
6501 V->getType(), std::nullopt);
6502 if (RFV.occupiesMultipleRegs())
6503 return splitMultiRegDbgValue(RFV.getRegsAndSizes());
6506 IsIndirect =
Kind != FuncArgumentDbgValueKind::Value;
6507 }
else if (ArgRegsAndSizes.
size() > 1) {
6510 return splitMultiRegDbgValue(ArgRegsAndSizes);
6518 "Expected inlined-at fields to agree");
6519 MachineInstr *NewMI =
nullptr;
6522 NewMI = MakeVRegDbgValue(
Op->getReg(), Expr, IsIndirect);
6524 NewMI =
BuildMI(MF,
DL,
TII->get(TargetOpcode::DBG_VALUE),
true, *
Op,
6528 FuncInfo.ArgDbgValues.push_back(NewMI);
6537 unsigned DbgSDNodeOrder) {
6549 return DAG.getFrameIndexDbgValue(Variable, Expr, FISDN->getIndex(),
6550 false, dl, DbgSDNodeOrder);
6552 return DAG.getDbgValue(Variable, Expr,
N.getNode(),
N.getResNo(),
6553 false, dl, DbgSDNodeOrder);
6558 case Intrinsic::smul_fix:
6560 case Intrinsic::umul_fix:
6562 case Intrinsic::smul_fix_sat:
6564 case Intrinsic::umul_fix_sat:
6566 case Intrinsic::sdiv_fix:
6568 case Intrinsic::udiv_fix:
6570 case Intrinsic::sdiv_fix_sat:
6572 case Intrinsic::udiv_fix_sat:
6585 "expected call_preallocated_setup Value");
6586 for (
const auto *U : PreallocatedSetup->
users()) {
6588 const Function *Fn = UseCall->getCalledFunction();
6589 if (!Fn || Fn->
getIntrinsicID() != Intrinsic::call_preallocated_arg) {
6599bool SelectionDAGBuilder::visitEntryValueDbgValue(
6609 auto ArgIt =
FuncInfo.ValueMap.find(Arg);
6610 if (ArgIt ==
FuncInfo.ValueMap.end()) {
6612 dbgs() <<
"Dropping dbg.value: expression is entry_value but "
6613 "couldn't find an associated register for the Argument\n");
6616 Register ArgVReg = ArgIt->getSecond();
6618 for (
auto [PhysReg, VirtReg] :
FuncInfo.RegInfo->liveins())
6619 if (ArgVReg == VirtReg || ArgVReg == PhysReg) {
6620 SDDbgValue *SDV =
DAG.getVRegDbgValue(
6621 Variable, Expr, PhysReg,
false , DbgLoc, SDNodeOrder);
6622 DAG.AddDbgValue(SDV,
false );
6625 LLVM_DEBUG(
dbgs() <<
"Dropping dbg.value: expression is entry_value but "
6626 "couldn't find a physical register\n");
6631void SelectionDAGBuilder::visitConvergenceControl(
const CallInst &
I,
6634 switch (Intrinsic) {
6635 case Intrinsic::experimental_convergence_anchor:
6638 case Intrinsic::experimental_convergence_entry:
6641 case Intrinsic::experimental_convergence_loop: {
6643 auto *Token = Bundle->Inputs[0].get();
6651void SelectionDAGBuilder::visitVectorHistogram(
const CallInst &
I,
6652 unsigned IntrinsicID) {
6655 assert(IntrinsicID == Intrinsic::experimental_vector_histogram_add &&
6656 "Tried to lower unsupported histogram type");
6659 SDValue Inc =
getValue(
I.getOperand(1));
6662 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
6663 DataLayout TargetDL =
DAG.getDataLayout();
6669 SDValue Root =
DAG.getRoot();
6678 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
6679 MachinePointerInfo(AS),
6682 MMOMetadata(
I.getAAMetadata(), Ranges));
6691 EVT IdxVT =
Index.getValueType();
6702 SDValue
ID =
DAG.getTargetConstant(IntrinsicID, sdl, MVT::i32);
6705 SDValue Histogram =
DAG.getMaskedHistogram(
DAG.getVTList(MVT::Other), VT, sdl,
6709 DAG.setRoot(Histogram);
6712void SelectionDAGBuilder::visitVectorExtractLastActive(
const CallInst &
I,
6714 assert(Intrinsic == Intrinsic::experimental_vector_extract_last_active &&
6715 "Tried lowering invalid vector extract last");
6717 const DataLayout &Layout =
DAG.getDataLayout();
6721 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
6731 EVT BoolVT =
Mask.getValueType().getScalarType();
6733 Result =
DAG.getSelect(sdl, ResVT, AnyActive, Result, PassThru);
6740void SelectionDAGBuilder::visitIntrinsicCall(
const CallInst &
I,
6742 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
6749 Flags.copyFMF(*FPOp);
6751 switch (Intrinsic) {
6754 visitTargetIntrinsic(
I, Intrinsic);
6756 case Intrinsic::vscale: {
6761 case Intrinsic::vastart: visitVAStart(
I);
return;
6762 case Intrinsic::vaend: visitVAEnd(
I);
return;
6763 case Intrinsic::vacopy: visitVACopy(
I);
return;
6764 case Intrinsic::returnaddress:
6769 case Intrinsic::addressofreturnaddress:
6774 case Intrinsic::sponentry:
6779 case Intrinsic::frameaddress:
6784 case Intrinsic::read_volatile_register:
6785 case Intrinsic::read_register: {
6786 Value *
Reg =
I.getArgOperand(0);
6792 DAG.getVTList(VT, MVT::Other), Chain,
RegName);
6797 case Intrinsic::write_register: {
6798 Value *
Reg =
I.getArgOperand(0);
6799 Value *RegValue =
I.getArgOperand(1);
6807 case Intrinsic::write_volatile_register: {
6808 Value *
Reg =
I.getArgOperand(0);
6809 Value *RegValue =
I.getArgOperand(1);
6826 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
6827 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(PhysReg);
6828 MVT RegVT = *TRI->legalclasstypes_begin(*RC);
6829 DAG.setRoot(DAG.getNode(ISD::FAKE_USE, sdl, MVT::Other,
6830 {WriteChain, DAG.getRegister(PhysReg, RegVT)}));
6832 DAG.setRoot(WriteChain);
6836 case Intrinsic::memcpy:
6837 case Intrinsic::memcpy_inline: {
6839 SDValue Dst =
getValue(
I.getArgOperand(0));
6840 SDValue Src =
getValue(
I.getArgOperand(1));
6843 "memcpy_inline needs constant size");
6845 Align DstAlign = MCI.getDestAlign().valueOrOne();
6846 Align SrcAlign = MCI.getSourceAlign().valueOrOne();
6847 bool isVol = MCI.isVolatile();
6849 SDValue MC =
DAG.getMemcpy(Root, sdl, Dst, Src,
Size, DstAlign, SrcAlign,
6850 isVol, MCI.isForceInlined(), &
I, std::nullopt,
6851 MachinePointerInfo(
I.getArgOperand(0)),
6852 MachinePointerInfo(
I.getArgOperand(1)),
6854 updateDAGForMaybeTailCall(MC);
6857 case Intrinsic::memset:
6858 case Intrinsic::memset_inline: {
6860 SDValue Dst =
getValue(
I.getArgOperand(0));
6861 SDValue Value =
getValue(
I.getArgOperand(1));
6864 "memset_inline needs constant size");
6866 Align DstAlign = MSII.getDestAlign().valueOrOne();
6867 bool isVol = MSII.isVolatile();
6869 SDValue MC =
DAG.getMemset(
6870 Root, sdl, Dst, Value,
Size, DstAlign, isVol, MSII.isForceInlined(),
6871 &
I, MachinePointerInfo(
I.getArgOperand(0)),
I.getAAMetadata());
6872 updateDAGForMaybeTailCall(MC);
6875 case Intrinsic::memmove: {
6877 SDValue Op1 =
getValue(
I.getArgOperand(0));
6878 SDValue Op2 =
getValue(
I.getArgOperand(1));
6879 SDValue Op3 =
getValue(
I.getArgOperand(2));
6881 Align DstAlign = MMI.getDestAlign().valueOrOne();
6882 Align SrcAlign = MMI.getSourceAlign().valueOrOne();
6883 bool isVol = MMI.isVolatile();
6885 SDValue MM =
DAG.getMemmove(
6886 Root, sdl, Op1, Op2, Op3, DstAlign, SrcAlign, isVol, &
I,
6888 MachinePointerInfo(
I.getArgOperand(0)),
6889 MachinePointerInfo(
I.getArgOperand(1)),
I.getAAMetadata(),
BatchAA);
6890 updateDAGForMaybeTailCall(MM);
6893 case Intrinsic::memcpy_element_unordered_atomic: {
6899 Type *LengthTy =
MI.getLength()->getType();
6900 unsigned ElemSz =
MI.getElementSizeInBytes();
6904 isTC, MachinePointerInfo(
MI.getRawDest()),
6905 MachinePointerInfo(
MI.getRawSource()));
6906 updateDAGForMaybeTailCall(MC);
6909 case Intrinsic::memmove_element_unordered_atomic: {
6915 Type *LengthTy =
MI.getLength()->getType();
6916 unsigned ElemSz =
MI.getElementSizeInBytes();
6920 isTC, MachinePointerInfo(
MI.getRawDest()),
6921 MachinePointerInfo(
MI.getRawSource()));
6922 updateDAGForMaybeTailCall(MC);
6925 case Intrinsic::memset_element_unordered_atomic: {
6931 Type *LengthTy =
MI.getLength()->getType();
6932 unsigned ElemSz =
MI.getElementSizeInBytes();
6936 isTC, MachinePointerInfo(
MI.getRawDest()));
6937 updateDAGForMaybeTailCall(MC);
6940 case Intrinsic::call_preallocated_setup: {
6942 SDValue SrcValue =
DAG.getSrcValue(PreallocatedCall);
6949 case Intrinsic::call_preallocated_arg: {
6951 SDValue SrcValue =
DAG.getSrcValue(PreallocatedCall);
6957 SDValue Res =
DAG.getNode(
6965 case Intrinsic::eh_typeid_for: {
6968 unsigned TypeID =
DAG.getMachineFunction().getTypeIDFor(GV);
6969 Res =
DAG.getConstant(
TypeID, sdl, MVT::i32);
6974 case Intrinsic::eh_return_i32:
6975 case Intrinsic::eh_return_i64:
6976 DAG.getMachineFunction().setCallsEHReturn(
true);
6983 case Intrinsic::eh_unwind_init:
6984 DAG.getMachineFunction().setCallsUnwindInit(
true);
6986 case Intrinsic::eh_dwarf_cfa:
6991 case Intrinsic::eh_sjlj_callsite: {
6993 assert(
FuncInfo.getCurrentCallSite() == 0 &&
"Overlapping call sites!");
6998 case Intrinsic::eh_sjlj_functioncontext: {
7000 MachineFrameInfo &MFI =
DAG.getMachineFunction().getFrameInfo();
7003 int FI =
FuncInfo.StaticAllocaMap[FnCtx];
7007 case Intrinsic::eh_sjlj_setjmp: {
7012 DAG.getVTList(MVT::i32, MVT::Other),
Ops);
7014 DAG.setRoot(
Op.getValue(1));
7017 case Intrinsic::eh_sjlj_longjmp:
7021 case Intrinsic::eh_sjlj_setup_dispatch:
7025 case Intrinsic::masked_gather:
7026 visitMaskedGather(
I);
7028 case Intrinsic::masked_load:
7031 case Intrinsic::masked_scatter:
7032 visitMaskedScatter(
I);
7034 case Intrinsic::masked_store:
7035 visitMaskedStore(
I);
7037 case Intrinsic::masked_expandload:
7038 visitMaskedLoad(
I,
true );
7040 case Intrinsic::masked_compressstore:
7041 visitMaskedStore(
I,
true );
7043 case Intrinsic::speculative_load:
7044 visitSpeculativeLoad(
I);
7046 case Intrinsic::powi:
7050 case Intrinsic::log:
7053 case Intrinsic::log2:
7057 case Intrinsic::log10:
7061 case Intrinsic::exp:
7064 case Intrinsic::exp2:
7068 case Intrinsic::pow:
7072 case Intrinsic::sqrt:
7073 case Intrinsic::fabs:
7074 case Intrinsic::sin:
7075 case Intrinsic::cos:
7076 case Intrinsic::tan:
7077 case Intrinsic::asin:
7078 case Intrinsic::acos:
7079 case Intrinsic::atan:
7080 case Intrinsic::sinh:
7081 case Intrinsic::cosh:
7082 case Intrinsic::tanh:
7083 case Intrinsic::exp10:
7084 case Intrinsic::floor:
7085 case Intrinsic::ceil:
7086 case Intrinsic::trunc:
7087 case Intrinsic::rint:
7088 case Intrinsic::nearbyint:
7089 case Intrinsic::round:
7090 case Intrinsic::roundeven:
7091 case Intrinsic::canonicalize: {
7094 switch (Intrinsic) {
7096 case Intrinsic::sqrt: Opcode =
ISD::FSQRT;
break;
7097 case Intrinsic::fabs: Opcode =
ISD::FABS;
break;
7098 case Intrinsic::sin: Opcode =
ISD::FSIN;
break;
7099 case Intrinsic::cos: Opcode =
ISD::FCOS;
break;
7100 case Intrinsic::tan: Opcode =
ISD::FTAN;
break;
7101 case Intrinsic::asin: Opcode =
ISD::FASIN;
break;
7102 case Intrinsic::acos: Opcode =
ISD::FACOS;
break;
7103 case Intrinsic::atan: Opcode =
ISD::FATAN;
break;
7104 case Intrinsic::sinh: Opcode =
ISD::FSINH;
break;
7105 case Intrinsic::cosh: Opcode =
ISD::FCOSH;
break;
7106 case Intrinsic::tanh: Opcode =
ISD::FTANH;
break;
7107 case Intrinsic::exp10: Opcode =
ISD::FEXP10;
break;
7108 case Intrinsic::floor: Opcode =
ISD::FFLOOR;
break;
7109 case Intrinsic::ceil: Opcode =
ISD::FCEIL;
break;
7110 case Intrinsic::trunc: Opcode =
ISD::FTRUNC;
break;
7111 case Intrinsic::rint: Opcode =
ISD::FRINT;
break;
7113 case Intrinsic::round: Opcode =
ISD::FROUND;
break;
7120 getValue(
I.getArgOperand(0)).getValueType(),
7124 case Intrinsic::atan2:
7126 getValue(
I.getArgOperand(0)).getValueType(),
7130 case Intrinsic::lround:
7131 case Intrinsic::llround:
7132 case Intrinsic::lrint:
7133 case Intrinsic::llrint: {
7136 switch (Intrinsic) {
7138 case Intrinsic::lround: Opcode =
ISD::LROUND;
break;
7140 case Intrinsic::lrint: Opcode =
ISD::LRINT;
break;
7141 case Intrinsic::llrint: Opcode =
ISD::LLRINT;
break;
7150 case Intrinsic::minnum:
7152 getValue(
I.getArgOperand(0)).getValueType(),
7156 case Intrinsic::maxnum:
7158 getValue(
I.getArgOperand(0)).getValueType(),
7162 case Intrinsic::minimum:
7164 getValue(
I.getArgOperand(0)).getValueType(),
7168 case Intrinsic::maximum:
7170 getValue(
I.getArgOperand(0)).getValueType(),
7174 case Intrinsic::minimumnum:
7176 getValue(
I.getArgOperand(0)).getValueType(),
7180 case Intrinsic::maximumnum:
7182 getValue(
I.getArgOperand(0)).getValueType(),
7186 case Intrinsic::copysign:
7188 getValue(
I.getArgOperand(0)).getValueType(),
7192 case Intrinsic::ldexp:
7194 getValue(
I.getArgOperand(0)).getValueType(),
7198 case Intrinsic::modf:
7199 case Intrinsic::sincos:
7200 case Intrinsic::sincospi:
7201 case Intrinsic::frexp: {
7203 switch (Intrinsic) {
7206 case Intrinsic::sincos:
7209 case Intrinsic::sincospi:
7212 case Intrinsic::modf:
7215 case Intrinsic::frexp:
7221 SDVTList VTs =
DAG.getVTList(ValueVTs);
7223 &
I,
DAG.getNode(Opcode, sdl, VTs,
getValue(
I.getArgOperand(0)), Flags));
7226 case Intrinsic::arithmetic_fence: {
7228 getValue(
I.getArgOperand(0)).getValueType(),
7232 case Intrinsic::fma:
7238#define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \
7239 case Intrinsic::INTRINSIC:
7240#include "llvm/IR/ConstrainedOps.def"
7243#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
7244#include "llvm/IR/VPIntrinsics.def"
7247 case Intrinsic::fptrunc_round: {
7251 std::optional<RoundingMode> RoundMode =
7259 SelectionDAG::FlagInserter FlagsInserter(
DAG, Flags);
7264 DAG.getTargetConstant((
int)*RoundMode, sdl, MVT::i32));
7269 case Intrinsic::fmuladd: {
7273 getValue(
I.getArgOperand(0)).getValueType(),
7280 getValue(
I.getArgOperand(0)).getValueType(),
7286 SDValue
Mul =
DAG.getNode(
7296 case Intrinsic::fptosi_sat: {
7303 case Intrinsic::fptoui_sat: {
7310 case Intrinsic::convert_from_arbitrary_fp: {
7315 const fltSemantics *SrcSem =
7318 DAG.getContext()->emitError(
7319 "convert_from_arbitrary_fp: not implemented format '" + FormatStr +
7330 DAG.getTargetConstant(
static_cast<int>(SemEnum), sdl, MVT::i32);
7335 case Intrinsic::convert_to_arbitrary_fp: {
7340 const fltSemantics *DstSem =
7343 DAG.getContext()->emitError(
7344 "convert_to_arbitrary_fp: not implemented format '" + FormatStr +
7356 "Dynamic rounding mode should have been rejected by the verifier");
7361 SDValue FloatVal =
getValue(
I.getArgOperand(0));
7364 DAG.getTargetConstant(
static_cast<int>(SemEnum), sdl, MVT::i32);
7365 SDValue RoundConst =
7366 DAG.getTargetConstant(
static_cast<int>(*RoundMode), sdl, MVT::i32);
7367 SDValue SatConst =
DAG.getTargetConstant(Saturate, sdl, MVT::i32);
7369 SemConst, RoundConst, SatConst));
7372 case Intrinsic::set_rounding:
7378 case Intrinsic::is_fpclass: {
7379 const DataLayout DLayout =
DAG.getDataLayout();
7381 EVT ArgVT = TLI.
getValueType(DLayout,
I.getArgOperand(0)->getType());
7388 Flags.setNoFPExcept(
7389 !
F.getAttributes().hasFnAttr(llvm::Attribute::StrictFP));
7400 SDValue
Check =
DAG.getTargetConstant(
Test, sdl, MVT::i32);
7405 case Intrinsic::get_fpenv: {
7406 const DataLayout DLayout =
DAG.getDataLayout();
7408 Align TempAlign =
DAG.getEVTAlign(EnvVT);
7419 SDValue Temp =
DAG.CreateStackTemporary(EnvVT, TempAlign.
value());
7423 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
7426 Chain =
DAG.getGetFPEnv(Chain, sdl, Temp, EnvVT, MMO);
7427 Res =
DAG.getLoad(EnvVT, sdl, Chain, Temp, MPI);
7433 case Intrinsic::set_fpenv: {
7434 const DataLayout DLayout =
DAG.getDataLayout();
7435 SDValue Env =
getValue(
I.getArgOperand(0));
7437 Align TempAlign =
DAG.getEVTAlign(EnvVT);
7446 SDValue Temp =
DAG.CreateStackTemporary(EnvVT, TempAlign.
value());
7450 Chain =
DAG.getStore(Chain, sdl, Env, Temp, MPI, TempAlign,
7452 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
7455 Chain =
DAG.getSetFPEnv(Chain, sdl, Temp, EnvVT, MMO);
7460 case Intrinsic::reset_fpenv:
7463 case Intrinsic::get_fpmode:
7472 case Intrinsic::set_fpmode:
7477 case Intrinsic::reset_fpmode: {
7482 case Intrinsic::pcmarker: {
7483 SDValue Tmp =
getValue(
I.getArgOperand(0));
7487 case Intrinsic::readcyclecounter: {
7490 DAG.getVTList(MVT::i64, MVT::Other),
Op);
7495 case Intrinsic::readsteadycounter: {
7498 DAG.getVTList(MVT::i64, MVT::Other),
Op);
7503 case Intrinsic::bitreverse:
7505 getValue(
I.getArgOperand(0)).getValueType(),
7508 case Intrinsic::bswap:
7510 getValue(
I.getArgOperand(0)).getValueType(),
7513 case Intrinsic::cttz: {
7514 SDValue Arg =
getValue(
I.getArgOperand(0));
7521 case Intrinsic::ctlz: {
7522 SDValue Arg =
getValue(
I.getArgOperand(0));
7529 case Intrinsic::ctpop: {
7530 SDValue Arg =
getValue(
I.getArgOperand(0));
7535 case Intrinsic::fshl:
7536 case Intrinsic::fshr: {
7537 bool IsFSHL =
Intrinsic == Intrinsic::fshl;
7541 EVT VT =
X.getValueType();
7552 case Intrinsic::clmul: {
7558 case Intrinsic::pext: {
7564 case Intrinsic::pdep: {
7570 case Intrinsic::smulh:
7571 case Intrinsic::umulh: {
7578 case Intrinsic::sadd_sat: {
7579 SDValue Op1 =
getValue(
I.getArgOperand(0));
7580 SDValue Op2 =
getValue(
I.getArgOperand(1));
7584 case Intrinsic::uadd_sat: {
7585 SDValue Op1 =
getValue(
I.getArgOperand(0));
7586 SDValue Op2 =
getValue(
I.getArgOperand(1));
7590 case Intrinsic::ssub_sat: {
7591 SDValue Op1 =
getValue(
I.getArgOperand(0));
7592 SDValue Op2 =
getValue(
I.getArgOperand(1));
7596 case Intrinsic::usub_sat: {
7597 SDValue Op1 =
getValue(
I.getArgOperand(0));
7598 SDValue Op2 =
getValue(
I.getArgOperand(1));
7602 case Intrinsic::sshl_sat:
7603 case Intrinsic::ushl_sat: {
7604 SDValue Op1 =
getValue(
I.getArgOperand(0));
7605 SDValue Op2 =
getValue(
I.getArgOperand(1));
7607 EVT ShiftTy =
DAG.getTargetLoweringInfo().getShiftAmountTy(
7612 if (!
I.getType()->isVectorTy() && Op2.
getValueType() != ShiftTy) {
7615 "Unexpected shift type");
7624 case Intrinsic::smul_fix:
7625 case Intrinsic::umul_fix:
7626 case Intrinsic::smul_fix_sat:
7627 case Intrinsic::umul_fix_sat: {
7628 SDValue Op1 =
getValue(
I.getArgOperand(0));
7629 SDValue Op2 =
getValue(
I.getArgOperand(1));
7630 SDValue Op3 =
getValue(
I.getArgOperand(2));
7635 case Intrinsic::sdiv_fix:
7636 case Intrinsic::udiv_fix:
7637 case Intrinsic::sdiv_fix_sat:
7638 case Intrinsic::udiv_fix_sat: {
7639 SDValue Op1 =
getValue(
I.getArgOperand(0));
7640 SDValue Op2 =
getValue(
I.getArgOperand(1));
7641 SDValue Op3 =
getValue(
I.getArgOperand(2));
7643 Op1, Op2, Op3,
DAG, TLI));
7646 case Intrinsic::smax: {
7647 SDValue Op1 =
getValue(
I.getArgOperand(0));
7648 SDValue Op2 =
getValue(
I.getArgOperand(1));
7652 case Intrinsic::smin: {
7653 SDValue Op1 =
getValue(
I.getArgOperand(0));
7654 SDValue Op2 =
getValue(
I.getArgOperand(1));
7658 case Intrinsic::umax: {
7659 SDValue Op1 =
getValue(
I.getArgOperand(0));
7660 SDValue Op2 =
getValue(
I.getArgOperand(1));
7664 case Intrinsic::umin: {
7665 SDValue Op1 =
getValue(
I.getArgOperand(0));
7666 SDValue Op2 =
getValue(
I.getArgOperand(1));
7670 case Intrinsic::abs: {
7671 SDValue Op1 =
getValue(
I.getArgOperand(0));
7677 case Intrinsic::scmp: {
7678 SDValue Op1 =
getValue(
I.getArgOperand(0));
7679 SDValue Op2 =
getValue(
I.getArgOperand(1));
7684 case Intrinsic::ucmp: {
7685 SDValue Op1 =
getValue(
I.getArgOperand(0));
7686 SDValue Op2 =
getValue(
I.getArgOperand(1));
7691 case Intrinsic::stackaddress:
7692 case Intrinsic::stacksave: {
7697 Res =
DAG.getNode(SDOpcode, sdl,
DAG.getVTList(VT, MVT::Other),
Op);
7702 case Intrinsic::stackrestore:
7706 case Intrinsic::get_dynamic_area_offset: {
7715 case Intrinsic::stackguard: {
7722 Res =
DAG.getPtrExtOrTrunc(Res, sdl, PtrTy);
7726 LLVMContext &Ctx = *
DAG.getContext();
7727 Ctx.
diagnose(DiagnosticInfoGeneric(
"unable to lower stackguard"));
7734 MachinePointerInfo(
Global, 0), Align,
7746 case Intrinsic::stackprotector: {
7751 SDValue Src, Chain =
getRoot();
7764 SDValue FIN =
DAG.getFrameIndex(FI, PtrTy);
7768 Chain, sdl, Src, FIN,
7775 case Intrinsic::objectsize:
7778 case Intrinsic::is_constant:
7781 case Intrinsic::annotation:
7782 case Intrinsic::ptr_annotation:
7783 case Intrinsic::launder_invariant_group:
7784 case Intrinsic::strip_invariant_group:
7789 case Intrinsic::type_test:
7790 case Intrinsic::public_type_test:
7791 case Intrinsic::type_checked_load:
7792 case Intrinsic::type_checked_load_relative: {
7797 DAG.getContext()->diagnose(DiagnosticInfoUnsupported(
7800 " intrinsic must be lowered by the LowerTypeTests pass "
7801 "before code generation",
7810 case Intrinsic::assume:
7811 case Intrinsic::experimental_noalias_scope_decl:
7812 case Intrinsic::var_annotation:
7813 case Intrinsic::sideeffect:
7818 case Intrinsic::codeview_annotation: {
7829 case Intrinsic::init_trampoline: {
7837 Ops[4] =
DAG.getSrcValue(
I.getArgOperand(0));
7845 case Intrinsic::adjust_trampoline:
7850 case Intrinsic::gcroot: {
7851 assert(
DAG.getMachineFunction().getFunction().hasGC() &&
7852 "only valid in functions with gc specified, enforced by Verifier");
7854 const Value *Alloca =
I.getArgOperand(0)->stripPointerCasts();
7861 case Intrinsic::gcread:
7862 case Intrinsic::gcwrite:
7864 case Intrinsic::get_rounding:
7870 case Intrinsic::expect:
7871 case Intrinsic::expect_with_probability:
7877 case Intrinsic::ubsantrap:
7878 case Intrinsic::debugtrap:
7879 case Intrinsic::trap: {
7880 StringRef TrapFuncName =
7881 I.getAttributes().getFnAttr(
"trap-func-name").getValueAsString();
7882 if (TrapFuncName.
empty()) {
7883 switch (Intrinsic) {
7884 case Intrinsic::trap:
7887 case Intrinsic::debugtrap:
7890 case Intrinsic::ubsantrap:
7893 DAG.getTargetConstant(
7899 DAG.addNoMergeSiteInfo(
DAG.getRoot().getNode(),
7900 I.hasFnAttr(Attribute::NoMerge));
7904 if (Intrinsic == Intrinsic::ubsantrap) {
7905 Value *Arg =
I.getArgOperand(0);
7909 TargetLowering::CallLoweringInfo CLI(
DAG);
7910 CLI.setDebugLoc(sdl).setChain(
getRoot()).setLibCallee(
7912 DAG.getExternalSymbol(TrapFuncName.
data(),
7915 CLI.NoMerge =
I.hasFnAttr(Attribute::NoMerge);
7921 case Intrinsic::allow_runtime_check:
7922 case Intrinsic::allow_ubsan_check:
7926 case Intrinsic::uadd_with_overflow:
7927 case Intrinsic::sadd_with_overflow:
7928 case Intrinsic::usub_with_overflow:
7929 case Intrinsic::ssub_with_overflow:
7930 case Intrinsic::umul_with_overflow:
7931 case Intrinsic::smul_with_overflow: {
7933 switch (Intrinsic) {
7935 case Intrinsic::uadd_with_overflow:
Op =
ISD::UADDO;
break;
7936 case Intrinsic::sadd_with_overflow:
Op =
ISD::SADDO;
break;
7937 case Intrinsic::usub_with_overflow:
Op =
ISD::USUBO;
break;
7938 case Intrinsic::ssub_with_overflow:
Op =
ISD::SSUBO;
break;
7939 case Intrinsic::umul_with_overflow:
Op =
ISD::UMULO;
break;
7940 case Intrinsic::smul_with_overflow:
Op =
ISD::SMULO;
break;
7942 SDValue Op1 =
getValue(
I.getArgOperand(0));
7943 SDValue Op2 =
getValue(
I.getArgOperand(1));
7948 SDVTList VTs =
DAG.getVTList(ResultVT, OverflowVT);
7952 case Intrinsic::prefetch: {
7964 SDValue
Result =
DAG.getMemIntrinsicNode(
7967 std::nullopt, Flags);
7973 DAG.setRoot(Result);
7976 case Intrinsic::lifetime_start:
7977 case Intrinsic::lifetime_end: {
7978 bool IsStart = (
Intrinsic == Intrinsic::lifetime_start);
7984 if (!LifetimeObject)
7989 auto SI =
FuncInfo.StaticAllocaMap.find(LifetimeObject);
7990 if (SI ==
FuncInfo.StaticAllocaMap.end())
7994 Res =
DAG.getLifetimeNode(IsStart, sdl,
getRoot(), FrameIndex);
7998 case Intrinsic::pseudoprobe: {
8006 case Intrinsic::invariant_start:
8011 case Intrinsic::invariant_end:
8014 case Intrinsic::clear_cache: {
8015 SDValue InputChain =
DAG.getRoot();
8016 SDValue StartVal =
getValue(
I.getArgOperand(0));
8017 SDValue EndVal =
getValue(
I.getArgOperand(1));
8019 {InputChain, StartVal, EndVal});
8024 case Intrinsic::donothing:
8025 case Intrinsic::seh_try_begin:
8026 case Intrinsic::seh_scope_begin:
8027 case Intrinsic::seh_try_end:
8028 case Intrinsic::seh_scope_end:
8031 case Intrinsic::experimental_stackmap:
8034 case Intrinsic::experimental_patchpoint_void:
8035 case Intrinsic::experimental_patchpoint:
8038 case Intrinsic::experimental_gc_statepoint:
8041 case Intrinsic::experimental_gc_result:
8044 case Intrinsic::experimental_gc_relocate:
8047 case Intrinsic::instrprof_cover:
8049 case Intrinsic::instrprof_increment:
8051 case Intrinsic::instrprof_timestamp:
8053 case Intrinsic::instrprof_value_profile:
8055 case Intrinsic::instrprof_mcdc_parameters:
8057 case Intrinsic::instrprof_mcdc_tvbitmap_update:
8059 case Intrinsic::localescape: {
8061 const TargetInstrInfo *
TII =
DAG.getSubtarget().getInstrInfo();
8065 for (
unsigned Idx = 0,
E =
I.arg_size(); Idx <
E; ++Idx) {
8071 "can only escape static allocas");
8076 TII->get(TargetOpcode::LOCAL_ESCAPE))
8084 case Intrinsic::localrecover: {
8092 unsigned(Idx->getLimitedValue(std::numeric_limits<int>::max()));
8096 Value *
FP =
I.getArgOperand(1);
8102 SDValue OffsetSym =
DAG.getMCSymbol(FrameAllocSym, PtrVT);
8107 SDValue
Add =
DAG.getMemBasePlusOffset(FPVal, OffsetVal, sdl);
8113 case Intrinsic::fake_use: {
8114 Value *
V =
I.getArgOperand(0);
8119 auto FakeUseValue = [&]() -> SDValue {
8120 SDValue &
N = NodeMap[
V];
8133 if (!FakeUseValue || FakeUseValue.isUndef())
8136 Ops[1] = FakeUseValue;
8145 case Intrinsic::reloc_none: {
8150 DAG.getTargetExternalSymbol(
8156 case Intrinsic::cond_loop: {
8157 SDValue InputChain =
DAG.getRoot();
8166 case Intrinsic::eh_exceptionpointer:
8167 case Intrinsic::eh_exceptioncode: {
8173 SDValue
N =
DAG.getCopyFromReg(
DAG.getEntryNode(), sdl, VReg, PtrVT);
8174 if (Intrinsic == Intrinsic::eh_exceptioncode)
8175 N =
DAG.getZExtOrTrunc(
N, sdl, MVT::i32);
8179 case Intrinsic::xray_customevent: {
8182 const auto &Triple =
DAG.getTarget().getTargetTriple();
8183 if (!Triple.isAArch64(64) && Triple.getArch() !=
Triple::x86_64 &&
8190 SDValue LogEntryVal =
getValue(
I.getArgOperand(0));
8191 SDValue StrSizeVal =
getValue(
I.getArgOperand(1));
8192 SDVTList NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
8194 Ops.push_back(LogEntryVal);
8195 Ops.push_back(StrSizeVal);
8196 Ops.push_back(Chain);
8202 MachineSDNode *MN =
DAG.getMachineNode(TargetOpcode::PATCHABLE_EVENT_CALL,
8204 SDValue patchableNode = SDValue(MN, 0);
8205 DAG.setRoot(patchableNode);
8209 case Intrinsic::xray_typedevent: {
8212 const auto &Triple =
DAG.getTarget().getTargetTriple();
8213 if (!Triple.isAArch64(64) && Triple.getArch() !=
Triple::x86_64 &&
8222 SDValue LogTypeId =
getValue(
I.getArgOperand(0));
8223 SDValue LogEntryVal =
getValue(
I.getArgOperand(1));
8224 SDValue StrSizeVal =
getValue(
I.getArgOperand(2));
8225 SDVTList NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
8227 Ops.push_back(LogTypeId);
8228 Ops.push_back(LogEntryVal);
8229 Ops.push_back(StrSizeVal);
8230 Ops.push_back(Chain);
8236 MachineSDNode *MN =
DAG.getMachineNode(
8237 TargetOpcode::PATCHABLE_TYPED_EVENT_CALL, sdl, NodeTys,
Ops);
8238 SDValue patchableNode = SDValue(MN, 0);
8239 DAG.setRoot(patchableNode);
8243 case Intrinsic::experimental_deoptimize:
8246 case Intrinsic::stepvector:
8249 case Intrinsic::vector_reduce_fadd:
8250 case Intrinsic::vector_reduce_fmul:
8251 case Intrinsic::vector_reduce_add:
8252 case Intrinsic::vector_reduce_mul:
8253 case Intrinsic::vector_reduce_and:
8254 case Intrinsic::vector_reduce_or:
8255 case Intrinsic::vector_reduce_xor:
8256 case Intrinsic::vector_reduce_smax:
8257 case Intrinsic::vector_reduce_smin:
8258 case Intrinsic::vector_reduce_umax:
8259 case Intrinsic::vector_reduce_umin:
8260 case Intrinsic::vector_reduce_fmax:
8261 case Intrinsic::vector_reduce_fmin:
8262 case Intrinsic::vector_reduce_fmaximum:
8263 case Intrinsic::vector_reduce_fminimum:
8264 case Intrinsic::vector_reduce_fmaximumnum:
8265 case Intrinsic::vector_reduce_fminimumnum:
8266 visitVectorReduce(
I, Intrinsic);
8269 case Intrinsic::icall_branch_funnel: {
8275 I.getArgOperand(1),
Offset,
DAG.getDataLayout()));
8278 "llvm.icall.branch.funnel operand must be a GlobalValue");
8279 Ops.push_back(
DAG.getTargetGlobalAddress(
Base, sdl, MVT::i64, 0));
8281 struct BranchFunnelTarget {
8287 for (
unsigned Op = 1,
N =
I.arg_size();
Op !=
N;
Op += 2) {
8290 if (ElemBase !=
Base)
8292 "to the same GlobalValue");
8298 "llvm.icall.branch.funnel operand must be a GlobalValue");
8304 [](
const BranchFunnelTarget &
T1,
const BranchFunnelTarget &T2) {
8305 return T1.Offset < T2.Offset;
8308 for (
auto &
T : Targets) {
8309 Ops.push_back(
DAG.getTargetConstant(
T.Offset, sdl, MVT::i32));
8310 Ops.push_back(
T.Target);
8313 Ops.push_back(
DAG.getRoot());
8314 SDValue
N(
DAG.getMachineNode(TargetOpcode::ICALL_BRANCH_FUNNEL, sdl,
8323 case Intrinsic::wasm_landingpad_index:
8329 case Intrinsic::aarch64_settag:
8330 case Intrinsic::aarch64_settag_zero: {
8331 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
8332 bool ZeroMemory =
Intrinsic == Intrinsic::aarch64_settag_zero;
8335 getValue(
I.getArgOperand(1)), MachinePointerInfo(
I.getArgOperand(0)),
8341 case Intrinsic::amdgcn_cs_chain: {
8346 Type *RetTy =
I.getType();
8356 for (
unsigned Idx : {2, 3, 1}) {
8357 TargetLowering::ArgListEntry Arg(
getValue(
I.getOperand(Idx)),
8359 Arg.setAttributes(&
I, Idx);
8360 Args.push_back(Arg);
8363 assert(Args[0].IsInReg &&
"SGPR args should be marked inreg");
8364 assert(!Args[1].IsInReg &&
"VGPR args should not be marked inreg");
8365 Args[2].IsInReg =
true;
8368 for (
unsigned Idx = 4; Idx <
I.arg_size(); ++Idx) {
8369 TargetLowering::ArgListEntry Arg(
getValue(
I.getOperand(Idx)),
8371 Arg.setAttributes(&
I, Idx);
8372 Args.push_back(Arg);
8375 TargetLowering::CallLoweringInfo CLI(
DAG);
8378 .setCallee(CC, RetTy, Callee, std::move(Args))
8381 .setConvergent(
I.isConvergent());
8383 std::pair<SDValue, SDValue>
Result =
8387 "Should've lowered as tail call");
8392 case Intrinsic::amdgcn_call_whole_wave: {
8394 bool isTailCall =
I.isTailCall();
8397 for (
unsigned Idx = 1; Idx <
I.arg_size(); ++Idx) {
8398 TargetLowering::ArgListEntry Arg(
getValue(
I.getArgOperand(Idx)),
8399 I.getArgOperand(Idx)->getType());
8400 Arg.setAttributes(&
I, Idx);
8407 Args.push_back(Arg);
8410 SDValue ConvControlToken;
8412 auto *Token = Bundle->Inputs[0].get();
8413 ConvControlToken =
getValue(Token);
8416 TargetLowering::CallLoweringInfo CLI(
DAG);
8420 getValue(
I.getArgOperand(0)), std::move(Args))
8424 .setConvergent(
I.isConvergent())
8425 .setConvergenceControlToken(ConvControlToken);
8428 std::pair<SDValue, SDValue>
Result =
8431 if (
Result.first.getNode())
8435 case Intrinsic::ptrmask: {
8436 SDValue Ptr =
getValue(
I.getOperand(0));
8451 auto HighOnes =
DAG.getNode(
8452 ISD::SHL, sdl, PtrVT,
DAG.getAllOnesConstant(sdl, PtrVT),
8453 DAG.getShiftAmountConstant(
Mask.getValueType().getFixedSizeInBits(),
8456 DAG.getZExtOrTrunc(Mask, sdl, PtrVT), HighOnes);
8457 }
else if (
Mask.getValueType() != PtrVT)
8458 Mask =
DAG.getPtrExtOrTrunc(Mask, sdl, PtrVT);
8464 case Intrinsic::threadlocal_address: {
8468 case Intrinsic::get_active_lane_mask: {
8471 SDValue TripCount =
getValue(
I.getOperand(1));
8472 EVT ElementVT =
Index.getValueType();
8483 SDValue VectorIndex =
DAG.getSplat(VecTy, sdl, Index);
8484 SDValue VectorTripCount =
DAG.getSplat(VecTy, sdl, TripCount);
8485 SDValue VectorStep =
DAG.getStepVector(sdl, VecTy);
8486 SDValue VectorInduction =
DAG.getNode(
8488 SDValue SetCC =
DAG.getSetCC(sdl, CCVT, VectorInduction,
8493 case Intrinsic::experimental_get_vector_length: {
8495 "Expected positive VF");
8500 EVT CountVT =
Count.getValueType();
8503 visitTargetIntrinsic(
I, Intrinsic);
8512 if (CountVT.
bitsLT(VT)) {
8517 SDValue MaxEVL =
DAG.getElementCount(sdl, CountVT,
8527 case Intrinsic::vector_partial_reduce_add: {
8528 SDValue Acc =
getValue(
I.getOperand(0));
8529 SDValue Input =
getValue(
I.getOperand(1));
8535 case Intrinsic::vector_partial_reduce_fadd: {
8536 SDValue Acc =
getValue(
I.getOperand(0));
8537 SDValue Input =
getValue(
I.getOperand(1));
8543 case Intrinsic::experimental_cttz_elts: {
8545 EVT OpVT =
Op.getValueType();
8552 SDValue AllZero =
DAG.getConstant(0, sdl, OpVT);
8561 case Intrinsic::vector_insert: {
8562 SDValue Vec =
getValue(
I.getOperand(0));
8563 SDValue SubVec =
getValue(
I.getOperand(1));
8569 if (
Index.getValueType() != VectorIdxTy)
8570 Index =
DAG.getVectorIdxConstant(
Index->getAsZExtVal(), sdl);
8577 case Intrinsic::vector_extract: {
8578 SDValue Vec =
getValue(
I.getOperand(0));
8585 if (
Index.getValueType() != VectorIdxTy)
8586 Index =
DAG.getVectorIdxConstant(
Index->getAsZExtVal(), sdl);
8592 case Intrinsic::experimental_vector_match: {
8593 SDValue Op1 =
getValue(
I.getOperand(0));
8594 SDValue Op2 =
getValue(
I.getOperand(1));
8596 EVT ResVT =
Mask.getValueType();
8600 case Intrinsic::vector_reverse:
8601 visitVectorReverse(
I);
8603 case Intrinsic::vector_splice_left:
8604 case Intrinsic::vector_splice_right:
8605 visitVectorSplice(
I);
8607 case Intrinsic::callbr_landingpad:
8608 visitCallBrLandingPad(
I);
8610 case Intrinsic::vector_interleave2:
8611 visitVectorInterleave(
I, 2);
8613 case Intrinsic::vector_interleave3:
8614 visitVectorInterleave(
I, 3);
8616 case Intrinsic::vector_interleave4:
8617 visitVectorInterleave(
I, 4);
8619 case Intrinsic::vector_interleave5:
8620 visitVectorInterleave(
I, 5);
8622 case Intrinsic::vector_interleave6:
8623 visitVectorInterleave(
I, 6);
8625 case Intrinsic::vector_interleave7:
8626 visitVectorInterleave(
I, 7);
8628 case Intrinsic::vector_interleave8:
8629 visitVectorInterleave(
I, 8);
8631 case Intrinsic::vector_deinterleave2:
8632 visitVectorDeinterleave(
I, 2);
8634 case Intrinsic::vector_deinterleave3:
8635 visitVectorDeinterleave(
I, 3);
8637 case Intrinsic::vector_deinterleave4:
8638 visitVectorDeinterleave(
I, 4);
8640 case Intrinsic::vector_deinterleave5:
8641 visitVectorDeinterleave(
I, 5);
8643 case Intrinsic::vector_deinterleave6:
8644 visitVectorDeinterleave(
I, 6);
8646 case Intrinsic::vector_deinterleave7:
8647 visitVectorDeinterleave(
I, 7);
8649 case Intrinsic::vector_deinterleave8:
8650 visitVectorDeinterleave(
I, 8);
8652 case Intrinsic::experimental_vector_compress:
8654 getValue(
I.getArgOperand(0)).getValueType(),
8659 case Intrinsic::experimental_convergence_anchor:
8660 case Intrinsic::experimental_convergence_entry:
8661 case Intrinsic::experimental_convergence_loop:
8662 visitConvergenceControl(
I, Intrinsic);
8664 case Intrinsic::experimental_vector_histogram_add: {
8665 visitVectorHistogram(
I, Intrinsic);
8668 case Intrinsic::experimental_vector_extract_last_active: {
8669 visitVectorExtractLastActive(
I, Intrinsic);
8672 case Intrinsic::loop_dependence_war_mask:
8677 DAG.getConstant(0, sdl, MVT::i64)));
8679 case Intrinsic::loop_dependence_raw_mask:
8684 DAG.getConstant(0, sdl, MVT::i64)));
8686 case Intrinsic::masked_udiv:
8692 case Intrinsic::masked_sdiv:
8698 case Intrinsic::masked_urem:
8704 case Intrinsic::masked_srem:
8713void SelectionDAGBuilder::pushFPOpOutChain(
SDValue Result,
8716 SDValue OutChain =
Result.getValue(1);
8729 PendingConstrainedFP.push_back(OutChain);
8732 PendingConstrainedFPStrict.push_back(OutChain);
8737void SelectionDAGBuilder::visitConstrainedFPIntrinsic(
8751 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8753 SDVTList VTs =
DAG.getVTList(VT, MVT::Other);
8757 Flags.setNoFPExcept(
true);
8760 Flags.copyFMF(*FPOp);
8765#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
8766 case Intrinsic::INTRINSIC: \
8767 Opcode = ISD::STRICT_##DAGN; \
8769#include "llvm/IR/ConstrainedOps.def"
8770 case Intrinsic::experimental_constrained_fmuladd: {
8776 pushFPOpOutChain(
Mul, EB);
8799 if (
DAG.isKnownNeverNaN(Opers[1]) &&
DAG.isKnownNeverNaN(Opers[2]))
8806 SDValue
Result =
DAG.getNode(Opcode, sdl, VTs, Opers, Flags);
8807 pushFPOpOutChain(Result, EB);
8809 SDValue FPResult =
Result.getValue(0);
8814 std::optional<unsigned> ResOPC;
8816 case Intrinsic::vp_cttz_elts: {
8818 ResOPC = IsZeroPoison ? ISD::VP_CTTZ_ELTS_ZERO_POISON : ISD::VP_CTTZ_ELTS;
8821#define HELPER_MAP_VPID_TO_VPSD(VPID, VPSD) \
8822 case Intrinsic::VPID: \
8823 ResOPC = ISD::VPSD; \
8825#include "llvm/IR/VPIntrinsics.def"
8830 "Inconsistency: no SDNode available for this VPIntrinsic!");
8832 if (*ResOPC == ISD::VP_REDUCE_SEQ_FADD ||
8833 *ResOPC == ISD::VP_REDUCE_SEQ_FMUL) {
8835 return *ResOPC == ISD::VP_REDUCE_SEQ_FADD ? ISD::VP_REDUCE_FADD
8836 : ISD::VP_REDUCE_FMUL;
8842void SelectionDAGBuilder::visitVPLoad(
8857 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
8858 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8861 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8862 MachinePointerInfo(PtrOperand), MMOFlags,
8864 MMOMetadata(AAInfo, Ranges));
8865 LD =
DAG.getLoadVP(VT,
DL, InChain, OpValues[0], OpValues[1], OpValues[2],
8872void SelectionDAGBuilder::visitVPLoadFF(
8875 assert(OpValues.
size() == 3 &&
"Unexpected number of operands");
8888 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
8889 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8892 MMOMetadata(AAInfo, Ranges));
8893 LD =
DAG.getLoadFFVP(VT,
DL, InChain, OpValues[0], OpValues[1], OpValues[2],
8898 setValue(&VPIntrin,
DAG.getMergeValues({LD.getValue(0), Trunc},
DL));
8901void SelectionDAGBuilder::visitVPGather(
8905 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8917 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8919 *Alignment, MMOMetadata(AAInfo, Ranges));
8929 EVT IdxVT =
Index.getValueType();
8935 LD =
DAG.getGatherVP(
8936 DAG.getVTList(VT, MVT::Other), VT,
DL,
8937 {DAG.getRoot(), Base, Index, Scale, OpValues[1], OpValues[2]}, MMO,
8943void SelectionDAGBuilder::visitVPStore(
8947 EVT VT = OpValues[0].getValueType();
8953 SDValue Ptr = OpValues[1];
8955 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8958 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8959 MachinePointerInfo(PtrOperand), MMOFlags,
8968void SelectionDAGBuilder::visitVPScatter(
8971 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8973 EVT VT = OpValues[0].getValueType();
8983 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8985 *Alignment, AAInfo);
8995 EVT IdxVT =
Index.getValueType();
9001 ST =
DAG.getScatterVP(
DAG.getVTList(MVT::Other), VT,
DL,
9002 {getMemoryRoot(), OpValues[0], Base, Index, Scale,
9003 OpValues[2], OpValues[3]},
9009void SelectionDAGBuilder::visitVPStridedLoad(
9021 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
9023 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
9026 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
9028 *Alignment, MMOMetadata(AAInfo, Ranges));
9030 SDValue
LD =
DAG.getStridedLoadVP(VT,
DL, InChain, OpValues[0], OpValues[1],
9031 OpValues[2], OpValues[3], MMO,
9039void SelectionDAGBuilder::visitVPStridedStore(
9043 EVT VT = OpValues[0].getValueType();
9049 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
9052 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
9054 *Alignment, AAInfo);
9056 SDValue
ST =
DAG.getStridedStoreVP(
9058 DAG.getPOISON(OpValues[1].getValueType()), OpValues[2], OpValues[3],
9066void SelectionDAGBuilder::visitVectorPredicationIntrinsic(
9074 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
9076 SDVTList VTs =
DAG.getVTList(ValueVTs);
9082 "Unexpected target EVL type");
9086 for (
unsigned I = 0;
I < VPIntrin.
arg_size(); ++
I) {
9088 if (
I == EVLParamPos)
9095 SDNodeFlags SDFlags;
9098 SDValue
Result =
DAG.getNode(Opcode,
DL, VTs, OpValues, SDFlags);
9103 visitVPLoad(VPIntrin, ValueVTs[0], OpValues);
9105 case ISD::VP_LOAD_FF:
9106 visitVPLoadFF(VPIntrin, ValueVTs[0], ValueVTs[1], OpValues);
9108 case ISD::VP_GATHER:
9109 visitVPGather(VPIntrin, ValueVTs[0], OpValues);
9111 case ISD::EXPERIMENTAL_VP_STRIDED_LOAD:
9112 visitVPStridedLoad(VPIntrin, ValueVTs[0], OpValues);
9115 visitVPStore(VPIntrin, OpValues);
9117 case ISD::VP_SCATTER:
9118 visitVPScatter(VPIntrin, OpValues);
9120 case ISD::EXPERIMENTAL_VP_STRIDED_STORE:
9121 visitVPStridedStore(VPIntrin, OpValues);
9123 case ISD::VP_CTTZ_ELTS_ZERO_POISON:
9124 case ISD::VP_CTTZ_ELTS: {
9126 DAG.getNode(Opcode,
DL, VTs, {OpValues[0], OpValues[2], OpValues[3]});
9144 unsigned CallSiteIndex =
FuncInfo.getCurrentCallSite();
9145 if (CallSiteIndex) {
9159 assert(BeginLabel &&
"BeginLabel should've been set");
9173 assert(
II &&
"II should've been set");
9184std::pair<SDValue, SDValue>
9198 std::pair<SDValue, SDValue> Result = TLI.
LowerCallTo(CLI);
9201 "Non-null chain expected with non-tail call!");
9202 assert((Result.second.getNode() || !Result.first.getNode()) &&
9203 "Null value expected with tail call!");
9205 if (!Result.second.getNode()) {
9212 PendingExports.clear();
9214 DAG.setRoot(Result.second);
9232 if (!isMustTailCall &&
9233 Caller->getFnAttribute(
"disable-tail-calls").getValueAsBool())
9239 if (
DAG.hasSwiftErrorArg())
9248 bool isTailCall,
bool isMustTailCall,
9251 auto &
DL =
DAG.getDataLayout();
9258 const Value *SwiftErrorVal =
nullptr;
9265 const Value *V = *
I;
9268 if (V->getType()->isEmptyTy())
9273 Entry.setAttributes(&CB,
I - CB.
arg_begin());
9285 Args.push_back(Entry);
9296 Value *V = Bundle->Inputs[0];
9298 Entry.IsCFGuardTarget =
true;
9299 Args.push_back(Entry);
9312 "Target doesn't support calls with kcfi operand bundles.");
9320 auto *Token = Bundle->Inputs[0].get();
9321 ConvControlToken =
getValue(Token);
9332 .
setCallee(RetTy, FTy, Callee, std::move(Args), CB)
9345 "This target doesn't support calls with ptrauth operand bundles.");
9349 std::pair<SDValue, SDValue> Result =
lowerInvokable(CLI, EHPadBB);
9351 if (Result.first.getNode()) {
9366 DAG.setRoot(CopyNode);
9382 LoadTy, Builder.DAG.getDataLayout()))
9383 return Builder.getValue(LoadCst);
9389 bool ConstantMemory =
false;
9392 if (Builder.BatchAA && Builder.BatchAA->pointsToConstantMemory(PtrVal)) {
9393 Root = Builder.DAG.getEntryNode();
9394 ConstantMemory =
true;
9397 Root = Builder.DAG.getRoot();
9402 Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root, Ptr,
9405 if (!ConstantMemory)
9406 Builder.PendingLoads.push_back(LoadVal.
getValue(1));
9412void SelectionDAGBuilder::processIntegerCallValue(
const Instruction &
I,
9415 EVT VT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
9426bool SelectionDAGBuilder::visitMemCmpBCmpCall(
const CallInst &
I) {
9427 const Value *
LHS =
I.getArgOperand(0), *
RHS =
I.getArgOperand(1);
9428 const Value *
Size =
I.getArgOperand(2);
9431 EVT CallVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
9437 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9441 if (Res.first.getNode()) {
9442 processIntegerCallValue(
I, Res.first,
true);
9456 auto hasFastLoadsAndCompare = [&](
unsigned NumBits) {
9457 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
9479 switch (NumBitsToCompare) {
9491 LoadVT = hasFastLoadsAndCompare(NumBitsToCompare);
9504 LoadL =
DAG.getBitcast(CmpVT, LoadL);
9505 LoadR =
DAG.getBitcast(CmpVT, LoadR);
9509 processIntegerCallValue(
I, Cmp,
false);
9518bool SelectionDAGBuilder::visitMemChrCall(
const CallInst &
I) {
9519 const Value *Src =
I.getArgOperand(0);
9520 const Value *
Char =
I.getArgOperand(1);
9521 const Value *
Length =
I.getArgOperand(2);
9523 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9524 std::pair<SDValue, SDValue> Res =
9527 MachinePointerInfo(Src));
9528 if (Res.first.getNode()) {
9542bool SelectionDAGBuilder::visitMemCCpyCall(
const CallInst &
I) {
9543 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9550 processIntegerCallValue(
I, Res.first,
true);
9562bool SelectionDAGBuilder::visitMemPCpyCall(
const CallInst &
I) {
9563 SDValue Dst =
getValue(
I.getArgOperand(0));
9564 SDValue Src =
getValue(
I.getArgOperand(1));
9567 Align DstAlign =
DAG.InferPtrAlign(Dst).valueOrOne();
9568 Align SrcAlign =
DAG.InferPtrAlign(Src).valueOrOne();
9576 SDValue MC =
DAG.getMemcpy(
9577 Root, sdl, Dst, Src,
Size, DstAlign, SrcAlign,
false,
false,
9578 nullptr, std::nullopt, MachinePointerInfo(
I.getArgOperand(0)),
9579 MachinePointerInfo(
I.getArgOperand(1)),
I.getAAMetadata());
9581 "** memcpy should not be lowered as TailCall in mempcpy context **");
9585 Size =
DAG.getSExtOrTrunc(
Size, sdl, Dst.getValueType());
9588 SDValue DstPlusSize =
DAG.getMemBasePlusOffset(Dst,
Size, sdl);
9598bool SelectionDAGBuilder::visitStrCpyCall(
const CallInst &
I,
bool isStpcpy) {
9599 const Value *Arg0 =
I.getArgOperand(0), *Arg1 =
I.getArgOperand(1);
9601 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9604 MachinePointerInfo(Arg0), MachinePointerInfo(Arg1), isStpcpy, &
I);
9605 if (Res.first.getNode()) {
9607 DAG.setRoot(Res.second);
9619bool SelectionDAGBuilder::visitStrCmpCall(
const CallInst &
I) {
9620 const Value *Arg0 =
I.getArgOperand(0), *Arg1 =
I.getArgOperand(1);
9622 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9625 MachinePointerInfo(Arg0), MachinePointerInfo(Arg1), &
I);
9626 if (Res.first.getNode()) {
9627 processIntegerCallValue(
I, Res.first,
true);
9640bool SelectionDAGBuilder::visitStrLenCall(
const CallInst &
I) {
9641 const Value *Arg0 =
I.getArgOperand(0);
9643 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9646 if (Res.first.getNode()) {
9647 processIntegerCallValue(
I, Res.first,
false);
9660bool SelectionDAGBuilder::visitStrNLenCall(
const CallInst &
I) {
9661 const Value *Arg0 =
I.getArgOperand(0), *Arg1 =
I.getArgOperand(1);
9663 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9664 std::pair<SDValue, SDValue> Res =
9667 MachinePointerInfo(Arg0));
9668 if (Res.first.getNode()) {
9669 processIntegerCallValue(
I, Res.first,
false);
9682bool SelectionDAGBuilder::visitStrstrCall(
const CallInst &
I) {
9683 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9684 const Value *Arg0 =
I.getArgOperand(0), *Arg1 =
I.getArgOperand(1);
9688 processIntegerCallValue(
I, Res.first,
false);
9700bool SelectionDAGBuilder::visitUnaryFloatCall(
const CallInst &
I,
9705 if (!
I.onlyReadsMemory() ||
I.isStrictFP())
9711 SDValue Tmp =
getValue(
I.getArgOperand(0));
9722bool SelectionDAGBuilder::visitBinaryFloatCall(
const CallInst &
I,
9727 if (!
I.onlyReadsMemory() ||
I.isStrictFP())
9733 SDValue Tmp0 =
getValue(
I.getArgOperand(0));
9734 SDValue Tmp1 =
getValue(
I.getArgOperand(1));
9740void SelectionDAGBuilder::visitCall(
const CallInst &
I) {
9742 if (
I.isInlineAsm()) {
9750 if (
F->isDeclaration()) {
9752 if (
unsigned IID =
F->getIntrinsicID()) {
9753 visitIntrinsicCall(
I, IID);
9763 LibFunc
Func = !
I.isNoBuiltin() && !
F->hasLocalLinkage() &&
F->hasName()
9766 if (
LibInfo->hasOptimizedCodeGen(Func)) {
9770 if (visitMemCmpBCmpCall(
I))
9773 case LibFunc_copysign:
9774 case LibFunc_copysignf:
9775 case LibFunc_copysignl:
9778 if (
I.onlyReadsMemory()) {
9823 case LibFunc_atan2f:
9824 case LibFunc_atan2l:
9849 case LibFunc_sqrt_finite:
9850 case LibFunc_sqrtf_finite:
9851 case LibFunc_sqrtl_finite:
9868 case LibFunc_exp10f:
9869 case LibFunc_exp10l:
9874 case LibFunc_ldexpf:
9875 case LibFunc_ldexpl:
9879 case LibFunc_strstr:
9880 if (visitStrstrCall(
I))
9883 case LibFunc_memcmp:
9884 if (visitMemCmpBCmpCall(
I))
9887 case LibFunc_memccpy:
9888 if (visitMemCCpyCall(
I))
9891 case LibFunc_mempcpy:
9892 if (visitMemPCpyCall(
I))
9895 case LibFunc_memchr:
9896 if (visitMemChrCall(
I))
9899 case LibFunc_strcpy:
9900 if (visitStrCpyCall(
I,
false))
9903 case LibFunc_stpcpy:
9904 if (visitStrCpyCall(
I,
true))
9907 case LibFunc_strcmp:
9908 if (visitStrCmpCall(
I))
9911 case LibFunc_strlen:
9912 if (visitStrLenCall(
I))
9915 case LibFunc_strnlen:
9916 if (visitStrNLenCall(
I))
9940 if (
I.hasDeoptState())
9957 const Value *Discriminator = PAB->Inputs[1];
9959 assert(
Key->getType()->isIntegerTy(32) &&
"Invalid ptrauth key");
9960 assert(Discriminator->getType()->isIntegerTy(64) &&
9961 "Invalid ptrauth discriminator");
9966 if (CalleeCPA->isKnownCompatibleWith(
Key, Discriminator,
9967 DAG.getDataLayout()))
10007 for (
const auto &Code : Codes)
10022 SDISelAsmOperandInfo &MatchingOpInfo,
10024 if (OpInfo.ConstraintVT == MatchingOpInfo.ConstraintVT)
10030 std::pair<unsigned, const TargetRegisterClass *> MatchRC =
10032 OpInfo.ConstraintVT);
10033 std::pair<unsigned, const TargetRegisterClass *> InputRC =
10035 MatchingOpInfo.ConstraintVT);
10036 const bool OutOpIsIntOrFP =
10037 OpInfo.ConstraintVT.isInteger() || OpInfo.ConstraintVT.isFloatingPoint();
10038 const bool InOpIsIntOrFP = MatchingOpInfo.ConstraintVT.isInteger() ||
10039 MatchingOpInfo.ConstraintVT.isFloatingPoint();
10040 if ((OutOpIsIntOrFP != InOpIsIntOrFP) || (MatchRC.second != InputRC.second)) {
10043 " with a matching output constraint of"
10044 " incompatible type!");
10046 MatchingOpInfo.ConstraintVT = OpInfo.ConstraintVT;
10053 SDISelAsmOperandInfo &OpInfo,
10066 const Value *OpVal = OpInfo.CallOperandVal;
10084 DL.getPrefTypeAlign(Ty),
false,
10087 Chain = DAG.
getTruncStore(Chain, Location, OpInfo.CallOperand, StackSlot,
10090 OpInfo.CallOperand = StackSlot;
10103static std::optional<unsigned>
10105 SDISelAsmOperandInfo &OpInfo,
10106 SDISelAsmOperandInfo &RefOpInfo) {
10117 return std::nullopt;
10121 unsigned AssignedReg;
10124 &
TRI, RefOpInfo.ConstraintCode, RefOpInfo.ConstraintVT);
10127 return std::nullopt;
10132 const MVT RegVT = *
TRI.legalclasstypes_begin(*RC);
10134 if (OpInfo.ConstraintVT != MVT::Other && RegVT != MVT::Untyped) {
10143 !
TRI.isTypeLegalForClass(*RC, OpInfo.ConstraintVT)) {
10148 if (RegVT.
getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
10153 OpInfo.CallOperand =
10155 OpInfo.ConstraintVT = RegVT;
10159 }
else if (RegVT.
isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
10162 OpInfo.CallOperand =
10164 OpInfo.ConstraintVT = VT;
10171 if (OpInfo.isMatchingInputConstraint())
10172 return std::nullopt;
10174 EVT ValueVT = OpInfo.ConstraintVT;
10175 if (OpInfo.ConstraintVT == MVT::Other)
10179 unsigned NumRegs = 1;
10180 if (OpInfo.ConstraintVT != MVT::Other)
10195 I = std::find(
I, RC->
end(), AssignedReg);
10196 if (
I == RC->
end()) {
10199 return {AssignedReg};
10203 for (; NumRegs; --NumRegs, ++
I) {
10204 assert(
I != RC->
end() &&
"Ran out of registers to allocate!");
10209 OpInfo.AssignedRegs =
RegsForValue(Regs, RegVT, ValueVT);
10210 return std::nullopt;
10215 const std::vector<SDValue> &AsmNodeOperands) {
10218 for (; OperandNo; --OperandNo) {
10220 unsigned OpFlag = AsmNodeOperands[CurOp]->getAsZExtVal();
10223 (
F.isRegDefKind() ||
F.isRegDefEarlyClobberKind() ||
F.isMemKind()) &&
10224 "Skipped past definitions?");
10225 CurOp +=
F.getNumOperandRegisters() + 1;
10233 unsigned Flags = 0;
10236 explicit ExtraFlags(
const CallBase &
Call) {
10238 if (
IA->hasSideEffects())
10240 if (
IA->isAlignStack())
10242 if (
IA->canThrow())
10249 void update(
const TargetLowering::AsmOperandInfo &OpInfo) {
10265 unsigned get()
const {
return Flags; }
10289struct ConstraintDecisionInfo {
10291 std::vector<SDValue> AsmNodeOperands;
10292 SDValue Glue, Chain;
10293 bool HasSideEffect =
false;
10296 SmallVector<char> Buffer;
10297 raw_svector_ostream ErrorMsg;
10299 ConstraintDecisionInfo() : ErrorMsg(Buffer) {}
10309 ExtraFlags &ExtraInfo) {
10310 for (
auto &
T : TargetConstraints) {
10311 Info.ConstraintOperands.push_back(SDISelAsmOperandInfo(
T));
10312 SDISelAsmOperandInfo &OpInfo = Info.ConstraintOperands.back();
10314 if (OpInfo.CallOperandVal)
10315 OpInfo.CallOperand = Builder.getValue(OpInfo.CallOperandVal);
10317 if (!Info.HasSideEffect)
10318 Info.HasSideEffect = OpInfo.hasMemory(TLI);
10330 Info.ErrorMsg <<
"constraint '" <<
T.ConstraintCode
10331 <<
"' expects an integer constant expression";
10335 ExtraInfo.update(
T);
10349 IA->collectAsmStrs(AsmStrs);
10352 for (SDISelAsmOperandInfo &OpInfo : Info.ConstraintOperands) {
10360 if (OpInfo.hasMatchingInput()) {
10361 SDISelAsmOperandInfo &
Input =
10362 Info.ConstraintOperands[OpInfo.MatchingInput];
10393 if (OpInfo.isIndirect &&
isFunction(OpInfo.CallOperand) &&
10396 OpInfo.isIndirect =
false;
10403 !OpInfo.isIndirect) {
10404 assert((OpInfo.isMultipleAlternative ||
10406 "Can only indirectify direct input operands!");
10413 OpInfo.CallOperandVal =
nullptr;
10416 OpInfo.isIndirect =
true;
10428 SDLoc DL = Builder.getCurSDLoc();
10429 for (SDISelAsmOperandInfo &OpInfo : Info.ConstraintOperands) {
10431 SDISelAsmOperandInfo &RefOpInfo =
10432 OpInfo.isMatchingInputConstraint()
10433 ? Info.ConstraintOperands[OpInfo.getMatchedOperand()]
10439 const char *
RegName =
TRI.getName(*RegError);
10440 Info.ErrorMsg <<
"register '" <<
RegName <<
"' allocated for constraint '"
10441 << OpInfo.ConstraintCode
10442 <<
"' does not match required type";
10446 auto DetectWriteToReservedRegister = [&]() {
10451 if (
Reg.isPhysical() &&
TRI.isInlineAsmReadOnlyReg(MF,
Reg)) {
10452 Info.ErrorMsg <<
"write to reserved register '"
10453 <<
TRI.getRegAsmName(
Reg) <<
"'";
10462 !OpInfo.isMatchingInputConstraint())) &&
10463 "Only address as input operand is allowed.");
10465 switch (OpInfo.Type) {
10471 "Failed to convert memory constraint code to constraint id.");
10476 Info.AsmNodeOperands.push_back(
10478 Info.AsmNodeOperands.push_back(OpInfo.CallOperand);
10483 if (OpInfo.AssignedRegs.Regs.empty()) {
10484 Info.ErrorMsg <<
"could not allocate output register for "
10485 <<
"constraint '" << OpInfo.ConstraintCode <<
"'";
10489 if (DetectWriteToReservedRegister())
10494 OpInfo.AssignedRegs.AddInlineAsmOperands(
10497 false, 0,
DL, DAG, Info.AsmNodeOperands);
10503 SDValue InOperandVal = OpInfo.CallOperand;
10505 if (OpInfo.isMatchingInputConstraint()) {
10509 Info.AsmNodeOperands);
10511 if (Flag.isRegDefKind() || Flag.isRegDefEarlyClobberKind()) {
10512 if (OpInfo.isIndirect) {
10514 Info.ErrorMsg <<
"inline asm not supported yet: cannot handle "
10515 <<
"tied indirect register inputs";
10525 MVT RegVT = R->getSimpleValueType(0);
10529 :
TRI.getMinimalPhysRegClass(TiedReg);
10530 for (
unsigned I = 0,
E = Flag.getNumOperandRegisters();
I !=
E; ++
I)
10537 &Info.Glue, &
Call);
10539 OpInfo.getMatchedOperand(),
DL, DAG,
10540 Info.AsmNodeOperands);
10544 assert(Flag.isMemKind() &&
"Unknown matching constraint!");
10545 assert(Flag.getNumOperandRegisters() == 1 &&
10546 "Unexpected number of operands");
10550 Flag.clearMemConstraint();
10551 Flag.setMatchingOp(OpInfo.getMatchedOperand());
10554 Info.AsmNodeOperands.push_back(Info.AsmNodeOperands[CurOp + 1]);
10565 std::vector<SDValue>
Ops;
10571 Info.ErrorMsg <<
"value out of range for constraint '"
10572 << OpInfo.ConstraintCode <<
"'";
10576 Info.ErrorMsg <<
"invalid operand for inline asm constraint '"
10577 << OpInfo.ConstraintCode <<
"'";
10590 assert((OpInfo.isIndirect ||
10592 "Operand must be indirect to be a mem!");
10595 "Memory operands expect pointer values");
10600 "Failed to convert memory constraint code to constraint id.");
10605 Info.AsmNodeOperands.push_back(
10607 Info.AsmNodeOperands.push_back(InOperandVal);
10615 "Failed to convert memory constraint code to constraint id.");
10619 SDValue AsmOp = InOperandVal;
10631 Info.AsmNodeOperands.push_back(
10633 Info.AsmNodeOperands.push_back(AsmOp);
10639 Info.ErrorMsg <<
"unknown asm constraint '" << OpInfo.ConstraintCode
10645 if (OpInfo.isIndirect) {
10646 Info.ErrorMsg <<
"cannot handle indirect register inputs yet for "
10647 <<
"constraint '" << OpInfo.ConstraintCode <<
"'";
10652 if (OpInfo.AssignedRegs.Regs.empty()) {
10653 Info.ErrorMsg <<
"could not allocate input reg for constraint '"
10654 << OpInfo.ConstraintCode <<
"'";
10658 if (DetectWriteToReservedRegister())
10661 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG,
DL, Info.Chain,
10662 &Info.Glue, &
Call);
10663 OpInfo.AssignedRegs.AddInlineAsmOperands(
10671 if (!OpInfo.AssignedRegs.Regs.empty())
10672 OpInfo.AssignedRegs.AddInlineAsmOperands(
10689 ExtraFlags ExtraInfo(
Call);
10692 Info.HasSideEffect = IA->hasSideEffects();
10698 Info.Chain = Info.HasSideEffect ? Builder.getRoot() : DAG.
getRoot();
10702 if (IsCallBr || EmitEHLabels)
10706 Info.Chain = Builder.getControlRoot();
10709 Info.Chain = Builder.lowerStartEH(Info.Chain, EHPadBB, Info.BeginLabel);
10715 Info.AsmNodeOperands.push_back(
SDValue());
10722 const MDNode *SrcLoc =
Call.getMetadata(
"srcloc");
10723 Info.AsmNodeOperands.push_back(DAG.
getMDNode(SrcLoc));
10727 Info.AsmNodeOperands.push_back(
10736void SelectionDAGBuilder::visitInlineAsm(
const CallBase &
Call,
10738 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10740 DAG.getDataLayout(),
DAG.getSubtarget().getRegisterInfo(),
Call);
10743 "InvokeInst must have an EHPadBB");
10745 ConstraintDecisionInfo
Info;
10748 return emitInlineAsmError(
Call,
Info.ErrorMsg.str());
10750 SDValue Glue =
Info.Glue;
10751 SDValue Chain =
Info.Chain;
10756 Info.AsmNodeOperands.push_back(Glue);
10762 Info.AsmNodeOperands);
10774 ResultTypes = StructResult->elements();
10775 else if (!CallResultType->
isVoidTy())
10776 ResultTypes =
ArrayRef(CallResultType);
10778 auto CurResultType = ResultTypes.
begin();
10779 auto handleRegAssign = [&](SDValue
V) {
10780 assert(CurResultType != ResultTypes.
end() &&
"Unexpected value");
10781 assert((*CurResultType)->isSized() &&
"Unexpected unsized type");
10782 EVT ResultVT = TLI.
getValueType(
DAG.getDataLayout(), *CurResultType);
10794 if (ResultVT !=
V.getValueType() &&
10797 else if (ResultVT !=
V.getValueType() && ResultVT.
isInteger() &&
10798 V.getValueType().isInteger()) {
10804 assert(ResultVT ==
V.getValueType() &&
"Asm result value mismatch!");
10810 for (SDISelAsmOperandInfo &OpInfo :
Info.ConstraintOperands) {
10814 if (OpInfo.AssignedRegs.
Regs.empty())
10817 switch (OpInfo.ConstraintType) {
10821 Chain, &Glue, &
Call);
10833 assert(
false &&
"Unexpected unknown constraint");
10837 if (OpInfo.isIndirect) {
10838 const Value *Ptr = OpInfo.CallOperandVal;
10839 assert(Ptr &&
"Expected value CallOperandVal for indirect asm operand");
10841 MachinePointerInfo(Ptr));
10847 for (
const SDValue &V : Val->
op_values())
10848 handleRegAssign(V);
10850 handleRegAssign(Val);
10856 if (!ResultValues.
empty()) {
10857 assert(CurResultType == ResultTypes.
end() &&
10858 "Mismatch in number of ResultTypes");
10860 "Mismatch in number of output operands in asm result");
10863 DAG.getVTList(ResultVTs), ResultValues);
10868 if (!OutChains.
empty())
10872 Chain = lowerEndEH(Chain,
II, EHPadBB,
Info.BeginLabel);
10875 if (ResultValues.
empty() ||
Info.HasSideEffect || !OutChains.
empty() ||
10877 DAG.setRoot(Chain);
10880void SelectionDAGBuilder::emitInlineAsmError(
const CallBase &
Call,
10881 const Twine &Message) {
10882 LLVMContext &Ctx = *
DAG.getContext();
10886 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10890 if (ValueVTs.
empty())
10894 for (
const EVT &VT : ValueVTs)
10895 Ops.push_back(
DAG.getUNDEF(VT));
10900void SelectionDAGBuilder::visitVAStart(
const CallInst &
I) {
10904 DAG.getSrcValue(
I.getArgOperand(0))));
10907void SelectionDAGBuilder::visitVAArg(
const VAArgInst &
I) {
10908 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10909 const DataLayout &
DL =
DAG.getDataLayout();
10910 SDValue
V =
DAG.getVAArg(
10913 DL.getABITypeAlign(
I.getType()).value());
10914 DAG.setRoot(
V.getValue(1));
10916 if (
I.getType()->isPointerTy())
10917 V =
DAG.getPtrExtOrTrunc(
10922void SelectionDAGBuilder::visitVAEnd(
const CallInst &
I) {
10926 DAG.getSrcValue(
I.getArgOperand(0))));
10929void SelectionDAGBuilder::visitVACopy(
const CallInst &
I) {
10934 DAG.getSrcValue(
I.getArgOperand(0)),
10935 DAG.getSrcValue(
I.getArgOperand(1))));
10941 std::optional<ConstantRange> CR =
getRange(
I);
10943 if (!CR || CR->isFullSet() || CR->isEmptySet() || CR->isUpperWrapped())
10946 APInt Hi = CR->getUnsignedMax();
10947 unsigned Bits = std::max(
Hi.getActiveBits(),
10955 DAG.getValueType(SmallVT));
10956 unsigned NumVals =
Op.getNode()->getNumValues();
10962 Ops.push_back(ZExt);
10963 for (
unsigned I = 1;
I != NumVals; ++
I)
10964 Ops.push_back(
Op.getValue(
I));
10966 return DAG.getMergeValues(
Ops,
SL);
10976 SDValue TestConst =
DAG.getTargetConstant(Classes,
SDLoc(), MVT::i32);
10984 for (
unsigned I = 0, E =
Ops.size();
I != E; ++
I) {
10987 MergeOp, TestConst);
10990 return DAG.getMergeValues(
Ops,
SL);
11001 unsigned ArgIdx,
unsigned NumArgs,
SDValue Callee,
Type *ReturnTy,
11004 Args.reserve(NumArgs);
11008 for (
unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs;
11009 ArgI != ArgE; ++ArgI) {
11010 const Value *V =
Call->getOperand(ArgI);
11012 assert(!V->getType()->isEmptyTy() &&
"Empty type passed to intrinsic.");
11015 Entry.setAttributes(
Call, ArgI);
11016 Args.push_back(Entry);
11021 .
setCallee(
Call->getCallingConv(), ReturnTy, Callee, std::move(Args),
11050 for (
unsigned I = StartIdx;
I <
Call.arg_size();
I++) {
11059 Ops.push_back(Builder.getValue(
Call.getArgOperand(
I)));
11065void SelectionDAGBuilder::visitStackmap(
const CallInst &CI) {
11071 SDValue Chain, InGlue,
Callee;
11091 Ops.push_back(Chain);
11092 Ops.push_back(InGlue);
11099 assert(
ID.getValueType() == MVT::i64);
11101 DAG.getTargetConstant(
ID->getAsZExtVal(),
DL,
ID.getValueType());
11102 Ops.push_back(IDConst);
11106 SDValue ShadConst =
11108 Ops.push_back(ShadConst);
11114 SDVTList NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
11118 Chain =
DAG.getCALLSEQ_END(Chain, 0, 0, InGlue,
DL);
11123 DAG.setRoot(Chain);
11126 FuncInfo.MF->getFrameInfo().setHasStackMap();
11130void SelectionDAGBuilder::visitPatchpoint(
const CallBase &CB,
11147 Callee =
DAG.getIntPtrConstant(ConstCallee->getZExtValue(), dl,
11150 Callee =
DAG.getTargetGlobalAddress(SymbolicCallee->getGlobal(),
11151 SDLoc(SymbolicCallee),
11152 SymbolicCallee->getValueType(0));
11162 "Not enough arguments provided to the patchpoint intrinsic");
11165 unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs;
11169 TargetLowering::CallLoweringInfo CLI(
DAG);
11174 SDNode *CallEnd =
Result.second.getNode();
11183 "Expected a callseq node.");
11185 bool HasGlue =
Call->getGluedNode();
11210 Ops.push_back(Callee);
11216 NumCallRegArgs = IsAnyRegCC ? NumArgs : NumCallRegArgs;
11217 Ops.push_back(
DAG.getTargetConstant(NumCallRegArgs, dl, MVT::i32));
11220 Ops.push_back(
DAG.getTargetConstant((
unsigned)CC, dl, MVT::i32));
11225 for (
unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i !=
e; ++i)
11236 if (IsAnyRegCC && HasDef) {
11238 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
11241 assert(ValueVTs.
size() == 1 &&
"Expected only one return value type.");
11246 NodeTys =
DAG.getVTList(ValueVTs);
11248 NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
11265 if (IsAnyRegCC && HasDef) {
11266 SDValue From[] = {SDValue(
Call, 0), SDValue(
Call, 1)};
11268 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
11274 FuncInfo.MF->getFrameInfo().setHasPatchPoint();
11277void SelectionDAGBuilder::visitVectorReduce(
const CallInst &
I,
11279 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
11280 SDValue Op1 =
getValue(
I.getArgOperand(0));
11282 if (
I.arg_size() > 1)
11287 SDNodeFlags SDFlags;
11291 switch (Intrinsic) {
11292 case Intrinsic::vector_reduce_fadd:
11300 case Intrinsic::vector_reduce_fmul:
11308 case Intrinsic::vector_reduce_add:
11311 case Intrinsic::vector_reduce_mul:
11314 case Intrinsic::vector_reduce_and:
11317 case Intrinsic::vector_reduce_or:
11320 case Intrinsic::vector_reduce_xor:
11323 case Intrinsic::vector_reduce_smax:
11326 case Intrinsic::vector_reduce_smin:
11329 case Intrinsic::vector_reduce_umax:
11332 case Intrinsic::vector_reduce_umin:
11335 case Intrinsic::vector_reduce_fmax:
11338 case Intrinsic::vector_reduce_fmin:
11341 case Intrinsic::vector_reduce_fmaximum:
11344 case Intrinsic::vector_reduce_fminimum:
11347 case Intrinsic::vector_reduce_fmaximumnum:
11350 case Intrinsic::vector_reduce_fminimumnum:
11364 Attrs.push_back(Attribute::SExt);
11366 Attrs.push_back(Attribute::ZExt);
11368 Attrs.push_back(Attribute::InReg);
11370 return AttributeList::get(CLI.
RetTy->
getContext(), AttributeList::ReturnIndex,
11378std::pair<SDValue, SDValue>
11392 "Only supported for non-aggregate returns");
11395 for (
Type *Ty : RetOrigTys)
11404 RetOrigTys.
swap(OldRetOrigTys);
11405 RetVTs.
swap(OldRetVTs);
11406 Offsets.swap(OldOffsets);
11408 for (
size_t i = 0, e = OldRetVTs.
size(); i != e; ++i) {
11409 EVT RetVT = OldRetVTs[i];
11410 uint64_t
Offset = OldOffsets[i];
11413 unsigned RegisterVTByteSZ = RegisterVT.
getSizeInBits() / 8;
11414 RetOrigTys.
append(NumRegs, OldRetOrigTys[i]);
11415 RetVTs.
append(NumRegs, RegisterVT);
11416 for (
unsigned j = 0; j != NumRegs; ++j)
11429 int DemoteStackIdx = -100;
11434 uint64_t TySize =
DL.getTypeAllocSize(CLI.
RetTy);
11442 ArgListEntry Entry(DemoteStackSlot, StackSlotPtrType);
11443 Entry.IsSRet =
true;
11444 Entry.Alignment = Alignment;
11456 for (
unsigned I = 0, E = RetVTs.
size();
I != E; ++
I) {
11458 if (NeedsRegBlock) {
11459 Flags.setInConsecutiveRegs();
11460 if (
I == RetVTs.
size() - 1)
11461 Flags.setInConsecutiveRegsLast();
11463 EVT VT = RetVTs[
I];
11467 for (
unsigned i = 0; i != NumRegs; ++i) {
11481 CLI.
Ins.push_back(Ret);
11490 if (Arg.IsSwiftError) {
11496 CLI.
Ins.push_back(Ret);
11504 for (
unsigned i = 0, e = Args.size(); i != e; ++i) {
11508 Type *FinalType = Args[i].Ty;
11509 if (Args[i].IsByVal)
11510 FinalType = Args[i].IndirectType;
11513 for (
unsigned Value = 0, NumValues = OrigArgTys.
size();
Value != NumValues;
11516 Type *ArgTy = OrigArgTy;
11517 if (Args[i].Ty != Args[i].OrigTy) {
11518 assert(
Value == 0 &&
"Only supported for non-aggregate arguments");
11519 ArgTy = Args[i].Ty;
11524 Args[i].Node.getResNo() +
Value);
11531 Flags.setOrigAlign(OriginalAlignment);
11536 Flags.setPointer();
11539 if (Args[i].IsZExt)
11541 if (Args[i].IsSExt)
11543 if (Args[i].IsNoExt)
11545 if (Args[i].IsInReg) {
11552 Flags.setHvaStart();
11558 if (Args[i].IsSRet)
11560 if (Args[i].IsSwiftSelf)
11561 Flags.setSwiftSelf();
11562 if (Args[i].IsSwiftAsync)
11563 Flags.setSwiftAsync();
11564 if (Args[i].IsSwiftError)
11565 Flags.setSwiftError();
11566 if (Args[i].IsCFGuardTarget)
11567 Flags.setCFGuardTarget();
11568 if (Args[i].IsByVal)
11570 if (Args[i].IsByRef)
11572 if (Args[i].IsPreallocated) {
11573 Flags.setPreallocated();
11581 if (Args[i].IsInAlloca) {
11582 Flags.setInAlloca();
11591 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) {
11592 unsigned FrameSize =
DL.getTypeAllocSize(Args[i].IndirectType);
11593 Flags.setByValSize(FrameSize);
11596 if (
auto MA = Args[i].Alignment)
11600 }
else if (
auto MA = Args[i].Alignment) {
11603 MemAlign = OriginalAlignment;
11605 Flags.setMemAlign(MemAlign);
11606 if (Args[i].IsNest)
11609 Flags.setInConsecutiveRegs();
11612 unsigned NumParts =
11617 if (Args[i].IsSExt)
11619 else if (Args[i].IsZExt)
11624 if (Args[i].IsReturned && !
Op.getValueType().isVector() &&
11629 Args[i].Ty->getPointerAddressSpace())) &&
11630 RetVTs.
size() == NumValues &&
"unexpected use of 'returned'");
11643 CLI.
RetZExt == Args[i].IsZExt))
11644 Flags.setReturned();
11650 for (
unsigned j = 0; j != NumParts; ++j) {
11656 j * Parts[j].
getValueType().getStoreSize().getKnownMinValue());
11657 if (NumParts > 1 && j == 0)
11661 if (j == NumParts - 1)
11665 CLI.
Outs.push_back(MyFlags);
11666 CLI.
OutVals.push_back(Parts[j]);
11669 if (NeedsRegBlock &&
Value == NumValues - 1)
11670 CLI.
Outs[CLI.
Outs.size() - 1].Flags.setInConsecutiveRegsLast();
11682 "LowerCall didn't return a valid chain!");
11684 "LowerCall emitted a return value for a tail call!");
11686 "LowerCall didn't emit the correct number of values!");
11698 for (
unsigned i = 0, e = CLI.
Ins.size(); i != e; ++i) {
11699 assert(InVals[i].
getNode() &&
"LowerCall emitted a null value!");
11700 assert(
EVT(CLI.
Ins[i].VT) == InVals[i].getValueType() &&
11701 "LowerCall emitted a value with the wrong type!");
11711 unsigned NumValues = RetVTs.
size();
11712 ReturnValues.
resize(NumValues);
11719 for (
unsigned i = 0; i < NumValues; ++i) {
11726 DemoteStackIdx, Offsets[i]),
11728 ReturnValues[i] = L;
11729 Chains[i] = L.getValue(1);
11736 std::optional<ISD::NodeType> AssertOp;
11741 unsigned CurReg = 0;
11742 for (
EVT VT : RetVTs) {
11748 CLI.
DAG, CLI.
DL, &InVals[CurReg], NumRegs, RegisterVT, VT,
nullptr,
11756 if (ReturnValues.
empty())
11762 return std::make_pair(Res, CLI.
Chain);
11779 if (
N->getNumValues() == 1) {
11787 "Lowering returned the wrong number of results!");
11790 for (
unsigned I = 0, E =
N->getNumValues();
I != E; ++
I)
11804 "Copy from a reg to the same reg!");
11805 assert(!Reg.isPhysical() &&
"Is a physreg");
11811 RegsForValue RFV(V->getContext(), TLI,
DAG.getDataLayout(), Reg, V->getType(),
11816 auto PreferredExtendIt =
FuncInfo.PreferredExtendType.find(V);
11817 if (PreferredExtendIt !=
FuncInfo.PreferredExtendType.end())
11818 ExtendType = PreferredExtendIt->second;
11821 PendingExports.push_back(Chain);
11833 return A->use_empty();
11835 const BasicBlock &Entry =
A->getParent()->front();
11836 for (
const User *U :
A->users())
11845 std::pair<const AllocaInst *, const StoreInst *>>;
11857 enum StaticAllocaInfo {
Unknown, Clobbered, Elidable };
11859 unsigned NumArgs = FuncInfo->
Fn->
arg_size();
11860 StaticAllocas.
reserve(NumArgs * 2);
11862 auto GetInfoIfStaticAlloca = [&](
const Value *V) -> StaticAllocaInfo * {
11865 V = V->stripPointerCasts();
11867 if (!AI || !AI->isStaticAlloca() || !FuncInfo->
StaticAllocaMap.count(AI))
11870 return &Iter.first->second;
11887 if (
I.isDebugOrPseudoInst())
11891 for (
const Use &U :
I.operands()) {
11892 if (StaticAllocaInfo *Info = GetInfoIfStaticAlloca(U))
11893 *Info = StaticAllocaInfo::Clobbered;
11899 if (StaticAllocaInfo *Info = GetInfoIfStaticAlloca(
SI->getValueOperand()))
11900 *Info = StaticAllocaInfo::Clobbered;
11903 const Value *Dst =
SI->getPointerOperand()->stripPointerCasts();
11904 StaticAllocaInfo *Info = GetInfoIfStaticAlloca(Dst);
11910 if (*Info != StaticAllocaInfo::Unknown)
11918 const Value *Val =
SI->getValueOperand()->stripPointerCasts();
11921 if (!Arg || Arg->hasPassPointeeByValueCopyAttr() ||
11923 DL.getTypeStoreSize(Arg->
getType()) != *AllocaSize ||
11924 !
DL.typeSizeEqualsStoreSize(Arg->
getType()) ||
11925 ArgCopyElisionCandidates.count(Arg)) {
11926 *Info = StaticAllocaInfo::Clobbered;
11930 LLVM_DEBUG(
dbgs() <<
"Found argument copy elision candidate: " << *AI
11934 *Info = StaticAllocaInfo::Elidable;
11935 ArgCopyElisionCandidates.insert({Arg, {AI,
SI}});
11940 if (ArgCopyElisionCandidates.size() == NumArgs)
11964 auto ArgCopyIter = ArgCopyElisionCandidates.find(&Arg);
11965 assert(ArgCopyIter != ArgCopyElisionCandidates.end());
11966 const AllocaInst *AI = ArgCopyIter->second.first;
11967 int FixedIndex = FINode->getIndex();
11969 int OldIndex = AllocaIndex;
11973 dbgs() <<
" argument copy elision failed due to bad fixed stack "
11979 LLVM_DEBUG(
dbgs() <<
" argument copy elision failed: alignment of alloca "
11980 "greater than stack argument alignment ("
11981 <<
DebugStr(RequiredAlignment) <<
" vs "
11989 dbgs() <<
"Eliding argument copy from " << Arg <<
" to " << *AI <<
'\n'
11990 <<
" Replacing frame index " << OldIndex <<
" with " << FixedIndex
11996 AllocaIndex = FixedIndex;
11997 ArgCopyElisionFrameIndexMap.
insert({OldIndex, FixedIndex});
11998 for (
SDValue ArgVal : ArgVals)
12002 const StoreInst *
SI = ArgCopyIter->second.second;
12015void SelectionDAGISel::LowerArguments(
const Function &
F) {
12016 SelectionDAG &DAG =
SDB->DAG;
12017 SDLoc dl =
SDB->getCurSDLoc();
12022 if (
F.hasFnAttribute(Attribute::Naked))
12027 MVT ValueVT =
TLI->getPointerTy(
DL,
DL.getAllocaAddrSpace());
12029 ISD::ArgFlagsTy
Flags;
12031 MVT RegisterVT =
TLI->getRegisterType(*DAG.
getContext(), ValueVT);
12032 ISD::InputArg RetArg(Flags, RegisterVT, ValueVT,
F.getReturnType(),
true,
12042 ArgCopyElisionCandidates);
12045 for (
const Argument &Arg :
F.args()) {
12046 unsigned ArgNo = Arg.getArgNo();
12049 bool isArgValueUsed = !Arg.
use_empty();
12051 if (Arg.hasAttribute(Attribute::ByVal))
12052 FinalType = Arg.getParamByValType();
12053 bool NeedsRegBlock =
TLI->functionArgumentNeedsConsecutiveRegisters(
12054 FinalType,
F.getCallingConv(),
F.isVarArg(),
DL);
12055 for (
unsigned Value = 0, NumValues =
Types.size();
Value != NumValues;
12058 EVT VT =
TLI->getValueType(
DL, ArgTy);
12059 ISD::ArgFlagsTy
Flags;
12062 Flags.setPointer();
12065 if (Arg.hasAttribute(Attribute::ZExt))
12067 if (Arg.hasAttribute(Attribute::SExt))
12069 if (Arg.hasAttribute(Attribute::InReg)) {
12076 Flags.setHvaStart();
12082 if (Arg.hasAttribute(Attribute::StructRet))
12084 if (Arg.hasAttribute(Attribute::SwiftSelf))
12085 Flags.setSwiftSelf();
12086 if (Arg.hasAttribute(Attribute::SwiftAsync))
12087 Flags.setSwiftAsync();
12088 if (Arg.hasAttribute(Attribute::SwiftError))
12089 Flags.setSwiftError();
12090 if (Arg.hasAttribute(Attribute::ByVal))
12092 if (Arg.hasAttribute(Attribute::ByRef))
12094 if (Arg.hasAttribute(Attribute::InAlloca)) {
12095 Flags.setInAlloca();
12103 if (Arg.hasAttribute(Attribute::Preallocated)) {
12104 Flags.setPreallocated();
12116 const Align OriginalAlignment(
12117 TLI->getABIAlignmentForCallingConv(ArgTy,
DL));
12118 Flags.setOrigAlign(OriginalAlignment);
12121 Type *ArgMemTy =
nullptr;
12122 if (
Flags.isByVal() ||
Flags.isInAlloca() ||
Flags.isPreallocated() ||
12125 ArgMemTy = Arg.getPointeeInMemoryValueType();
12127 uint64_t MemSize =
DL.getTypeAllocSize(ArgMemTy);
12132 if (
auto ParamAlign = Arg.getParamStackAlign())
12133 MemAlign = *ParamAlign;
12134 else if ((ParamAlign = Arg.getParamAlign()))
12135 MemAlign = *ParamAlign;
12137 MemAlign =
TLI->getByValTypeAlignment(ArgMemTy,
DL);
12138 if (
Flags.isByRef())
12139 Flags.setByRefSize(MemSize);
12141 Flags.setByValSize(MemSize);
12142 }
else if (
auto ParamAlign = Arg.getParamStackAlign()) {
12143 MemAlign = *ParamAlign;
12145 MemAlign = OriginalAlignment;
12147 Flags.setMemAlign(MemAlign);
12149 if (Arg.hasAttribute(Attribute::Nest))
12152 Flags.setInConsecutiveRegs();
12153 if (ArgCopyElisionCandidates.count(&Arg))
12154 Flags.setCopyElisionCandidate();
12155 if (Arg.hasAttribute(Attribute::Returned))
12156 Flags.setReturned();
12158 MVT RegisterVT =
TLI->getRegisterTypeForCallingConv(
12159 *
CurDAG->getContext(),
F.getCallingConv(), VT);
12160 unsigned NumRegs =
TLI->getNumRegistersForCallingConv(
12161 *
CurDAG->getContext(),
F.getCallingConv(), VT);
12162 for (
unsigned i = 0; i != NumRegs; ++i) {
12166 ISD::InputArg MyFlags(
12167 Flags, RegisterVT, VT, ArgTy, isArgValueUsed, ArgNo,
12169 if (NumRegs > 1 && i == 0)
12170 MyFlags.Flags.setSplit();
12173 MyFlags.Flags.setOrigAlign(
Align(1));
12174 if (i == NumRegs - 1)
12175 MyFlags.Flags.setSplitEnd();
12179 if (NeedsRegBlock &&
Value == NumValues - 1)
12180 Ins[Ins.
size() - 1].Flags.setInConsecutiveRegsLast();
12186 SDValue NewRoot =
TLI->LowerFormalArguments(
12187 DAG.
getRoot(),
F.getCallingConv(),
F.isVarArg(), Ins, dl, DAG, InVals);
12191 "LowerFormalArguments didn't return a valid chain!");
12193 "LowerFormalArguments didn't emit the correct number of values!");
12195 "LowerFormalArguments emitted a null value!");
12205 MVT VT =
TLI->getPointerTy(
DL,
DL.getAllocaAddrSpace());
12206 MVT RegVT =
TLI->getRegisterType(*
CurDAG->getContext(), VT);
12207 std::optional<ISD::NodeType> AssertOp;
12210 F.getCallingConv(), AssertOp);
12213 MachineRegisterInfo&
RegInfo =
MF.getRegInfo();
12215 RegInfo.createVirtualRegister(
TLI->getRegClassFor(RegVT));
12216 FuncInfo->DemoteRegister = SRetReg;
12218 SDB->DAG.getCopyToReg(NewRoot,
SDB->getCurSDLoc(), SRetReg, ArgValue);
12226 DenseMap<int, int> ArgCopyElisionFrameIndexMap;
12227 for (
const Argument &Arg :
F.args()) {
12231 unsigned NumValues = ValueVTs.
size();
12232 if (NumValues == 0)
12239 if (Ins[i].
Flags.isCopyElisionCandidate()) {
12240 unsigned NumParts = 0;
12241 for (EVT VT : ValueVTs)
12242 NumParts +=
TLI->getNumRegistersForCallingConv(*
CurDAG->getContext(),
12243 F.getCallingConv(), VT);
12247 ArrayRef(&InVals[i], NumParts), ArgHasUses);
12252 bool isSwiftErrorArg =
12253 TLI->supportSwiftError() &&
12254 Arg.hasAttribute(Attribute::SwiftError);
12255 if (!ArgHasUses && !isSwiftErrorArg) {
12256 SDB->setUnusedArgValue(&Arg, InVals[i]);
12259 if (FrameIndexSDNode *FI =
12261 FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
12264 for (
unsigned Val = 0; Val != NumValues; ++Val) {
12265 EVT VT = ValueVTs[Val];
12266 MVT PartVT =
TLI->getRegisterTypeForCallingConv(*
CurDAG->getContext(),
12267 F.getCallingConv(), VT);
12268 unsigned NumParts =
TLI->getNumRegistersForCallingConv(
12269 *
CurDAG->getContext(),
F.getCallingConv(), VT);
12274 if (ArgHasUses || isSwiftErrorArg) {
12275 std::optional<ISD::NodeType> AssertOp;
12276 if (Arg.hasAttribute(Attribute::SExt))
12278 else if (Arg.hasAttribute(Attribute::ZExt))
12283 NewRoot,
F.getCallingConv(), AssertOp);
12286 if (NoFPClass !=
fcNone) {
12288 static_cast<uint64_t>(NoFPClass), dl, MVT::i32);
12290 OutVal, SDNoFPClass);
12299 if (ArgValues.
empty())
12303 if (FrameIndexSDNode *FI =
12305 FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
12308 SDB->getCurSDLoc());
12310 SDB->setValue(&Arg, Res);
12320 if (LoadSDNode *LNode =
12322 if (FrameIndexSDNode *FI =
12324 FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
12352 FuncInfo->InitializeRegForValue(&Arg);
12353 SDB->CopyToExportRegsIfNeeded(&Arg);
12357 if (!Chains.
empty()) {
12364 assert(i == InVals.
size() &&
"Argument register count mismatch!");
12368 if (!ArgCopyElisionFrameIndexMap.
empty()) {
12369 for (MachineFunction::VariableDbgInfo &VI :
12370 MF->getInStackSlotVariableDbgInfo()) {
12371 auto I = ArgCopyElisionFrameIndexMap.
find(
VI.getStackSlot());
12372 if (
I != ArgCopyElisionFrameIndexMap.
end())
12373 VI.updateStackSlot(
I->second);
12388SelectionDAGBuilder::HandlePHINodesInSuccessorBlocks(
const BasicBlock *LLVMBB) {
12389 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12391 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
12397 MachineBasicBlock *SuccMBB =
FuncInfo.getMBB(SuccBB);
12401 if (!SuccsHandled.
insert(SuccMBB).second)
12409 for (
const PHINode &PN : SuccBB->phis()) {
12411 if (PN.use_empty())
12415 if (PN.getType()->isEmptyTy())
12419 const Value *PHIOp = PN.getIncomingValueForBlock(LLVMBB);
12424 RegOut =
FuncInfo.CreateRegs(&PN);
12435 auto I =
FuncInfo.ValueMap.find(PHIOp);
12441 "Didn't codegen value into a register!??");
12451 for (EVT VT : ValueVTs) {
12453 for (
unsigned i = 0; i != NumRegisters; ++i)
12455 Reg += NumRegisters;
12475void SelectionDAGBuilder::updateDAGForMaybeTailCall(
SDValue MaybeTC) {
12477 if (MaybeTC.
getNode() !=
nullptr)
12478 DAG.setRoot(MaybeTC);
12483void SelectionDAGBuilder::lowerWorkItem(SwitchWorkListItem W,
Value *
Cond,
12487 MachineBasicBlock *NextMBB =
nullptr;
12492 unsigned Size =
W.LastCluster -
W.FirstCluster + 1;
12494 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
12496 if (
Size == 2 &&
W.MBB == SwitchMBB) {
12504 CaseCluster &
Small = *
W.FirstCluster;
12505 CaseCluster &
Big = *
W.LastCluster;
12509 const APInt &SmallValue =
Small.Low->getValue();
12510 const APInt &BigValue =
Big.Low->getValue();
12513 APInt CommonBit = BigValue ^ SmallValue;
12520 DAG.getConstant(CommonBit,
DL, VT));
12522 DL, MVT::i1,
Or,
DAG.getConstant(BigValue | SmallValue,
DL, VT),
12528 addSuccessorWithProb(SwitchMBB,
Small.MBB,
Small.Prob +
Big.Prob);
12530 addSuccessorWithProb(
12531 SwitchMBB, DefaultMBB,
12535 addSuccessorWithProb(SwitchMBB, DefaultMBB);
12543 DAG.getBasicBlock(DefaultMBB));
12545 DAG.setRoot(BrCond);
12557 [](
const CaseCluster &a,
const CaseCluster &b) {
12558 return a.Prob != b.Prob ?
12560 a.Low->getValue().slt(b.Low->getValue());
12567 if (
I->Prob >
W.LastCluster->Prob)
12569 if (
I->Kind ==
CC_Range &&
I->MBB == NextMBB) {
12577 BranchProbability DefaultProb =
W.DefaultProb;
12578 BranchProbability UnhandledProbs = DefaultProb;
12580 UnhandledProbs +=
I->Prob;
12582 MachineBasicBlock *CurMBB =
W.MBB;
12584 bool FallthroughUnreachable =
false;
12585 MachineBasicBlock *Fallthrough;
12586 if (
I ==
W.LastCluster) {
12588 Fallthrough = DefaultMBB;
12593 CurMF->
insert(BBI, Fallthrough);
12597 UnhandledProbs -=
I->Prob;
12602 JumpTableHeader *JTH = &
SL->JTCases[
I->JTCasesIndex].first;
12603 SwitchCG::JumpTable *JT = &
SL->JTCases[
I->JTCasesIndex].second;
12606 MachineBasicBlock *JumpMBB = JT->
MBB;
12607 CurMF->
insert(BBI, JumpMBB);
12609 auto JumpProb =
I->Prob;
12610 auto FallthroughProb = UnhandledProbs;
12618 if (*SI == DefaultMBB) {
12619 JumpProb += DefaultProb / 2;
12620 FallthroughProb -= DefaultProb / 2;
12638 if (FallthroughUnreachable) {
12645 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb);
12646 addSuccessorWithProb(CurMBB, JumpMBB, JumpProb);
12655 if (CurMBB == SwitchMBB) {
12663 BitTestBlock *BTB = &
SL->BitTestCases[
I->BTCasesIndex];
12666 for (BitTestCase &BTC : BTB->
Cases)
12678 BTB->
Prob += DefaultProb / 2;
12682 if (FallthroughUnreachable)
12686 if (CurMBB == SwitchMBB) {
12693 const Value *
RHS, *
LHS, *MHS;
12695 if (
I->Low ==
I->High) {
12710 if (FallthroughUnreachable)
12714 CaseBlock CB(CC,
LHS,
RHS, MHS,
I->MBB, Fallthrough, CurMBB,
12717 if (CurMBB == SwitchMBB)
12720 SL->SwitchCases.push_back(CB);
12725 CurMBB = Fallthrough;
12729void SelectionDAGBuilder::splitWorkItem(
SwitchWorkList &WorkList,
12730 const SwitchWorkListItem &W,
12733 assert(
W.FirstCluster->Low->getValue().slt(
W.LastCluster->Low->getValue()) &&
12734 "Clusters not sorted?");
12735 assert(
W.LastCluster -
W.FirstCluster + 1 >= 2 &&
"Too small to split!");
12737 auto [LastLeft, FirstRight, LeftProb, RightProb] =
12738 SL->computeSplitWorkItemInfo(W);
12743 assert(PivotCluster >
W.FirstCluster);
12744 assert(PivotCluster <=
W.LastCluster);
12749 const ConstantInt *Pivot = PivotCluster->Low;
12758 MachineBasicBlock *LeftMBB;
12759 if (FirstLeft == LastLeft && FirstLeft->Kind ==
CC_Range &&
12760 FirstLeft->Low ==
W.GE &&
12761 (FirstLeft->High->getValue() + 1LL) == Pivot->
getValue()) {
12762 LeftMBB = FirstLeft->MBB;
12764 LeftMBB =
FuncInfo.MF->CreateMachineBasicBlock(
W.MBB->getBasicBlock());
12765 FuncInfo.MF->insert(BBI, LeftMBB);
12767 {LeftMBB, FirstLeft, LastLeft,
W.GE, Pivot,
W.DefaultProb / 2});
12775 MachineBasicBlock *RightMBB;
12776 if (FirstRight == LastRight && FirstRight->Kind ==
CC_Range &&
12777 W.LT && (FirstRight->High->getValue() + 1ULL) ==
W.LT->getValue()) {
12778 RightMBB = FirstRight->MBB;
12780 RightMBB =
FuncInfo.MF->CreateMachineBasicBlock(
W.MBB->getBasicBlock());
12781 FuncInfo.MF->insert(BBI, RightMBB);
12783 {RightMBB, FirstRight, LastRight, Pivot,
W.LT,
W.DefaultProb / 2});
12789 CaseBlock CB(
ISD::SETLT,
Cond, Pivot,
nullptr, LeftMBB, RightMBB,
W.MBB,
12792 if (
W.MBB == SwitchMBB)
12795 SL->SwitchCases.push_back(CB);
12820 MachineBasicBlock *SwitchMBB =
FuncInfo.MBB;
12828 unsigned PeeledCaseIndex = 0;
12829 bool SwitchPeeled =
false;
12830 for (
unsigned Index = 0;
Index < Clusters.size(); ++
Index) {
12831 CaseCluster &CC = Clusters[
Index];
12832 if (CC.
Prob < TopCaseProb)
12834 TopCaseProb = CC.
Prob;
12835 PeeledCaseIndex =
Index;
12836 SwitchPeeled =
true;
12841 LLVM_DEBUG(
dbgs() <<
"Peeled one top case in switch stmt, prob: "
12842 << TopCaseProb <<
"\n");
12847 MachineBasicBlock *PeeledSwitchMBB =
12849 FuncInfo.MF->insert(BBI, PeeledSwitchMBB);
12852 auto PeeledCaseIt = Clusters.begin() + PeeledCaseIndex;
12853 SwitchWorkListItem
W = {SwitchMBB, PeeledCaseIt, PeeledCaseIt,
12854 nullptr,
nullptr, TopCaseProb.
getCompl()};
12855 lowerWorkItem(W,
SI.getCondition(), SwitchMBB, PeeledSwitchMBB);
12857 Clusters.erase(PeeledCaseIt);
12858 for (CaseCluster &CC : Clusters) {
12860 dbgs() <<
"Scale the probablity for one cluster, before scaling: "
12861 << CC.
Prob <<
"\n");
12865 PeeledCaseProb = TopCaseProb;
12866 return PeeledSwitchMBB;
12869void SelectionDAGBuilder::visitSwitch(
const SwitchInst &
SI) {
12871 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
12873 Clusters.reserve(
SI.getNumCases());
12874 for (
auto I :
SI.cases()) {
12875 MachineBasicBlock *Succ =
FuncInfo.getMBB(
I.getCaseSuccessor());
12876 const ConstantInt *CaseVal =
I.getCaseValue();
12877 BranchProbability Prob =
12879 : BranchProbability(1,
SI.getNumCases() + 1);
12883 MachineBasicBlock *DefaultMBB =
FuncInfo.getMBB(
SI.getDefaultDest());
12892 MachineBasicBlock *PeeledSwitchMBB =
12893 peelDominantCaseCluster(SI, Clusters, PeeledCaseProb);
12896 MachineBasicBlock *SwitchMBB =
FuncInfo.MBB;
12897 if (Clusters.empty()) {
12898 assert(PeeledSwitchMBB == SwitchMBB);
12900 if (DefaultMBB != NextBlock(SwitchMBB)) {
12907 SL->findJumpTables(Clusters, &SI,
getCurSDLoc(), DefaultMBB,
DAG.getPSI(),
12909 SL->findBitTestClusters(Clusters, &SI);
12912 dbgs() <<
"Case clusters: ";
12913 for (
const CaseCluster &
C : Clusters) {
12919 C.Low->getValue().print(
dbgs(),
true);
12920 if (
C.Low !=
C.High) {
12922 C.High->getValue().print(
dbgs(),
true);
12929 assert(!Clusters.empty());
12933 auto DefaultProb = getEdgeProbability(PeeledSwitchMBB, DefaultMBB);
12937 DefaultMBB ==
FuncInfo.getMBB(
SI.getDefaultDest()))
12940 {PeeledSwitchMBB,
First,
Last,
nullptr,
nullptr, DefaultProb});
12942 while (!WorkList.
empty()) {
12944 unsigned NumClusters =
W.LastCluster -
W.FirstCluster + 1;
12949 splitWorkItem(WorkList, W,
SI.getCondition(), SwitchMBB);
12953 lowerWorkItem(W,
SI.getCondition(), SwitchMBB, DefaultMBB);
12957void SelectionDAGBuilder::visitStepVector(
const CallInst &
I) {
12958 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12964void SelectionDAGBuilder::visitVectorReverse(
const CallInst &
I) {
12965 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12970 assert(VT ==
V.getValueType() &&
"Malformed vector.reverse!");
12979 SmallVector<int, 8>
Mask;
12981 for (
unsigned i = 0; i != NumElts; ++i)
12982 Mask.push_back(NumElts - 1 - i);
12987void SelectionDAGBuilder::visitVectorDeinterleave(
const CallInst &
I,
12990 SDValue InVec =
getValue(
I.getOperand(0));
12996 EVT OutVT = ValueVTs[0];
13000 for (
unsigned i = 0; i != Factor; ++i) {
13001 assert(ValueVTs[i] == OutVT &&
"Expected VTs to be the same");
13003 DAG.getVectorIdxConstant(OutNumElts * i,
DL));
13009 SDValue Even =
DAG.getVectorShuffle(OutVT,
DL, SubVecs[0], SubVecs[1],
13011 SDValue Odd =
DAG.getVectorShuffle(OutVT,
DL, SubVecs[0], SubVecs[1],
13019 DAG.getVTList(ValueVTs), SubVecs);
13023void SelectionDAGBuilder::visitVectorInterleave(
const CallInst &
I,
13026 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
13031 for (
unsigned i = 0; i < Factor; ++i) {
13034 "Expected VTs to be the same");
13052 for (
unsigned i = 0; i < Factor; ++i)
13059void SelectionDAGBuilder::visitFreeze(
const FreezeInst &
I) {
13063 unsigned NumValues = ValueVTs.
size();
13064 if (NumValues == 0)
return;
13069 for (
unsigned i = 0; i != NumValues; ++i)
13071 SDValue(
Op.getNode(),
Op.getResNo() + i));
13077void SelectionDAGBuilder::visitVectorSplice(
const CallInst &
I) {
13078 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
13083 SDValue V2 =
getValue(
I.getOperand(1));
13084 const bool IsLeft =
I.getIntrinsicID() == Intrinsic::vector_splice_left;
13102 SmallVector<int, 8>
Mask;
13103 for (
unsigned i = 0; i < NumElts; ++i)
13104 Mask.push_back(Idx + i);
13132 assert(
MI->getOpcode() == TargetOpcode::COPY &&
13133 "start of copy chain MUST be COPY");
13134 Reg =
MI->getOperand(1).getReg();
13137 assert(
Reg.isVirtual() &&
"expected COPY of virtual register");
13141 if (
MI->getOpcode() == TargetOpcode::COPY) {
13142 assert(
Reg.isVirtual() &&
"expected COPY of virtual register");
13143 Reg =
MI->getOperand(1).getReg();
13144 assert(
Reg.isPhysical() &&
"expected COPY of physical register");
13147 assert(
MI->getOpcode() == TargetOpcode::INLINEASM_BR &&
13148 "end of copy chain MUST be INLINEASM_BR");
13158void SelectionDAGBuilder::visitCallBrLandingPad(
const CallInst &
I) {
13164 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
13165 const TargetRegisterInfo *
TRI =
DAG.getSubtarget().getRegisterInfo();
13166 MachineRegisterInfo &MRI =
DAG.getMachineFunction().getRegInfo();
13169 SDValue Chain =
DAG.getRoot();
13174 for (
auto &
T : TargetConstraints) {
13175 SDISelAsmOperandInfo OpInfo(
T);
13183 switch (OpInfo.ConstraintType) {
13194 FuncInfo.MBB->addLiveIn(OriginalDef);
13202 ResultVTs.
push_back(OpInfo.ConstraintVT);
13211 ResultVTs.
push_back(OpInfo.ConstraintVT);
13219 DAG.getVTList(ResultVTs), ResultValues);
static unsigned getIntrinsicID(const SDNode *N)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static msgpack::DocNode getNode(msgpack::DocNode DN, msgpack::Type Type, MCValue Val)
This file declares a class to represent arbitrary precision floating point values and provide a varie...
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
Function Alias Analysis Results
Atomic ordering constants.
This file contains the simple types necessary to represent the attributes associated with functions a...
static const Function * getParent(const Value *V)
This file implements the BitVector class.
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static AttributeList getReturnAttrs(FastISel::CallLoweringInfo &CLI)
Returns an AttributeList representing the attributes applied to the return value of the given call.
static Value * getCondition(Instruction *I)
const HexagonInstrInfo * TII
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
static void getRegistersForValue(MachineFunction &MF, MachineIRBuilder &MIRBuilder, GISelAsmOperandInfo &OpInfo, GISelAsmOperandInfo &RefOpInfo)
Assign virtual/physical registers for the specified register operand.
static void computeConstraintToUse(const TargetLowering *TLI, TargetLowering::AsmOperandInfo &OpInfo)
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static bool isUndef(const MachineInstr &MI)
Register const TargetRegisterInfo * TRI
Promote Memory to Register
static const Function * getCalledFunction(const Value *V)
This file provides utility analysis objects describing memory locations.
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
static MCRegister getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
static unsigned getAddressSpace(const Value *V, unsigned MaxLookup)
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
OptimizedStructLayoutField Field
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
static bool hasOnlySelectUsers(const Value *Cond)
static SDValue getLoadStackGuard(SelectionDAG &DAG, const SDLoc &DL, SDValue &Chain)
Create a LOAD_STACK_GUARD node, and let it carry the target specific global variable if there exists ...
static bool getUniformBase(const Value *Ptr, SDValue &Base, SDValue &Index, SDValue &Scale, SelectionDAGBuilder *SDB, const BasicBlock *CurBB, uint64_t ElemSize)
static void failForInvalidBundles(const CallBase &I, StringRef Name, ArrayRef< uint32_t > AllowedBundles)
static void addStackMapLiveVars(const CallBase &Call, unsigned StartIdx, const SDLoc &DL, SmallVectorImpl< SDValue > &Ops, SelectionDAGBuilder &Builder)
Add a stack map intrinsic call's live variable operands to a stackmap or patchpoint target node's ope...
static const unsigned MaxParallelChains
static SDValue expandPow(const SDLoc &dl, SDValue LHS, SDValue RHS, SelectionDAG &DAG, const TargetLowering &TLI, SDNodeFlags Flags)
visitPow - Lower a pow intrinsic.
static const CallBase * FindPreallocatedCall(const Value *PreallocatedSetup)
Given a @llvm.call.preallocated.setup, return the corresponding preallocated call.
static cl::opt< unsigned > SwitchPeelThreshold("switch-peel-threshold", cl::Hidden, cl::init(66), cl::desc("Set the case probability threshold for peeling the case from a " "switch statement. A value greater than 100 will void this " "optimization"))
static cl::opt< bool > InsertAssertAlign("insert-assert-align", cl::init(true), cl::desc("Insert the experimental `assertalign` node."), cl::ReallyHidden)
static unsigned getISDForVPIntrinsic(const VPIntrinsic &VPIntrin)
static bool handleDanglingVariadicDebugInfo(SelectionDAG &DAG, DILocalVariable *Variable, DebugLoc DL, unsigned Order, SmallVectorImpl< Value * > &Values, DIExpression *Expression)
static bool prepareDAGLevelOperands(ConstraintDecisionInfo &Info, const CallBase &Call, SelectionDAGBuilder &Builder, const TargetLowering &TLI, SelectionDAG &DAG)
Prepare DAG-level operands.
static unsigned findMatchingInlineAsmOperand(unsigned OperandNo, const std::vector< SDValue > &AsmNodeOperands)
static void patchMatchingInput(const SDISelAsmOperandInfo &OpInfo, SDISelAsmOperandInfo &MatchingOpInfo, SelectionDAG &DAG)
Make sure that the output operand OpInfo and its corresponding input operand MatchingOpInfo have comp...
static void findUnwindDestinations(FunctionLoweringInfo &FuncInfo, const BasicBlock *EHPadBB, BranchProbability Prob, SmallVectorImpl< std::pair< MachineBasicBlock *, BranchProbability > > &UnwindDests)
When an invoke or a cleanupret unwinds to the next EH pad, there are many places it could ultimately ...
static unsigned FixedPointIntrinsicToOpcode(unsigned Intrinsic)
static BranchProbability scaleCaseProbality(BranchProbability CaseProb, BranchProbability PeeledCaseProb)
static SDValue expandExp2(const SDLoc &dl, SDValue Op, SelectionDAG &DAG, const TargetLowering &TLI, SDNodeFlags Flags)
expandExp2 - Lower an exp2 intrinsic.
static SDValue expandDivFix(unsigned Opcode, const SDLoc &DL, SDValue LHS, SDValue RHS, SDValue Scale, SelectionDAG &DAG, const TargetLowering &TLI)
static SDValue getF32Constant(SelectionDAG &DAG, unsigned Flt, const SDLoc &dl)
getF32Constant - Get 32-bit floating point constant.
static SDValue widenVectorToPartType(SelectionDAG &DAG, SDValue Val, const SDLoc &DL, EVT PartVT)
static SDValue expandLog10(const SDLoc &dl, SDValue Op, SelectionDAG &DAG, const TargetLowering &TLI, SDNodeFlags Flags)
expandLog10 - Lower a log10 intrinsic.
DenseMap< const Argument *, std::pair< const AllocaInst *, const StoreInst * > > ArgCopyElisionMapTy
static void getCopyToPartsVector(SelectionDAG &DAG, const SDLoc &dl, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V, std::optional< CallingConv::ID > CallConv)
getCopyToPartsVector - Create a series of nodes that contain the specified value split into legal par...
static void getUnderlyingArgRegs(SmallVectorImpl< std::pair< Register, TypeSize > > &Regs, const SDValue &N)
static void getCopyToParts(SelectionDAG &DAG, const SDLoc &DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V, std::optional< CallingConv::ID > CallConv=std::nullopt, ISD::NodeType ExtendKind=ISD::ANY_EXTEND)
getCopyToParts - Create a series of nodes that contain the specified value split into legal parts.
static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT, SelectionDAGBuilder &Builder)
static SDValue expandLog2(const SDLoc &dl, SDValue Op, SelectionDAG &DAG, const TargetLowering &TLI, SDNodeFlags Flags)
expandLog2 - Lower a log2 intrinsic.
static SDValue getAddressForMemoryInput(SDValue Chain, const SDLoc &Location, SDISelAsmOperandInfo &OpInfo, SelectionDAG &DAG)
Get a direct memory input to behave well as an indirect operand.
static bool isOnlyUsedInEntryBlock(const Argument *A, bool FastISel)
isOnlyUsedInEntryBlock - If the specified argument is only used in the entry block,...
static void diagnosePossiblyInvalidConstraint(LLVMContext &Ctx, const Value *V, const Twine &ErrMsg)
static bool collectInstructionDeps(SmallMapVector< const Instruction *, bool, 8 > *Deps, const Value *V, SmallMapVector< const Instruction *, bool, 8 > *Necessary=nullptr, unsigned Depth=0)
static void findArgumentCopyElisionCandidates(const DataLayout &DL, FunctionLoweringInfo *FuncInfo, ArgCopyElisionMapTy &ArgCopyElisionCandidates)
Scan the entry block of the function in FuncInfo for arguments that look like copies into a local all...
static bool isFunction(SDValue Op)
static SDValue GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, const SDLoc &dl)
GetExponent - Get the exponent:
static Register FollowCopyChain(MachineRegisterInfo &MRI, Register Reg)
static SDValue ExpandPowI(const SDLoc &DL, SDValue LHS, SDValue RHS, SelectionDAG &DAG)
ExpandPowI - Expand a llvm.powi intrinsic.
static SDValue expandLog(const SDLoc &dl, SDValue Op, SelectionDAG &DAG, const TargetLowering &TLI, SDNodeFlags Flags)
expandLog - Lower a log intrinsic.
static SDValue getCopyFromParts(SelectionDAG &DAG, const SDLoc &DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V, SDValue InChain, std::optional< CallingConv::ID > CC=std::nullopt, std::optional< ISD::NodeType > AssertOp=std::nullopt)
getCopyFromParts - Create a value that contains the specified legal parts combined into the value the...
static SDValue getLimitedPrecisionExp2(SDValue t0, const SDLoc &dl, SelectionDAG &DAG)
static bool determineConstraints(ConstraintDecisionInfo &Info, TargetLowering::AsmOperandInfoVector &TargetConstraints, const CallBase &Call, SelectionDAGBuilder &Builder, const TargetLowering &TLI, const TargetMachine &TM, SelectionDAG &DAG, const BasicBlock *EHPadBB)
DetermineConstraints - Find the constraints to use for inline asm operands.
static bool constructOperandInfo(ConstraintDecisionInfo &Info, TargetLowering::AsmOperandInfoVector &TargetConstraints, SelectionDAGBuilder &Builder, const TargetLowering &TLI, ExtraFlags &ExtraInfo)
Construct operand info objects.
static SDValue GetSignificand(SelectionDAG &DAG, SDValue Op, const SDLoc &dl)
GetSignificand - Get the significand and build it into a floating-point number with exponent of 1:
static SDValue expandExp(const SDLoc &dl, SDValue Op, SelectionDAG &DAG, const TargetLowering &TLI, SDNodeFlags Flags)
expandExp - Lower an exp intrinsic.
static const MDNode * getRangeMetadata(const Instruction &I)
static cl::opt< unsigned, true > LimitFPPrecision("limit-float-precision", cl::desc("Generate low-precision inline sequences " "for some float libcalls"), cl::location(LimitFloatPrecision), cl::Hidden, cl::init(0))
static void tryToElideArgumentCopy(FunctionLoweringInfo &FuncInfo, SmallVectorImpl< SDValue > &Chains, DenseMap< int, int > &ArgCopyElisionFrameIndexMap, SmallPtrSetImpl< const Instruction * > &ElidedArgCopyInstrs, ArgCopyElisionMapTy &ArgCopyElisionCandidates, const Argument &Arg, ArrayRef< SDValue > ArgVals, bool &ArgHasUses)
Try to elide argument copies from memory into a local alloca.
static unsigned LimitFloatPrecision
LimitFloatPrecision - Generate low-precision inline sequences for some float libcalls (6,...
static SDValue getCopyFromPartsVector(SelectionDAG &DAG, const SDLoc &DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V, SDValue InChain, std::optional< CallingConv::ID > CC)
getCopyFromPartsVector - Create a value that contains the specified legal parts combined into the val...
static bool InBlock(const Value *V, const BasicBlock *BB)
static FPClassTest getNoFPClass(const Instruction &I)
static LLVM_ATTRIBUTE_ALWAYS_INLINE MVT::SimpleValueType getSimpleVT(const uint8_t *MatcherTable, size_t &MatcherIndex)
getSimpleVT - Decode a value in MatcherTable, if it's a VBR encoded value, use GetVBR to decode it.
This file defines the SmallPtrSet class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static SymbolRef::Type getType(const Symbol *Sym)
uint16_t RegSizeInBits(const MCRegisterInfo &MRI, MCRegister RegNo)
static const fltSemantics & IEEEsingle()
static LLVM_ABI Semantics SemanticsToEnum(const llvm::fltSemantics &Sem)
static LLVM_ABI const fltSemantics * getArbitraryFPSemantics(StringRef Format)
Returns the fltSemantics for a given arbitrary FP format string, or nullptr if invalid.
Class for arbitrary precision integers.
bool isNonNegative() const
Determine if this APInt Value is non-negative (>= 0)
bool isPowerOf2() const
Check if this APInt's value is a power of two greater than zero.
an instruction to allocate memory on the stack
Align getAlign() const
Return the alignment of the memory that is being allocated by the instruction.
LLVM_ABI std::optional< TypeSize > getAllocationSize(const DataLayout &DL) const
Get allocation size in bytes.
This class represents an incoming formal argument to a Function.
LLVM_ABI bool hasAttribute(Attribute::AttrKind Kind) const
Check if an argument has a given attribute.
unsigned getArgNo() const
Return the index of this formal argument in its containing function.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
Get the array size.
A cache of @llvm.assume calls within a function.
An instruction that atomically checks whether a specified value is in a memory location,...
an instruction that atomically reads a memory location, combines it with another value,...
@ USubCond
Subtract only if no unsigned overflow.
@ FMinimum
*p = minimum(old, v) minimum matches the behavior of llvm.minimum.
@ Min
*p = old <signed v ? old : v
@ USubSat
*p = usub.sat(old, v) usub.sat matches the behavior of llvm.usub.sat.
@ FMaximum
*p = maximum(old, v) maximum matches the behavior of llvm.maximum.
@ UIncWrap
Increment one up to a maximum value.
@ Max
*p = old >signed v ? old : v
@ UMin
*p = old <unsigned v ? old : v
@ FMin
*p = minnum(old, v) minnum matches the behavior of llvm.minnum.
@ UMax
*p = old >unsigned v ? old : v
@ FMaximumNum
*p = maximumnum(old, v) maximumnum matches the behavior of llvm.maximumnum.
@ FMax
*p = maxnum(old, v) maxnum matches the behavior of llvm.maxnum.
@ UDecWrap
Decrement one until a minimum value or zero.
@ FMinimumNum
*p = minimumnum(old, v) minimumnum matches the behavior of llvm.minimumnum.
This class holds the attributes for a particular argument, parameter, function, or return value.
LLVM Basic Block Representation.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
InstListType::const_iterator const_iterator
LLVM_ABI bool isEntryBlock() const
Return true if this is the entry block of the containing function.
LLVM_ABI InstListType::const_iterator getFirstNonPHIOrDbg(bool SkipPseudoOp=true) const
Returns a pointer to the first instruction in this block that is not a PHINode or a debug intrinsic,...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
This class represents a no-op cast from one type to another.
The address of a basic block.
Analysis providing branch probability information.
LLVM_ABI BranchProbability getEdgeProbability(const BasicBlock *Src, unsigned IndexInSuccessors) const
Get an edge's probability, relative to other out-edges of the Src.
LLVM_ABI bool isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const
Test if an edge is hot relative to other out-edges of the Src.
static constexpr BranchProbability getOne()
static uint32_t getDenominator()
static constexpr BranchProbability getUnknown()
static constexpr BranchProbability getZero()
uint32_t getNumerator() const
LLVM_ABI uint64_t scale(uint64_t Num) const
Scale a large integer.
BranchProbability getCompl() const
static void normalizeProbabilities(ProbabilityIter Begin, ProbabilityIter End)
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
std::optional< OperandBundleUse > getOperandBundle(StringRef Name) const
Return an operand bundle by name, if present.
CallingConv::ID getCallingConv() const
User::op_iterator arg_begin()
Return the iterator pointing to the beginning of the argument list.
LLVM_ABI bool isMustTailCall() const
Tests if this call site must be tail call optimized.
LLVM_ABI bool isIndirectCall() const
Return true if the callsite is an indirect call.
unsigned countOperandBundlesOfType(StringRef Name) const
Return the number of operand bundles with the tag Name attached to this instruction.
Value * getCalledOperand() const
Value * getArgOperand(unsigned i) const
User::op_iterator arg_end()
Return the iterator pointing to the end of the argument list.
bool isConvergent() const
Determine if the invoke is convergent.
FunctionType * getFunctionType() const
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
LLVM_ABI bool isTailCall() const
Tests if this call site is marked as a tail call.
CallBr instruction, tracking function calls that may not return control but instead transfer it to a ...
This class represents a function call, abstracting a target machine's calling convention.
This class is the base class for the comparison instructions.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Conditional Branch instruction.
Class for constant bytes.
ConstantDataSequential - A vector or array constant whose element type is a simple 1/2/4/8-byte integ...
A constant value that is initialized with an expression using other constant values.
ConstantFP - Floating Point Values [float, double].
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
static LLVM_ABI ConstantInt * getFalse(LLVMContext &Context)
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
A signed pointer, in the ptrauth sense.
uint64_t getZExtValue() const
Constant Vector Declarations.
This is an important base class in LLVM.
This is the common base class for constrained floating point intrinsics.
LLVM_ABI std::optional< fp::ExceptionBehavior > getExceptionBehavior() const
LLVM_ABI unsigned getNonMetadataArgCount() const
LLVM_ABI bool isEntryValue() const
Check if the expression consists of exactly one entry value operand.
static bool fragmentsOverlap(const FragmentInfo &A, const FragmentInfo &B)
Check if fragments overlap between a pair of FragmentInfos.
static LLVM_ABI DIExpression * appendOpsToArg(const DIExpression *Expr, ArrayRef< uint64_t > Ops, unsigned ArgNo, bool StackValue=false)
Create a copy of Expr by appending the given list of Ops to each instance of the operand DW_OP_LLVM_a...
static LLVM_ABI std::optional< FragmentInfo > getFragmentInfo(expr_op_iterator Start, expr_op_iterator End)
Retrieve the details of this fragment expression.
LLVM_ABI uint64_t getNumLocationOperands() const
Return the number of unique location operands referred to (via DW_OP_LLVM_arg) in this expression; th...
static LLVM_ABI std::optional< DIExpression * > createFragmentExpression(const DIExpression *Expr, unsigned OffsetInBits, unsigned SizeInBits)
Create a DIExpression to describe one part of an aggregate variable that is fragmented across multipl...
static LLVM_ABI const DIExpression * convertToUndefExpression(const DIExpression *Expr)
Removes all elements from Expr that do not apply to an undef debug value, which includes every operat...
static LLVM_ABI DIExpression * prepend(const DIExpression *Expr, uint8_t Flags, int64_t Offset=0)
Prepend DIExpr with a deref and offset operation and optionally turn it into a stack value or/and an ...
static LLVM_ABI DIExpression * prependOpcodes(const DIExpression *Expr, SmallVectorImpl< uint64_t > &Ops, bool StackValue=false, bool EntryValue=false)
Prepend DIExpr with the given opcodes and optionally turn it into a stack value.
Base class for variables.
LLVM_ABI std::optional< uint64_t > getSizeInBits() const
Determines the size of the variable's type.
A parsed version of the target data layout string in and methods for querying it.
Records a position in IR for a source label (DILabel).
Base class for non-instruction debug metadata records that have positions within IR.
DebugLoc getDebugLoc() const
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LocationType getType() const
LLVM_ABI Value * getVariableLocationOp(unsigned OpIdx) const
DIExpression * getExpression() const
DILocalVariable * getVariable() const
LLVM_ABI iterator_range< location_op_iterator > location_ops() const
Get the locations corresponding to the variable referenced by the debug info intrinsic.
LLVM_ABI DILocation * getInlinedAt() const
iterator find(const_arg_type_t< KeyT > Val)
DenseMapIterator< KeyT, ValueT, KeyInfoT, BucketT, true > const_iterator
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
void reserve(size_type NumEntries)
Grow the densemap so that it can contain at least NumEntries items before resizing again.
Diagnostic information for inline asm reporting.
static constexpr ElementCount getFixed(ScalarTy MinVal)
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
constexpr bool isScalar() const
Exactly one element.
Lightweight error class with error context and mandatory checking.
Class representing an expression and its matching format.
This instruction compares its operands according to the predicate given to the constructor.
This is a fast-path instruction selection class that generates poor code and doesn't support illegal ...
bool allowReassoc() const
Flag queries.
An instruction for ordering other memory operations.
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
This class represents a freeze function that returns random concrete value if an operand is either a ...
FunctionLoweringInfo - This contains information that is global to a function that is used when lower...
BranchProbabilityInfo * BPI
MachineBasicBlock * getMBB(const BasicBlock *BB) const
DenseMap< const AllocaInst *, int > StaticAllocaMap
StaticAllocaMap - Keep track of frame indices for fixed sized allocas in the entry block.
const LiveOutInfo * GetLiveOutRegInfo(Register Reg)
GetLiveOutRegInfo - Gets LiveOutInfo for a register, returning NULL if the register is a PHI destinat...
MachineBasicBlock * MBB
MBB - The current block.
Class to represent function types.
unsigned getNumParams() const
Return the number of fixed parameters this function type requires.
Type * getParamType(unsigned i) const
Parameter type accessors.
Type * getReturnType() const
Data structure describing the variable locations in a function.
const BasicBlock & getEntryBlock() const
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Intrinsic::ID getIntrinsicID() const LLVM_READONLY
getIntrinsicID - This method returns the ID number of the specified function, or Intrinsic::not_intri...
bool hasMinSize() const
Optimize this function for minimum size (-Oz).
bool hasParamAttribute(unsigned ArgNo, Attribute::AttrKind Kind) const
check if an attributes is in the list of attributes.
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
Constant * getPersonalityFn() const
Get the personality function associated with this function.
AttributeList getAttributes() const
Return the attribute list for this Function.
bool isIntrinsic() const
isIntrinsic - Returns true if the function's name starts with "llvm.".
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Garbage collection metadata for a single function.
bool hasNoUnsignedSignedWrap() const
bool hasNoUnsignedWrap() const
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
static StringRef dropLLVMManglingEscape(StringRef Name)
If the given string begins with the GlobalValue name mangling escape character '\1',...
bool hasDLLImportStorageClass() const
Module * getParent()
Get the module that this global value is contained inside of...
This instruction compares its operands according to the predicate given to the constructor.
Indirect Branch Instruction.
void setMemConstraint(ConstraintCode C)
setMemConstraint - Augment an existing flag with the constraint code for a memory constraint.
This instruction inserts a struct field of array element value into an aggregate value.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI FastMathFlags getFastMathFlags() const LLVM_READONLY
Convenience function for getting all the fast-math flags, which must be an operator which supports th...
LLVM_ABI AAMDNodes getAAMetadata() const
Returns the AA metadata for this instruction.
@ MIN_INT_BITS
Minimum number of bits that can be specified.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
@ OB_clang_arc_attachedcall
LLVM_ABI void diagnose(const DiagnosticInfo &DI)
Report a message to the currently installed diagnostic handler.
The landingpad instruction holds all of the information necessary to generate correct exception handl...
A helper class to return the specified delimiter string after the first invocation of operator String...
An instruction for reading from memory.
static LocationSize precise(uint64_t Value)
static constexpr LocationSize beforeOrAfterPointer()
Any location before or after the base pointer (but still within the underlying object).
static LocationSize upperBound(uint64_t Value)
LLVM_ABI MCSymbol * createTempSymbol()
Create a temporary symbol with a unique name.
LLVM_ABI MCSymbol * getOrCreateFrameAllocSymbol(const Twine &FuncName, unsigned Idx)
Gets a symbol that will be defined to the final stack offset of a local variable after codegen.
unsigned getID() const
getID() - Return the register class ID number.
const MCPhysReg * iterator
iterator begin() const
begin/end - Return all of the registers in this class.
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
const MDOperand & getOperand(unsigned I) const
LLVM_ABI StringRef getString() const
@ INVALID_SIMPLE_VALUE_TYPE
uint64_t getScalarSizeInBits() const
unsigned getVectorNumElements() const
bool isVector() const
Return true if this is a vector value type.
bool isInteger() const
Return true if this is an integer or a vector integer type.
TypeSize getSizeInBits() const
Returns the size of the specified MVT in bits.
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
ElementCount getVectorElementCount() const
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
bool bitsGE(MVT VT) const
Return true if this has no less bits than VT.
bool isScalarInteger() const
Return true if this is an integer, not including vectors.
static MVT getVectorVT(MVT VT, unsigned NumElements)
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
static MVT getIntegerVT(unsigned BitWidth)
void normalizeSuccProbs()
Normalize probabilities of all successors so that the sum of them becomes one.
const BasicBlock * getBasicBlock() const
Return the LLVM basic block that this instance corresponded to originally.
LLVM_ABI void setSuccProbability(succ_iterator I, BranchProbability Prob)
Set successor probability of a given iterator.
succ_iterator succ_begin()
LLVM_ABI void addSuccessor(MachineBasicBlock *Succ, BranchProbability Prob=BranchProbability::getUnknown())
Add Succ as a successor of this MachineBasicBlock.
SmallVectorImpl< MachineBasicBlock * >::iterator succ_iterator
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
void setIsEHContTarget(bool V=true)
Indicates if this is a target of Windows EH Continuation Guard.
void setIsEHFuncletEntry(bool V=true)
Indicates if this is the entry block of an EH funclet.
MachineInstrBundleIterator< MachineInstr > iterator
void setIsEHScopeEntry(bool V=true)
Indicates if this is the entry block of an EH scope, i.e., the block that that used to have a catchpa...
void setMachineBlockAddressTaken()
Set this block to indicate that its address is used as something other than the target of a terminato...
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
void setIsImmutableObjectIndex(int ObjectIdx, bool IsImmutable)
Marks the immutability of an object.
LLVM_ABI int CreateStackObject(uint64_t Size, Align Alignment, bool isSpillSlot, const AllocaInst *Alloca=nullptr, uint8_t ID=0)
Create a new statically sized stack object, returning a nonnegative identifier to represent it.
bool hasOpaqueSPAdjustment() const
Returns true if the function contains opaque dynamic stack adjustments.
int getStackProtectorIndex() const
Return the index for the stack protector object.
void setStackProtectorIndex(int I)
void setIsAliasedObjectIndex(int ObjectIdx, bool IsAliased)
Set "maybe pointed to by an LLVM IR value" for an object.
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
void RemoveStackObject(int ObjectIdx)
Remove or mark dead a statically sized stack object.
void setFunctionContextIndex(int I)
const WinEHFuncInfo * getWinEHFuncInfo() const
getWinEHFuncInfo - Return information about how the current function uses Windows exception handling.
bool useDebugInstrRef() const
Returns true if the function's variable locations are tracked with instruction referencing.
void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site)
Map the begin label for a call site.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MCContext & getContext() const
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
void addCodeViewAnnotation(MCSymbol *Label, MDNode *MD)
Record annotations associated with a particular label.
Function & getFunction()
Return the LLVM function that this machine code represents.
BasicBlockListType::iterator iterator
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LLT MemTy, Align BaseAlignment, const MMOMetadata &Metadata=MMOMetadata(), SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
bool hasEHFunclets() const
void setHasEHContTarget(bool V)
void addInvoke(MachineBasicBlock *LandingPad, MCSymbol *BeginLabel, MCSymbol *EndLabel)
Provide the begin and end labels of an invoke style call and associate it with a try landing pad bloc...
MachineBasicBlock * CreateMachineBasicBlock(const BasicBlock *BB=nullptr, std::optional< UniqueBBID > BBID=std::nullopt)
CreateMachineInstr - Allocate a new MachineInstr.
void insert(iterator MBBI, MachineBasicBlock *MBB)
const MachineInstrBuilder & addSym(MCSymbol *Sym, unsigned char TargetFlags=0) const
const MachineInstrBuilder & addFrameIndex(int Idx) const
Representation of each machine instruction.
A description of a memory reference used in the backend.
Flags
Flags values. These may be or'd together.
@ MOVolatile
The memory access is volatile.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MOLoad
The memory access reads data.
@ MONonTemporal
The memory access is non-temporal.
@ MOInvariant
The memory access always returns the same value (or traps).
@ MOStore
The memory access writes data.
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
static MachineOperand CreateFI(int Idx)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
def_iterator def_begin(Register RegNo) const
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
LLVM_ABI MCRegister getLiveInPhysReg(Register VReg) const
getLiveInPhysReg - If VReg is a live-in virtual register, return the corresponding live-in physical r...
An SDNode that represents everything that will be needed to construct a MachineInstr.
std::pair< iterator, bool > try_emplace(const KeyT &Key, Ts &&...Args)
bool contains(const KeyT &Key) const
static MemoryLocation getAfter(const Value *Ptr, const AAMDNodes &AATags=AAMDNodes())
Return a location that may access any location after Ptr, while remaining within the underlying objec...
A Module instance is used to store all the information related to an LLVM module.
static PointerType * getUnqual(LLVMContext &C)
This constructs an opaque pointer to an object in the default address space (address space zero).
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Wrapper class representing virtual and physical registers.
constexpr bool isValid() const
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
Resume the propagation of an exception.
Return a value (possibly void), from a function.
Holds the information from a dbg_label node through SDISel.
static SDDbgOperand fromNode(SDNode *Node, unsigned ResNo)
static SDDbgOperand fromFrameIdx(unsigned FrameIdx)
static SDDbgOperand fromVReg(Register VReg)
static SDDbgOperand fromConst(const Value *Const)
Holds the information from a dbg_value node through SDISel.
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
const DebugLoc & getDebugLoc() const
Represents one node in the SelectionDAG.
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
iterator_range< value_op_iterator > op_values() const
unsigned getIROrder() const
Return the node ordering.
uint64_t getAsZExtVal() const
Helper method returns the zero-extended integer value of a ConstantSDNode.
unsigned getNumValues() const
Return the number of values defined/returned by this operator.
const SDValue & getOperand(unsigned Num) const
EVT getValueType(unsigned ResNo) const
Return the type of a specified result.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
SDNode * getNode() const
get the SDNode which holds the desired result
SDValue getValue(unsigned R) const
EVT getValueType() const
Return the ValueType of the referenced return value.
TypeSize getValueSizeInBits() const
Returns the size of the value in bits.
const SDValue & getOperand(unsigned i) const
unsigned getResNo() const
get the index which selects a specific result in the SDNode
MVT getSimpleValueType() const
Return the simple ValueType of the referenced return value.
unsigned getOpcode() const
SelectionDAGBuilder - This is the common target-independent lowering implementation that is parameter...
SDValue getValue(const Value *V)
getValue - Return an SDValue for the given Value.
bool shouldKeepJumpConditionsTogether(const FunctionLoweringInfo &FuncInfo, const CondBrInst &I, Instruction::BinaryOps Opc, const Value *Lhs, const Value *Rhs, TargetLoweringBase::CondMergingParams Params) const
DenseMap< const Constant *, Register > ConstantsOut
void addDanglingDebugInfo(SmallVectorImpl< Value * > &Values, DILocalVariable *Var, DIExpression *Expr, bool IsVariadic, DebugLoc DL, unsigned Order)
Register a dbg_value which relies on a Value which we have not yet seen.
void visitDbgInfo(const Instruction &I)
void clearDanglingDebugInfo()
Clear the dangling debug information map.
SDValue lowerStartEH(SDValue Chain, const BasicBlock *EHPadBB, MCSymbol *&BeginLabel)
void LowerCallTo(const CallBase &CB, SDValue Callee, bool IsTailCall, bool IsMustTailCall, const BasicBlock *EHPadBB=nullptr, const TargetLowering::PtrAuthInfo *PAI=nullptr)
void clear()
Clear out the current SelectionDAG and the associated state and prepare this SelectionDAGBuilder obje...
void visitBitTestHeader(SwitchCG::BitTestBlock &B, MachineBasicBlock *SwitchBB)
visitBitTestHeader - This function emits necessary code to produce value suitable for "bit tests"
void LowerStatepoint(const GCStatepointInst &I, const BasicBlock *EHPadBB=nullptr)
std::unique_ptr< SDAGSwitchLowering > SL
SDValue lowerRangeToAssertZExt(SelectionDAG &DAG, const Instruction &I, SDValue Op)
bool HasTailCall
This is set to true if a call in the current block has been translated as a tail call.
bool ShouldEmitAsBranches(const std::vector< SwitchCG::CaseBlock > &Cases)
If the set of cases should be emitted as a series of branches, return true.
void EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB, MachineBasicBlock *FBB, MachineBasicBlock *CurBB, MachineBasicBlock *SwitchBB, BranchProbability TProb, BranchProbability FProb, bool InvertCond)
EmitBranchForMergedCondition - Helper method for FindMergedConditions.
void LowerDeoptimizeCall(const CallInst *CI)
void LowerCallSiteWithDeoptBundle(const CallBase *Call, SDValue Callee, const BasicBlock *EHPadBB)
SwiftErrorValueTracking & SwiftError
Information about the swifterror values used throughout the function.
SDValue getNonRegisterValue(const Value *V)
getNonRegisterValue - Return an SDValue for the given Value, but don't look in FuncInfo....
const TargetTransformInfo * TTI
DenseMap< MachineBasicBlock *, SmallVector< unsigned, 4 > > LPadToCallSiteMap
Map a landing pad to the call site indexes.
SDValue lowerNoFPClassToAssertNoFPClass(SelectionDAG &DAG, const Instruction &I, SDValue Op)
void handleDebugDeclare(Value *Address, DILocalVariable *Variable, DIExpression *Expression, DebugLoc DL)
StatepointLoweringState StatepointLowering
State used while lowering a statepoint sequence (gc_statepoint, gc_relocate, and gc_result).
void setValueToPoison(const Value *V, const SDLoc &dl)
void visitBitTestCase(SwitchCG::BitTestBlock &BB, MachineBasicBlock *NextMBB, BranchProbability BranchProbToNext, Register Reg, SwitchCG::BitTestCase &B, MachineBasicBlock *SwitchBB)
visitBitTestCase - this function produces one "bit test"
bool canTailCall(const CallBase &CB) const
void populateCallLoweringInfo(TargetLowering::CallLoweringInfo &CLI, const CallBase *Call, unsigned ArgIdx, unsigned NumArgs, SDValue Callee, Type *ReturnTy, AttributeSet RetAttrs, bool IsPatchPoint)
Populate a CallLowerinInfo (into CLI) based on the properties of the call being lowered.
void CopyValueToVirtualRegister(const Value *V, Register Reg, ISD::NodeType ExtendType=ISD::ANY_EXTEND)
void salvageUnresolvedDbgValue(const Value *V, DanglingDebugInfo &DDI)
For the given dangling debuginfo record, perform last-ditch efforts to resolve the debuginfo to somet...
SmallVector< SDValue, 8 > PendingLoads
Loads are not emitted to the program immediately.
GCFunctionInfo * GFI
Garbage collection metadata for the function.
void init(GCFunctionInfo *gfi, BatchAAResults *BatchAA, AssumptionCache *AC, const TargetLibraryInfo *li, const TargetTransformInfo &TTI)
SDValue getRoot()
Similar to getMemoryRoot, but also flushes PendingConstrainedFP(Strict) items.
void ExportFromCurrentBlock(const Value *V)
ExportFromCurrentBlock - If this condition isn't known to be exported from the current basic block,...
DebugLoc getCurDebugLoc() const
void resolveOrClearDbgInfo()
Evict any dangling debug information, attempting to salvage it first.
std::pair< SDValue, SDValue > lowerInvokable(TargetLowering::CallLoweringInfo &CLI, const BasicBlock *EHPadBB=nullptr)
SDValue getMemoryRoot()
Return the current virtual root of the Selection DAG, flushing any PendingLoad items.
void resolveDanglingDebugInfo(const Value *V, SDValue Val)
If we saw an earlier dbg_value referring to V, generate the debug data structures now that we've seen...
SDLoc getCurSDLoc() const
void visit(const Instruction &I)
void dropDanglingDebugInfo(const DILocalVariable *Variable, const DIExpression *Expr)
If we have dangling debug info that describes Variable, or an overlapping part of variable considerin...
SDValue getCopyFromRegs(const Value *V, Type *Ty)
If there was virtual register allocated for the value V emit CopyFromReg of the specified type Ty.
void CopyToExportRegsIfNeeded(const Value *V)
CopyToExportRegsIfNeeded - If the given value has virtual registers created for it,...
void handleKillDebugValue(DILocalVariable *Var, DIExpression *Expr, DebugLoc DbgLoc, unsigned Order)
Create a record for a kill location debug intrinsic.
void visitJumpTable(SwitchCG::JumpTable &JT)
visitJumpTable - Emit JumpTable node in the current MBB
SDValue getFPOperationRoot(fp::ExceptionBehavior EB)
Return the current virtual root of the Selection DAG, flushing PendingConstrainedFP or PendingConstra...
void visitJumpTableHeader(SwitchCG::JumpTable &JT, SwitchCG::JumpTableHeader &JTH, MachineBasicBlock *SwitchBB)
visitJumpTableHeader - This function emits necessary code to produce index in the JumpTable from swit...
void LowerCallSiteWithPtrAuthBundle(const CallBase &CB, const BasicBlock *EHPadBB)
static const unsigned LowestSDNodeOrder
Lowest valid SDNodeOrder.
void LowerDeoptimizingReturn()
FunctionLoweringInfo & FuncInfo
Information about the function as a whole.
void setValue(const Value *V, SDValue NewN)
void FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB, MachineBasicBlock *FBB, MachineBasicBlock *CurBB, MachineBasicBlock *SwitchBB, Instruction::BinaryOps Opc, BranchProbability TProb, BranchProbability FProb, bool InvertCond)
const TargetLibraryInfo * LibInfo
bool isExportableFromCurrentBlock(const Value *V, const BasicBlock *FromBB)
void visitSPDescriptorParent(StackProtectorDescriptor &SPD, MachineBasicBlock *ParentBB)
Codegen a new tail for a stack protector check ParentMBB which has had its tail spliced into a stack ...
bool handleDebugValue(ArrayRef< const Value * > Values, DILocalVariable *Var, DIExpression *Expr, DebugLoc DbgLoc, unsigned Order, bool IsVariadic)
For a given list of Values, attempt to create and record a SDDbgValue in the SelectionDAG.
SDValue getControlRoot()
Similar to getRoot, but instead of flushing all the PendingLoad items, flush all the PendingExports (...
void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last)
When an MBB was split during scheduling, update the references that need to refer to the last resulti...
SDValue getValueImpl(const Value *V)
getValueImpl - Helper function for getValue and getNonRegisterValue.
void visitSwitchCase(SwitchCG::CaseBlock &CB, MachineBasicBlock *SwitchBB)
visitSwitchCase - Emits the necessary code to represent a single node in the binary search tree resul...
void visitSPDescriptorFailure(StackProtectorDescriptor &SPD)
Codegen the failure basic block for a stack protector check.
std::unique_ptr< FunctionLoweringInfo > FuncInfo
SmallPtrSet< const Instruction *, 4 > ElidedArgCopyInstrs
const TargetLowering * TLI
MachineRegisterInfo * RegInfo
std::unique_ptr< SwiftErrorValueTracking > SwiftError
virtual void emitFunctionEntryCode()
std::unique_ptr< SelectionDAGBuilder > SDB
virtual std::pair< SDValue, SDValue > EmitTargetCodeForMemccpy(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue C, SDValue Size, const CallInst *CI) const
Emit target-specific code that performs a memccpy, in cases where that is faster than a libcall.
virtual std::pair< SDValue, SDValue > EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Src, SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const
virtual std::pair< SDValue, SDValue > EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Src, const CallInst *CI) const
virtual std::pair< SDValue, SDValue > EmitTargetCodeForStrstr(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, const CallInst *CI) const
Emit target-specific code that performs a strstr, in cases where that is faster than a libcall.
virtual std::pair< SDValue, SDValue > EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Src, SDValue Char, SDValue Length, MachinePointerInfo SrcPtrInfo) const
Emit target-specific code that performs a memchr, in cases where that is faster than a libcall.
virtual std::pair< SDValue, SDValue > EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, MachinePointerInfo Op1PtrInfo, MachinePointerInfo Op2PtrInfo, const CallInst *CI) const
Emit target-specific code that performs a strcmp, in cases where that is faster than a libcall.
virtual std::pair< SDValue, SDValue > EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, const CallInst *CI) const
Emit target-specific code that performs a memcmp/bcmp, in cases where that is faster than a libcall.
virtual SDValue EmitTargetCodeForSetTag(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Addr, SDValue Size, MachinePointerInfo DstPtrInfo, bool ZeroData) const
virtual std::pair< SDValue, SDValue > EmitTargetCodeForStrcpy(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dest, SDValue Src, MachinePointerInfo DestPtrInfo, MachinePointerInfo SrcPtrInfo, bool isStpcpy, const CallInst *CI) const
Emit target-specific code that performs a strcpy or stpcpy, in cases where that is faster than a libc...
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
SDValue getTargetGlobalAddress(const GlobalValue *GV, const SDLoc &DL, EVT VT, int64_t offset=0, unsigned TargetFlags=0)
SDValue getExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT, unsigned Opcode)
Convert Op, which must be of integer type, to the integer type VT, by either any/sign/zero-extending ...
const SDValue & getRoot() const
Return the root tag of the SelectionDAG.
const TargetSubtargetInfo & getSubtarget() const
SDValue getCopyToReg(SDValue Chain, const SDLoc &dl, Register Reg, SDValue N)
LLVM_ABI SDValue getMergeValues(ArrayRef< SDValue > Ops, const SDLoc &dl)
Create a MERGE_VALUES node from the given operands.
LLVM_ABI SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
LLVM_ABI SDValue getShiftAmountConstant(uint64_t Val, EVT VT, const SDLoc &DL)
LLVM_ABI MachineSDNode * getMachineNode(unsigned Opcode, const SDLoc &dl, EVT VT)
These are used for target selectors to create a new node with specified return type(s),...
LLVM_ABI void ExtractVectorElements(SDValue Op, SmallVectorImpl< SDValue > &Args, unsigned Start=0, unsigned Count=0, EVT EltVT=EVT())
Append the extracted elements from Start to Count out of the vector Op in Args.
LLVM_ABI SDValue getConstantPool(const Constant *C, EVT VT, MaybeAlign Align=std::nullopt, int Offs=0, bool isT=false, unsigned TargetFlags=0)
LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT, bool isTarget=false)
Create a ConstantFPSDNode wrapping a constant value.
LLVM_ABI SDValue getRegister(Register Reg, EVT VT)
LLVM_ABI Align getEVTAlign(EVT MemoryVT) const
Compute the default alignment value for the given type.
LLVM_ABI bool shouldOptForSize() const
const TargetLowering & getTargetLoweringInfo() const
static constexpr unsigned MaxRecursionDepth
LLVM_ABI void AddDbgValue(SDDbgValue *DB, bool isParameter)
Add a dbg_value SDNode.
SDValue getUNDEF(EVT VT)
Return an UNDEF node. UNDEF does not have a useful SDLoc.
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Ops)
Return an ISD::BUILD_VECTOR node.
LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue getBitcast(EVT VT, SDValue V)
Return a bitcast using the SDLoc of the value operand, and casting to the provided type.
LLVM_ABI SDDbgValue * getDbgValueList(DIVariable *Var, DIExpression *Expr, ArrayRef< SDDbgOperand > Locs, ArrayRef< SDNode * > Dependencies, bool IsIndirect, const DebugLoc &DL, unsigned O, bool IsVariadic)
Creates a SDDbgValue node from a list of locations.
SDValue getCopyFromReg(SDValue Chain, const SDLoc &dl, Register Reg, EVT VT)
LLVM_ABI void setNodeMemRefs(MachineSDNode *N, ArrayRef< MachineMemOperand * > NewMemRefs)
Mutate the specified machine node's memory references to the provided list.
const DataLayout & getDataLayout() const
SDValue getTargetFrameIndex(int FI, EVT VT)
LLVM_ABI SDValue getConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
Create a ConstantSDNode wrapping a constant value.
LLVM_ABI SDValue getMemBasePlusOffset(SDValue Base, TypeSize Offset, const SDLoc &DL, const SDNodeFlags Flags=SDNodeFlags())
Returns sum of the base pointer and offset.
LLVM_ABI SDValue getMDNode(const MDNode *MD)
Return an MDNodeSDNode which holds an MDNode.
LLVM_ABI SDValue getBasicBlock(MachineBasicBlock *MBB)
LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
Loads are not normal binary operators: their result type is not determined by their operands,...
LLVM_ABI SDValue getEHLabel(const SDLoc &dl, SDValue Root, MCSymbol *Label)
LLVM_ABI SDValue getPtrExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either truncating it or perform...
LLVM_ABI SDValue getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either any-extending or truncat...
const LibcallLoweringInfo & getLibcalls() const
LLVM_ABI SDValue getIntPtrConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI SDValue getValueType(EVT)
LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
LLVM_ABI SDValue getFPExtendOrRound(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of float type, to the float type VT, by either extending or rounding (by tr...
SDValue getTargetConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
MachineFunction & getMachineFunction() const
LLVM_ABI SDValue getFrameIndex(int FI, EVT VT, bool isTarget=false)
LLVM_ABI SDValue getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either zero-extending or trunca...
LLVMContext * getContext() const
const SDValue & setRoot(SDValue N)
Set the current root tag of the SelectionDAG.
LLVM_ABI SDValue getTargetExternalSymbol(const char *Sym, EVT VT, unsigned TargetFlags=0)
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void swap(SmallVectorImpl &RHS)
void push_back(const T &Elt)
pointer data()
Return a pointer to the vector's buffer, even if empty().
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Encapsulates all of the information needed to generate a stack protector check, and signals to isel w...
MachineBasicBlock * getSuccessMBB()
MachineBasicBlock * getFailureMBB()
MachineBasicBlock * getParentMBB()
bool shouldEmitFunctionBasedCheckStackProtector() const
An instruction for storing to memory.
Represent a constant reference to a string, i.e.
constexpr bool empty() const
Check if the string is empty.
constexpr const char * data() const
Get a pointer to the start of the string (which may not be null terminated).
Information about stack frame layout on the target.
virtual TargetStackID::Value getStackIDForScalableVectors() const
Returns the StackID that scalable vectors should be associated with.
Provides information about what library functions are available for the current target.
virtual Align getByValTypeAlignment(Type *Ty, const DataLayout &DL) const
Returns the desired alignment for ByVal or InAlloca aggregate function arguments in the caller parame...
virtual bool isFMAFasterThanFMulAndFAdd(const MachineFunction &MF, EVT) const
Return true if an FMA operation is faster than a pair of fmul and fadd instructions.
EVT getMemValueType(const DataLayout &DL, Type *Ty, bool AllowUnknown=false) const
virtual bool isAtomicAlignmentSupported(Align Alignment, uint64_t SizeInBytes) const
Return true if the target supports an atomic access of SizeInBytes bytes at the given Alignment.
Function * getSSPStackGuardCheck(const Module &M, const LibcallLoweringInfo &Libcalls) const
If the target has a standard stack protection check function that performs validation and error handl...
EVT getValueType(const DataLayout &DL, Type *Ty, bool AllowUnknown=false) const
Return the EVT corresponding to this LLVM type.
LegalizeAction
This enum indicates whether operations are valid for a target, and if not, what action should be used...
virtual const TargetRegisterClass * getRegClassFor(MVT VT, bool isDivergent=false) const
Return the register class that should be used for the specified value type.
virtual bool isLegalScaleForGatherScatter(uint64_t Scale, uint64_t ElemSize) const
virtual bool isSExtCheaperThanZExt(EVT FromTy, EVT ToTy) const
Return true if sign-extension from FromTy to ToTy is cheaper than zero-extension.
MVT getVectorIdxTy(const DataLayout &DL) const
Returns the type to be used for the index operand of: ISD::INSERT_VECTOR_ELT, ISD::EXTRACT_VECTOR_ELT...
virtual unsigned getNumRegistersForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain targets require unusual breakdowns of certain types.
virtual MachineMemOperand::Flags getTargetMMOFlags(const Instruction &I) const
This callback is used to inspect load/store instructions and add target-specific MachineMemOperand fl...
virtual Register getExceptionSelectorRegister(ExceptionHandling EH, const Constant *PersonalityFn) const
If a physical register, this returns the register that receives the exception typeid on entry to a la...
virtual bool isZExtFree(Type *FromTy, Type *ToTy) const
Return true if any actual instruction that defines a value of type FromTy implicitly zero-extends the...
virtual MVT getRegisterTypeForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain combinations of ABIs, Targets and features require that types are legal for some operations a...
virtual bool useStackGuardMixFP() const
If this function returns true, stack protection checks should mix the frame pointer (or whichever poi...
MVT getRegisterType(LLVMContext &Context, EVT VT) const
Return the type of registers that this ValueType will eventually require.
virtual unsigned getNumRegisters(LLVMContext &Context, EVT VT, std::optional< MVT > RegisterVT=std::nullopt) const
Return the number of registers that this ValueType will eventually require.
MachineMemOperand::Flags getLoadMemOperandFlags(const LoadInst &LI, const DataLayout &DL, AssumptionCache *AC=nullptr, const TargetLibraryInfo *LibInfo=nullptr, CodeGenOptLevel OptLevel=CodeGenOptLevel::Default) const
virtual bool shouldExtendGSIndex(EVT VT, EVT &EltTy) const
Returns true if the index type for a masked gather/scatter requires extending.
virtual unsigned getVectorTypeBreakdownForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT, EVT &IntermediateVT, unsigned &NumIntermediates, MVT &RegisterVT) const
Certain targets such as MIPS require that some types such as vectors are always broken down into scal...
Register getStackPointerRegisterToSaveRestore() const
If a physical register, this specifies the register that llvm.savestack/llvm.restorestack should save...
LegalizeAction getFixedPointOperationAction(unsigned Op, EVT VT, unsigned Scale) const
Some fixed point operations may be natively supported by the target but only for specific scales.
MachineMemOperand::Flags getAtomicMemOperandFlags(const Instruction &AI, const DataLayout &DL) const
virtual bool allowsMisalignedMemoryAccesses(EVT, unsigned AddrSpace=0, Align Alignment=Align(1), MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *=nullptr) const
Determine if the target supports unaligned memory accesses.
bool isOperationCustom(unsigned Op, EVT VT) const
Return true if the operation uses custom lowering, regardless of whether the type is legal or not.
bool hasBigEndianPartOrdering(EVT VT, const DataLayout &DL) const
When splitting a value of the specified type into parts, does the Lo or Hi part come first?
EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL) const
Returns the type for the shift amount of a shift opcode.
virtual Align getABIAlignmentForCallingConv(Type *ArgTy, const DataLayout &DL) const
Certain targets have context sensitive alignment requirements, where one type has the alignment requi...
MachineMemOperand::Flags getVPIntrinsicMemOperandFlags(const VPIntrinsic &VPIntrin) const
virtual bool shouldExpandGetActiveLaneMask(EVT VT, EVT OpVT) const
Return true if the @llvm.get.active.lane.mask intrinsic should be expanded using generic code in Sele...
virtual EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const
Return the ValueType of the result of SETCC operations.
virtual EVT getTypeToTransformTo(LLVMContext &Context, EVT VT) const
For types supported by the target, this is an identity function.
bool isTypeLegal(EVT VT) const
Return true if the target has native support for the specified value type.
MVT getProgramPointerTy(const DataLayout &DL) const
Return the type for code pointers, which is determined by the program address space specified through...
virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS=0) const
Return the pointer type for the given address space, defaults to the pointer type from the data layou...
bool isOperationLegal(unsigned Op, EVT VT) const
Return true if the specified operation is legal on this target.
virtual bool isProfitableToCombineMinNumMaxNum(EVT VT) const
virtual MVT getFenceOperandTy(const DataLayout &DL) const
Return the type for operands of fence.
virtual bool shouldExpandGetVectorLength(EVT CountVT, unsigned VF, bool IsScalable) const
bool isOperationLegalOrCustom(unsigned Op, EVT VT, bool LegalOnly=false) const
Return true if the specified operation is legal on this target or can be made legal with custom lower...
unsigned getVectorTypeBreakdown(LLVMContext &Context, EVT VT, EVT &IntermediateVT, unsigned &NumIntermediates, MVT &RegisterVT) const
Vector types are broken down into some number of legal first class types.
virtual MVT hasFastEqualityCompare(unsigned NumBits) const
Return the preferred operand type if the target has a quick way to compare integer values of the give...
MachineMemOperand::Flags getStoreMemOperandFlags(const StoreInst &SI, const DataLayout &DL) const
virtual void getTgtMemIntrinsic(SmallVectorImpl< IntrinsicInfo > &Infos, const CallBase &I, MachineFunction &MF, unsigned Intrinsic) const
Given an intrinsic, checks if on the target the intrinsic will need to map to a MemIntrinsicNode (tou...
virtual bool signExtendConstant(const ConstantInt *C) const
Return true if this constant should be sign extended when promoting to a larger type.
virtual Value * getSDagStackGuard(const Module &M, const LibcallLoweringInfo &Libcalls) const
Return the variable that's previously inserted by insertSSPDeclarations, if any, otherwise return nul...
LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const
Return how we should legalize values of this type, either it is already legal (return 'Legal') or we ...
std::vector< ArgListEntry > ArgListTy
virtual Register getExceptionPointerRegister(ExceptionHandling EH, const Constant *PersonalityFn) const
If a physical register, this returns the register that receives the exception address on entry to an ...
bool isBeneficialToExpandPowI(int64_t Exponent, bool OptForSize) const
Return true if it is beneficial to expand an @llvm.powi.
MVT getFrameIndexTy(const DataLayout &DL) const
Return the type for frame index, which is determined by the alloca address space specified through th...
virtual MVT getPointerMemTy(const DataLayout &DL, uint32_t AS=0) const
Return the in-memory pointer type for the given address space, defaults to the pointer type from the ...
virtual MVT getVPExplicitVectorLengthTy() const
Returns the type to be used for the EVL/AVL operand of VP nodes: ISD::VP_UDIV, ISD::VP_SDIV,...
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
virtual bool supportKCFIBundles() const
Return true if the target supports kcfi operand bundles.
virtual bool supportPtrAuthBundles() const
Return true if the target supports ptrauth operand bundles.
virtual bool supportSwiftError() const
Return true if the target supports swifterror attribute.
virtual SDValue visitMaskedLoad(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, MachineMemOperand *MMO, SDValue &NewLoad, SDValue Ptr, SDValue PassThru, SDValue Mask) const
virtual EVT getTypeForExtReturn(LLVMContext &Context, EVT VT, ISD::NodeType) const
Return the type that should be used to zero or sign extend a zeroext/signext integer return value.
virtual Register getRegisterByName(const char *RegName, LLT Ty, const MachineFunction &MF) const
Return the register ID of the name passed in.
virtual InlineAsm::ConstraintCode getInlineAsmMemConstraint(StringRef ConstraintCode) const
std::vector< AsmOperandInfo > AsmOperandInfoVector
SDValue expandIS_FPCLASS(EVT ResultVT, SDValue Op, FPClassTest Test, SDNodeFlags Flags, const SDLoc &DL, SelectionDAG &DAG) const
Expand check for floating point class.
virtual SDValue prepareVolatileOrAtomicLoad(SDValue Chain, const SDLoc &DL, SelectionDAG &DAG) const
This callback is used to prepare for a volatile or atomic load.
virtual SDValue emitStackGuardMixFP(SelectionDAG &DAG, SDValue Val, const SDLoc &DL) const
virtual ConstraintType getConstraintType(StringRef Constraint) const
Given a constraint, return the type of constraint it is for this target.
virtual bool splitValueIntoRegisterParts(SelectionDAG &DAG, const SDLoc &DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, std::optional< CallingConv::ID > CC) const
Target-specific splitting of values into parts that fit a register storing a legal type.
virtual SDValue joinRegisterPartsIntoValue(SelectionDAG &DAG, const SDLoc &DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, std::optional< CallingConv::ID > CC) const
Target-specific combining of register parts into its original value.
virtual SDValue LowerCall(CallLoweringInfo &, SmallVectorImpl< SDValue > &) const
This hook must be implemented to lower calls into the specified DAG.
std::pair< SDValue, SDValue > LowerCallTo(CallLoweringInfo &CLI) const
This function lowers an abstract call to a function into an actual call.
virtual SDValue LowerAsmOutputForConstraint(SDValue &Chain, SDValue &Glue, const SDLoc &DL, const AsmOperandInfo &OpInfo, SelectionDAG &DAG) const
virtual std::pair< unsigned, const TargetRegisterClass * > getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const
Given a physical register constraint (e.g.
virtual AsmOperandInfoVector ParseConstraints(const DataLayout &DL, const TargetRegisterInfo *TRI, const CallBase &Call) const
Split up the constraint string from the inline assembly value into the specific constraints and their...
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const
This callback is invoked for operations that are unsupported by the target, which are registered to u...
virtual bool functionArgumentNeedsConsecutiveRegisters(Type *Ty, CallingConv::ID CallConv, bool isVarArg, const DataLayout &DL) const
For some targets, an LLVM struct type must be broken down into multiple simple types,...
virtual void ComputeConstraintToUse(AsmOperandInfo &OpInfo, SDValue Op, SelectionDAG *DAG=nullptr) const
Determines the constraint code and constraint type to use for the specific AsmOperandInfo,...
virtual void CollectTargetIntrinsicOperands(const CallInst &I, SmallVectorImpl< SDValue > &Ops, SelectionDAG &DAG) const
virtual SDValue visitMaskedStore(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, MachineMemOperand *MMO, SDValue Ptr, SDValue Val, SDValue Mask) const
virtual bool useLoadStackGuardNode(const Module &M) const
If this function returns true, SelectionDAGBuilder emits a LOAD_STACK_GUARD node when it is lowering ...
SDValue annotateStackObjectPointer(SDValue Ptr, SelectionDAG &DAG, const SDLoc &DL, Align Alignment) const
Annotate a stack object pointer with known-bits assertions.
virtual void LowerAsmOperandForConstraint(SDValue Op, StringRef Constraint, std::vector< SDValue > &Ops, SelectionDAG &DAG) const
Lower the specified operand into the Ops vector.
std::pair< SDValue, SDValue > makeLibCall(SelectionDAG &DAG, RTLIB::LibcallImpl LibcallImpl, EVT RetVT, ArrayRef< SDValue > Ops, MakeLibCallOptions CallOptions, const SDLoc &dl, SDValue Chain=SDValue()) const
Returns a pair of (return value, chain).
virtual void LowerOperationWrapper(SDNode *N, SmallVectorImpl< SDValue > &Results, SelectionDAG &DAG) const
This callback is invoked by the type legalizer to legalize nodes with an illegal operand type but leg...
virtual bool isInlineAsmTargetBranch(const SmallVectorImpl< StringRef > &AsmStrs, unsigned OpNo) const
On x86, return true if the operand with index OpNo is a CALL or JUMP instruction, which can use eithe...
virtual MVT getJumpTableRegTy(const DataLayout &DL) const
virtual bool CanLowerReturn(CallingConv::ID, MachineFunction &, bool, const SmallVectorImpl< ISD::OutputArg > &, LLVMContext &, const Type *RetTy) const
This hook should be implemented to check whether the return values described by the Outs array can fi...
Primary interface to the complete machine description for the target machine.
CodeGenOptLevel getOptLevel() const
Returns the optimization level: None, Less, Default, or Aggressive.
CodeModel::Model getCodeModel() const
Returns the code model.
unsigned NoTrapAfterNoreturn
Do not emit a trap instruction for 'unreachable' IR instructions behind noreturn calls,...
unsigned TrapUnreachable
Emit target-specific trap instruction for 'unreachable' IR instructions.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const TargetFrameLowering * getFrameLowering() const
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static constexpr TypeSize getFixed(ScalarTy ExactSize)
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM_ABI bool isEmptyTy() const
Return true if this type is empty, that is, it has no elements or all of its elements are empty.
bool isVectorTy() const
True if this is an instance of VectorType.
bool isPointerTy() const
True if this is an instance of PointerType.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isTokenTy() const
Return true if this is 'token'.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
bool isVoidTy() const
Return true if this is 'void'.
Unconditional Branch instruction.
This function has undefined behavior.
A Use represents the edge between a Value definition and its users.
unsigned getNumOperands() const
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
This is the common base class for vector predication intrinsics.
static LLVM_ABI std::optional< unsigned > getVectorLengthParamPos(Intrinsic::ID IntrinsicID)
LLVM_ABI MaybeAlign getPointerAlignment() const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
bool hasOneUse() const
Return true if there is exactly one use of this value.
LLVMContext & getContext() const
All values hold a context through their type.
iterator_range< user_iterator > users()
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Base class of all SIMD vector types.
Type * getElementType() const
constexpr ScalarTy getFixedValue() const
static constexpr bool isKnownLE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
const ParentTy * getParent() const
A raw_ostream that writes to an std::string.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char SymbolName[]
Key for Kernel::Metadata::mSymbolName.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ AnyReg
OBSOLETED - Used for stack based JavaScript calls.
@ AMDGPU_CS_Chain
Used on AMDGPUs to give the middle-end more control over argument placement.
@ X86_VectorCall
MSVC calling convention that passes vectors and vector aggregates in SSE registers.
@ C
The default llvm calling convention, compatible with C.
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
@ STACKRESTORE
STACKRESTORE has two operands, an input chain and a pointer to restore to it returns an output chain.
@ STACKSAVE
STACKSAVE - STACKSAVE has one operand, an input chain.
@ CONVERGENCECTRL_ANCHOR
The llvm.experimental.convergence.* intrinsics.
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
@ SET_FPENV
Sets the current floating-point environment.
@ ATOMIC_LOAD_FMINIMUMNUM
@ LOOP_DEPENDENCE_RAW_MASK
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
@ COND_LOOP
COND_LOOP is a conditional branch to self, used for implementing efficient conditional traps.
@ EH_SJLJ_LONGJMP
OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer) This corresponds to the eh.sjlj.longjmp intrinsic.
@ INSERT_SUBVECTOR
INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2 inserted into VECTOR1.
@ STACKADDRESS
STACKADDRESS - Represents the llvm.stackaddress intrinsic.
@ BSWAP
Byte Swap and Counting operators.
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
@ VAEND
VAEND, VASTART - VAEND and VASTART have three operands: an input chain, pointer, and a SRCVALUE.
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr) This corresponds to "store atomic" instruction.
@ RESET_FPENV
Set floating-point environment to default state.
@ ADD
Simple integer binary arithmetic operators.
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
@ SET_FPMODE
Sets the current dynamic floating-point control modes.
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
@ CTTZ_ELTS
Returns the number of number of trailing (least significant) zero elements in a vector.
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
@ VECTOR_FIND_LAST_ACTIVE
Finds the index of the last active mask element Operands: Mask.
@ FMODF
FMODF - Decomposes the operand into integral and fractional parts, each having the same type and sign...
@ FATAN2
FATAN2 - atan2, inspired by libm.
@ FSINCOSPI
FSINCOSPI - Compute both the sine and cosine times pi more accurately than FSINCOS(pi*x),...
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
@ EH_SJLJ_SETUP_DISPATCH
OUTCHAIN = EH_SJLJ_SETUP_DISPATCH(INCHAIN) The target initializes the dispatch table here.
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
@ FADD
Simple binary floating point operators.
@ VECREDUCE_FMAXIMUM
FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the llvm.minimum and llvm....
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
@ ATOMIC_FENCE
OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope) This corresponds to the fence instruction.
@ RESET_FPMODE
Sets default dynamic floating-point control modes.
@ FMULADD
FMULADD - Performs a * b + c, with, or without, intermediate rounding.
@ FPTRUNC_ROUND
FPTRUNC_ROUND - This corresponds to the fptrunc_round intrinsic.
@ FAKE_USE
FAKE_USE represents a use of the operand but does not do anything.
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
@ CLMUL
Carry-less multiplication operations.
@ INIT_TRAMPOLINE
INIT_TRAMPOLINE - This corresponds to the init_trampoline intrinsic.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
@ CONVERT_FROM_ARBITRARY_FP
CONVERT_FROM_ARBITRARY_FP - This operator converts from an arbitrary floating-point represented as an...
@ EH_LABEL
EH_LABEL - Represents a label in mid basic block used to track locations needed for debug and excepti...
@ EH_RETURN
OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents 'eh_return' gcc dwarf builtin,...
@ ANNOTATION_LABEL
ANNOTATION_LABEL - Represents a mid basic block label used by annotations.
@ SET_ROUNDING
Set rounding mode.
@ CONVERGENCECTRL_GLUE
This does not correspond to any convergence control intrinsic.
@ SIGN_EXTEND
Conversion operators.
@ PREALLOCATED_SETUP
PREALLOCATED_SETUP - This has 2 operands: an input chain and a SRCVALUE with the preallocated call Va...
@ READSTEADYCOUNTER
READSTEADYCOUNTER - This corresponds to the readfixedcounter intrinsic.
@ ADDROFRETURNADDR
ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
@ BR
Control flow instructions. These all have token chains.
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
@ PREFETCH
PREFETCH - This corresponds to a prefetch intrinsic.
@ VECREDUCE_FMAXIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM nodes do not propagate NaNs and order signed zeroes using the llvm....
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
@ SSUBO
Same for subtraction.
@ PREALLOCATED_ARG
PREALLOCATED_ARG - This has 3 operands: an input chain, a SRCVALUE with the preallocated call Value,...
@ BRIND
BRIND - Indirect branch.
@ BR_JT
BR_JT - Jumptable branch.
@ VECTOR_INTERLEAVE
VECTOR_INTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input vectors, where N is the factor to...
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
@ VACOPY
VACOPY - VACOPY has 5 operands: an input chain, a destination pointer, a source pointer,...
@ GET_ACTIVE_LANE_MASK
GET_ACTIVE_LANE_MASK - this corrosponds to the llvm.get.active.lane.mask intrinsic.
@ BasicBlock
Various leaf nodes.
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
@ ARITH_FENCE
ARITH_FENCE - This corresponds to a arithmetic fence intrinsic.
@ VECREDUCE_ADD
Integer reductions may have a result type larger than the vector element type.
@ GET_ROUNDING
Returns current rounding mode: -1 Undefined 0 Round to 0 1 Round to nearest, ties to even 2 Round to ...
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
@ CLEANUPRET
CLEANUPRET - Represents a return from a cleanup block funclet.
@ GET_FPMODE
Reads the current dynamic floating-point control modes.
@ GET_FPENV
Gets the current floating-point environment.
@ SHL
Shift and rotation operations.
@ AssertNoFPClass
AssertNoFPClass - These nodes record if a register contains a float value that is known to be not som...
@ PtrAuthGlobalAddress
A ptrauth constant.
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
@ EntryToken
EntryToken - This is the marker used to indicate the start of a region.
@ READ_REGISTER
READ_REGISTER, WRITE_REGISTER - This node represents llvm.register on the DAG, which implements the n...
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
@ DEBUGTRAP
DEBUGTRAP - Trap intended to get the attention of a debugger.
@ VSCALE
VSCALE(IMM) - Returns the runtime scaling factor used to calculate the number of elements within a sc...
@ LOCAL_RECOVER
LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values, following IEEE-754 definition...
@ UBSANTRAP
UBSANTRAP - Trap with an immediate describing the kind of sanitizer failure.
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
@ PATCHPOINT
The llvm.experimental.patchpoint.
@ SMULO
Same for multiplication.
@ DYNAMIC_STACKALLOC
DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned to a specified boundary.
@ VECTOR_SPLICE_LEFT
VECTOR_SPLICE_LEFT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1, VEC2) left by OFFSET elements an...
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
@ MASKED_UDIV
Masked vector arithmetic that returns poison on disabled lanes.
@ VECTOR_REVERSE
VECTOR_REVERSE(VECTOR) - Returns a vector, of the same type as VECTOR, whose elements are shuffled us...
@ SDIVFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
@ PCMARKER
PCMARKER - This corresponds to the pcmarker intrinsic.
@ INLINEASM_BR
INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
@ ATOMIC_LOAD_FMAXIMUMNUM
@ EH_DWARF_CFA
EH_DWARF_CFA - This node represents the pointer to the DWARF Canonical Frame Address (CFA),...
@ FRAMEADDR
FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and llvm.returnaddress on the DAG.
@ PEXT
Parallel bit extract (compress) and parallel bit deposit (expand).
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
@ READCYCLECOUNTER
READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
@ RELOC_NONE
Issue a no-op relocation against a given symbol at the current location.
@ AND
Bitwise operators - logical and, logical or, logical xor.
@ TRAP
TRAP - Trapping instruction.
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
@ SCMP
[US]CMP - 3-way comparison of signed or unsigned integers.
@ VECTOR_MATCH
VECTOR_MATCH - this corresponds to the llvm.experimental.vector.match intrinsic.
@ VECTOR_SPLICE_RIGHT
VECTOR_SPLICE_RIGHT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1,VEC2) right by OFFSET elements a...
@ STRICT_FADD
Constrained versions of the binary floating point operators.
@ STACKMAP
The llvm.experimental.stackmap intrinsic.
@ FREEZE
FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or is evaluated to UNDEF),...
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
@ CTTZ_ZERO_POISON
Bit counting operators with a poisoned result for zero inputs.
@ FFREXP
FFREXP - frexp, extract fractional and exponent component of a floating-point value.
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
@ VECTOR_COMPRESS
VECTOR_COMPRESS(Vec, Mask, Passthru) consecutively place vector elements based on mask e....
@ SPONENTRY
SPONENTRY - Represents the llvm.sponentry intrinsic.
@ CLEAR_CACHE
llvm.clear_cache intrinsic Operands: Input Chain, Start Addres, End Address Outputs: Output Chain
@ INLINEASM
INLINEASM - Represents an inline asm block.
@ FP_TO_SINT_SAT
FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a signed or unsigned scalar integer ...
@ EH_SJLJ_SETJMP
RESULT, OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer) This corresponds to the eh.sjlj....
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
@ BRCOND
BRCOND - Conditional branch.
@ CONVERT_TO_ARBITRARY_FP
CONVERT_TO_ARBITRARY_FP - Converts a native FP value to an arbitrary floating-point format,...
@ CATCHRET
CATCHRET - Represents a return from a catch block funclet.
@ AssertSext
AssertSext, AssertZext - These nodes record if a register contains a value that has already been zero...
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
@ VECTOR_DEINTERLEAVE
VECTOR_DEINTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input vectors, where N is the factor ...
@ GET_DYNAMIC_AREA_OFFSET
GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of the most recent dynamic alloca.
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ ADJUST_TRAMPOLINE
ADJUST_TRAMPOLINE - This corresponds to the adjust_trampoline intrinsic.
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
@ ABS_MIN_POISON
ABS with a poison result for INT_MIN.
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
@ LOOP_DEPENDENCE_WAR_MASK
The llvm.loop.dependence.
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
LLVM_ABI StringRef getBaseName(ID id)
Return the LLVM name for an intrinsic, without encoded types for overloading, such as "llvm....
Flag
These should be considered private to the implementation of the MCInstrDesc class.
BinaryOp_match< SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true > m_Not(const SrcTy &&Src)
Matches a register not-ed by a G_XOR.
OneUse_match< SubPat > m_OneUse(const SubPat &SP)
bool match(Val *V, const Pattern &P)
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
TwoOps_match< Val_t, Idx_t, Instruction::ExtractElement > m_ExtractElt(const Val_t &Val, const Idx_t &Idx)
Matches ExtractElementInst.
auto m_Value()
Match an arbitrary value and ignore it.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
auto m_VScale()
Matches a call to llvm.vscale().
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
std::pair< JumpTableHeader, JumpTable > JumpTableBlock
LLVM_ABI void sortAndRangeify(CaseClusterVector &Clusters)
Sort Clusters and merge adjacent cases.
std::vector< CaseCluster > CaseClusterVector
@ CC_Range
A cluster of adjacent case labels with the same destination, or just one case.
@ CC_JumpTable
A cluster of cases suitable for jump table lowering.
@ CC_BitTests
A cluster of cases suitable for bit test lowering.
SmallVector< SwitchWorkListItem, 4 > SwitchWorkList
CaseClusterVector::iterator CaseClusterIt
initializer< Ty > init(const Ty &Val)
LocationClass< Ty > location(Ty &L)
@ DW_OP_LLVM_arg
Only used in LLVM metadata.
ExceptionBehavior
Exception behavior used for floating point operations.
@ ebStrict
This corresponds to "fpexcept.strict".
@ ebMayTrap
This corresponds to "fpexcept.maytrap".
@ ebIgnore
This corresponds to "fpexcept.ignore".
NodeAddr< FuncNode * > Func
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Type * getValueType(Value *V, bool ReVec, bool LookThroughCmp)
Returns the "element type" of the given value/instruction V.
This is an optimization pass for GlobalISel generic memory operations.
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
unsigned Log2_32_Ceil(uint32_t Value)
Return the ceil log base 2 of the specified value, 32 if the value is zero.
LLVM_ABI ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred)
getICmpCondCode - Return the ISD condition code corresponding to the given LLVM IR integer condition ...
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
SDValue peekThroughFreeze(SDValue V)
Return the non-frozen source operand of V if it exists.
LLVM_ABI void GetReturnInfo(CallingConv::ID CC, Type *ReturnType, AttributeList attr, SmallVectorImpl< ISD::OutputArg > &Outs, const TargetLowering &TLI, const DataLayout &DL)
Given an LLVM IR type and return type attributes, compute the return value EVTs and flags,...
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
RelativeUniformCounterPtr Values
LLVM_ABI bool isOnlyUsedInZeroEqualityComparison(const Instruction *CxtI)
LLVM_ABI void ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL, Type *Ty, SmallVectorImpl< EVT > &ValueVTs, SmallVectorImpl< EVT > *MemVTs=nullptr, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
ComputeValueVTs - Given an LLVM IR type, compute a sequence of EVTs that represent all the individual...
LLVM_ABI SDValue peekThroughBitcasts(SDValue V)
Return the non-bitcasted source operand of V if it exists.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
int countr_one(T Value)
Count the number of ones from the least significant bit to the first zero bit.
LLVM_ABI void diagnoseDontCall(const CallInst &CI)
auto successors(const MachineBasicBlock *BB)
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
bool isIntOrFPConstant(SDValue V)
Return true if V is either a integer or FP constant.
static ConstantRange getRange(Value *Op, SCCPSolver &Solver, const SmallPtrSetImpl< Value * > &InsertedValues)
Helper for getting ranges from Solver.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Value * GetPointerBaseWithConstantOffset(Value *Ptr, int64_t &Offset, const DataLayout &DL, bool AllowNonInbounds=true)
Analyze the specified pointer to see if it can be expressed as a base pointer plus a constant offset.
constexpr bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
auto cast_or_null(const Y &Val)
constexpr T alignDown(U Value, V Align, W Skew=0)
Returns the largest unsigned integer less than or equal to Value and is Skew mod Align.
gep_type_iterator gep_type_end(const User *GEP)
LLVM_ABI LLT getLLTForMVT(MVT Ty)
Get a rough equivalent of an LLT for a given MVT.
constexpr auto equal_to(T &&Arg)
Functor variant of std::equal_to that can be used as a UnaryPredicate in functional algorithms like a...
constexpr int popcount(T Value) noexcept
Count the number of set bits in a value.
LLVM_ABI ConstantRange getConstantRangeFromMetadata(const MDNode &RangeMD)
Parse out a conservative ConstantRange from !range metadata.
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
LLVM_ABI void ComputeValueTypes(const DataLayout &DL, Type *Ty, SmallVectorImpl< Type * > &Types, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
Given an LLVM IR type, compute non-aggregate subtypes.
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI llvm::SmallVector< int, 16 > createStrideMask(unsigned Start, unsigned Stride, unsigned VF)
Create a stride shuffle mask.
@ SPF_ABS
Floating point maxnum.
@ SPF_NABS
Absolute value.
@ SPF_FMAXNUM
Floating point minnum.
@ SPF_UMIN
Signed minimum.
@ SPF_UMAX
Signed maximum.
@ SPF_SMAX
Unsigned minimum.
@ SPF_FMINNUM
Unsigned maximum.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
detail::zippy< detail::zip_first, T, U, Args... > zip_first(T &&t, U &&u, Args &&...args)
zip iterator that, for the sake of efficiency, assumes the first iteratee to be the shortest.
void sort(IteratorTy Start, IteratorTy End)
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
LLVM_ABI SelectPatternResult matchSelectPattern(Value *V, Value *&LHS, Value *&RHS, Instruction::CastOps *CastOp=nullptr, unsigned Depth=0)
Pattern match integer [SU]MIN, [SU]MAX and ABS idioms, returning the kind and providing the out param...
LLVM_ABI const MDNode * getMemCacheHintMetadata(const Instruction &I, unsigned OperandNo=0)
Return the cache hint metadata node for memory operand OperandNo on I, or nullptr when the instructio...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
generic_gep_type_iterator<> gep_type_iterator
auto succ_size(const MachineBasicBlock *BB)
bool hasSingleElement(ContainerTy &&C)
Returns true if the given container only contains a single element.
LLVM_ABI ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred)
getFCmpCondCode - Return the ISD condition code corresponding to the given LLVM IR floating-point con...
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
LLVM_ABI Value * salvageDebugInfoImpl(Instruction &I, uint64_t CurrentLocOps, SmallVectorImpl< uint64_t > &Ops, SmallVectorImpl< Value * > &AdditionalValues)
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ Global
Append to llvm.global_dtors.
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
bool isFuncletEHPersonality(EHPersonality Pers)
Returns true if this is a personality function that invokes handler funclets (which must return to it...
LLVM_ABI bool isAssignmentTrackingEnabled(const Module &M)
Return true if assignment tracking is enabled for module M.
LLVM_ABI llvm::SmallVector< int, 16 > createInterleaveMask(unsigned VF, unsigned NumVecs)
Create an interleave shuffle mask.
@ UMin
Unsigned integer min implemented in terms of select(cmp()).
@ Or
Bitwise or logical OR of integers.
@ Mul
Product of integers.
@ Sub
Subtraction of integers.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
@ SPNB_RETURNS_NAN
NaN behavior not applicable.
@ SPNB_RETURNS_OTHER
Given one NaN input, returns the NaN.
@ SPNB_RETURNS_ANY
Given one NaN input, returns the non-NaN.
LLVM_ABI bool isInTailCallPosition(const CallBase &Call, const TargetMachine &TM, bool ReturnsFirstArg=false)
Test if the given instruction is in a position to be optimized with a tail-call.
DWARFExpression::Operation Op
@ Dynamic
Denotes mode unknown at compile time.
LLVM_ABI ISD::CondCode getFCmpCodeWithoutNaN(ISD::CondCode CC)
getFCmpCodeWithoutNaN - Given an ISD condition code comparing floats, return the equivalent code if w...
ArrayRef(const T &OneElt) -> ArrayRef< T >
bool isAsynchronousEHPersonality(EHPersonality Pers)
Returns true if this personality function catches asynchronous exceptions.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool isKnownNeverNaN(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if the floating-point scalar value is not a NaN or if the floating-point vector value has...
LLVM_ABI std::optional< RoundingMode > convertStrToRoundingMode(StringRef)
Returns a valid RoundingMode enumerator when given a string that is valid as input in constrained int...
gep_type_iterator gep_type_begin(const User *GEP)
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
LLVM_ABI GlobalValue * ExtractTypeInfo(Value *V)
ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
LLVM_ABI Constant * ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty, APInt Offset, const DataLayout &DL)
Return the value that a load from C with offset Offset would produce if it is constant and determinab...
LLVM_ABI unsigned ComputeLinearIndex(Type *Ty, const unsigned *Indices, const unsigned *IndicesEnd, unsigned CurIndex=0)
Compute the linearized index of a member in a nested aggregate/struct/array.
T bit_floor(T Value)
Returns the largest integral power of two no greater than Value if Value is nonzero.
@ Default
The result value is uniform if and only if all operands are uniform.
MCRegisterClass TargetRegisterClass
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This struct is a compact representation of a valid (non-zero power of two) alignment.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements, bool IsScalable=false)
Returns the EVT that represents a vector NumElements in length, where each element is of type VT.
uint64_t getScalarStoreSize() const
bool bitsGT(EVT VT) const
Return true if this has more bits than VT.
bool bitsLT(EVT VT) const
Return true if this has less bits than VT.
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
ElementCount getVectorElementCount() const
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
unsigned getVectorMinNumElements() const
Given a vector type, return the minimum number of elements it contains.
uint64_t getScalarSizeInBits() const
static LLVM_ABI EVT getEVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
EVT changeVectorElementType(LLVMContext &Context, EVT EltVT) const
Return a VT for a vector type whose attributes match ourselves with the exception of the element type...
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth)
Returns the EVT that represents an integer with the given number of bits.
bool isRISCVVectorTuple() const
Return true if this is a vector value type.
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
bool isFixedLengthVector() const
bool isVector() const
Return true if this is a vector value type.
EVT getScalarType() const
If this is a vector type, return the element type, otherwise return this.
bool bitsGE(EVT VT) const
Return true if this has no less bits than VT.
bool isScalableVector() const
Return true if this is a vector type where the runtime length is machine dependent.
EVT getVectorElementType() const
Given a vector type, return the type of each element.
EVT changeElementType(LLVMContext &Context, EVT EltVT) const
Return a VT for a type whose attributes match ourselves with the exception of the element type that i...
bool isScalarInteger() const
Return true if this is an integer, but not a vector.
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
bool isInteger() const
Return true if this is an integer or a vector integer type.
void setPointerAddrSpace(unsigned AS)
void setOrigAlign(Align A)
OutputArg - This struct carries flags and a value for a single outgoing (actual) argument or outgoing...
ConstraintPrefix Type
Type - The basic type of the constraint: input/output/clobber/label.
unsigned countMinLeadingZeros() const
Returns the minimum number of leading zero bits.
This class contains a discriminated union of information about pointers in memory operands,...
static LLVM_ABI MachinePointerInfo getUnknownStack(MachineFunction &MF)
Stack memory without other information.
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
A lightweight accessor for an operand bundle meant to be passed around by value.
This struct represents the registers (physical or virtual) that a particular set of values is assigne...
SmallVector< std::pair< Register, TypeSize >, 4 > getRegsAndSizes() const
Return a list of registers and their sizes.
SmallVector< unsigned, 4 > RegCount
This list holds the number of registers for each value.
bool isABIMangled() const
SmallVector< EVT, 4 > ValueVTs
The value types of the values, which may not be legal, and may need be promoted or synthesized from o...
SmallVector< Register, 4 > Regs
This list holds the registers assigned to the values.
void AddInlineAsmOperands(InlineAsm::Kind Code, bool HasMatching, unsigned MatchingIdx, const SDLoc &dl, SelectionDAG &DAG, std::vector< SDValue > &Ops) const
Add this value to the specified inlineasm node operand list.
SDValue getCopyFromRegs(SelectionDAG &DAG, FunctionLoweringInfo &FuncInfo, const SDLoc &dl, SDValue &Chain, SDValue *Glue, const Value *V=nullptr) const
Emit a series of CopyFromReg nodes that copies from this value and returns the result as a ValueVTs v...
SmallVector< MVT, 4 > RegVTs
The value types of the registers.
void getCopyToRegs(SDValue Val, SelectionDAG &DAG, const SDLoc &dl, SDValue &Chain, SDValue *Glue, const Value *V=nullptr, ISD::NodeType PreferredExtendType=ISD::ANY_EXTEND) const
Emit a series of CopyToReg nodes that copies the specified value into the registers specified by this...
std::optional< CallingConv::ID > CallConv
Records if this value needs to be treated in an ABI dependant manner, different to normal type legali...
bool occupiesMultipleRegs() const
Check if the total RegCount is greater than one.
These are IR-level optimization flags that may be propagated to SDNodes.
void copyFMF(const FPMathOperator &FPMO)
Propagate the fast-math-flags from an IR FPMathOperator.
void setUnpredictable(bool b)
bool hasAllowReassociation() const
void setNoUnsignedWrap(bool b)
void setNoSignedWrap(bool b)
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
A MapVector that performs no allocations if smaller than a certain size.
MachineBasicBlock * Default
BranchProbability DefaultProb
MachineBasicBlock * Parent
bool FallthroughUnreachable
MachineBasicBlock * ThisBB
This structure is used to communicate between SelectionDAGBuilder and SDISel for the code generation ...
BranchProbability TrueProb
BranchProbability FalseProb
MachineBasicBlock * TrueBB
MachineBasicBlock * FalseBB
SDLoc DL
The debug location of the instruction this CaseBlock was produced from.
static CaseCluster range(const ConstantInt *Low, const ConstantInt *High, MachineBasicBlock *MBB, BranchProbability Prob)
Register Reg
The virtual register containing the index of the jump table entry to jump to.
MachineBasicBlock * Default
The MBB of the default bb, which is a successor of the range check MBB.
unsigned JTI
The JumpTableIndex for this jump table in the function.
MachineBasicBlock * MBB
The MBB into which to emit the code for the indirect jump.
std::optional< SDLoc > SL
The debug location of the instruction this JumpTable was produced from.
This contains information for each constraint that we are lowering.
TargetLowering::ConstraintType ConstraintType
Information about the constraint code, e.g.
This structure contains all information that is necessary for lowering calls.
CallLoweringInfo & setConvergent(bool Value=true)
CallLoweringInfo & setDeactivationSymbol(GlobalValue *Sym)
CallLoweringInfo & setCFIType(const ConstantInt *Type)
SmallVector< ISD::InputArg, 32 > Ins
bool IsPostTypeLegalization
SmallVector< SDValue, 4 > InVals
Type * OrigRetTy
Original unlegalized return type.
CallLoweringInfo & setDiscardResult(bool Value=true)
CallLoweringInfo & setIsPatchPoint(bool Value=true)
CallLoweringInfo & setDebugLoc(const SDLoc &dl)
CallLoweringInfo & setTailCall(bool Value=true)
CallLoweringInfo & setIsPreallocated(bool Value=true)
CallLoweringInfo & setConvergenceControlToken(SDValue Token)
SmallVector< ISD::OutputArg, 32 > Outs
SmallVector< SDValue, 32 > OutVals
Type * RetTy
Same as OrigRetTy, or partially legalized for soft float libcalls.
CallLoweringInfo & setChain(SDValue InChain)
CallLoweringInfo & setPtrAuth(PtrAuthInfo Value)
CallLoweringInfo & setCallee(CallingConv::ID CC, Type *ResultType, SDValue Target, ArgListTy &&ArgsList, AttributeSet ResultAttrs={})
This structure is used to pass arguments to makeLibCall function.
MakeLibCallOptions & setDiscardResult(bool Value=true)
This structure contains the information necessary for lowering pointer-authenticating indirect calls.
LLVM_ABI void addIPToStateRange(const InvokeInst *II, MCSymbol *InvokeBegin, MCSymbol *InvokeEnd)