78#include "llvm/IR/IntrinsicsAArch64.h"
79#include "llvm/IR/IntrinsicsAMDGPU.h"
80#include "llvm/IR/IntrinsicsWebAssembly.h"
113#define DEBUG_TYPE "isel"
121 cl::desc(
"Insert the experimental `assertalign` node."),
126 cl::desc(
"Generate low-precision inline sequences "
127 "for some float libcalls"),
133 cl::desc(
"Set the case probability threshold for peeling the case from a "
134 "switch statement. A value greater than 100 will void this "
154 const SDValue *Parts,
unsigned NumParts,
157 std::optional<CallingConv::ID> CC);
166 unsigned NumParts,
MVT PartVT,
EVT ValueVT,
const Value *V,
168 std::optional<CallingConv::ID> CC = std::nullopt,
169 std::optional<ISD::NodeType> AssertOp = std::nullopt) {
173 PartVT, ValueVT, CC))
180 assert(NumParts > 0 &&
"No parts to assemble!");
191 unsigned RoundBits = PartBits * RoundParts;
192 EVT RoundVT = RoundBits == ValueBits ?
198 if (RoundParts > 2) {
202 PartVT, HalfVT, V, InChain);
204 Lo = DAG.
getNode(ISD::BITCAST,
DL, HalfVT, Parts[0]);
205 Hi = DAG.
getNode(ISD::BITCAST,
DL, HalfVT, Parts[1]);
213 if (RoundParts < NumParts) {
215 unsigned OddParts = NumParts - RoundParts;
218 OddVT, V, InChain, CC);
234 assert(ValueVT ==
EVT(MVT::ppcf128) && PartVT == MVT::f64 &&
245 !PartVT.
isVector() &&
"Unexpected split");
257 if (PartEVT == ValueVT)
261 ValueVT.
bitsLT(PartEVT)) {
270 return DAG.
getNode(ISD::BITCAST,
DL, ValueVT, Val);
274 if (ValueVT.
bitsLT(PartEVT)) {
279 Val = DAG.
getNode(*AssertOp,
DL, PartEVT, Val,
294 llvm::Attribute::StrictFP)) {
296 DAG.
getVTList(ValueVT, MVT::Other), InChain, Val,
303 return DAG.
getNode(ISD::FP_EXTEND,
DL, ValueVT, Val);
308 if (PartEVT == MVT::x86mmx && ValueVT.
isInteger() &&
309 ValueVT.
bitsLT(PartEVT)) {
310 Val = DAG.
getNode(ISD::BITCAST,
DL, MVT::i64, Val);
318 const Twine &ErrMsg) {
321 return Ctx.emitError(ErrMsg);
324 if (CI->isInlineAsm()) {
326 *CI, ErrMsg +
", possible invalid constraint for vector type"));
329 return Ctx.emitError(
I, ErrMsg);
338 const SDValue *Parts,
unsigned NumParts,
341 std::optional<CallingConv::ID> CallConv) {
343 assert(NumParts > 0 &&
"No parts to assemble!");
344 const bool IsABIRegCopy = CallConv.has_value();
353 unsigned NumIntermediates;
358 *DAG.
getContext(), *CallConv, ValueVT, IntermediateVT,
359 NumIntermediates, RegisterVT);
363 NumIntermediates, RegisterVT);
366 assert(NumRegs == NumParts &&
"Part count doesn't match vector breakdown!");
368 assert(RegisterVT == PartVT &&
"Part type doesn't match vector breakdown!");
371 "Part type sizes don't match!");
375 if (NumIntermediates == NumParts) {
378 for (
unsigned i = 0; i != NumParts; ++i)
380 V, InChain, CallConv);
381 }
else if (NumParts > 0) {
384 assert(NumParts % NumIntermediates == 0 &&
385 "Must expand into a divisible number of parts!");
386 unsigned Factor = NumParts / NumIntermediates;
387 for (
unsigned i = 0; i != NumIntermediates; ++i)
389 IntermediateVT, V, InChain, CallConv);
404 DL, BuiltVectorTy,
Ops);
410 if (PartEVT == ValueVT)
416 return DAG.
getNode(ISD::BITCAST,
DL, ValueVT, Val);
426 "Cannot narrow, it would be a lossy transformation");
432 if (PartEVT == ValueVT)
435 return DAG.
getNode(ISD::BITCAST,
DL, ValueVT, Val);
439 return DAG.
getNode(ISD::BITCAST,
DL, ValueVT, Val);
450 return DAG.
getNode(ISD::BITCAST,
DL, ValueVT, Val);
456 return DAG.
getNode(ISD::BITCAST,
DL, ValueVT, Val);
457 }
else if (ValueVT.
bitsLT(PartEVT)) {
466 *DAG.
getContext(), V,
"non-trivial scalar-to-vector conversion");
475 Val = DAG.
getNode(ISD::BITCAST,
DL, ValueSVT, Val);
497 std::optional<CallingConv::ID> CallConv);
504 unsigned NumParts,
MVT PartVT,
const Value *V,
505 std::optional<CallingConv::ID> CallConv = std::nullopt,
519 unsigned OrigNumParts = NumParts;
521 "Copying to an illegal type!");
527 EVT PartEVT = PartVT;
528 if (PartEVT == ValueVT) {
529 assert(NumParts == 1 &&
"No-op copy with multiple parts!");
538 assert(NumParts == 1 &&
"Do not know what to promote to!");
539 Val = DAG.
getNode(ISD::FP_EXTEND,
DL, PartVT, Val);
545 Val = DAG.
getNode(ISD::BITCAST,
DL, ValueVT, Val);
549 "Unknown mismatch!");
551 Val = DAG.
getNode(ExtendKind,
DL, ValueVT, Val);
552 if (PartVT == MVT::x86mmx)
553 Val = DAG.
getNode(ISD::BITCAST,
DL, PartVT, Val);
557 assert(NumParts == 1 && PartEVT != ValueVT);
558 Val = DAG.
getNode(ISD::BITCAST,
DL, PartVT, Val);
563 "Unknown mismatch!");
566 if (PartVT == MVT::x86mmx)
567 Val = DAG.
getNode(ISD::BITCAST,
DL, PartVT, Val);
573 "Failed to tile the value with PartVT!");
576 if (PartEVT != ValueVT) {
578 "scalar-to-vector conversion failed");
579 Val = DAG.
getNode(ISD::BITCAST,
DL, PartVT, Val);
587 if (NumParts & (NumParts - 1)) {
590 "Do not know what to expand to!");
592 unsigned RoundBits = RoundParts * PartBits;
593 unsigned OddParts = NumParts - RoundParts;
602 std::reverse(Parts + RoundParts, Parts + NumParts);
604 NumParts = RoundParts;
616 for (
unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
617 for (
unsigned i = 0; i < NumParts; i += StepSize) {
618 unsigned ThisBits = StepSize * PartBits / 2;
621 SDValue &Part1 = Parts[i+StepSize/2];
628 if (ThisBits == PartBits && ThisVT != PartVT) {
629 Part0 = DAG.
getNode(ISD::BITCAST,
DL, PartVT, Part0);
630 Part1 = DAG.
getNode(ISD::BITCAST,
DL, PartVT, Part1);
636 std::reverse(Parts, Parts + OrigNumParts);
658 if (ValueEVT == MVT::bf16 && PartEVT == MVT::f16) {
660 "Cannot widen to illegal type");
663 }
else if (PartEVT != ValueEVT) {
678 Ops.append((PartNumElts - ValueNumElts).getFixedValue(), EltUndef);
689 std::optional<CallingConv::ID> CallConv) {
693 const bool IsABIRegCopy = CallConv.has_value();
696 EVT PartEVT = PartVT;
697 if (PartEVT == ValueVT) {
701 Val = DAG.
getNode(ISD::BITCAST,
DL, PartVT, Val);
736 Val = DAG.
getNode(ISD::FP_EXTEND,
DL, PartVT, Val);
743 "lossy conversion of vector to scalar type");
758 unsigned NumIntermediates;
762 *DAG.
getContext(), *CallConv, ValueVT, IntermediateVT, NumIntermediates,
767 NumIntermediates, RegisterVT);
770 assert(NumRegs == NumParts &&
"Part count doesn't match vector breakdown!");
772 assert(RegisterVT == PartVT &&
"Part type doesn't match vector breakdown!");
775 "Mixing scalable and fixed vectors when copying in parts");
777 std::optional<ElementCount> DestEltCnt;
787 if (ValueVT == BuiltVectorTy) {
791 Val = DAG.
getNode(ISD::BITCAST,
DL, BuiltVectorTy, Val);
811 for (
unsigned i = 0; i != NumIntermediates; ++i) {
826 if (NumParts == NumIntermediates) {
829 for (
unsigned i = 0; i != NumParts; ++i)
831 }
else if (NumParts > 0) {
834 assert(NumIntermediates != 0 &&
"division by zero");
835 assert(NumParts % NumIntermediates == 0 &&
836 "Must expand into a divisible number of parts!");
837 unsigned Factor = NumParts / NumIntermediates;
838 for (
unsigned i = 0; i != NumIntermediates; ++i)
846 if (
I.hasOperandBundlesOtherThan(AllowedBundles)) {
850 for (
unsigned i = 0, e =
I.getNumOperandBundles(); i != e; ++i) {
853 OS << LS << U.getTagName();
856 Twine(
"cannot lower ", Name)
862 EVT valuevt, std::optional<CallingConv::ID> CC)
868 std::optional<CallingConv::ID> CC) {
882 for (
unsigned i = 0; i != NumRegs; ++i)
883 Regs.push_back(Reg + i);
884 RegVTs.push_back(RegisterVT);
886 Reg = Reg.id() + NumRegs;
913 for (
unsigned i = 0; i != NumRegs; ++i) {
919 *Glue =
P.getValue(2);
922 Chain =
P.getValue(1);
950 EVT FromVT(MVT::Other);
954 }
else if (NumSignBits > 1) {
962 assert(FromVT != MVT::Other);
968 RegisterVT, ValueVT, V, Chain,
CallConv);
984 unsigned NumRegs =
Regs.size();
998 NumParts, RegisterVT, V,
CallConv, ExtendKind);
1004 for (
unsigned i = 0; i != NumRegs; ++i) {
1016 if (NumRegs == 1 || Glue)
1027 Chain = Chains[NumRegs-1];
1033 unsigned MatchingIdx,
const SDLoc &dl,
1035 std::vector<SDValue> &
Ops)
const {
1040 Flag.setMatchingOp(MatchingIdx);
1041 else if (!
Regs.empty() &&
Regs.front().isVirtual()) {
1049 Flag.setRegClass(RC->
getID());
1060 "No 1:1 mapping from clobbers to regs?");
1063 for (
unsigned I = 0, E =
ValueVTs.size();
I != E; ++
I) {
1068 "If we clobbered the stack pointer, MFI should know about it.");
1077 for (
unsigned i = 0; i != NumRegs; ++i) {
1078 assert(Reg <
Regs.size() &&
"Mismatch in # registers expected");
1090 unsigned RegCount = std::get<0>(CountAndVT);
1091 MVT RegisterVT = std::get<1>(CountAndVT);
1108 SL->init(
DAG.getTargetLoweringInfo(), TM,
DAG.getDataLayout());
1110 *
DAG.getMachineFunction().getFunction().getParent());
1115 UnusedArgNodeMap.clear();
1117 PendingExports.clear();
1118 PendingConstrainedFP.clear();
1119 PendingConstrainedFPStrict.clear();
1127 DanglingDebugInfoMap.clear();
1134 if (Pending.
empty())
1140 unsigned i = 0, e = Pending.
size();
1141 for (; i != e; ++i) {
1143 if (Pending[i].
getNode()->getOperand(0) == Root)
1151 if (Pending.
size() == 1)
1170 PendingConstrainedFP.size() +
1171 PendingConstrainedFPStrict.size());
1173 PendingConstrainedFP.end());
1174 PendingLoads.append(PendingConstrainedFPStrict.begin(),
1175 PendingConstrainedFPStrict.end());
1176 PendingConstrainedFP.clear();
1177 PendingConstrainedFPStrict.clear();
1184 PendingExports.append(PendingConstrainedFPStrict.begin(),
1185 PendingConstrainedFPStrict.end());
1186 PendingConstrainedFPStrict.clear();
1187 return updateRoot(PendingExports);
1194 assert(Variable &&
"Missing variable");
1201 <<
"dbg_declare: Dropping debug info (bad/undef/unused-arg address)\n");
1217 if (IsParameter && FINode) {
1219 SDV =
DAG.getFrameIndexDbgValue(Variable,
Expression, FINode->getIndex(),
1220 true,
DL, SDNodeOrder);
1225 FuncArgumentDbgValueKind::Declare,
N);
1228 SDV =
DAG.getDbgValue(Variable,
Expression,
N.getNode(),
N.getResNo(),
1229 true,
DL, SDNodeOrder);
1231 DAG.AddDbgValue(SDV, IsParameter);
1236 FuncArgumentDbgValueKind::Declare,
N)) {
1238 <<
" (could not emit func-arg dbg_value)\n");
1249 for (
auto It = FnVarLocs->locs_begin(&
I), End = FnVarLocs->locs_end(&
I);
1251 auto *Var = FnVarLocs->getDILocalVariable(It->VariableID);
1253 if (It->Values.isKillLocation(It->Expr)) {
1259 It->Values.hasArgList())) {
1262 FnVarLocs->getDILocalVariable(It->VariableID),
1263 It->Expr, Vals.
size() > 1, It->DL, SDNodeOrder);
1276 bool SkipDbgVariableRecords =
DAG.getFunctionVarLocs();
1279 for (
DbgRecord &DR :
I.getDbgRecordRange()) {
1281 assert(DLR->getLabel() &&
"Missing label");
1283 DAG.getDbgLabel(DLR->getLabel(), DLR->getDebugLoc(), SDNodeOrder);
1284 DAG.AddDbgLabel(SDV);
1288 if (SkipDbgVariableRecords)
1296 if (
FuncInfo.PreprocessedDVRDeclares.contains(&DVR))
1298 LLVM_DEBUG(
dbgs() <<
"SelectionDAG visiting dbg_declare: " << DVR
1307 if (Values.
empty()) {
1324 SDNodeOrder, IsVariadic)) {
1335 if (
I.isTerminator()) {
1336 HandlePHINodesInSuccessorBlocks(
I.getParent());
1343 bool NodeInserted =
false;
1344 std::unique_ptr<SelectionDAG::DAGNodeInsertedListener> InsertedListener;
1345 MDNode *PCSectionsMD =
I.getMetadata(LLVMContext::MD_pcsections);
1346 MDNode *MMRA =
I.getMetadata(LLVMContext::MD_mmra);
1347 if (PCSectionsMD || MMRA) {
1348 InsertedListener = std::make_unique<SelectionDAG::DAGNodeInsertedListener>(
1349 DAG, [&](
SDNode *) { NodeInserted =
true; });
1359 if (PCSectionsMD || MMRA) {
1360 auto It = NodeMap.find(&
I);
1361 if (It != NodeMap.end()) {
1363 DAG.addPCSections(It->second.getNode(), PCSectionsMD);
1365 DAG.addMMRAMetadata(It->second.getNode(), MMRA);
1366 }
else if (NodeInserted) {
1369 errs() <<
"warning: loosing !pcsections and/or !mmra metadata ["
1370 <<
I.getModule()->getName() <<
"]\n";
1379void SelectionDAGBuilder::visitPHI(
const PHINode &) {
1389#define HANDLE_INST(NUM, OPCODE, CLASS) \
1390 case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break;
1391#include "llvm/IR/Instruction.def"
1403 for (
const Value *V : Values) {
1428 DanglingDebugInfoMap[Values[0]].emplace_back(Var, Expr,
DL, Order);
1433 auto isMatchingDbgValue = [&](DanglingDebugInfo &DDI) {
1434 DIVariable *DanglingVariable = DDI.getVariable();
1436 if (DanglingVariable == Variable && Expr->
fragmentsOverlap(DanglingExpr)) {
1438 << printDDI(
nullptr, DDI) <<
"\n");
1444 for (
auto &DDIMI : DanglingDebugInfoMap) {
1445 DanglingDebugInfoVector &DDIV = DDIMI.second;
1449 for (
auto &DDI : DDIV)
1450 if (isMatchingDbgValue(DDI))
1453 erase_if(DDIV, isMatchingDbgValue);
1461 auto DanglingDbgInfoIt = DanglingDebugInfoMap.find(V);
1462 if (DanglingDbgInfoIt == DanglingDebugInfoMap.end())
1465 DanglingDebugInfoVector &DDIV = DanglingDbgInfoIt->second;
1466 for (
auto &DDI : DDIV) {
1469 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder();
1472 assert(Variable->isValidLocationForIntrinsic(
DL) &&
1473 "Expected inlined-at fields to agree");
1482 if (!EmitFuncArgumentDbgValue(V, Variable, Expr,
DL,
1483 FuncArgumentDbgValueKind::Value, Val)) {
1485 << printDDI(V, DDI) <<
"\n");
1492 <<
"changing SDNodeOrder from " << DbgSDNodeOrder <<
" to "
1493 << ValSDNodeOrder <<
"\n");
1494 SDV = getDbgValue(Val, Variable, Expr,
DL,
1495 std::max(DbgSDNodeOrder, ValSDNodeOrder));
1496 DAG.AddDbgValue(SDV,
false);
1500 <<
" in EmitFuncArgumentDbgValue\n");
1502 LLVM_DEBUG(
dbgs() <<
"Dropping debug info for " << printDDI(V, DDI)
1506 DAG.getConstantDbgValue(Variable, Expr,
Poison,
DL, DbgSDNodeOrder);
1507 DAG.AddDbgValue(SDV,
false);
1514 DanglingDebugInfo &DDI) {
1519 const Value *OrigV = V;
1523 unsigned SDOrder = DDI.getSDNodeOrder();
1527 bool StackValue =
true;
1552 if (!AdditionalValues.
empty())
1562 dbgs() <<
"Salvaged debug location info for:\n " << *Var <<
"\n"
1563 << *OrigV <<
"\nBy stripping back to:\n " << *V <<
"\n");
1571 assert(OrigV &&
"V shouldn't be null");
1573 auto *SDV =
DAG.getConstantDbgValue(Var, Expr,
Poison,
DL, SDNodeOrder);
1574 DAG.AddDbgValue(SDV,
false);
1576 << printDDI(OrigV, DDI) <<
"\n");
1593 unsigned Order,
bool IsVariadic) {
1598 if (visitEntryValueDbgValue(Values, Var, Expr, DbgLoc))
1603 for (
const Value *V : Values) {
1613 if (CE->getOpcode() == Instruction::IntToPtr) {
1632 N = UnusedArgNodeMap[V];
1637 EmitFuncArgumentDbgValue(V, Var, Expr, DbgLoc,
1638 FuncArgumentDbgValueKind::Value,
N))
1665 bool IsParamOfFunc =
1673 auto VMI =
FuncInfo.ValueMap.find(V);
1674 if (VMI !=
FuncInfo.ValueMap.end()) {
1679 V->getType(), std::nullopt);
1685 unsigned BitsToDescribe = 0;
1687 BitsToDescribe = *VarSize;
1689 BitsToDescribe = Fragment->SizeInBits;
1692 if (
Offset >= BitsToDescribe)
1695 unsigned RegisterSize = RegAndSize.second;
1696 unsigned FragmentSize = (
Offset + RegisterSize > BitsToDescribe)
1697 ? BitsToDescribe -
Offset
1700 Expr,
Offset, FragmentSize);
1704 Var, *FragmentExpr, RegAndSize.first,
false, DbgLoc, Order);
1705 DAG.AddDbgValue(SDV,
false);
1721 DAG.getDbgValueList(Var, Expr, LocationOps, Dependencies,
1722 false, DbgLoc, Order, IsVariadic);
1723 DAG.AddDbgValue(SDV,
false);
1729 for (
auto &Pair : DanglingDebugInfoMap)
1730 for (
auto &DDI : Pair.second)
1741 if (It !=
FuncInfo.ValueMap.end()) {
1745 DAG.getDataLayout(), InReg, Ty,
1762 if (
N.getNode())
return N;
1822 return DAG.getSplatBuildVector(
1825 return DAG.getConstant(*CI,
DL, VT);
1834 getValue(CPA->getAddrDiscriminator()),
1835 getValue(CPA->getDiscriminator()));
1851 visit(CE->getOpcode(), *CE);
1853 assert(N1.
getNode() &&
"visit didn't populate the NodeMap!");
1859 for (
const Use &U :
C->operands()) {
1865 for (
unsigned i = 0, e = Val->
getNumValues(); i != e; ++i)
1866 Constants.push_back(
SDValue(Val, i));
1875 for (
uint64_t i = 0, e = CDS->getNumElements(); i != e; ++i) {
1879 for (
unsigned i = 0, e = Val->
getNumValues(); i != e; ++i)
1888 if (
C->getType()->isStructTy() ||
C->getType()->isArrayTy()) {
1890 "Unknown struct or array constant!");
1894 unsigned NumElts = ValueVTs.
size();
1898 for (
unsigned i = 0; i != NumElts; ++i) {
1899 EVT EltVT = ValueVTs[i];
1901 Constants[i] =
DAG.getUNDEF(EltVT);
1912 return DAG.getBlockAddress(BA, VT);
1915 return getValue(Equiv->getGlobalValue());
1920 if (VT == MVT::aarch64svcount) {
1921 assert(
C->isNullValue() &&
"Can only zero this target type!");
1927 assert(
C->isNullValue() &&
"Can only zero this target type!");
1944 for (
unsigned i = 0; i != NumElements; ++i)
1972 return DAG.getFrameIndex(
1981 Inst->getType(), std::nullopt);
1995void SelectionDAGBuilder::visitCatchPad(
const CatchPadInst &
I) {
2008 if (IsMSVCCXX || IsCoreCLR)
2014 MachineBasicBlock *TargetMBB =
FuncInfo.getMBB(
I.getSuccessor());
2015 FuncInfo.MBB->addSuccessor(TargetMBB);
2022 if (TargetMBB != NextBlock(
FuncInfo.MBB) ||
2031 DAG.getMachineFunction().setHasEHContTarget(
true);
2037 Value *ParentPad =
I.getCatchSwitchParentPad();
2040 SuccessorColor = &
FuncInfo.Fn->getEntryBlock();
2043 assert(SuccessorColor &&
"No parent funclet for catchret!");
2044 MachineBasicBlock *SuccessorColorMBB =
FuncInfo.getMBB(SuccessorColor);
2045 assert(SuccessorColorMBB &&
"No MBB for SuccessorColor!");
2050 DAG.getBasicBlock(SuccessorColorMBB));
2054void SelectionDAGBuilder::visitCleanupPad(
const CleanupPadInst &CPI) {
2060 FuncInfo.MBB->setIsEHFuncletEntry();
2061 FuncInfo.MBB->setIsCleanupFuncletEntry();
2090 UnwindDests.emplace_back(FuncInfo.
getMBB(EHPadBB), Prob);
2096 UnwindDests.emplace_back(FuncInfo.
getMBB(EHPadBB), Prob);
2097 UnwindDests.back().first->setIsEHScopeEntry();
2100 UnwindDests.back().first->setIsEHFuncletEntry();
2104 for (
const BasicBlock *CatchPadBB : CatchSwitch->handlers()) {
2105 UnwindDests.emplace_back(FuncInfo.
getMBB(CatchPadBB), Prob);
2107 if (IsMSVCCXX || IsCoreCLR)
2108 UnwindDests.back().first->setIsEHFuncletEntry();
2110 UnwindDests.back().first->setIsEHScopeEntry();
2112 NewEHPadBB = CatchSwitch->getUnwindDest();
2118 if (BPI && NewEHPadBB)
2120 EHPadBB = NewEHPadBB;
2127 auto UnwindDest =
I.getUnwindDest();
2128 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
2129 BranchProbability UnwindDestProb =
2134 for (
auto &UnwindDest : UnwindDests) {
2135 UnwindDest.first->setIsEHPad();
2136 addSuccessorWithProb(
FuncInfo.MBB, UnwindDest.first, UnwindDest.second);
2138 FuncInfo.MBB->normalizeSuccProbs();
2141 MachineBasicBlock *CleanupPadMBB =
2142 FuncInfo.getMBB(
I.getCleanupPad()->getParent());
2148void SelectionDAGBuilder::visitCatchSwitch(
const CatchSwitchInst &CSI) {
2152void SelectionDAGBuilder::visitRet(
const ReturnInst &
I) {
2153 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
2154 auto &
DL =
DAG.getDataLayout();
2166 if (
I.getParent()->getTerminatingDeoptimizeCall()) {
2183 SmallVector<uint64_t, 4>
Offsets;
2186 unsigned NumValues = ValueVTs.
size();
2189 Align BaseAlign =
DL.getPrefTypeAlign(
I.getOperand(0)->getType());
2190 for (
unsigned i = 0; i != NumValues; ++i) {
2197 if (MemVTs[i] != ValueVTs[i])
2199 Chains[i] =
DAG.getStore(
2207 MVT::Other, Chains);
2208 }
else if (
I.getNumOperands() != 0) {
2211 unsigned NumValues =
Types.size();
2215 const Function *
F =
I.getParent()->getParent();
2218 I.getOperand(0)->getType(),
F->getCallingConv(),
2222 if (
F->getAttributes().hasRetAttr(Attribute::SExt))
2224 else if (
F->getAttributes().hasRetAttr(Attribute::ZExt))
2227 LLVMContext &
Context =
F->getContext();
2228 bool RetInReg =
F->getAttributes().hasRetAttr(Attribute::InReg);
2230 for (
unsigned j = 0;
j != NumValues; ++
j) {
2243 &Parts[0], NumParts, PartVT, &
I, CC, ExtendKind);
2246 ISD::ArgFlagsTy
Flags = ISD::ArgFlagsTy();
2250 if (
I.getOperand(0)->getType()->isPointerTy()) {
2252 Flags.setPointerAddrSpace(
2256 if (NeedsRegBlock) {
2257 Flags.setInConsecutiveRegs();
2258 if (j == NumValues - 1)
2259 Flags.setInConsecutiveRegsLast();
2267 else if (
F->getAttributes().hasRetAttr(Attribute::NoExt))
2270 for (
unsigned i = 0; i < NumParts; ++i) {
2273 VT, Types[j], 0, 0));
2283 const Function *
F =
I.getParent()->getParent();
2285 F->getAttributes().hasAttrSomewhere(Attribute::SwiftError)) {
2287 ISD::ArgFlagsTy
Flags = ISD::ArgFlagsTy();
2288 Flags.setSwiftError();
2300 bool isVarArg =
DAG.getMachineFunction().getFunction().isVarArg();
2302 DAG.getMachineFunction().getFunction().getCallingConv();
2303 Chain =
DAG.getTargetLoweringInfo().LowerReturn(
2308 "LowerReturn didn't return a valid chain!");
2319 if (V->getType()->isEmptyTy())
2323 if (VMI !=
FuncInfo.ValueMap.end()) {
2325 "Unused value assigned virtual registers!");
2338 if (
FuncInfo.isExportedInst(V))
return;
2350 if (VI->getParent() == FromBB)
2376 const BasicBlock *SrcBB = Src->getBasicBlock();
2377 const BasicBlock *DstBB = Dst->getBasicBlock();
2381 auto SuccSize = std::max<uint32_t>(
succ_size(SrcBB), 1);
2391 Src->addSuccessorWithoutProb(Dst);
2394 Prob = getEdgeProbability(Src, Dst);
2395 Src->addSuccessor(Dst, Prob);
2401 return I->getParent() == BB;
2425 if (CurBB == SwitchBB ||
2431 InvertCond ? IC->getInversePredicate() : IC->getPredicate();
2436 InvertCond ? FC->getInversePredicate() : FC->getPredicate();
2438 if (TM.Options.NoNaNsFPMath)
2442 CaseBlock CB(Condition, BOp->getOperand(0), BOp->getOperand(1),
nullptr,
2444 SL->SwitchCases.push_back(CB);
2453 SL->SwitchCases.push_back(CB);
2461 unsigned Depth = 0) {
2470 if (Necessary !=
nullptr) {
2473 if (Necessary->contains(
I))
2492 if (
I.getNumSuccessors() != 2)
2495 if (!
I.isConditional())
2507 if (BPI !=
nullptr) {
2513 std::optional<bool> Likely;
2516 else if (BPI->
isEdgeHot(
I.getParent(), IfFalse))
2520 if (
Opc == (*Likely ? Instruction::And : Instruction::Or))
2532 if (CostThresh <= 0)
2550 const auto &TLI =
DAG.getTargetLoweringInfo();
2557 Value *BrCond =
I.getCondition();
2558 auto ShouldCountInsn = [&RhsDeps, &BrCond](
const Instruction *Ins) {
2559 for (
const auto *U : Ins->users()) {
2562 if (UIns != BrCond && !RhsDeps.
contains(UIns))
2575 for (
unsigned PruneIters = 0; PruneIters < MaxPruneIters; ++PruneIters) {
2577 for (
const auto &InsPair : RhsDeps) {
2578 if (!ShouldCountInsn(InsPair.first)) {
2579 ToDrop = InsPair.first;
2583 if (ToDrop ==
nullptr)
2585 RhsDeps.erase(ToDrop);
2588 for (
const auto &InsPair : RhsDeps) {
2596 if (CostOfIncluding > CostThresh)
2622 const Value *BOpOp0, *BOpOp1;
2636 if (BOpc == Instruction::And)
2637 BOpc = Instruction::Or;
2638 else if (BOpc == Instruction::Or)
2639 BOpc = Instruction::And;
2645 bool BOpIsInOrAndTree = BOpc && BOpc ==
Opc && BOp->
hasOneUse();
2650 TProb, FProb, InvertCond);
2660 if (
Opc == Instruction::Or) {
2681 auto NewTrueProb = TProb / 2;
2682 auto NewFalseProb = TProb / 2 + FProb;
2685 NewFalseProb, InvertCond);
2692 Probs[1], InvertCond);
2694 assert(
Opc == Instruction::And &&
"Unknown merge op!");
2714 auto NewTrueProb = TProb + FProb / 2;
2715 auto NewFalseProb = FProb / 2;
2718 NewFalseProb, InvertCond);
2725 Probs[1], InvertCond);
2734 if (Cases.size() != 2)
return true;
2738 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
2739 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
2740 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
2741 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
2747 if (Cases[0].CmpRHS == Cases[1].CmpRHS &&
2748 Cases[0].CC == Cases[1].CC &&
2751 if (Cases[0].CC ==
ISD::SETEQ && Cases[0].TrueBB == Cases[1].ThisBB)
2753 if (Cases[0].CC ==
ISD::SETNE && Cases[0].FalseBB == Cases[1].ThisBB)
2760void SelectionDAGBuilder::visitBr(
const BranchInst &
I) {
2766 if (
I.isUnconditional()) {
2772 if (Succ0MBB != NextBlock(BrMBB) ||
2785 const Value *CondVal =
I.getCondition();
2786 MachineBasicBlock *Succ1MBB =
FuncInfo.getMBB(
I.getSuccessor(1));
2805 bool IsUnpredictable =
I.hasMetadata(LLVMContext::MD_unpredictable);
2807 if (!
DAG.getTargetLoweringInfo().isJumpExpensive() && BOp &&
2810 const Value *BOp0, *BOp1;
2813 Opcode = Instruction::And;
2815 Opcode = Instruction::Or;
2822 DAG.getTargetLoweringInfo().getJumpConditionMergingParams(
2823 Opcode, BOp0, BOp1))) {
2825 getEdgeProbability(BrMBB, Succ0MBB),
2826 getEdgeProbability(BrMBB, Succ1MBB),
2831 assert(
SL->SwitchCases[0].ThisBB == BrMBB &&
"Unexpected lowering!");
2835 for (
unsigned i = 1, e =
SL->SwitchCases.size(); i != e; ++i) {
2842 SL->SwitchCases.erase(
SL->SwitchCases.begin());
2848 for (
unsigned i = 1, e =
SL->SwitchCases.size(); i != e; ++i)
2849 FuncInfo.MF->erase(
SL->SwitchCases[i].ThisBB);
2851 SL->SwitchCases.clear();
2857 nullptr, Succ0MBB, Succ1MBB, BrMBB,
getCurSDLoc(),
2878 if (CB.
TrueBB != NextBlock(SwitchBB)) {
2885 auto &TLI =
DAG.getTargetLoweringInfo();
2909 Cond =
DAG.getSetCC(dl, MVT::i1, CondLHS, CondRHS, CB.
CC);
2921 Cond =
DAG.getSetCC(dl, MVT::i1, CmpOp,
DAG.getConstant(
High, dl, VT),
2925 VT, CmpOp,
DAG.getConstant(
Low, dl, VT));
2926 Cond =
DAG.getSetCC(dl, MVT::i1, SUB,
2941 if (CB.
TrueBB == NextBlock(SwitchBB)) {
2957 BrCond =
DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
2960 DAG.setRoot(BrCond);
2966 assert(JT.SL &&
"Should set SDLoc for SelectionDAG!");
2967 assert(JT.Reg &&
"Should lower JT Header first!");
2968 EVT PTy =
DAG.getTargetLoweringInfo().getJumpTableRegTy(
DAG.getDataLayout());
2970 SDValue Table =
DAG.getJumpTable(JT.JTI, PTy);
2971 SDValue BrJumpTable =
DAG.getNode(ISD::BR_JT, *JT.SL, MVT::Other,
2972 Index.getValue(1), Table, Index);
2973 DAG.setRoot(BrJumpTable);
2981 assert(JT.SL &&
"Should set SDLoc for SelectionDAG!");
2982 const SDLoc &dl = *JT.SL;
2988 DAG.getConstant(JTH.
First, dl, VT));
3003 JT.Reg = JumpTableReg;
3011 Sub.getValueType()),
3014 SDValue BrCond =
DAG.getNode(ISD::BRCOND, dl,
3015 MVT::Other, CopyTo, CMP,
3016 DAG.getBasicBlock(JT.Default));
3019 if (JT.MBB != NextBlock(SwitchBB))
3020 BrCond =
DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
3021 DAG.getBasicBlock(JT.MBB));
3023 DAG.setRoot(BrCond);
3026 if (JT.MBB != NextBlock(SwitchBB))
3027 DAG.setRoot(
DAG.getNode(ISD::BR, dl, MVT::Other, CopyTo,
3028 DAG.getBasicBlock(JT.MBB)));
3030 DAG.setRoot(CopyTo);
3053 if (PtrTy != PtrMemTy)
3069 auto &
DL =
DAG.getDataLayout();
3078 SDValue StackSlotPtr =
DAG.getFrameIndex(FI, PtrTy);
3085 PtrMemTy, dl,
DAG.getEntryNode(), StackSlotPtr,
3098 assert(GuardCheckFn &&
"Guard check function is null");
3109 Entry.IsInReg =
true;
3110 Args.push_back(Entry);
3116 getValue(GuardCheckFn), std::move(Args));
3118 std::pair<SDValue, SDValue> Result = TLI.
LowerCallTo(CLI);
3119 DAG.setRoot(Result.second);
3132 Guard =
DAG.getLoad(PtrMemTy, dl, Chain, GuardPtr,
3143 SDValue BrCond =
DAG.getNode(ISD::BRCOND, dl,
3176 auto &
DL =
DAG.getDataLayout();
3184 SDValue StackSlotPtr =
DAG.getFrameIndex(FI, PtrTy);
3190 PtrMemTy, dl,
DAG.getEntryNode(), StackSlotPtr,
3205 if (GuardCheckFn->hasParamAttribute(0, Attribute::AttrKind::InReg))
3206 Entry.IsInReg =
true;
3207 Args.push_back(Entry);
3213 getValue(GuardCheckFn), std::move(Args));
3219 Chain = TLI.
makeLibCall(
DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL, MVT::isVoid,
3227 Chain =
DAG.getNode(ISD::TRAP,
getCurSDLoc(), MVT::Other, Chain);
3242 DAG.getNode(
ISD::SUB, dl, VT, SwitchOp,
DAG.getConstant(
B.First, dl, VT));
3246 bool UsePtrType =
false;
3270 if (!
B.FallthroughUnreachable)
3271 addSuccessorWithProb(SwitchBB,
B.Default,
B.DefaultProb);
3272 addSuccessorWithProb(SwitchBB,
MBB,
B.Prob);
3276 if (!
B.FallthroughUnreachable) {
3284 Root =
DAG.getNode(ISD::BRCOND, dl, MVT::Other, Root, RangeCmp,
3285 DAG.getBasicBlock(
B.Default));
3289 if (
MBB != NextBlock(SwitchBB))
3290 Root =
DAG.getNode(ISD::BR, dl, MVT::Other, Root,
DAG.getBasicBlock(
MBB));
3307 if (PopCount == 1) {
3314 }
else if (PopCount == BB.
Range) {
3322 DAG.getConstant(1, dl, VT), ShiftOp);
3326 VT, SwitchVal,
DAG.getConstant(
B.Mask, dl, VT));
3333 addSuccessorWithProb(SwitchBB,
B.TargetBB,
B.ExtraProb);
3335 addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext);
3343 Cmp,
DAG.getBasicBlock(
B.TargetBB));
3346 if (NextMBB != NextBlock(SwitchBB))
3347 BrAnd =
DAG.getNode(ISD::BR, dl, MVT::Other, BrAnd,
3348 DAG.getBasicBlock(NextMBB));
3353void SelectionDAGBuilder::visitInvoke(
const InvokeInst &
I) {
3371 const Value *Callee(
I.getCalledOperand());
3374 visitInlineAsm(
I, EHPadBB);
3379 case Intrinsic::donothing:
3381 case Intrinsic::seh_try_begin:
3382 case Intrinsic::seh_scope_begin:
3383 case Intrinsic::seh_try_end:
3384 case Intrinsic::seh_scope_end:
3390 case Intrinsic::experimental_patchpoint_void:
3391 case Intrinsic::experimental_patchpoint:
3392 visitPatchpoint(
I, EHPadBB);
3394 case Intrinsic::experimental_gc_statepoint:
3400 case Intrinsic::wasm_throw: {
3402 std::array<SDValue, 4>
Ops = {
3413 case Intrinsic::wasm_rethrow: {
3414 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
3415 std::array<SDValue, 2>
Ops = {
3424 }
else if (
I.hasDeoptState()) {
3445 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
3446 BranchProbability EHPadBBProb =
3452 addSuccessorWithProb(InvokeMBB, Return);
3453 for (
auto &UnwindDest : UnwindDests) {
3454 UnwindDest.first->setIsEHPad();
3455 addSuccessorWithProb(InvokeMBB, UnwindDest.first, UnwindDest.second);
3461 DAG.getBasicBlock(Return)));
3464void SelectionDAGBuilder::visitCallBr(
const CallBrInst &
I) {
3465 MachineBasicBlock *CallBrMBB =
FuncInfo.MBB;
3472 assert(
I.isInlineAsm() &&
"Only know how to handle inlineasm callbr");
3477 SmallPtrSet<BasicBlock *, 8> Dests;
3478 Dests.
insert(
I.getDefaultDest());
3483 for (
unsigned i = 0, e =
I.getNumIndirectDests(); i < e; ++i) {
3486 Target->setIsInlineAsmBrIndirectTarget();
3492 Target->setLabelMustBeEmitted();
3494 if (Dests.
insert(Dest).second)
3502 DAG.getBasicBlock(Return)));
3505void SelectionDAGBuilder::visitResume(
const ResumeInst &RI) {
3506 llvm_unreachable(
"SelectionDAGBuilder shouldn't visit resume instructions!");
3509void SelectionDAGBuilder::visitLandingPad(
const LandingPadInst &LP) {
3511 "Call to landingpad not in landing pad!");
3515 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
3531 assert(ValueVTs.
size() == 2 &&
"Only two-valued landingpads are supported");
3536 if (
FuncInfo.ExceptionPointerVirtReg) {
3537 Ops[0] =
DAG.getZExtOrTrunc(
3538 DAG.getCopyFromReg(
DAG.getEntryNode(), dl,
3545 Ops[1] =
DAG.getZExtOrTrunc(
3546 DAG.getCopyFromReg(
DAG.getEntryNode(), dl,
3553 DAG.getVTList(ValueVTs),
Ops);
3561 if (JTB.first.HeaderBB ==
First)
3562 JTB.first.HeaderBB =
Last;
3575 for (
unsigned i = 0, e =
I.getNumSuccessors(); i != e; ++i) {
3577 bool Inserted =
Done.insert(BB).second;
3582 addSuccessorWithProb(IndirectBrMBB, Succ);
3592 if (!
I.shouldLowerToTrap(
DAG.getTarget().Options.TrapUnreachable,
3593 DAG.getTarget().Options.NoTrapAfterNoreturn))
3599void SelectionDAGBuilder::visitUnary(
const User &
I,
unsigned Opcode) {
3602 Flags.copyFMF(*FPOp);
3610void SelectionDAGBuilder::visitBinary(
const User &
I,
unsigned Opcode) {
3613 Flags.setNoSignedWrap(OFBinOp->hasNoSignedWrap());
3614 Flags.setNoUnsignedWrap(OFBinOp->hasNoUnsignedWrap());
3617 Flags.setExact(ExactOp->isExact());
3619 Flags.setDisjoint(DisjointOp->isDisjoint());
3621 Flags.copyFMF(*FPOp);
3630void SelectionDAGBuilder::visitShift(
const User &
I,
unsigned Opcode) {
3634 EVT ShiftTy =
DAG.getTargetLoweringInfo().getShiftAmountTy(
3639 if (!
I.getType()->isVectorTy() && Op2.
getValueType() != ShiftTy) {
3641 "Unexpected shift type");
3651 if (
const OverflowingBinaryOperator *OFBinOp =
3653 nuw = OFBinOp->hasNoUnsignedWrap();
3654 nsw = OFBinOp->hasNoSignedWrap();
3656 if (
const PossiblyExactOperator *ExactOp =
3658 exact = ExactOp->isExact();
3661 Flags.setExact(exact);
3662 Flags.setNoSignedWrap(nsw);
3663 Flags.setNoUnsignedWrap(nuw);
3669void SelectionDAGBuilder::visitSDiv(
const User &
I) {
3680void SelectionDAGBuilder::visitICmp(
const ICmpInst &
I) {
3686 auto &TLI =
DAG.getTargetLoweringInfo();
3699 Flags.setSameSign(
I.hasSameSign());
3700 SelectionDAG::FlagInserter FlagsInserter(
DAG, Flags);
3702 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3707void SelectionDAGBuilder::visitFCmp(
const FCmpInst &
I) {
3714 if (FPMO->hasNoNaNs() || TM.Options.NoNaNsFPMath)
3718 Flags.copyFMF(*FPMO);
3719 SelectionDAG::FlagInserter FlagsInserter(
DAG, Flags);
3721 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3730 return isa<SelectInst>(V);
3734void SelectionDAGBuilder::visitSelect(
const User &
I) {
3738 unsigned NumValues = ValueVTs.
size();
3739 if (NumValues == 0)
return;
3749 bool IsUnaryAbs =
false;
3750 bool Negate =
false;
3754 Flags.copyFMF(*FPOp);
3756 Flags.setUnpredictable(
3761 EVT VT = ValueVTs[0];
3762 LLVMContext &Ctx = *
DAG.getContext();
3763 auto &TLI =
DAG.getTargetLoweringInfo();
3773 bool UseScalarMinMax = VT.
isVector() &&
3782 switch (SPR.Flavor) {
3788 switch (SPR.NaNBehavior) {
3801 switch (SPR.NaNBehavior) {
3845 for (
unsigned i = 0; i != NumValues; ++i) {
3851 Values[i] =
DAG.getNegative(Values[i], dl, VT);
3854 for (
unsigned i = 0; i != NumValues; ++i) {
3858 Values[i] =
DAG.getNode(
3865 DAG.getVTList(ValueVTs), Values));
3868void SelectionDAGBuilder::visitTrunc(
const User &
I) {
3871 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3875 Flags.setNoSignedWrap(Trunc->hasNoSignedWrap());
3876 Flags.setNoUnsignedWrap(Trunc->hasNoUnsignedWrap());
3882void SelectionDAGBuilder::visitZExt(
const User &
I) {
3886 auto &TLI =
DAG.getTargetLoweringInfo();
3891 Flags.setNonNeg(PNI->hasNonNeg());
3896 if (
Flags.hasNonNeg() &&
3905void SelectionDAGBuilder::visitSExt(
const User &
I) {
3909 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3914void SelectionDAGBuilder::visitFPTrunc(
const User &
I) {
3920 Flags.copyFMF(*TruncInst);
3921 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
3924 DAG.getTargetConstant(
3929void SelectionDAGBuilder::visitFPExt(
const User &
I) {
3932 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3937void SelectionDAGBuilder::visitFPToUI(
const User &
I) {
3940 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3945void SelectionDAGBuilder::visitFPToSI(
const User &
I) {
3948 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3953void SelectionDAGBuilder::visitUIToFP(
const User &
I) {
3956 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3960 Flags.setNonNeg(PNI->hasNonNeg());
3965void SelectionDAGBuilder::visitSIToFP(
const User &
I) {
3968 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3973void SelectionDAGBuilder::visitPtrToAddr(
const User &
I) {
3976 const auto &TLI =
DAG.getTargetLoweringInfo();
3984void SelectionDAGBuilder::visitPtrToInt(
const User &
I) {
3988 auto &TLI =
DAG.getTargetLoweringInfo();
3989 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
3998void SelectionDAGBuilder::visitIntToPtr(
const User &
I) {
4002 auto &TLI =
DAG.getTargetLoweringInfo();
4010void SelectionDAGBuilder::visitBitCast(
const User &
I) {
4013 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
4018 if (DestVT !=
N.getValueType())
4026 setValue(&
I,
DAG.getConstant(
C->getValue(), dl, DestVT,
false,
4032void SelectionDAGBuilder::visitAddrSpaceCast(
const User &
I) {
4033 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4034 const Value *SV =
I.getOperand(0);
4039 unsigned DestAS =
I.getType()->getPointerAddressSpace();
4041 if (!TM.isNoopAddrSpaceCast(SrcAS, DestAS))
4047void SelectionDAGBuilder::visitInsertElement(
const User &
I) {
4048 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4055 InVec, InVal, InIdx));
4058void SelectionDAGBuilder::visitExtractElement(
const User &
I) {
4059 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4068void SelectionDAGBuilder::visitShuffleVector(
const User &
I) {
4073 Mask = SVI->getShuffleMask();
4077 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4081 if (
all_of(Mask, [](
int Elem) {
return Elem == 0; }) &&
4086 DAG.getVectorIdxConstant(0,
DL));
4097 unsigned MaskNumElts =
Mask.size();
4099 if (SrcNumElts == MaskNumElts) {
4105 if (SrcNumElts < MaskNumElts) {
4109 if (MaskNumElts % SrcNumElts == 0) {
4113 unsigned NumConcat = MaskNumElts / SrcNumElts;
4114 bool IsConcat =
true;
4115 SmallVector<int, 8> ConcatSrcs(NumConcat, -1);
4116 for (
unsigned i = 0; i != MaskNumElts; ++i) {
4122 if ((Idx % SrcNumElts != (i % SrcNumElts)) ||
4123 (ConcatSrcs[i / SrcNumElts] >= 0 &&
4124 ConcatSrcs[i / SrcNumElts] != (
int)(Idx / SrcNumElts))) {
4129 ConcatSrcs[i / SrcNumElts] = Idx / SrcNumElts;
4136 for (
auto Src : ConcatSrcs) {
4149 unsigned PaddedMaskNumElts =
alignTo(MaskNumElts, SrcNumElts);
4150 unsigned NumConcat = PaddedMaskNumElts / SrcNumElts;
4166 SmallVector<int, 8> MappedOps(PaddedMaskNumElts, -1);
4167 for (
unsigned i = 0; i != MaskNumElts; ++i) {
4169 if (Idx >= (
int)SrcNumElts)
4170 Idx -= SrcNumElts - PaddedMaskNumElts;
4178 if (MaskNumElts != PaddedMaskNumElts)
4180 DAG.getVectorIdxConstant(0,
DL));
4186 assert(SrcNumElts > MaskNumElts);
4190 int StartIdx[2] = {-1, -1};
4191 bool CanExtract =
true;
4192 for (
int Idx : Mask) {
4197 if (Idx >= (
int)SrcNumElts) {
4205 int NewStartIdx =
alignDown(Idx, MaskNumElts);
4206 if (NewStartIdx + MaskNumElts > SrcNumElts ||
4207 (StartIdx[Input] >= 0 && StartIdx[Input] != NewStartIdx))
4211 StartIdx[Input] = NewStartIdx;
4214 if (StartIdx[0] < 0 && StartIdx[1] < 0) {
4220 for (
unsigned Input = 0; Input < 2; ++Input) {
4221 SDValue &Src = Input == 0 ? Src1 : Src2;
4222 if (StartIdx[Input] < 0)
4223 Src =
DAG.getUNDEF(VT);
4226 DAG.getVectorIdxConstant(StartIdx[Input],
DL));
4231 SmallVector<int, 8> MappedOps(Mask);
4232 for (
int &Idx : MappedOps) {
4233 if (Idx >= (
int)SrcNumElts)
4234 Idx -= SrcNumElts + StartIdx[1] - MaskNumElts;
4239 setValue(&
I,
DAG.getVectorShuffle(VT,
DL, Src1, Src2, MappedOps));
4248 for (
int Idx : Mask) {
4252 Res =
DAG.getUNDEF(EltVT);
4254 SDValue &Src = Idx < (int)SrcNumElts ? Src1 : Src2;
4255 if (Idx >= (
int)SrcNumElts) Idx -= SrcNumElts;
4258 DAG.getVectorIdxConstant(Idx,
DL));
4268 ArrayRef<unsigned> Indices =
I.getIndices();
4269 const Value *Op0 =
I.getOperand(0);
4271 Type *AggTy =
I.getType();
4278 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4284 unsigned NumAggValues = AggValueVTs.
size();
4285 unsigned NumValValues = ValValueVTs.
size();
4289 if (!NumAggValues) {
4297 for (; i != LinearIndex; ++i)
4298 Values[i] = IntoUndef ?
DAG.getUNDEF(AggValueVTs[i]) :
4303 for (; i != LinearIndex + NumValValues; ++i)
4304 Values[i] = FromUndef ?
DAG.getUNDEF(AggValueVTs[i]) :
4308 for (; i != NumAggValues; ++i)
4309 Values[i] = IntoUndef ?
DAG.getUNDEF(AggValueVTs[i]) :
4313 DAG.getVTList(AggValueVTs), Values));
4317 ArrayRef<unsigned> Indices =
I.getIndices();
4318 const Value *Op0 =
I.getOperand(0);
4320 Type *ValTy =
I.getType();
4325 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4329 unsigned NumValValues = ValValueVTs.
size();
4332 if (!NumValValues) {
4341 for (
unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
4342 Values[i - LinearIndex] =
4348 DAG.getVTList(ValValueVTs), Values));
4351void SelectionDAGBuilder::visitGetElementPtr(
const User &
I) {
4352 Value *Op0 =
I.getOperand(0);
4358 auto &TLI =
DAG.getTargetLoweringInfo();
4363 bool IsVectorGEP =
I.getType()->isVectorTy();
4364 ElementCount VectorElementCount =
4370 const Value *Idx = GTI.getOperand();
4371 if (StructType *StTy = GTI.getStructTypeOrNull()) {
4376 DAG.getDataLayout().getStructLayout(StTy)->getElementOffset(
Field);
4385 N =
DAG.getMemBasePlusOffset(
4386 N,
DAG.getConstant(
Offset, dl,
N.getValueType()), dl, Flags);
4392 unsigned IdxSize =
DAG.getDataLayout().getIndexSizeInBits(AS);
4394 TypeSize ElementSize =
4395 GTI.getSequentialElementStride(
DAG.getDataLayout());
4400 bool ElementScalable = ElementSize.
isScalable();
4406 C =
C->getSplatValue();
4409 if (CI && CI->isZero())
4411 if (CI && !ElementScalable) {
4412 APInt Offs = ElementMul * CI->getValue().sextOrTrunc(IdxSize);
4415 if (
N.getValueType().isVector())
4416 OffsVal =
DAG.getConstant(
4419 OffsVal =
DAG.getConstant(Offs, dl, IdxTy);
4426 Flags.setNoUnsignedWrap(
true);
4428 OffsVal =
DAG.getSExtOrTrunc(OffsVal, dl,
N.getValueType());
4430 N =
DAG.getMemBasePlusOffset(
N, OffsVal, dl, Flags);
4438 if (
N.getValueType().isVector()) {
4440 VectorElementCount);
4441 IdxN =
DAG.getSplat(VT, dl, IdxN);
4445 N =
DAG.getSplat(VT, dl,
N);
4451 IdxN =
DAG.getSExtOrTrunc(IdxN, dl,
N.getValueType());
4453 SDNodeFlags ScaleFlags;
4462 if (ElementScalable) {
4463 EVT VScaleTy =
N.getValueType().getScalarType();
4465 ISD::VSCALE, dl, VScaleTy,
4466 DAG.getConstant(ElementMul.getZExtValue(), dl, VScaleTy));
4467 if (
N.getValueType().isVector())
4468 VScale =
DAG.getSplatVector(
N.getValueType(), dl, VScale);
4469 IdxN =
DAG.getNode(
ISD::MUL, dl,
N.getValueType(), IdxN, VScale,
4474 if (ElementMul != 1) {
4475 if (ElementMul.isPowerOf2()) {
4476 unsigned Amt = ElementMul.logBase2();
4479 DAG.getShiftAmountConstant(Amt,
N.getValueType(), dl),
4482 SDValue Scale =
DAG.getConstant(ElementMul.getZExtValue(), dl,
4484 IdxN =
DAG.getNode(
ISD::MUL, dl,
N.getValueType(), IdxN, Scale,
4494 SDNodeFlags AddFlags;
4497 N =
DAG.getMemBasePlusOffset(
N, IdxN, dl, AddFlags);
4501 if (IsVectorGEP && !
N.getValueType().isVector()) {
4503 N =
DAG.getSplat(VT, dl,
N);
4514 N =
DAG.getPtrExtendInReg(
N, dl, PtrMemTy);
4519void SelectionDAGBuilder::visitAlloca(
const AllocaInst &
I) {
4526 Type *Ty =
I.getAllocatedType();
4527 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4528 auto &
DL =
DAG.getDataLayout();
4529 TypeSize TySize =
DL.getTypeAllocSize(Ty);
4530 MaybeAlign Alignment = std::max(
DL.getPrefTypeAlign(Ty),
I.getAlign());
4536 AllocSize =
DAG.getZExtOrTrunc(AllocSize, dl, IntPtr);
4539 AllocSize =
DAG.getNode(
ISD::MUL, dl, IntPtr, AllocSize,
4540 DAG.getVScale(dl, IntPtr,
4546 AllocSize =
DAG.getNode(
ISD::MUL, dl, IntPtr, AllocSize,
4547 DAG.getZExtOrTrunc(TySizeValue, dl, IntPtr));
4553 Align StackAlign =
DAG.getSubtarget().getFrameLowering()->getStackAlign();
4554 if (*Alignment <= StackAlign)
4555 Alignment = std::nullopt;
4557 const uint64_t StackAlignMask = StackAlign.
value() - 1U;
4562 DAG.getConstant(StackAlignMask, dl, IntPtr),
4567 DAG.getSignedConstant(~StackAlignMask, dl, IntPtr));
4571 DAG.getConstant(Alignment ? Alignment->value() : 0, dl, IntPtr)};
4573 SDValue DSA =
DAG.getNode(ISD::DYNAMIC_STACKALLOC, dl, VTs,
Ops);
4581 return I.getMetadata(LLVMContext::MD_range);
4586 if (std::optional<ConstantRange> CR = CB->getRange())
4590 return std::nullopt;
4593void SelectionDAGBuilder::visitLoad(
const LoadInst &
I) {
4595 return visitAtomicLoad(
I);
4597 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4598 const Value *SV =
I.getOperand(0);
4603 if (Arg->hasSwiftErrorAttr())
4604 return visitLoadFromSwiftError(
I);
4608 if (Alloca->isSwiftError())
4609 return visitLoadFromSwiftError(
I);
4615 Type *Ty =
I.getType();
4619 unsigned NumValues = ValueVTs.
size();
4623 Align Alignment =
I.getAlign();
4624 AAMDNodes AAInfo =
I.getAAMetadata();
4626 bool isVolatile =
I.isVolatile();
4631 bool ConstantMemory =
false;
4638 BatchAA->pointsToConstantMemory(MemoryLocation(
4643 Root =
DAG.getEntryNode();
4644 ConstantMemory =
true;
4648 Root =
DAG.getRoot();
4659 unsigned ChainI = 0;
4660 for (
unsigned i = 0; i != NumValues; ++i, ++ChainI) {
4676 MachinePointerInfo PtrInfo =
4678 ? MachinePointerInfo(SV, Offsets[i].getKnownMinValue())
4679 : MachinePointerInfo();
4682 SDValue L =
DAG.getLoad(MemVTs[i], dl, Root,
A, PtrInfo, Alignment,
4683 MMOFlags, AAInfo, Ranges);
4684 Chains[ChainI] =
L.getValue(1);
4686 if (MemVTs[i] != ValueVTs[i])
4687 L =
DAG.getPtrExtOrTrunc(L, dl, ValueVTs[i]);
4692 if (!ConstantMemory) {
4702 DAG.getVTList(ValueVTs), Values));
4705void SelectionDAGBuilder::visitStoreToSwiftError(
const StoreInst &
I) {
4706 assert(
DAG.getTargetLoweringInfo().supportSwiftError() &&
4707 "call visitStoreToSwiftError when backend supports swifterror");
4710 SmallVector<uint64_t, 4>
Offsets;
4711 const Value *SrcV =
I.getOperand(0);
4713 SrcV->
getType(), ValueVTs, &Offsets, 0);
4714 assert(ValueVTs.
size() == 1 && Offsets[0] == 0 &&
4715 "expect a single EVT for swifterror");
4724 SDValue(Src.getNode(), Src.getResNo()));
4725 DAG.setRoot(CopyNode);
4728void SelectionDAGBuilder::visitLoadFromSwiftError(
const LoadInst &
I) {
4729 assert(
DAG.getTargetLoweringInfo().supportSwiftError() &&
4730 "call visitLoadFromSwiftError when backend supports swifterror");
4733 !
I.hasMetadata(LLVMContext::MD_nontemporal) &&
4734 !
I.hasMetadata(LLVMContext::MD_invariant_load) &&
4735 "Support volatile, non temporal, invariant for load_from_swift_error");
4737 const Value *SV =
I.getOperand(0);
4738 Type *Ty =
I.getType();
4741 !
BatchAA->pointsToConstantMemory(MemoryLocation(
4743 I.getAAMetadata()))) &&
4744 "load_from_swift_error should not be constant memory");
4747 SmallVector<uint64_t, 4>
Offsets;
4749 ValueVTs, &Offsets, 0);
4750 assert(ValueVTs.
size() == 1 && Offsets[0] == 0 &&
4751 "expect a single EVT for swifterror");
4761void SelectionDAGBuilder::visitStore(
const StoreInst &
I) {
4763 return visitAtomicStore(
I);
4765 const Value *SrcV =
I.getOperand(0);
4766 const Value *PtrV =
I.getOperand(1);
4768 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4773 if (Arg->hasSwiftErrorAttr())
4774 return visitStoreToSwiftError(
I);
4778 if (Alloca->isSwiftError())
4779 return visitStoreToSwiftError(
I);
4786 SrcV->
getType(), ValueVTs, &MemVTs, &Offsets);
4787 unsigned NumValues = ValueVTs.
size();
4800 Align Alignment =
I.getAlign();
4801 AAMDNodes AAInfo =
I.getAAMetadata();
4805 unsigned ChainI = 0;
4806 for (
unsigned i = 0; i != NumValues; ++i, ++ChainI) {
4816 MachinePointerInfo PtrInfo =
4818 ? MachinePointerInfo(PtrV, Offsets[i].getKnownMinValue())
4819 : MachinePointerInfo();
4823 if (MemVTs[i] != ValueVTs[i])
4824 Val =
DAG.getPtrExtOrTrunc(Val, dl, MemVTs[i]);
4826 DAG.getStore(Root, dl, Val,
Add, PtrInfo, Alignment, MMOFlags, AAInfo);
4827 Chains[ChainI] = St;
4833 DAG.setRoot(StoreNode);
4836void SelectionDAGBuilder::visitMaskedStore(
const CallInst &
I,
4837 bool IsCompressing) {
4840 auto getMaskedStoreOps = [&](Value *&
Ptr, Value *&
Mask, Value *&Src0,
4843 Src0 =
I.getArgOperand(0);
4844 Ptr =
I.getArgOperand(1);
4846 Mask =
I.getArgOperand(3);
4848 auto getCompressingStoreOps = [&](Value *&
Ptr, Value *&
Mask, Value *&Src0,
4851 Src0 =
I.getArgOperand(0);
4852 Ptr =
I.getArgOperand(1);
4853 Mask =
I.getArgOperand(2);
4854 Alignment =
I.getParamAlign(1).valueOrOne();
4857 Value *PtrOperand, *MaskOperand, *Src0Operand;
4860 getCompressingStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4862 getMaskedStoreOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
4872 if (
I.hasMetadata(LLVMContext::MD_nontemporal))
4875 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
4876 MachinePointerInfo(PtrOperand), MMOFlags,
4879 const auto &TLI =
DAG.getTargetLoweringInfo();
4884 I.getArgOperand(0)->getType(),
true)
4890 DAG.setRoot(StoreNode);
4916 assert(
Ptr->getType()->isVectorTy() &&
"Unexpected pointer type");
4920 C =
C->getSplatValue();
4934 if (!
GEP ||
GEP->getParent() != CurBB)
4937 if (
GEP->getNumOperands() != 2)
4940 const Value *BasePtr =
GEP->getPointerOperand();
4941 const Value *IndexVal =
GEP->getOperand(
GEP->getNumOperands() - 1);
4947 TypeSize ScaleVal =
DL.getTypeAllocSize(
GEP->getResultElementType());
4952 if (ScaleVal != 1 &&
4964void SelectionDAGBuilder::visitMaskedScatter(
const CallInst &
I) {
4968 const Value *
Ptr =
I.getArgOperand(1);
4973 ->getMaybeAlignValue()
4975 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
4983 unsigned AS =
Ptr->getType()->getScalarType()->getPointerAddressSpace();
4984 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
4994 EVT IdxVT =
Index.getValueType();
5002 SDValue Scatter =
DAG.getMaskedScatter(
DAG.getVTList(MVT::Other), VT, sdl,
5004 DAG.setRoot(Scatter);
5008void SelectionDAGBuilder::visitMaskedLoad(
const CallInst &
I,
bool IsExpanding) {
5011 auto getMaskedLoadOps = [&](Value *&
Ptr, Value *&
Mask, Value *&Src0,
5014 Ptr =
I.getArgOperand(0);
5016 Mask =
I.getArgOperand(2);
5017 Src0 =
I.getArgOperand(3);
5019 auto getExpandingLoadOps = [&](Value *&
Ptr, Value *&
Mask, Value *&Src0,
5022 Ptr =
I.getArgOperand(0);
5023 Alignment =
I.getParamAlign(0).valueOrOne();
5024 Mask =
I.getArgOperand(1);
5025 Src0 =
I.getArgOperand(2);
5028 Value *PtrOperand, *MaskOperand, *Src0Operand;
5031 getExpandingLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
5033 getMaskedLoadOps(PtrOperand, MaskOperand, Src0Operand, Alignment);
5041 AAMDNodes AAInfo =
I.getAAMetadata();
5048 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
5051 if (
I.hasMetadata(LLVMContext::MD_nontemporal))
5054 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5055 MachinePointerInfo(PtrOperand), MMOFlags,
5058 const auto &TLI =
DAG.getTargetLoweringInfo();
5070 DAG.getMaskedLoad(VT, sdl, InChain,
Ptr,
Offset, Mask, Src0, VT, MMO,
5077void SelectionDAGBuilder::visitMaskedGather(
const CallInst &
I) {
5081 const Value *
Ptr =
I.getArgOperand(0);
5085 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5088 ->getMaybeAlignValue()
5099 unsigned AS =
Ptr->getType()->getScalarType()->getPointerAddressSpace();
5100 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5112 EVT IdxVT =
Index.getValueType();
5121 DAG.getMaskedGather(
DAG.getVTList(VT, MVT::Other), VT, sdl,
Ops, MMO,
5137 SDVTList VTs =
DAG.getVTList(MemVT, MVT::i1, MVT::Other);
5139 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5142 MachineFunction &MF =
DAG.getMachineFunction();
5144 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5145 DAG.getEVTAlign(MemVT), AAMDNodes(),
nullptr, SSID, SuccessOrdering,
5148 SDValue L =
DAG.getAtomicCmpSwap(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS,
5149 dl, MemVT, VTs, InChain,
5157 DAG.setRoot(OutChain);
5160void SelectionDAGBuilder::visitAtomicRMW(
const AtomicRMWInst &
I) {
5163 switch (
I.getOperation()) {
5181 NT = ISD::ATOMIC_LOAD_FMAXIMUM;
5184 NT = ISD::ATOMIC_LOAD_FMINIMUM;
5187 NT = ISD::ATOMIC_LOAD_UINC_WRAP;
5190 NT = ISD::ATOMIC_LOAD_UDEC_WRAP;
5193 NT = ISD::ATOMIC_LOAD_USUB_COND;
5196 NT = ISD::ATOMIC_LOAD_USUB_SAT;
5205 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5208 MachineFunction &MF =
DAG.getMachineFunction();
5210 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5211 DAG.getEVTAlign(MemVT), AAMDNodes(),
nullptr, SSID, Ordering);
5214 DAG.getAtomic(NT, dl, MemVT, InChain,
5221 DAG.setRoot(OutChain);
5224void SelectionDAGBuilder::visitFence(
const FenceInst &
I) {
5226 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5229 Ops[1] =
DAG.getTargetConstant((
unsigned)
I.getOrdering(), dl,
5231 Ops[2] =
DAG.getTargetConstant(
I.getSyncScopeID(), dl,
5238void SelectionDAGBuilder::visitAtomicLoad(
const LoadInst &
I) {
5245 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5256 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5257 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5258 I.getAlign(), AAMDNodes(), Ranges, SSID, Order);
5268 L =
DAG.getPtrExtOrTrunc(L, dl, VT);
5271 DAG.setRoot(OutChain);
5274void SelectionDAGBuilder::visitAtomicStore(
const StoreInst &
I) {
5282 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5292 MachineFunction &MF =
DAG.getMachineFunction();
5294 MachinePointerInfo(
I.getPointerOperand()), Flags, MemVT.
getStoreSize(),
5295 I.getAlign(), AAMDNodes(),
nullptr, SSID, Ordering);
5299 Val =
DAG.getPtrExtOrTrunc(Val, dl, MemVT);
5303 DAG.getAtomic(ISD::ATOMIC_STORE, dl, MemVT, InChain, Val,
Ptr, MMO);
5306 DAG.setRoot(OutChain);
5311void SelectionDAGBuilder::visitTargetIntrinsic(
const CallInst &
I,
5317 bool HasChain = !
F->doesNotAccessMemory();
5319 HasChain &&
F->onlyReadsMemory() &&
F->willReturn() &&
F->doesNotThrow();
5326 Ops.push_back(
DAG.getRoot());
5333 TargetLowering::IntrinsicInfo
Info;
5334 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
5336 DAG.getMachineFunction(),
5346 for (
unsigned i = 0, e =
I.arg_size(); i != e; ++i) {
5347 const Value *Arg =
I.getArgOperand(i);
5348 if (!
I.paramHasAttr(i, Attribute::ImmArg)) {
5356 assert(CI->getBitWidth() <= 64 &&
5357 "large intrinsic immediates not handled");
5358 Ops.push_back(
DAG.getTargetConstant(*CI, SDLoc(), VT));
5371 SDVTList VTs =
DAG.getVTList(ValueVTs);
5376 Flags.copyFMF(*FPMO);
5377 SelectionDAG::FlagInserter FlagsInserter(
DAG, Flags);
5383 auto *Token = Bundle->Inputs[0].get();
5385 assert(
Ops.back().getValueType() != MVT::Glue &&
5386 "Did not expected another glue node here.");
5388 DAG.getNode(ISD::CONVERGENCECTRL_GLUE, {}, MVT::Glue, ConvControlToken);
5389 Ops.push_back(ConvControlToken);
5394 if (IsTgtIntrinsic) {
5399 MachinePointerInfo MPI;
5401 MPI = MachinePointerInfo(
Info.ptrVal,
Info.offset);
5402 else if (
Info.fallbackAddressSpace)
5403 MPI = MachinePointerInfo(*
Info.fallbackAddressSpace);
5404 EVT MemVT =
Info.memVT;
5406 if (
Size.hasValue() && !
Size.getValue())
5408 Align Alignment =
Info.align.value_or(
DAG.getEVTAlign(MemVT));
5409 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
5410 MPI,
Info.flags,
Size, Alignment,
I.getAAMetadata(),
nullptr,
5414 }
else if (!HasChain) {
5416 }
else if (!
I.getType()->isVoidTy()) {
5430 if (!
I.getType()->isVoidTy()) {
5434 MaybeAlign Alignment =
I.getRetAlign();
5457 return DAG.
getNode(ISD::BITCAST, dl, MVT::f32, t2);
5498 SDValue TwoToFractionalPartOfX;
5566 SDValue t13 = DAG.
getNode(ISD::BITCAST, dl, MVT::i32, TwoToFractionalPartOfX);
5567 return DAG.
getNode(ISD::BITCAST, dl, MVT::f32,
5575 if (
Op.getValueType() == MVT::f32 &&
5590 return DAG.
getNode(ISD::FEXP, dl,
Op.getValueType(),
Op, Flags);
5599 if (
Op.getValueType() == MVT::f32 &&
5689 return DAG.
getNode(ISD::FLOG, dl,
Op.getValueType(),
Op, Flags);
5698 if (
Op.getValueType() == MVT::f32 &&
5782 return DAG.
getNode(
ISD::FADD, dl, MVT::f32, LogOfExponent, Log2ofMantissa);
5786 return DAG.
getNode(ISD::FLOG2, dl,
Op.getValueType(),
Op, Flags);
5795 if (
Op.getValueType() == MVT::f32 &&
5872 return DAG.
getNode(
ISD::FADD, dl, MVT::f32, LogOfExponent, Log10ofMantissa);
5876 return DAG.
getNode(ISD::FLOG10, dl,
Op.getValueType(),
Op, Flags);
5883 if (
Op.getValueType() == MVT::f32 &&
5888 return DAG.
getNode(ISD::FEXP2, dl,
Op.getValueType(),
Op, Flags);
5896 bool IsExp10 =
false;
5897 if (
LHS.getValueType() == MVT::f32 &&
RHS.getValueType() == MVT::f32 &&
5901 IsExp10 = LHSC->isExactlyValue(Ten);
5928 unsigned Val = RHSC->getSExtValue();
5957 CurSquare, CurSquare);
5962 if (RHSC->getSExtValue() < 0)
5976 EVT VT =
LHS.getValueType();
5999 if ((ScaleInt > 0 || (Saturating &&
Signed)) &&
6003 Opcode, VT, ScaleInt);
6038 switch (
N.getOpcode()) {
6042 Op.getValueType().getSizeInBits());
6067bool SelectionDAGBuilder::EmitFuncArgumentDbgValue(
6074 MachineFunction &MF =
DAG.getMachineFunction();
6075 const TargetInstrInfo *
TII =
DAG.getSubtarget().getInstrInfo();
6079 auto MakeVRegDbgValue = [&](
Register Reg, DIExpression *FragExpr,
6084 auto &Inst =
TII->get(TargetOpcode::DBG_INSTR_REF);
6091 auto *NewDIExpr = FragExpr;
6098 return BuildMI(MF,
DL, Inst,
false, MOs, Variable, NewDIExpr);
6101 auto &Inst =
TII->get(TargetOpcode::DBG_VALUE);
6102 return BuildMI(MF,
DL, Inst, Indirect,
Reg, Variable, FragExpr);
6106 if (Kind == FuncArgumentDbgValueKind::Value) {
6111 if (!IsInEntryBlock)
6127 bool VariableIsFunctionInputArg =
Variable->isParameter() &&
6128 !
DL->getInlinedAt();
6130 if (!IsInPrologue && !VariableIsFunctionInputArg)
6164 if (VariableIsFunctionInputArg) {
6166 if (ArgNo >=
FuncInfo.DescribedArgs.size())
6167 FuncInfo.DescribedArgs.resize(ArgNo + 1,
false);
6168 else if (!IsInPrologue &&
FuncInfo.DescribedArgs.test(ArgNo))
6169 return !NodeMap[
V].getNode();
6174 bool IsIndirect =
false;
6175 std::optional<MachineOperand>
Op;
6177 int FI =
FuncInfo.getArgumentFrameIndex(Arg);
6178 if (FI != std::numeric_limits<int>::max())
6182 if (!
Op &&
N.getNode()) {
6185 if (ArgRegsAndSizes.
size() == 1)
6186 Reg = ArgRegsAndSizes.
front().first;
6189 MachineRegisterInfo &RegInfo = MF.
getRegInfo();
6196 IsIndirect =
Kind != FuncArgumentDbgValueKind::Value;
6200 if (!
Op &&
N.getNode()) {
6204 if (FrameIndexSDNode *FINode =
6214 for (
const auto &RegAndSize : SplitRegs) {
6218 int RegFragmentSizeInBits = RegAndSize.second;
6220 uint64_t ExprFragmentSizeInBits = ExprFragmentInfo->SizeInBits;
6223 if (
Offset >= ExprFragmentSizeInBits)
6227 if (
Offset + RegFragmentSizeInBits > ExprFragmentSizeInBits) {
6228 RegFragmentSizeInBits = ExprFragmentSizeInBits -
Offset;
6233 Expr,
Offset, RegFragmentSizeInBits);
6234 Offset += RegAndSize.second;
6237 if (!FragmentExpr) {
6238 SDDbgValue *SDV =
DAG.getConstantDbgValue(
6240 DAG.AddDbgValue(SDV,
false);
6243 MachineInstr *NewMI =
6244 MakeVRegDbgValue(RegAndSize.first, *FragmentExpr,
6245 Kind != FuncArgumentDbgValueKind::Value);
6246 FuncInfo.ArgDbgValues.push_back(NewMI);
6253 if (VMI !=
FuncInfo.ValueMap.end()) {
6254 const auto &TLI =
DAG.getTargetLoweringInfo();
6255 RegsForValue RFV(
V->getContext(), TLI,
DAG.getDataLayout(), VMI->second,
6256 V->getType(), std::nullopt);
6257 if (RFV.occupiesMultipleRegs()) {
6258 splitMultiRegDbgValue(RFV.getRegsAndSizes());
6263 IsIndirect =
Kind != FuncArgumentDbgValueKind::Value;
6264 }
else if (ArgRegsAndSizes.
size() > 1) {
6267 splitMultiRegDbgValue(ArgRegsAndSizes);
6276 "Expected inlined-at fields to agree");
6277 MachineInstr *NewMI =
nullptr;
6280 NewMI = MakeVRegDbgValue(
Op->getReg(), Expr, IsIndirect);
6282 NewMI =
BuildMI(MF,
DL,
TII->get(TargetOpcode::DBG_VALUE),
true, *
Op,
6286 FuncInfo.ArgDbgValues.push_back(NewMI);
6295 unsigned DbgSDNodeOrder) {
6307 return DAG.getFrameIndexDbgValue(Variable, Expr, FISDN->getIndex(),
6308 false, dl, DbgSDNodeOrder);
6310 return DAG.getDbgValue(Variable, Expr,
N.getNode(),
N.getResNo(),
6311 false, dl, DbgSDNodeOrder);
6316 case Intrinsic::smul_fix:
6318 case Intrinsic::umul_fix:
6320 case Intrinsic::smul_fix_sat:
6322 case Intrinsic::umul_fix_sat:
6324 case Intrinsic::sdiv_fix:
6326 case Intrinsic::udiv_fix:
6328 case Intrinsic::sdiv_fix_sat:
6330 case Intrinsic::udiv_fix_sat:
6343 "expected call_preallocated_setup Value");
6344 for (
const auto *U : PreallocatedSetup->
users()) {
6346 const Function *Fn = UseCall->getCalledFunction();
6347 if (!Fn || Fn->
getIntrinsicID() != Intrinsic::call_preallocated_arg) {
6357bool SelectionDAGBuilder::visitEntryValueDbgValue(
6367 auto ArgIt =
FuncInfo.ValueMap.find(Arg);
6368 if (ArgIt ==
FuncInfo.ValueMap.end()) {
6370 dbgs() <<
"Dropping dbg.value: expression is entry_value but "
6371 "couldn't find an associated register for the Argument\n");
6374 Register ArgVReg = ArgIt->getSecond();
6376 for (
auto [PhysReg, VirtReg] :
FuncInfo.RegInfo->liveins())
6377 if (ArgVReg == VirtReg || ArgVReg == PhysReg) {
6378 SDDbgValue *SDV =
DAG.getVRegDbgValue(
6379 Variable, Expr, PhysReg,
false , DbgLoc, SDNodeOrder);
6380 DAG.AddDbgValue(SDV,
false );
6383 LLVM_DEBUG(
dbgs() <<
"Dropping dbg.value: expression is entry_value but "
6384 "couldn't find a physical register\n");
6389void SelectionDAGBuilder::visitConvergenceControl(
const CallInst &
I,
6392 switch (Intrinsic) {
6393 case Intrinsic::experimental_convergence_anchor:
6394 setValue(&
I,
DAG.getNode(ISD::CONVERGENCECTRL_ANCHOR, sdl, MVT::Untyped));
6396 case Intrinsic::experimental_convergence_entry:
6397 setValue(&
I,
DAG.getNode(ISD::CONVERGENCECTRL_ENTRY, sdl, MVT::Untyped));
6399 case Intrinsic::experimental_convergence_loop: {
6401 auto *Token = Bundle->Inputs[0].get();
6402 setValue(&
I,
DAG.getNode(ISD::CONVERGENCECTRL_LOOP, sdl, MVT::Untyped,
6409void SelectionDAGBuilder::visitVectorHistogram(
const CallInst &
I,
6410 unsigned IntrinsicID) {
6413 assert(IntrinsicID == Intrinsic::experimental_vector_histogram_add &&
6414 "Tried to lower unsupported histogram type");
6416 Value *
Ptr =
I.getOperand(0);
6420 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
6421 DataLayout TargetDL =
DAG.getDataLayout();
6423 Align Alignment =
DAG.getEVTAlign(VT);
6434 unsigned AS =
Ptr->getType()->getScalarType()->getPointerAddressSpace();
6436 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
6437 MachinePointerInfo(AS),
6448 EVT IdxVT =
Index.getValueType();
6455 SDValue ID =
DAG.getTargetConstant(IntrinsicID, sdl, MVT::i32);
6458 SDValue Histogram =
DAG.getMaskedHistogram(
DAG.getVTList(MVT::Other), VT, sdl,
6462 DAG.setRoot(Histogram);
6465void SelectionDAGBuilder::visitVectorExtractLastActive(
const CallInst &
I,
6467 assert(Intrinsic == Intrinsic::experimental_vector_extract_last_active &&
6468 "Tried lowering invalid vector extract last");
6470 const DataLayout &Layout =
DAG.getDataLayout();
6474 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
6478 SDValue Idx =
DAG.getNode(ISD::VECTOR_FIND_LAST_ACTIVE, sdl, ExtVT, Mask);
6484 EVT BoolVT =
Mask.getValueType().getScalarType();
6485 SDValue AnyActive =
DAG.getNode(ISD::VECREDUCE_OR, sdl, BoolVT, Mask);
6486 Result =
DAG.getSelect(sdl, ResVT, AnyActive, Result, PassThru);
6493void SelectionDAGBuilder::visitIntrinsicCall(
const CallInst &
I,
6495 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
6502 Flags.copyFMF(*FPOp);
6504 switch (Intrinsic) {
6507 visitTargetIntrinsic(
I, Intrinsic);
6509 case Intrinsic::vscale: {
6514 case Intrinsic::vastart: visitVAStart(
I);
return;
6515 case Intrinsic::vaend: visitVAEnd(
I);
return;
6516 case Intrinsic::vacopy: visitVACopy(
I);
return;
6517 case Intrinsic::returnaddress:
6522 case Intrinsic::addressofreturnaddress:
6527 case Intrinsic::sponentry:
6532 case Intrinsic::frameaddress:
6537 case Intrinsic::read_volatile_register:
6538 case Intrinsic::read_register: {
6539 Value *
Reg =
I.getArgOperand(0);
6545 DAG.getVTList(VT, MVT::Other), Chain,
RegName);
6550 case Intrinsic::write_register: {
6551 Value *
Reg =
I.getArgOperand(0);
6552 Value *RegValue =
I.getArgOperand(1);
6560 case Intrinsic::memcpy:
6561 case Intrinsic::memcpy_inline: {
6567 "memcpy_inline needs constant size");
6569 Align DstAlign = MCI.getDestAlign().valueOrOne();
6570 Align SrcAlign = MCI.getSourceAlign().valueOrOne();
6571 Align Alignment = std::min(DstAlign, SrcAlign);
6572 bool isVol = MCI.isVolatile();
6576 SDValue MC =
DAG.getMemcpy(Root, sdl, Dst, Src,
Size, Alignment, isVol,
6577 MCI.isForceInlined(), &
I, std::nullopt,
6578 MachinePointerInfo(
I.getArgOperand(0)),
6579 MachinePointerInfo(
I.getArgOperand(1)),
6581 updateDAGForMaybeTailCall(MC);
6584 case Intrinsic::memset:
6585 case Intrinsic::memset_inline: {
6591 "memset_inline needs constant size");
6593 Align DstAlign = MSII.getDestAlign().valueOrOne();
6594 bool isVol = MSII.isVolatile();
6597 Root, sdl, Dst, Value,
Size, DstAlign, isVol, MSII.isForceInlined(),
6598 &
I, MachinePointerInfo(
I.getArgOperand(0)),
I.getAAMetadata());
6599 updateDAGForMaybeTailCall(MC);
6602 case Intrinsic::memmove: {
6608 Align DstAlign = MMI.getDestAlign().valueOrOne();
6609 Align SrcAlign = MMI.getSourceAlign().valueOrOne();
6610 Align Alignment = std::min(DstAlign, SrcAlign);
6611 bool isVol = MMI.isVolatile();
6615 SDValue MM =
DAG.getMemmove(Root, sdl, Op1, Op2, Op3, Alignment, isVol, &
I,
6617 MachinePointerInfo(
I.getArgOperand(0)),
6618 MachinePointerInfo(
I.getArgOperand(1)),
6620 updateDAGForMaybeTailCall(MM);
6623 case Intrinsic::memcpy_element_unordered_atomic: {
6629 Type *LengthTy =
MI.getLength()->getType();
6630 unsigned ElemSz =
MI.getElementSizeInBytes();
6634 isTC, MachinePointerInfo(
MI.getRawDest()),
6635 MachinePointerInfo(
MI.getRawSource()));
6636 updateDAGForMaybeTailCall(MC);
6639 case Intrinsic::memmove_element_unordered_atomic: {
6645 Type *LengthTy =
MI.getLength()->getType();
6646 unsigned ElemSz =
MI.getElementSizeInBytes();
6650 isTC, MachinePointerInfo(
MI.getRawDest()),
6651 MachinePointerInfo(
MI.getRawSource()));
6652 updateDAGForMaybeTailCall(MC);
6655 case Intrinsic::memset_element_unordered_atomic: {
6661 Type *LengthTy =
MI.getLength()->getType();
6662 unsigned ElemSz =
MI.getElementSizeInBytes();
6666 isTC, MachinePointerInfo(
MI.getRawDest()));
6667 updateDAGForMaybeTailCall(MC);
6670 case Intrinsic::call_preallocated_setup: {
6672 SDValue SrcValue =
DAG.getSrcValue(PreallocatedCall);
6673 SDValue Res =
DAG.getNode(ISD::PREALLOCATED_SETUP, sdl, MVT::Other,
6679 case Intrinsic::call_preallocated_arg: {
6681 SDValue SrcValue =
DAG.getSrcValue(PreallocatedCall);
6688 ISD::PREALLOCATED_ARG, sdl,
6695 case Intrinsic::eh_typeid_for: {
6698 unsigned TypeID =
DAG.getMachineFunction().getTypeIDFor(GV);
6699 Res =
DAG.getConstant(
TypeID, sdl, MVT::i32);
6704 case Intrinsic::eh_return_i32:
6705 case Intrinsic::eh_return_i64:
6706 DAG.getMachineFunction().setCallsEHReturn(
true);
6713 case Intrinsic::eh_unwind_init:
6714 DAG.getMachineFunction().setCallsUnwindInit(
true);
6716 case Intrinsic::eh_dwarf_cfa:
6721 case Intrinsic::eh_sjlj_callsite: {
6723 assert(
FuncInfo.getCurrentCallSite() == 0 &&
"Overlapping call sites!");
6728 case Intrinsic::eh_sjlj_functioncontext: {
6730 MachineFrameInfo &MFI =
DAG.getMachineFunction().getFrameInfo();
6733 int FI =
FuncInfo.StaticAllocaMap[FnCtx];
6737 case Intrinsic::eh_sjlj_setjmp: {
6742 DAG.getVTList(MVT::i32, MVT::Other),
Ops);
6744 DAG.setRoot(
Op.getValue(1));
6747 case Intrinsic::eh_sjlj_longjmp:
6751 case Intrinsic::eh_sjlj_setup_dispatch:
6755 case Intrinsic::masked_gather:
6756 visitMaskedGather(
I);
6758 case Intrinsic::masked_load:
6761 case Intrinsic::masked_scatter:
6762 visitMaskedScatter(
I);
6764 case Intrinsic::masked_store:
6765 visitMaskedStore(
I);
6767 case Intrinsic::masked_expandload:
6768 visitMaskedLoad(
I,
true );
6770 case Intrinsic::masked_compressstore:
6771 visitMaskedStore(
I,
true );
6773 case Intrinsic::powi:
6777 case Intrinsic::log:
6780 case Intrinsic::log2:
6784 case Intrinsic::log10:
6788 case Intrinsic::exp:
6791 case Intrinsic::exp2:
6795 case Intrinsic::pow:
6799 case Intrinsic::sqrt:
6800 case Intrinsic::fabs:
6801 case Intrinsic::sin:
6802 case Intrinsic::cos:
6803 case Intrinsic::tan:
6804 case Intrinsic::asin:
6805 case Intrinsic::acos:
6806 case Intrinsic::atan:
6807 case Intrinsic::sinh:
6808 case Intrinsic::cosh:
6809 case Intrinsic::tanh:
6810 case Intrinsic::exp10:
6811 case Intrinsic::floor:
6812 case Intrinsic::ceil:
6813 case Intrinsic::trunc:
6814 case Intrinsic::rint:
6815 case Intrinsic::nearbyint:
6816 case Intrinsic::round:
6817 case Intrinsic::roundeven:
6818 case Intrinsic::canonicalize: {
6821 switch (Intrinsic) {
6823 case Intrinsic::sqrt: Opcode = ISD::FSQRT;
break;
6824 case Intrinsic::fabs: Opcode = ISD::FABS;
break;
6825 case Intrinsic::sin: Opcode = ISD::FSIN;
break;
6826 case Intrinsic::cos: Opcode = ISD::FCOS;
break;
6827 case Intrinsic::tan: Opcode = ISD::FTAN;
break;
6828 case Intrinsic::asin: Opcode = ISD::FASIN;
break;
6829 case Intrinsic::acos: Opcode = ISD::FACOS;
break;
6830 case Intrinsic::atan: Opcode = ISD::FATAN;
break;
6831 case Intrinsic::sinh: Opcode = ISD::FSINH;
break;
6832 case Intrinsic::cosh: Opcode = ISD::FCOSH;
break;
6833 case Intrinsic::tanh: Opcode = ISD::FTANH;
break;
6834 case Intrinsic::exp10: Opcode = ISD::FEXP10;
break;
6835 case Intrinsic::floor: Opcode = ISD::FFLOOR;
break;
6836 case Intrinsic::ceil: Opcode = ISD::FCEIL;
break;
6837 case Intrinsic::trunc: Opcode = ISD::FTRUNC;
break;
6838 case Intrinsic::rint: Opcode = ISD::FRINT;
break;
6839 case Intrinsic::nearbyint: Opcode = ISD::FNEARBYINT;
break;
6840 case Intrinsic::round: Opcode = ISD::FROUND;
break;
6841 case Intrinsic::roundeven: Opcode = ISD::FROUNDEVEN;
break;
6847 getValue(
I.getArgOperand(0)).getValueType(),
6851 case Intrinsic::atan2:
6853 getValue(
I.getArgOperand(0)).getValueType(),
6857 case Intrinsic::lround:
6858 case Intrinsic::llround:
6859 case Intrinsic::lrint:
6860 case Intrinsic::llrint: {
6863 switch (Intrinsic) {
6865 case Intrinsic::lround: Opcode = ISD::LROUND;
break;
6866 case Intrinsic::llround: Opcode = ISD::LLROUND;
break;
6867 case Intrinsic::lrint: Opcode = ISD::LRINT;
break;
6868 case Intrinsic::llrint: Opcode = ISD::LLRINT;
break;
6877 case Intrinsic::minnum:
6879 getValue(
I.getArgOperand(0)).getValueType(),
6883 case Intrinsic::maxnum:
6885 getValue(
I.getArgOperand(0)).getValueType(),
6889 case Intrinsic::minimum:
6891 getValue(
I.getArgOperand(0)).getValueType(),
6895 case Intrinsic::maximum:
6897 getValue(
I.getArgOperand(0)).getValueType(),
6901 case Intrinsic::minimumnum:
6903 getValue(
I.getArgOperand(0)).getValueType(),
6907 case Intrinsic::maximumnum:
6909 getValue(
I.getArgOperand(0)).getValueType(),
6913 case Intrinsic::copysign:
6915 getValue(
I.getArgOperand(0)).getValueType(),
6919 case Intrinsic::ldexp:
6921 getValue(
I.getArgOperand(0)).getValueType(),
6925 case Intrinsic::modf:
6926 case Intrinsic::sincos:
6927 case Intrinsic::sincospi:
6928 case Intrinsic::frexp: {
6930 switch (Intrinsic) {
6933 case Intrinsic::sincos:
6934 Opcode = ISD::FSINCOS;
6936 case Intrinsic::sincospi:
6937 Opcode = ISD::FSINCOSPI;
6939 case Intrinsic::modf:
6940 Opcode = ISD::FMODF;
6942 case Intrinsic::frexp:
6943 Opcode = ISD::FFREXP;
6948 SDVTList VTs =
DAG.getVTList(ValueVTs);
6950 &
I,
DAG.getNode(Opcode, sdl, VTs,
getValue(
I.getArgOperand(0)), Flags));
6953 case Intrinsic::arithmetic_fence: {
6955 getValue(
I.getArgOperand(0)).getValueType(),
6959 case Intrinsic::fma:
6965#define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \
6966 case Intrinsic::INTRINSIC:
6967#include "llvm/IR/ConstrainedOps.def"
6970#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID:
6971#include "llvm/IR/VPIntrinsics.def"
6974 case Intrinsic::fptrunc_round: {
6978 std::optional<RoundingMode> RoundMode =
6986 SelectionDAG::FlagInserter FlagsInserter(
DAG, Flags);
6991 DAG.getTargetConstant((
int)*RoundMode, sdl, MVT::i32));
6996 case Intrinsic::fmuladd: {
7001 getValue(
I.getArgOperand(0)).getValueType(),
7008 getValue(
I.getArgOperand(0)).getValueType(),
7024 case Intrinsic::convert_to_fp16:
7028 DAG.getTargetConstant(0, sdl,
7031 case Intrinsic::convert_from_fp16:
7034 DAG.getNode(ISD::BITCAST, sdl, MVT::f16,
7037 case Intrinsic::fptosi_sat: {
7044 case Intrinsic::fptoui_sat: {
7051 case Intrinsic::set_rounding:
7052 Res =
DAG.getNode(ISD::SET_ROUNDING, sdl, MVT::Other,
7057 case Intrinsic::is_fpclass: {
7058 const DataLayout DLayout =
DAG.getDataLayout();
7060 EVT ArgVT = TLI.
getValueType(DLayout,
I.getArgOperand(0)->getType());
7063 MachineFunction &MF =
DAG.getMachineFunction();
7067 Flags.setNoFPExcept(
7068 !
F.getAttributes().hasFnAttr(llvm::Attribute::StrictFP));
7084 case Intrinsic::get_fpenv: {
7085 const DataLayout DLayout =
DAG.getDataLayout();
7087 Align TempAlign =
DAG.getEVTAlign(EnvVT);
7093 ISD::GET_FPENV, sdl,
7102 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
7105 Chain =
DAG.getGetFPEnv(Chain, sdl, Temp, EnvVT, MMO);
7106 Res =
DAG.getLoad(EnvVT, sdl, Chain, Temp, MPI);
7112 case Intrinsic::set_fpenv: {
7113 const DataLayout DLayout =
DAG.getDataLayout();
7116 Align TempAlign =
DAG.getEVTAlign(EnvVT);
7121 Chain =
DAG.getNode(ISD::SET_FPENV, sdl, MVT::Other, Chain, Env);
7129 Chain =
DAG.getStore(Chain, sdl, Env, Temp, MPI, TempAlign,
7131 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
7134 Chain =
DAG.getSetFPEnv(Chain, sdl, Temp, EnvVT, MMO);
7139 case Intrinsic::reset_fpenv:
7140 DAG.setRoot(
DAG.getNode(ISD::RESET_FPENV, sdl, MVT::Other,
getRoot()));
7142 case Intrinsic::get_fpmode:
7144 ISD::GET_FPMODE, sdl,
7151 case Intrinsic::set_fpmode:
7152 Res =
DAG.getNode(ISD::SET_FPMODE, sdl, MVT::Other, {
DAG.getRoot()},
7156 case Intrinsic::reset_fpmode: {
7157 Res =
DAG.getNode(ISD::RESET_FPMODE, sdl, MVT::Other,
getRoot());
7161 case Intrinsic::pcmarker: {
7163 DAG.setRoot(
DAG.getNode(ISD::PCMARKER, sdl, MVT::Other,
getRoot(), Tmp));
7166 case Intrinsic::readcyclecounter: {
7168 Res =
DAG.getNode(ISD::READCYCLECOUNTER, sdl,
7169 DAG.getVTList(MVT::i64, MVT::Other),
Op);
7174 case Intrinsic::readsteadycounter: {
7176 Res =
DAG.getNode(ISD::READSTEADYCOUNTER, sdl,
7177 DAG.getVTList(MVT::i64, MVT::Other),
Op);
7182 case Intrinsic::bitreverse:
7184 getValue(
I.getArgOperand(0)).getValueType(),
7187 case Intrinsic::bswap:
7189 getValue(
I.getArgOperand(0)).getValueType(),
7192 case Intrinsic::cttz: {
7200 case Intrinsic::ctlz: {
7208 case Intrinsic::ctpop: {
7214 case Intrinsic::fshl:
7215 case Intrinsic::fshr: {
7216 bool IsFSHL =
Intrinsic == Intrinsic::fshl;
7220 EVT VT =
X.getValueType();
7231 case Intrinsic::sadd_sat: {
7237 case Intrinsic::uadd_sat: {
7243 case Intrinsic::ssub_sat: {
7249 case Intrinsic::usub_sat: {
7255 case Intrinsic::sshl_sat: {
7261 case Intrinsic::ushl_sat: {
7267 case Intrinsic::smul_fix:
7268 case Intrinsic::umul_fix:
7269 case Intrinsic::smul_fix_sat:
7270 case Intrinsic::umul_fix_sat: {
7278 case Intrinsic::sdiv_fix:
7279 case Intrinsic::udiv_fix:
7280 case Intrinsic::sdiv_fix_sat:
7281 case Intrinsic::udiv_fix_sat: {
7286 Op1, Op2, Op3,
DAG, TLI));
7289 case Intrinsic::smax: {
7295 case Intrinsic::smin: {
7301 case Intrinsic::umax: {
7307 case Intrinsic::umin: {
7313 case Intrinsic::abs: {
7319 case Intrinsic::scmp: {
7326 case Intrinsic::ucmp: {
7333 case Intrinsic::stacksave: {
7336 Res =
DAG.getNode(ISD::STACKSAVE, sdl,
DAG.getVTList(VT, MVT::Other),
Op);
7341 case Intrinsic::stackrestore:
7343 DAG.setRoot(
DAG.getNode(ISD::STACKRESTORE, sdl, MVT::Other,
getRoot(), Res));
7345 case Intrinsic::get_dynamic_area_offset: {
7348 Res =
DAG.getNode(ISD::GET_DYNAMIC_AREA_OFFSET, sdl,
DAG.getVTList(ResTy),
7354 case Intrinsic::stackguard: {
7355 MachineFunction &MF =
DAG.getMachineFunction();
7361 Res =
DAG.getPtrExtOrTrunc(Res, sdl, PtrTy);
7366 MachinePointerInfo(
Global, 0), Align,
7375 case Intrinsic::stackprotector: {
7377 MachineFunction &MF =
DAG.getMachineFunction();
7397 Chain, sdl, Src, FIN,
7404 case Intrinsic::objectsize:
7407 case Intrinsic::is_constant:
7410 case Intrinsic::annotation:
7411 case Intrinsic::ptr_annotation:
7412 case Intrinsic::launder_invariant_group:
7413 case Intrinsic::strip_invariant_group:
7418 case Intrinsic::type_test:
7419 case Intrinsic::public_type_test:
7423 case Intrinsic::assume:
7424 case Intrinsic::experimental_noalias_scope_decl:
7425 case Intrinsic::var_annotation:
7426 case Intrinsic::sideeffect:
7431 case Intrinsic::codeview_annotation: {
7433 MachineFunction &MF =
DAG.getMachineFunction();
7437 Res =
DAG.getLabelNode(ISD::ANNOTATION_LABEL, sdl,
getRoot(), Label);
7442 case Intrinsic::init_trampoline: {
7450 Ops[4] =
DAG.getSrcValue(
I.getArgOperand(0));
7453 Res =
DAG.getNode(ISD::INIT_TRAMPOLINE, sdl, MVT::Other,
Ops);
7458 case Intrinsic::adjust_trampoline:
7463 case Intrinsic::gcroot: {
7464 assert(
DAG.getMachineFunction().getFunction().hasGC() &&
7465 "only valid in functions with gc specified, enforced by Verifier");
7467 const Value *Alloca =
I.getArgOperand(0)->stripPointerCasts();
7474 case Intrinsic::gcread:
7475 case Intrinsic::gcwrite:
7477 case Intrinsic::get_rounding:
7483 case Intrinsic::expect:
7484 case Intrinsic::expect_with_probability:
7490 case Intrinsic::ubsantrap:
7491 case Intrinsic::debugtrap:
7492 case Intrinsic::trap: {
7493 StringRef TrapFuncName =
7494 I.getAttributes().getFnAttr(
"trap-func-name").getValueAsString();
7495 if (TrapFuncName.
empty()) {
7496 switch (Intrinsic) {
7497 case Intrinsic::trap:
7498 DAG.setRoot(
DAG.getNode(ISD::TRAP, sdl, MVT::Other,
getRoot()));
7500 case Intrinsic::debugtrap:
7501 DAG.setRoot(
DAG.getNode(ISD::DEBUGTRAP, sdl, MVT::Other,
getRoot()));
7503 case Intrinsic::ubsantrap:
7505 ISD::UBSANTRAP, sdl, MVT::Other,
getRoot(),
7506 DAG.getTargetConstant(
7512 DAG.addNoMergeSiteInfo(
DAG.getRoot().getNode(),
7513 I.hasFnAttr(Attribute::NoMerge));
7517 if (Intrinsic == Intrinsic::ubsantrap) {
7518 Value *Arg =
I.getArgOperand(0);
7522 TargetLowering::CallLoweringInfo CLI(
DAG);
7523 CLI.setDebugLoc(sdl).setChain(
getRoot()).setLibCallee(
7525 DAG.getExternalSymbol(TrapFuncName.
data(),
7528 CLI.NoMerge =
I.hasFnAttr(Attribute::NoMerge);
7534 case Intrinsic::allow_runtime_check:
7535 case Intrinsic::allow_ubsan_check:
7539 case Intrinsic::uadd_with_overflow:
7540 case Intrinsic::sadd_with_overflow:
7541 case Intrinsic::usub_with_overflow:
7542 case Intrinsic::ssub_with_overflow:
7543 case Intrinsic::umul_with_overflow:
7544 case Intrinsic::smul_with_overflow: {
7546 switch (Intrinsic) {
7548 case Intrinsic::uadd_with_overflow:
Op =
ISD::UADDO;
break;
7549 case Intrinsic::sadd_with_overflow:
Op =
ISD::SADDO;
break;
7550 case Intrinsic::usub_with_overflow:
Op =
ISD::USUBO;
break;
7551 case Intrinsic::ssub_with_overflow:
Op =
ISD::SSUBO;
break;
7552 case Intrinsic::umul_with_overflow:
Op =
ISD::UMULO;
break;
7553 case Intrinsic::smul_with_overflow:
Op =
ISD::SMULO;
break;
7559 EVT OverflowVT = MVT::i1;
7564 SDVTList VTs =
DAG.getVTList(ResultVT, OverflowVT);
7568 case Intrinsic::prefetch: {
7581 ISD::PREFETCH, sdl,
DAG.getVTList(MVT::Other),
Ops,
7583 std::nullopt, Flags);
7589 DAG.setRoot(Result);
7592 case Intrinsic::lifetime_start:
7593 case Intrinsic::lifetime_end: {
7594 bool IsStart = (
Intrinsic == Intrinsic::lifetime_start);
7600 if (!LifetimeObject)
7605 auto SI =
FuncInfo.StaticAllocaMap.find(LifetimeObject);
7606 if (SI ==
FuncInfo.StaticAllocaMap.end())
7610 Res =
DAG.getLifetimeNode(IsStart, sdl,
getRoot(), FrameIndex);
7614 case Intrinsic::pseudoprobe: {
7622 case Intrinsic::invariant_start:
7627 case Intrinsic::invariant_end:
7630 case Intrinsic::clear_cache: {
7635 {InputChain, StartVal, EndVal});
7640 case Intrinsic::donothing:
7641 case Intrinsic::seh_try_begin:
7642 case Intrinsic::seh_scope_begin:
7643 case Intrinsic::seh_try_end:
7644 case Intrinsic::seh_scope_end:
7647 case Intrinsic::experimental_stackmap:
7650 case Intrinsic::experimental_patchpoint_void:
7651 case Intrinsic::experimental_patchpoint:
7654 case Intrinsic::experimental_gc_statepoint:
7657 case Intrinsic::experimental_gc_result:
7660 case Intrinsic::experimental_gc_relocate:
7663 case Intrinsic::instrprof_cover:
7665 case Intrinsic::instrprof_increment:
7667 case Intrinsic::instrprof_timestamp:
7669 case Intrinsic::instrprof_value_profile:
7671 case Intrinsic::instrprof_mcdc_parameters:
7673 case Intrinsic::instrprof_mcdc_tvbitmap_update:
7675 case Intrinsic::localescape: {
7676 MachineFunction &MF =
DAG.getMachineFunction();
7677 const TargetInstrInfo *
TII =
DAG.getSubtarget().getInstrInfo();
7681 for (
unsigned Idx = 0,
E =
I.arg_size(); Idx <
E; ++Idx) {
7687 "can only escape static allocas");
7692 TII->get(TargetOpcode::LOCAL_ESCAPE))
7700 case Intrinsic::localrecover: {
7702 MachineFunction &MF =
DAG.getMachineFunction();
7708 unsigned(Idx->getLimitedValue(std::numeric_limits<int>::max()));
7712 Value *
FP =
I.getArgOperand(1);
7718 SDValue OffsetSym =
DAG.getMCSymbol(FrameAllocSym, PtrVT);
7723 SDValue Add =
DAG.getMemBasePlusOffset(FPVal, OffsetVal, sdl);
7729 case Intrinsic::fake_use: {
7730 Value *
V =
I.getArgOperand(0);
7735 auto FakeUseValue = [&]() ->
SDValue {
7749 if (!FakeUseValue || FakeUseValue.isUndef())
7752 Ops[1] = FakeUseValue;
7757 DAG.setRoot(
DAG.getNode(ISD::FAKE_USE, sdl, MVT::Other,
Ops));
7761 case Intrinsic::eh_exceptionpointer:
7762 case Intrinsic::eh_exceptioncode: {
7768 SDValue N =
DAG.getCopyFromReg(
DAG.getEntryNode(), sdl, VReg, PtrVT);
7769 if (Intrinsic == Intrinsic::eh_exceptioncode)
7770 N =
DAG.getZExtOrTrunc(
N, sdl, MVT::i32);
7774 case Intrinsic::xray_customevent: {
7777 const auto &Triple =
DAG.getTarget().getTargetTriple();
7786 SDVTList NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
7788 Ops.push_back(LogEntryVal);
7789 Ops.push_back(StrSizeVal);
7790 Ops.push_back(Chain);
7796 MachineSDNode *MN =
DAG.getMachineNode(TargetOpcode::PATCHABLE_EVENT_CALL,
7799 DAG.setRoot(patchableNode);
7803 case Intrinsic::xray_typedevent: {
7806 const auto &Triple =
DAG.getTarget().getTargetTriple();
7818 SDVTList NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
7820 Ops.push_back(LogTypeId);
7821 Ops.push_back(LogEntryVal);
7822 Ops.push_back(StrSizeVal);
7823 Ops.push_back(Chain);
7829 MachineSDNode *MN =
DAG.getMachineNode(
7830 TargetOpcode::PATCHABLE_TYPED_EVENT_CALL, sdl, NodeTys,
Ops);
7832 DAG.setRoot(patchableNode);
7836 case Intrinsic::experimental_deoptimize:
7839 case Intrinsic::stepvector:
7842 case Intrinsic::vector_reduce_fadd:
7843 case Intrinsic::vector_reduce_fmul:
7844 case Intrinsic::vector_reduce_add:
7845 case Intrinsic::vector_reduce_mul:
7846 case Intrinsic::vector_reduce_and:
7847 case Intrinsic::vector_reduce_or:
7848 case Intrinsic::vector_reduce_xor:
7849 case Intrinsic::vector_reduce_smax:
7850 case Intrinsic::vector_reduce_smin:
7851 case Intrinsic::vector_reduce_umax:
7852 case Intrinsic::vector_reduce_umin:
7853 case Intrinsic::vector_reduce_fmax:
7854 case Intrinsic::vector_reduce_fmin:
7855 case Intrinsic::vector_reduce_fmaximum:
7856 case Intrinsic::vector_reduce_fminimum:
7857 visitVectorReduce(
I, Intrinsic);
7860 case Intrinsic::icall_branch_funnel: {
7866 I.getArgOperand(1),
Offset,
DAG.getDataLayout()));
7869 "llvm.icall.branch.funnel operand must be a GlobalValue");
7870 Ops.push_back(
DAG.getTargetGlobalAddress(
Base, sdl, MVT::i64, 0));
7872 struct BranchFunnelTarget {
7878 for (
unsigned Op = 1,
N =
I.arg_size();
Op !=
N;
Op += 2) {
7881 if (ElemBase !=
Base)
7883 "to the same GlobalValue");
7889 "llvm.icall.branch.funnel operand must be a GlobalValue");
7895 [](
const BranchFunnelTarget &
T1,
const BranchFunnelTarget &T2) {
7896 return T1.Offset < T2.Offset;
7899 for (
auto &
T : Targets) {
7900 Ops.push_back(
DAG.getTargetConstant(
T.Offset, sdl, MVT::i32));
7901 Ops.push_back(
T.Target);
7904 Ops.push_back(
DAG.getRoot());
7905 SDValue N(
DAG.getMachineNode(TargetOpcode::ICALL_BRANCH_FUNNEL, sdl,
7914 case Intrinsic::wasm_landingpad_index:
7920 case Intrinsic::aarch64_settag:
7921 case Intrinsic::aarch64_settag_zero: {
7922 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
7923 bool ZeroMemory =
Intrinsic == Intrinsic::aarch64_settag_zero;
7926 getValue(
I.getArgOperand(1)), MachinePointerInfo(
I.getArgOperand(0)),
7932 case Intrinsic::amdgcn_cs_chain: {
7937 Type *RetTy =
I.getType();
7947 for (
unsigned Idx : {2, 3, 1}) {
7948 TargetLowering::ArgListEntry Arg(
getValue(
I.getOperand(Idx)),
7950 Arg.setAttributes(&
I, Idx);
7951 Args.push_back(Arg);
7954 assert(Args[0].IsInReg &&
"SGPR args should be marked inreg");
7955 assert(!Args[1].IsInReg &&
"VGPR args should not be marked inreg");
7956 Args[2].IsInReg =
true;
7959 for (
unsigned Idx = 4; Idx <
I.arg_size(); ++Idx) {
7960 TargetLowering::ArgListEntry Arg(
getValue(
I.getOperand(Idx)),
7962 Arg.setAttributes(&
I, Idx);
7963 Args.push_back(Arg);
7966 TargetLowering::CallLoweringInfo CLI(
DAG);
7969 .setCallee(CC, RetTy, Callee, std::move(Args))
7972 .setConvergent(
I.isConvergent());
7974 std::pair<SDValue, SDValue>
Result =
7978 "Should've lowered as tail call");
7983 case Intrinsic::amdgcn_call_whole_wave: {
7985 bool isTailCall =
I.isTailCall();
7988 for (
unsigned Idx = 1; Idx <
I.arg_size(); ++Idx) {
7989 TargetLowering::ArgListEntry Arg(
getValue(
I.getArgOperand(Idx)),
7990 I.getArgOperand(Idx)->getType());
7991 Arg.setAttributes(&
I, Idx);
7998 Args.push_back(Arg);
8003 auto *Token = Bundle->Inputs[0].get();
8004 ConvControlToken =
getValue(Token);
8007 TargetLowering::CallLoweringInfo CLI(
DAG);
8011 getValue(
I.getArgOperand(0)), std::move(Args))
8015 .setConvergent(
I.isConvergent())
8016 .setConvergenceControlToken(ConvControlToken);
8019 std::pair<SDValue, SDValue>
Result =
8022 if (
Result.first.getNode())
8026 case Intrinsic::ptrmask: {
8042 auto HighOnes =
DAG.getNode(
8043 ISD::SHL, sdl, PtrVT,
DAG.getAllOnesConstant(sdl, PtrVT),
8044 DAG.getShiftAmountConstant(
Mask.getValueType().getFixedSizeInBits(),
8047 DAG.getZExtOrTrunc(Mask, sdl, PtrVT), HighOnes);
8048 }
else if (
Mask.getValueType() != PtrVT)
8049 Mask =
DAG.getPtrExtOrTrunc(Mask, sdl, PtrVT);
8055 case Intrinsic::threadlocal_address: {
8059 case Intrinsic::get_active_lane_mask: {
8063 EVT ElementVT =
Index.getValueType();
8066 setValue(&
I,
DAG.getNode(ISD::GET_ACTIVE_LANE_MASK, sdl, CCVT, Index,
8074 SDValue VectorIndex =
DAG.getSplat(VecTy, sdl, Index);
8075 SDValue VectorTripCount =
DAG.getSplat(VecTy, sdl, TripCount);
8076 SDValue VectorStep =
DAG.getStepVector(sdl, VecTy);
8079 SDValue SetCC =
DAG.getSetCC(sdl, CCVT, VectorInduction,
8084 case Intrinsic::experimental_get_vector_length: {
8086 "Expected positive VF");
8091 EVT CountVT =
Count.getValueType();
8094 visitTargetIntrinsic(
I, Intrinsic);
8103 if (CountVT.
bitsLT(VT)) {
8108 SDValue MaxEVL =
DAG.getElementCount(sdl, CountVT,
8118 case Intrinsic::vector_partial_reduce_add: {
8126 case Intrinsic::experimental_cttz_elts: {
8129 EVT OpVT =
Op.getValueType();
8132 visitTargetIntrinsic(
I, Intrinsic);
8148 ConstantRange VScaleRange(1,
true);
8177 case Intrinsic::vector_insert: {
8185 if (
Index.getValueType() != VectorIdxTy)
8186 Index =
DAG.getVectorIdxConstant(
Index->getAsZExtVal(), sdl);
8193 case Intrinsic::vector_extract: {
8201 if (
Index.getValueType() != VectorIdxTy)
8202 Index =
DAG.getVectorIdxConstant(
Index->getAsZExtVal(), sdl);
8208 case Intrinsic::experimental_vector_match: {
8214 EVT ResVT =
Mask.getValueType();
8220 visitTargetIntrinsic(
I, Intrinsic);
8226 for (
unsigned i = 0; i < SearchSize; ++i) {
8229 DAG.getVectorIdxConstant(i, sdl));
8238 case Intrinsic::vector_reverse:
8239 visitVectorReverse(
I);
8241 case Intrinsic::vector_splice:
8242 visitVectorSplice(
I);
8244 case Intrinsic::callbr_landingpad:
8245 visitCallBrLandingPad(
I);
8247 case Intrinsic::vector_interleave2:
8248 visitVectorInterleave(
I, 2);
8250 case Intrinsic::vector_interleave3:
8251 visitVectorInterleave(
I, 3);
8253 case Intrinsic::vector_interleave4:
8254 visitVectorInterleave(
I, 4);
8256 case Intrinsic::vector_interleave5:
8257 visitVectorInterleave(
I, 5);
8259 case Intrinsic::vector_interleave6:
8260 visitVectorInterleave(
I, 6);
8262 case Intrinsic::vector_interleave7:
8263 visitVectorInterleave(
I, 7);
8265 case Intrinsic::vector_interleave8:
8266 visitVectorInterleave(
I, 8);
8268 case Intrinsic::vector_deinterleave2:
8269 visitVectorDeinterleave(
I, 2);
8271 case Intrinsic::vector_deinterleave3:
8272 visitVectorDeinterleave(
I, 3);
8274 case Intrinsic::vector_deinterleave4:
8275 visitVectorDeinterleave(
I, 4);
8277 case Intrinsic::vector_deinterleave5:
8278 visitVectorDeinterleave(
I, 5);
8280 case Intrinsic::vector_deinterleave6:
8281 visitVectorDeinterleave(
I, 6);
8283 case Intrinsic::vector_deinterleave7:
8284 visitVectorDeinterleave(
I, 7);
8286 case Intrinsic::vector_deinterleave8:
8287 visitVectorDeinterleave(
I, 8);
8289 case Intrinsic::experimental_vector_compress:
8291 getValue(
I.getArgOperand(0)).getValueType(),
8296 case Intrinsic::experimental_convergence_anchor:
8297 case Intrinsic::experimental_convergence_entry:
8298 case Intrinsic::experimental_convergence_loop:
8299 visitConvergenceControl(
I, Intrinsic);
8301 case Intrinsic::experimental_vector_histogram_add: {
8302 visitVectorHistogram(
I, Intrinsic);
8305 case Intrinsic::experimental_vector_extract_last_active: {
8306 visitVectorExtractLastActive(
I, Intrinsic);
8309 case Intrinsic::loop_dependence_war_mask:
8315 case Intrinsic::loop_dependence_raw_mask:
8324void SelectionDAGBuilder::visitConstrainedFPIntrinsic(
8352 PendingConstrainedFP.push_back(OutChain);
8358 PendingConstrainedFPStrict.push_back(OutChain);
8363 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8365 SDVTList VTs =
DAG.getVTList(VT, MVT::Other);
8370 Flags.setNoFPExcept(
true);
8373 Flags.copyFMF(*FPOp);
8378#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
8379 case Intrinsic::INTRINSIC: \
8380 Opcode = ISD::STRICT_##DAGN; \
8382#include "llvm/IR/ConstrainedOps.def"
8383 case Intrinsic::experimental_constrained_fmuladd: {
8390 pushOutChain(
Mul, EB);
8413 if (TM.Options.NoNaNsFPMath)
8421 pushOutChain(Result, EB);
8428 std::optional<unsigned> ResOPC;
8430 case Intrinsic::vp_ctlz: {
8432 ResOPC = IsZeroUndef ? ISD::VP_CTLZ_ZERO_UNDEF : ISD::VP_CTLZ;
8435 case Intrinsic::vp_cttz: {
8437 ResOPC = IsZeroUndef ? ISD::VP_CTTZ_ZERO_UNDEF : ISD::VP_CTTZ;
8440 case Intrinsic::vp_cttz_elts: {
8442 ResOPC = IsZeroPoison ? ISD::VP_CTTZ_ELTS_ZERO_UNDEF : ISD::VP_CTTZ_ELTS;
8445#define HELPER_MAP_VPID_TO_VPSD(VPID, VPSD) \
8446 case Intrinsic::VPID: \
8447 ResOPC = ISD::VPSD; \
8449#include "llvm/IR/VPIntrinsics.def"
8454 "Inconsistency: no SDNode available for this VPIntrinsic!");
8456 if (*ResOPC == ISD::VP_REDUCE_SEQ_FADD ||
8457 *ResOPC == ISD::VP_REDUCE_SEQ_FMUL) {
8459 return *ResOPC == ISD::VP_REDUCE_SEQ_FADD ? ISD::VP_REDUCE_FADD
8460 : ISD::VP_REDUCE_FMUL;
8466void SelectionDAGBuilder::visitVPLoad(
8478 Alignment =
DAG.getEVTAlign(VT);
8481 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
8482 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8485 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8486 MachinePointerInfo(PtrOperand), MMOFlags,
8488 LD =
DAG.getLoadVP(VT,
DL, InChain, OpValues[0], OpValues[1], OpValues[2],
8495void SelectionDAGBuilder::visitVPLoadFF(
8498 assert(OpValues.
size() == 3 &&
"Unexpected number of operands");
8508 Alignment =
DAG.getEVTAlign(VT);
8511 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
8512 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8515 LD =
DAG.getLoadFFVP(VT,
DL, InChain, OpValues[0], OpValues[1], OpValues[2],
8520 setValue(&VPIntrin,
DAG.getMergeValues({LD.getValue(0), Trunc},
DL));
8523void SelectionDAGBuilder::visitVPGather(
8527 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8539 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8541 *Alignment, AAInfo, Ranges);
8551 EVT IdxVT =
Index.getValueType();
8557 LD =
DAG.getGatherVP(
8558 DAG.getVTList(VT, MVT::Other), VT,
DL,
8559 {DAG.getRoot(), Base, Index, Scale, OpValues[1], OpValues[2]}, MMO,
8565void SelectionDAGBuilder::visitVPStore(
8569 EVT VT = OpValues[0].getValueType();
8574 Alignment =
DAG.getEVTAlign(VT);
8577 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8580 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8581 MachinePointerInfo(PtrOperand), MMOFlags,
8590void SelectionDAGBuilder::visitVPScatter(
8593 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8595 EVT VT = OpValues[0].getValueType();
8605 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8607 *Alignment, AAInfo);
8617 EVT IdxVT =
Index.getValueType();
8623 ST =
DAG.getScatterVP(
DAG.getVTList(MVT::Other), VT,
DL,
8624 {getMemoryRoot(), OpValues[0], Base, Index, Scale,
8625 OpValues[2], OpValues[3]},
8631void SelectionDAGBuilder::visitVPStridedLoad(
8643 SDValue InChain = AddToChain ?
DAG.getRoot() :
DAG.getEntryNode();
8645 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8648 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8650 *Alignment, AAInfo, Ranges);
8652 SDValue LD =
DAG.getStridedLoadVP(VT,
DL, InChain, OpValues[0], OpValues[1],
8653 OpValues[2], OpValues[3], MMO,
8661void SelectionDAGBuilder::visitVPStridedStore(
8665 EVT VT = OpValues[0].getValueType();
8671 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8674 MachineMemOperand *MMO =
DAG.getMachineFunction().getMachineMemOperand(
8676 *Alignment, AAInfo);
8680 DAG.getUNDEF(OpValues[1].getValueType()), OpValues[2], OpValues[3],
8688void SelectionDAGBuilder::visitVPCmp(
const VPCmpIntrinsic &VPIntrin) {
8689 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8700 if (TM.Options.NoNaNsFPMath)
8713 "Unexpected target EVL type");
8716 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
8719 DAG.getSetCCVP(
DL, DestVT, Op1, Op2, Condition, MaskOp, EVL));
8722void SelectionDAGBuilder::visitVectorPredicationIntrinsic(
8730 return visitVPCmp(*CmpI);
8733 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
8735 SDVTList VTs =
DAG.getVTList(ValueVTs);
8741 "Unexpected target EVL type");
8745 for (
unsigned I = 0;
I < VPIntrin.
arg_size(); ++
I) {
8747 if (
I == EVLParamPos)
8754 SDNodeFlags SDFlags;
8762 visitVPLoad(VPIntrin, ValueVTs[0], OpValues);
8764 case ISD::VP_LOAD_FF:
8765 visitVPLoadFF(VPIntrin, ValueVTs[0], ValueVTs[1], OpValues);
8767 case ISD::VP_GATHER:
8768 visitVPGather(VPIntrin, ValueVTs[0], OpValues);
8770 case ISD::EXPERIMENTAL_VP_STRIDED_LOAD:
8771 visitVPStridedLoad(VPIntrin, ValueVTs[0], OpValues);
8774 visitVPStore(VPIntrin, OpValues);
8776 case ISD::VP_SCATTER:
8777 visitVPScatter(VPIntrin, OpValues);
8779 case ISD::EXPERIMENTAL_VP_STRIDED_STORE:
8780 visitVPStridedStore(VPIntrin, OpValues);
8782 case ISD::VP_FMULADD: {
8783 assert(OpValues.
size() == 5 &&
"Unexpected number of operands");
8784 SDNodeFlags SDFlags;
8789 setValue(&VPIntrin,
DAG.getNode(ISD::VP_FMA,
DL, VTs, OpValues, SDFlags));
8792 ISD::VP_FMUL,
DL, VTs,
8793 {OpValues[0], OpValues[1], OpValues[3], OpValues[4]}, SDFlags);
8795 DAG.getNode(ISD::VP_FADD,
DL, VTs,
8796 {
Mul, OpValues[2], OpValues[3], OpValues[4]}, SDFlags);
8801 case ISD::VP_IS_FPCLASS: {
8802 const DataLayout DLayout =
DAG.getDataLayout();
8804 auto Constant = OpValues[1]->getAsZExtVal();
8807 {OpValues[0],
Check, OpValues[2], OpValues[3]});
8811 case ISD::VP_INTTOPTR: {
8822 case ISD::VP_PTRTOINT: {
8824 EVT DestVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
8837 case ISD::VP_CTLZ_ZERO_UNDEF:
8839 case ISD::VP_CTTZ_ZERO_UNDEF:
8840 case ISD::VP_CTTZ_ELTS_ZERO_UNDEF:
8841 case ISD::VP_CTTZ_ELTS: {
8843 DAG.getNode(Opcode,
DL, VTs, {OpValues[0], OpValues[2], OpValues[3]});
8853 MachineFunction &MF =
DAG.getMachineFunction();
8861 unsigned CallSiteIndex =
FuncInfo.getCurrentCallSite();
8862 if (CallSiteIndex) {
8876 assert(BeginLabel &&
"BeginLabel should've been set");
8878 MachineFunction &MF =
DAG.getMachineFunction();
8890 assert(
II &&
"II should've been set");
8901std::pair<SDValue, SDValue>
8915 std::pair<SDValue, SDValue> Result = TLI.
LowerCallTo(CLI);
8918 "Non-null chain expected with non-tail call!");
8919 assert((Result.second.getNode() || !Result.first.getNode()) &&
8920 "Null value expected with tail call!");
8922 if (!Result.second.getNode()) {
8929 PendingExports.clear();
8931 DAG.setRoot(Result.second);
8949 if (Caller->getFnAttribute(
"disable-tail-calls").getValueAsString() ==
8957 if (
DAG.getTargetLoweringInfo().supportSwiftError() &&
8958 Caller->getAttributes().hasAttrSomewhere(Attribute::SwiftError))
8967 bool isTailCall,
bool isMustTailCall,
8970 auto &
DL =
DAG.getDataLayout();
8977 const Value *SwiftErrorVal =
nullptr;
8984 const Value *V = *
I;
8987 if (V->getType()->isEmptyTy())
8992 Entry.setAttributes(&CB,
I - CB.
arg_begin());
9004 Args.push_back(Entry);
9015 Value *V = Bundle->Inputs[0];
9017 Entry.IsCFGuardTarget =
true;
9018 Args.push_back(Entry);
9031 "Target doesn't support calls with kcfi operand bundles.");
9039 auto *Token = Bundle->Inputs[0].get();
9040 ConvControlToken =
getValue(Token);
9046 .
setCallee(RetTy, FTy, Callee, std::move(Args), CB)
9058 "This target doesn't support calls with ptrauth operand bundles.");
9062 std::pair<SDValue, SDValue> Result =
lowerInvokable(CLI, EHPadBB);
9064 if (Result.first.getNode()) {
9078 DAG.setRoot(CopyNode);
9094 LoadTy, Builder.DAG.getDataLayout()))
9095 return Builder.getValue(LoadCst);
9101 bool ConstantMemory =
false;
9104 if (Builder.BatchAA && Builder.BatchAA->pointsToConstantMemory(PtrVal)) {
9105 Root = Builder.DAG.getEntryNode();
9106 ConstantMemory =
true;
9109 Root = Builder.DAG.getRoot();
9114 Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root,
Ptr,
9117 if (!ConstantMemory)
9118 Builder.PendingLoads.push_back(LoadVal.
getValue(1));
9124void SelectionDAGBuilder::processIntegerCallValue(
const Instruction &
I,
9127 EVT VT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
9138bool SelectionDAGBuilder::visitMemCmpBCmpCall(
const CallInst &
I) {
9139 const Value *
LHS =
I.getArgOperand(0), *
RHS =
I.getArgOperand(1);
9140 const Value *
Size =
I.getArgOperand(2);
9143 EVT CallVT =
DAG.getTargetLoweringInfo().getValueType(
DAG.getDataLayout(),
9149 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9153 if (Res.first.getNode()) {
9154 processIntegerCallValue(
I, Res.first,
true);
9168 auto hasFastLoadsAndCompare = [&](
unsigned NumBits) {
9169 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
9191 switch (NumBitsToCompare) {
9203 LoadVT = hasFastLoadsAndCompare(NumBitsToCompare);
9216 LoadL =
DAG.getBitcast(CmpVT, LoadL);
9217 LoadR =
DAG.getBitcast(CmpVT, LoadR);
9221 processIntegerCallValue(
I, Cmp,
false);
9230bool SelectionDAGBuilder::visitMemChrCall(
const CallInst &
I) {
9231 const Value *Src =
I.getArgOperand(0);
9232 const Value *
Char =
I.getArgOperand(1);
9233 const Value *
Length =
I.getArgOperand(2);
9235 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9236 std::pair<SDValue, SDValue> Res =
9239 MachinePointerInfo(Src));
9240 if (Res.first.getNode()) {
9254bool SelectionDAGBuilder::visitMemPCpyCall(
const CallInst &
I) {
9259 Align DstAlign =
DAG.InferPtrAlign(Dst).valueOrOne();
9260 Align SrcAlign =
DAG.InferPtrAlign(Src).valueOrOne();
9262 Align Alignment = std::min(DstAlign, SrcAlign);
9271 Root, sdl, Dst, Src,
Size, Alignment,
false,
false,
nullptr,
9272 std::nullopt, MachinePointerInfo(
I.getArgOperand(0)),
9273 MachinePointerInfo(
I.getArgOperand(1)),
I.getAAMetadata());
9275 "** memcpy should not be lowered as TailCall in mempcpy context **");
9279 Size =
DAG.getSExtOrTrunc(
Size, sdl, Dst.getValueType());
9292bool SelectionDAGBuilder::visitStrCpyCall(
const CallInst &
I,
bool isStpcpy) {
9293 const Value *Arg0 =
I.getArgOperand(0), *Arg1 =
I.getArgOperand(1);
9295 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9296 std::pair<SDValue, SDValue> Res =
9299 MachinePointerInfo(Arg0),
9300 MachinePointerInfo(Arg1), isStpcpy);
9301 if (Res.first.getNode()) {
9303 DAG.setRoot(Res.second);
9315bool SelectionDAGBuilder::visitStrCmpCall(
const CallInst &
I) {
9316 const Value *Arg0 =
I.getArgOperand(0), *Arg1 =
I.getArgOperand(1);
9318 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9319 std::pair<SDValue, SDValue> Res =
9322 MachinePointerInfo(Arg0),
9323 MachinePointerInfo(Arg1));
9324 if (Res.first.getNode()) {
9325 processIntegerCallValue(
I, Res.first,
true);
9338bool SelectionDAGBuilder::visitStrLenCall(
const CallInst &
I) {
9339 const Value *Arg0 =
I.getArgOperand(0);
9341 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9344 if (Res.first.getNode()) {
9345 processIntegerCallValue(
I, Res.first,
false);
9358bool SelectionDAGBuilder::visitStrNLenCall(
const CallInst &
I) {
9359 const Value *Arg0 =
I.getArgOperand(0), *Arg1 =
I.getArgOperand(1);
9361 const SelectionDAGTargetInfo &TSI =
DAG.getSelectionDAGInfo();
9362 std::pair<SDValue, SDValue> Res =
9365 MachinePointerInfo(Arg0));
9366 if (Res.first.getNode()) {
9367 processIntegerCallValue(
I, Res.first,
false);
9380bool SelectionDAGBuilder::visitUnaryFloatCall(
const CallInst &
I,
9383 if (!
I.onlyReadsMemory())
9400bool SelectionDAGBuilder::visitBinaryFloatCall(
const CallInst &
I,
9403 if (!
I.onlyReadsMemory())
9416void SelectionDAGBuilder::visitCall(
const CallInst &
I) {
9418 if (
I.isInlineAsm()) {
9425 if (Function *
F =
I.getCalledFunction()) {
9426 if (
F->isDeclaration()) {
9428 if (
unsigned IID =
F->getIntrinsicID()) {
9429 visitIntrinsicCall(
I, IID);
9438 if (!
I.isNoBuiltin() && !
I.isStrictFP() && !
F->hasLocalLinkage() &&
9439 F->hasName() &&
LibInfo->getLibFunc(*
F, Func) &&
9440 LibInfo->hasOptimizedCodeGen(Func)) {
9444 if (visitMemCmpBCmpCall(
I))
9447 case LibFunc_copysign:
9448 case LibFunc_copysignf:
9449 case LibFunc_copysignl:
9452 if (
I.onlyReadsMemory()) {
9463 if (visitUnaryFloatCall(
I, ISD::FABS))
9469 if (visitBinaryFloatCall(
I, ISD::FMINNUM))
9475 if (visitBinaryFloatCall(
I, ISD::FMAXNUM))
9478 case LibFunc_fminimum_num:
9479 case LibFunc_fminimum_numf:
9480 case LibFunc_fminimum_numl:
9481 if (visitBinaryFloatCall(
I, ISD::FMINIMUMNUM))
9484 case LibFunc_fmaximum_num:
9485 case LibFunc_fmaximum_numf:
9486 case LibFunc_fmaximum_numl:
9487 if (visitBinaryFloatCall(
I, ISD::FMAXIMUMNUM))
9493 if (visitUnaryFloatCall(
I, ISD::FSIN))
9499 if (visitUnaryFloatCall(
I, ISD::FCOS))
9505 if (visitUnaryFloatCall(
I, ISD::FTAN))
9511 if (visitUnaryFloatCall(
I, ISD::FASIN))
9517 if (visitUnaryFloatCall(
I, ISD::FACOS))
9523 if (visitUnaryFloatCall(
I, ISD::FATAN))
9527 case LibFunc_atan2f:
9528 case LibFunc_atan2l:
9529 if (visitBinaryFloatCall(
I, ISD::FATAN2))
9535 if (visitUnaryFloatCall(
I, ISD::FSINH))
9541 if (visitUnaryFloatCall(
I, ISD::FCOSH))
9547 if (visitUnaryFloatCall(
I, ISD::FTANH))
9553 case LibFunc_sqrt_finite:
9554 case LibFunc_sqrtf_finite:
9555 case LibFunc_sqrtl_finite:
9556 if (visitUnaryFloatCall(
I, ISD::FSQRT))
9560 case LibFunc_floorf:
9561 case LibFunc_floorl:
9562 if (visitUnaryFloatCall(
I, ISD::FFLOOR))
9565 case LibFunc_nearbyint:
9566 case LibFunc_nearbyintf:
9567 case LibFunc_nearbyintl:
9568 if (visitUnaryFloatCall(
I, ISD::FNEARBYINT))
9574 if (visitUnaryFloatCall(
I, ISD::FCEIL))
9580 if (visitUnaryFloatCall(
I, ISD::FRINT))
9584 case LibFunc_roundf:
9585 case LibFunc_roundl:
9586 if (visitUnaryFloatCall(
I, ISD::FROUND))
9590 case LibFunc_truncf:
9591 case LibFunc_truncl:
9592 if (visitUnaryFloatCall(
I, ISD::FTRUNC))
9598 if (visitUnaryFloatCall(
I, ISD::FLOG2))
9604 if (visitUnaryFloatCall(
I, ISD::FEXP2))
9608 case LibFunc_exp10f:
9609 case LibFunc_exp10l:
9610 if (visitUnaryFloatCall(
I, ISD::FEXP10))
9614 case LibFunc_ldexpf:
9615 case LibFunc_ldexpl:
9616 if (visitBinaryFloatCall(
I, ISD::FLDEXP))
9619 case LibFunc_memcmp:
9620 if (visitMemCmpBCmpCall(
I))
9623 case LibFunc_mempcpy:
9624 if (visitMemPCpyCall(
I))
9627 case LibFunc_memchr:
9628 if (visitMemChrCall(
I))
9631 case LibFunc_strcpy:
9632 if (visitStrCpyCall(
I,
false))
9635 case LibFunc_stpcpy:
9636 if (visitStrCpyCall(
I,
true))
9639 case LibFunc_strcmp:
9640 if (visitStrCmpCall(
I))
9643 case LibFunc_strlen:
9644 if (visitStrLenCall(
I))
9647 case LibFunc_strnlen:
9648 if (visitStrNLenCall(
I))
9672 if (
I.hasDeoptState())
9689 const Value *Discriminator = PAB->Inputs[1];
9691 assert(
Key->getType()->isIntegerTy(32) &&
"Invalid ptrauth key");
9692 assert(Discriminator->getType()->isIntegerTy(64) &&
9693 "Invalid ptrauth discriminator");
9698 if (CalleeCPA->isKnownCompatibleWith(
Key, Discriminator,
9699 DAG.getDataLayout()))
9739 for (
const auto &Code : Codes)
9754 SDISelAsmOperandInfo &MatchingOpInfo,
9756 if (OpInfo.ConstraintVT == MatchingOpInfo.ConstraintVT)
9762 std::pair<unsigned, const TargetRegisterClass *> MatchRC =
9764 OpInfo.ConstraintVT);
9765 std::pair<unsigned, const TargetRegisterClass *> InputRC =
9767 MatchingOpInfo.ConstraintVT);
9768 const bool OutOpIsIntOrFP =
9769 OpInfo.ConstraintVT.isInteger() || OpInfo.ConstraintVT.isFloatingPoint();
9770 const bool InOpIsIntOrFP = MatchingOpInfo.ConstraintVT.isInteger() ||
9771 MatchingOpInfo.ConstraintVT.isFloatingPoint();
9772 if ((OutOpIsIntOrFP != InOpIsIntOrFP) || (MatchRC.second != InputRC.second)) {
9775 " with a matching output constraint of"
9776 " incompatible type!");
9778 MatchingOpInfo.ConstraintVT = OpInfo.ConstraintVT;
9785 SDISelAsmOperandInfo &OpInfo,
9798 const Value *OpVal = OpInfo.CallOperandVal;
9816 DL.getPrefTypeAlign(Ty),
false,
9819 Chain = DAG.
getTruncStore(Chain, Location, OpInfo.CallOperand, StackSlot,
9822 OpInfo.CallOperand = StackSlot;
9835static std::optional<unsigned>
9837 SDISelAsmOperandInfo &OpInfo,
9838 SDISelAsmOperandInfo &RefOpInfo) {
9849 return std::nullopt;
9853 unsigned AssignedReg;
9856 &
TRI, RefOpInfo.ConstraintCode, RefOpInfo.ConstraintVT);
9859 return std::nullopt;
9864 const MVT RegVT = *
TRI.legalclasstypes_begin(*RC);
9866 if (OpInfo.ConstraintVT != MVT::Other && RegVT != MVT::Untyped) {
9875 !
TRI.isTypeLegalForClass(*RC, OpInfo.ConstraintVT)) {
9880 if (RegVT.
getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
9885 OpInfo.CallOperand =
9886 DAG.
getNode(ISD::BITCAST,
DL, RegVT, OpInfo.CallOperand);
9887 OpInfo.ConstraintVT = RegVT;
9891 }
else if (RegVT.
isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
9894 OpInfo.CallOperand =
9895 DAG.
getNode(ISD::BITCAST,
DL, VT, OpInfo.CallOperand);
9896 OpInfo.ConstraintVT = VT;
9903 if (OpInfo.isMatchingInputConstraint())
9904 return std::nullopt;
9906 EVT ValueVT = OpInfo.ConstraintVT;
9907 if (OpInfo.ConstraintVT == MVT::Other)
9911 unsigned NumRegs = 1;
9912 if (OpInfo.ConstraintVT != MVT::Other)
9927 I = std::find(
I, RC->
end(), AssignedReg);
9928 if (
I == RC->
end()) {
9931 return {AssignedReg};
9935 for (; NumRegs; --NumRegs, ++
I) {
9936 assert(
I != RC->
end() &&
"Ran out of registers to allocate!");
9941 OpInfo.AssignedRegs =
RegsForValue(Regs, RegVT, ValueVT);
9942 return std::nullopt;
9947 const std::vector<SDValue> &AsmNodeOperands) {
9950 for (; OperandNo; --OperandNo) {
9952 unsigned OpFlag = AsmNodeOperands[CurOp]->getAsZExtVal();
9955 (
F.isRegDefKind() ||
F.isRegDefEarlyClobberKind() ||
F.isMemKind()) &&
9956 "Skipped past definitions?");
9957 CurOp +=
F.getNumOperandRegisters() + 1;
9968 explicit ExtraFlags(
const CallBase &
Call) {
9970 if (
IA->hasSideEffects())
9972 if (
IA->isAlignStack())
9979 void update(
const TargetLowering::AsmOperandInfo &OpInfo) {
9995 unsigned get()
const {
return Flags; }
10018void SelectionDAGBuilder::visitInlineAsm(
const CallBase &
Call,
10025 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10027 DAG.getDataLayout(),
DAG.getSubtarget().getRegisterInfo(),
Call);
10031 bool HasSideEffect =
IA->hasSideEffects();
10032 ExtraFlags ExtraInfo(
Call);
10034 for (
auto &
T : TargetConstraints) {
10035 ConstraintOperands.
push_back(SDISelAsmOperandInfo(
T));
10036 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.
back();
10038 if (OpInfo.CallOperandVal)
10039 OpInfo.CallOperand =
getValue(OpInfo.CallOperandVal);
10041 if (!HasSideEffect)
10042 HasSideEffect = OpInfo.hasMemory(TLI);
10054 return emitInlineAsmError(
Call,
"constraint '" + Twine(
T.ConstraintCode) +
10055 "' expects an integer constant "
10058 ExtraInfo.update(
T);
10066 if (EmitEHLabels) {
10067 assert(EHPadBB &&
"InvokeInst must have an EHPadBB");
10071 if (IsCallBr || EmitEHLabels) {
10079 if (EmitEHLabels) {
10080 Chain = lowerStartEH(Chain, EHPadBB, BeginLabel);
10085 IA->collectAsmStrs(AsmStrs);
10088 for (SDISelAsmOperandInfo &OpInfo : ConstraintOperands) {
10096 if (OpInfo.hasMatchingInput()) {
10097 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
10128 if (OpInfo.isIndirect &&
isFunction(OpInfo.CallOperand) &&
10131 OpInfo.isIndirect =
false;
10138 !OpInfo.isIndirect) {
10139 assert((OpInfo.isMultipleAlternative ||
10141 "Can only indirectify direct input operands!");
10147 OpInfo.CallOperandVal =
nullptr;
10150 OpInfo.isIndirect =
true;
10156 std::vector<SDValue> AsmNodeOperands;
10157 AsmNodeOperands.push_back(
SDValue());
10158 AsmNodeOperands.push_back(
DAG.getTargetExternalSymbol(
10165 AsmNodeOperands.push_back(
DAG.getMDNode(SrcLoc));
10169 AsmNodeOperands.push_back(
DAG.getTargetConstant(
10174 for (SDISelAsmOperandInfo &OpInfo : ConstraintOperands) {
10176 SDISelAsmOperandInfo &RefOpInfo =
10177 OpInfo.isMatchingInputConstraint()
10178 ? ConstraintOperands[OpInfo.getMatchedOperand()]
10180 const auto RegError =
10183 const MachineFunction &MF =
DAG.getMachineFunction();
10185 const char *
RegName =
TRI.getName(*RegError);
10186 emitInlineAsmError(
Call,
"register '" + Twine(
RegName) +
10187 "' allocated for constraint '" +
10188 Twine(OpInfo.ConstraintCode) +
10189 "' does not match required type");
10193 auto DetectWriteToReservedRegister = [&]() {
10194 const MachineFunction &MF =
DAG.getMachineFunction();
10199 emitInlineAsmError(
Call,
"write to reserved register '" +
10208 !OpInfo.isMatchingInputConstraint())) &&
10209 "Only address as input operand is allowed.");
10211 switch (OpInfo.Type) {
10217 "Failed to convert memory constraint code to constraint id.");
10221 OpFlags.setMemConstraint(ConstraintID);
10222 AsmNodeOperands.push_back(
DAG.getTargetConstant(OpFlags,
getCurSDLoc(),
10224 AsmNodeOperands.push_back(OpInfo.CallOperand);
10229 if (OpInfo.AssignedRegs.
Regs.empty()) {
10230 emitInlineAsmError(
10231 Call,
"couldn't allocate output register for constraint '" +
10232 Twine(OpInfo.ConstraintCode) +
"'");
10236 if (DetectWriteToReservedRegister())
10250 SDValue InOperandVal = OpInfo.CallOperand;
10252 if (OpInfo.isMatchingInputConstraint()) {
10257 InlineAsm::Flag
Flag(AsmNodeOperands[CurOp]->getAsZExtVal());
10258 if (
Flag.isRegDefKind() ||
Flag.isRegDefEarlyClobberKind()) {
10259 if (OpInfo.isIndirect) {
10261 emitInlineAsmError(
Call,
"inline asm not supported yet: "
10262 "don't know how to handle tied "
10263 "indirect register inputs");
10268 MachineFunction &MF =
DAG.getMachineFunction();
10273 MVT RegVT =
R->getSimpleValueType(0);
10274 const TargetRegisterClass *RC =
10277 :
TRI.getMinimalPhysRegClass(TiedReg);
10278 for (
unsigned i = 0, e =
Flag.getNumOperandRegisters(); i != e; ++i)
10281 RegsForValue MatchedRegs(Regs, RegVT, InOperandVal.
getValueType());
10285 MatchedRegs.getCopyToRegs(InOperandVal,
DAG, dl, Chain, &Glue, &
Call);
10287 OpInfo.getMatchedOperand(), dl,
DAG,
10292 assert(
Flag.isMemKind() &&
"Unknown matching constraint!");
10293 assert(
Flag.getNumOperandRegisters() == 1 &&
10294 "Unexpected number of operands");
10297 Flag.clearMemConstraint();
10298 Flag.setMatchingOp(OpInfo.getMatchedOperand());
10299 AsmNodeOperands.push_back(
DAG.getTargetConstant(
10301 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
10312 std::vector<SDValue>
Ops;
10318 emitInlineAsmError(
Call,
"value out of range for constraint '" +
10319 Twine(OpInfo.ConstraintCode) +
"'");
10323 emitInlineAsmError(
Call,
10324 "invalid operand for inline asm constraint '" +
10325 Twine(OpInfo.ConstraintCode) +
"'");
10331 AsmNodeOperands.push_back(
DAG.getTargetConstant(
10338 assert((OpInfo.isIndirect ||
10340 "Operand must be indirect to be a mem!");
10343 "Memory operands expect pointer values");
10348 "Failed to convert memory constraint code to constraint id.");
10352 ResOpType.setMemConstraint(ConstraintID);
10353 AsmNodeOperands.push_back(
DAG.getTargetConstant(ResOpType,
10356 AsmNodeOperands.push_back(InOperandVal);
10364 "Failed to convert memory constraint code to constraint id.");
10368 SDValue AsmOp = InOperandVal;
10372 AsmOp =
DAG.getTargetGlobalAddress(GA->getGlobal(),
getCurSDLoc(),
10378 ResOpType.setMemConstraint(ConstraintID);
10380 AsmNodeOperands.push_back(
10383 AsmNodeOperands.push_back(AsmOp);
10389 emitInlineAsmError(
Call,
"unknown asm constraint '" +
10390 Twine(OpInfo.ConstraintCode) +
"'");
10395 if (OpInfo.isIndirect) {
10396 emitInlineAsmError(
10397 Call,
"Don't know how to handle indirect register inputs yet "
10398 "for constraint '" +
10399 Twine(OpInfo.ConstraintCode) +
"'");
10404 if (OpInfo.AssignedRegs.
Regs.empty()) {
10405 emitInlineAsmError(
Call,
10406 "couldn't allocate input reg for constraint '" +
10407 Twine(OpInfo.ConstraintCode) +
"'");
10411 if (DetectWriteToReservedRegister())
10420 0, dl,
DAG, AsmNodeOperands);
10426 if (!OpInfo.AssignedRegs.
Regs.empty())
10436 if (Glue.
getNode()) AsmNodeOperands.push_back(Glue);
10438 unsigned ISDOpc = IsCallBr ? ISD::INLINEASM_BR : ISD::INLINEASM;
10440 DAG.getVTList(MVT::Other, MVT::Glue), AsmNodeOperands);
10452 ResultTypes = StructResult->elements();
10453 else if (!CallResultType->
isVoidTy())
10454 ResultTypes =
ArrayRef(CallResultType);
10456 auto CurResultType = ResultTypes.
begin();
10457 auto handleRegAssign = [&](
SDValue V) {
10458 assert(CurResultType != ResultTypes.
end() &&
"Unexpected value");
10459 assert((*CurResultType)->isSized() &&
"Unexpected unsized type");
10460 EVT ResultVT = TLI.
getValueType(
DAG.getDataLayout(), *CurResultType);
10472 if (ResultVT !=
V.getValueType() &&
10475 else if (ResultVT !=
V.getValueType() && ResultVT.
isInteger() &&
10476 V.getValueType().isInteger()) {
10482 assert(ResultVT ==
V.getValueType() &&
"Asm result value mismatch!");
10488 for (SDISelAsmOperandInfo &OpInfo : ConstraintOperands) {
10492 if (OpInfo.AssignedRegs.
Regs.empty())
10495 switch (OpInfo.ConstraintType) {
10499 Chain, &Glue, &
Call);
10511 assert(
false &&
"Unexpected unknown constraint");
10515 if (OpInfo.isIndirect) {
10516 const Value *
Ptr = OpInfo.CallOperandVal;
10517 assert(
Ptr &&
"Expected value CallOperandVal for indirect asm operand");
10519 MachinePointerInfo(
Ptr));
10526 handleRegAssign(V);
10528 handleRegAssign(Val);
10534 if (!ResultValues.
empty()) {
10535 assert(CurResultType == ResultTypes.
end() &&
10536 "Mismatch in number of ResultTypes");
10538 "Mismatch in number of output operands in asm result");
10541 DAG.getVTList(ResultVTs), ResultValues);
10546 if (!OutChains.
empty())
10549 if (EmitEHLabels) {
10554 if (ResultValues.
empty() || HasSideEffect || !OutChains.
empty() || IsCallBr ||
10556 DAG.setRoot(Chain);
10559void SelectionDAGBuilder::emitInlineAsmError(
const CallBase &
Call,
10560 const Twine &Message) {
10561 LLVMContext &Ctx = *
DAG.getContext();
10565 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10569 if (ValueVTs.
empty())
10573 for (
const EVT &VT : ValueVTs)
10574 Ops.push_back(
DAG.getUNDEF(VT));
10579void SelectionDAGBuilder::visitVAStart(
const CallInst &
I) {
10583 DAG.getSrcValue(
I.getArgOperand(0))));
10586void SelectionDAGBuilder::visitVAArg(
const VAArgInst &
I) {
10587 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10588 const DataLayout &
DL =
DAG.getDataLayout();
10592 DL.getABITypeAlign(
I.getType()).value());
10593 DAG.setRoot(
V.getValue(1));
10595 if (
I.getType()->isPointerTy())
10596 V =
DAG.getPtrExtOrTrunc(
10601void SelectionDAGBuilder::visitVAEnd(
const CallInst &
I) {
10605 DAG.getSrcValue(
I.getArgOperand(0))));
10608void SelectionDAGBuilder::visitVACopy(
const CallInst &
I) {
10613 DAG.getSrcValue(
I.getArgOperand(0)),
10614 DAG.getSrcValue(
I.getArgOperand(1))));
10620 std::optional<ConstantRange> CR =
getRange(
I);
10622 if (!CR || CR->isFullSet() || CR->isEmptySet() || CR->isUpperWrapped())
10625 APInt Lo = CR->getUnsignedMin();
10626 if (!
Lo.isMinValue())
10629 APInt Hi = CR->getUnsignedMax();
10630 unsigned Bits = std::max(
Hi.getActiveBits(),
10638 DAG.getValueType(SmallVT));
10639 unsigned NumVals =
Op.getNode()->getNumValues();
10645 Ops.push_back(ZExt);
10646 for (
unsigned I = 1;
I != NumVals; ++
I)
10647 Ops.push_back(
Op.getValue(
I));
10649 return DAG.getMergeValues(
Ops,
SL);
10660 unsigned ArgIdx,
unsigned NumArgs,
SDValue Callee,
Type *ReturnTy,
10663 Args.reserve(NumArgs);
10667 for (
unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs;
10668 ArgI != ArgE; ++ArgI) {
10669 const Value *V =
Call->getOperand(ArgI);
10671 assert(!V->getType()->isEmptyTy() &&
"Empty type passed to intrinsic.");
10674 Entry.setAttributes(
Call, ArgI);
10675 Args.push_back(Entry);
10680 .
setCallee(
Call->getCallingConv(), ReturnTy, Callee, std::move(Args),
10709 for (
unsigned I = StartIdx;
I <
Call.arg_size();
I++) {
10718 Ops.push_back(Builder.getValue(
Call.getArgOperand(
I)));
10724void SelectionDAGBuilder::visitStackmap(
const CallInst &CI) {
10750 Ops.push_back(Chain);
10751 Ops.push_back(InGlue);
10758 assert(
ID.getValueType() == MVT::i64);
10760 DAG.getTargetConstant(
ID->getAsZExtVal(),
DL,
ID.getValueType());
10761 Ops.push_back(IDConst);
10767 Ops.push_back(ShadConst);
10773 SDVTList NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
10774 Chain =
DAG.getNode(ISD::STACKMAP,
DL, NodeTys,
Ops);
10777 Chain =
DAG.getCALLSEQ_END(Chain, 0, 0, InGlue,
DL);
10782 DAG.setRoot(Chain);
10785 FuncInfo.MF->getFrameInfo().setHasStackMap();
10789void SelectionDAGBuilder::visitPatchpoint(
const CallBase &CB,
10806 Callee =
DAG.getIntPtrConstant(ConstCallee->getZExtValue(), dl,
10809 Callee =
DAG.getTargetGlobalAddress(SymbolicCallee->getGlobal(),
10810 SDLoc(SymbolicCallee),
10811 SymbolicCallee->getValueType(0));
10821 "Not enough arguments provided to the patchpoint intrinsic");
10824 unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs;
10828 TargetLowering::CallLoweringInfo CLI(
DAG);
10833 SDNode *CallEnd =
Result.second.getNode();
10834 if (CallEnd->
getOpcode() == ISD::EH_LABEL)
10842 "Expected a callseq node.");
10844 bool HasGlue =
Call->getGluedNode();
10869 Ops.push_back(Callee);
10875 NumCallRegArgs = IsAnyRegCC ? NumArgs : NumCallRegArgs;
10876 Ops.push_back(
DAG.getTargetConstant(NumCallRegArgs, dl, MVT::i32));
10879 Ops.push_back(
DAG.getTargetConstant((
unsigned)CC, dl, MVT::i32));
10884 for (
unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i !=
e; ++i)
10895 if (IsAnyRegCC && HasDef) {
10897 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10900 assert(ValueVTs.
size() == 1 &&
"Expected only one return value type.");
10905 NodeTys =
DAG.getVTList(ValueVTs);
10907 NodeTys =
DAG.getVTList(MVT::Other, MVT::Glue);
10910 SDValue PPV =
DAG.getNode(ISD::PATCHPOINT, dl, NodeTys,
Ops);
10924 if (IsAnyRegCC && HasDef) {
10927 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
10933 FuncInfo.MF->getFrameInfo().setHasPatchPoint();
10936void SelectionDAGBuilder::visitVectorReduce(
const CallInst &
I,
10938 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
10941 if (
I.arg_size() > 1)
10946 SDNodeFlags SDFlags;
10950 switch (Intrinsic) {
10951 case Intrinsic::vector_reduce_fadd:
10954 DAG.getNode(ISD::VECREDUCE_FADD, dl, VT, Op2, SDFlags),
10957 Res =
DAG.getNode(ISD::VECREDUCE_SEQ_FADD, dl, VT, Op1, Op2, SDFlags);
10959 case Intrinsic::vector_reduce_fmul:
10962 DAG.getNode(ISD::VECREDUCE_FMUL, dl, VT, Op2, SDFlags),
10965 Res =
DAG.getNode(ISD::VECREDUCE_SEQ_FMUL, dl, VT, Op1, Op2, SDFlags);
10967 case Intrinsic::vector_reduce_add:
10968 Res =
DAG.getNode(ISD::VECREDUCE_ADD, dl, VT, Op1);
10970 case Intrinsic::vector_reduce_mul:
10971 Res =
DAG.getNode(ISD::VECREDUCE_MUL, dl, VT, Op1);
10973 case Intrinsic::vector_reduce_and:
10974 Res =
DAG.getNode(ISD::VECREDUCE_AND, dl, VT, Op1);
10976 case Intrinsic::vector_reduce_or:
10977 Res =
DAG.getNode(ISD::VECREDUCE_OR, dl, VT, Op1);
10979 case Intrinsic::vector_reduce_xor:
10980 Res =
DAG.getNode(ISD::VECREDUCE_XOR, dl, VT, Op1);
10982 case Intrinsic::vector_reduce_smax:
10983 Res =
DAG.getNode(ISD::VECREDUCE_SMAX, dl, VT, Op1);
10985 case Intrinsic::vector_reduce_smin:
10986 Res =
DAG.getNode(ISD::VECREDUCE_SMIN, dl, VT, Op1);
10988 case Intrinsic::vector_reduce_umax:
10989 Res =
DAG.getNode(ISD::VECREDUCE_UMAX, dl, VT, Op1);
10991 case Intrinsic::vector_reduce_umin:
10992 Res =
DAG.getNode(ISD::VECREDUCE_UMIN, dl, VT, Op1);
10994 case Intrinsic::vector_reduce_fmax:
10995 Res =
DAG.getNode(ISD::VECREDUCE_FMAX, dl, VT, Op1, SDFlags);
10997 case Intrinsic::vector_reduce_fmin:
10998 Res =
DAG.getNode(ISD::VECREDUCE_FMIN, dl, VT, Op1, SDFlags);
11000 case Intrinsic::vector_reduce_fmaximum:
11001 Res =
DAG.getNode(ISD::VECREDUCE_FMAXIMUM, dl, VT, Op1, SDFlags);
11003 case Intrinsic::vector_reduce_fminimum:
11004 Res =
DAG.getNode(ISD::VECREDUCE_FMINIMUM, dl, VT, Op1, SDFlags);
11017 Attrs.push_back(Attribute::SExt);
11019 Attrs.push_back(Attribute::ZExt);
11021 Attrs.push_back(Attribute::InReg);
11023 return AttributeList::get(CLI.
RetTy->
getContext(), AttributeList::ReturnIndex,
11031std::pair<SDValue, SDValue>
11045 "Only supported for non-aggregate returns");
11048 for (
Type *Ty : RetOrigTys)
11057 RetOrigTys.
swap(OldRetOrigTys);
11058 RetVTs.
swap(OldRetVTs);
11059 Offsets.swap(OldOffsets);
11061 for (
size_t i = 0, e = OldRetVTs.
size(); i != e; ++i) {
11062 EVT RetVT = OldRetVTs[i];
11066 unsigned RegisterVTByteSZ = RegisterVT.
getSizeInBits() / 8;
11067 RetOrigTys.
append(NumRegs, OldRetOrigTys[i]);
11068 RetVTs.
append(NumRegs, RegisterVT);
11069 for (
unsigned j = 0; j != NumRegs; ++j)
11082 int DemoteStackIdx = -100;
11095 ArgListEntry Entry(DemoteStackSlot, StackSlotPtrType);
11096 Entry.IsSRet =
true;
11097 Entry.Alignment = Alignment;
11109 for (
unsigned I = 0, E = RetVTs.
size();
I != E; ++
I) {
11111 if (NeedsRegBlock) {
11112 Flags.setInConsecutiveRegs();
11113 if (
I == RetVTs.
size() - 1)
11114 Flags.setInConsecutiveRegsLast();
11116 EVT VT = RetVTs[
I];
11120 for (
unsigned i = 0; i != NumRegs; ++i) {
11124 Ret.Flags.setPointer();
11125 Ret.Flags.setPointerAddrSpace(
11129 Ret.Flags.setSExt();
11131 Ret.Flags.setZExt();
11133 Ret.Flags.setInReg();
11134 CLI.
Ins.push_back(Ret);
11143 if (Arg.IsSwiftError) {
11149 CLI.
Ins.push_back(Ret);
11157 for (
unsigned i = 0, e = Args.size(); i != e; ++i) {
11161 Type *FinalType = Args[i].Ty;
11162 if (Args[i].IsByVal)
11163 FinalType = Args[i].IndirectType;
11166 for (
unsigned Value = 0, NumValues = OrigArgTys.
size();
Value != NumValues;
11169 Type *ArgTy = OrigArgTy;
11170 if (Args[i].Ty != Args[i].OrigTy) {
11171 assert(
Value == 0 &&
"Only supported for non-aggregate arguments");
11172 ArgTy = Args[i].Ty;
11177 Args[i].Node.getResNo() +
Value);
11184 Flags.setOrigAlign(OriginalAlignment);
11189 Flags.setPointer();
11192 if (Args[i].IsZExt)
11194 if (Args[i].IsSExt)
11196 if (Args[i].IsNoExt)
11198 if (Args[i].IsInReg) {
11205 Flags.setHvaStart();
11211 if (Args[i].IsSRet)
11213 if (Args[i].IsSwiftSelf)
11214 Flags.setSwiftSelf();
11215 if (Args[i].IsSwiftAsync)
11216 Flags.setSwiftAsync();
11217 if (Args[i].IsSwiftError)
11218 Flags.setSwiftError();
11219 if (Args[i].IsCFGuardTarget)
11220 Flags.setCFGuardTarget();
11221 if (Args[i].IsByVal)
11223 if (Args[i].IsByRef)
11225 if (Args[i].IsPreallocated) {
11226 Flags.setPreallocated();
11234 if (Args[i].IsInAlloca) {
11235 Flags.setInAlloca();
11244 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) {
11245 unsigned FrameSize =
DL.getTypeAllocSize(Args[i].IndirectType);
11246 Flags.setByValSize(FrameSize);
11249 if (
auto MA = Args[i].Alignment)
11253 }
else if (
auto MA = Args[i].Alignment) {
11256 MemAlign = OriginalAlignment;
11258 Flags.setMemAlign(MemAlign);
11259 if (Args[i].IsNest)
11262 Flags.setInConsecutiveRegs();
11265 unsigned NumParts =
11270 if (Args[i].IsSExt)
11272 else if (Args[i].IsZExt)
11277 if (Args[i].IsReturned && !
Op.getValueType().isVector() &&
11282 Args[i].Ty->getPointerAddressSpace())) &&
11283 RetVTs.
size() == NumValues &&
"unexpected use of 'returned'");
11296 CLI.
RetZExt == Args[i].IsZExt))
11297 Flags.setReturned();
11303 for (
unsigned j = 0; j != NumParts; ++j) {
11309 j * Parts[j].
getValueType().getStoreSize().getKnownMinValue());
11310 if (NumParts > 1 && j == 0)
11314 if (j == NumParts - 1)
11318 CLI.
Outs.push_back(MyFlags);
11319 CLI.
OutVals.push_back(Parts[j]);
11322 if (NeedsRegBlock &&
Value == NumValues - 1)
11323 CLI.
Outs[CLI.
Outs.size() - 1].Flags.setInConsecutiveRegsLast();
11335 "LowerCall didn't return a valid chain!");
11337 "LowerCall emitted a return value for a tail call!");
11339 "LowerCall didn't emit the correct number of values!");
11351 for (
unsigned i = 0, e = CLI.
Ins.size(); i != e; ++i) {
11352 assert(InVals[i].
getNode() &&
"LowerCall emitted a null value!");
11353 assert(
EVT(CLI.
Ins[i].VT) == InVals[i].getValueType() &&
11354 "LowerCall emitted a value with the wrong type!");
11364 unsigned NumValues = RetVTs.
size();
11365 ReturnValues.
resize(NumValues);
11372 for (
unsigned i = 0; i < NumValues; ++i) {
11379 DemoteStackIdx, Offsets[i]),
11381 ReturnValues[i] = L;
11382 Chains[i] = L.getValue(1);
11389 std::optional<ISD::NodeType> AssertOp;
11394 unsigned CurReg = 0;
11395 for (
EVT VT : RetVTs) {
11401 CLI.
DAG, CLI.
DL, &InVals[CurReg], NumRegs, RegisterVT, VT,
nullptr,
11409 if (ReturnValues.
empty())
11415 return std::make_pair(Res, CLI.
Chain);
11432 if (
N->getNumValues() == 1) {
11440 "Lowering returned the wrong number of results!");
11443 for (
unsigned I = 0, E =
N->getNumValues();
I != E; ++
I)
11457 "Copy from a reg to the same reg!");
11458 assert(!Reg.isPhysical() &&
"Is a physreg");
11464 RegsForValue RFV(V->getContext(), TLI,
DAG.getDataLayout(), Reg, V->getType(),
11469 auto PreferredExtendIt =
FuncInfo.PreferredExtendType.find(V);
11470 if (PreferredExtendIt !=
FuncInfo.PreferredExtendType.end())
11471 ExtendType = PreferredExtendIt->second;
11474 PendingExports.push_back(Chain);
11486 return A->use_empty();
11488 const BasicBlock &Entry =
A->getParent()->front();
11489 for (
const User *U :
A->users())
11498 std::pair<const AllocaInst *, const StoreInst *>>;
11510 enum StaticAllocaInfo {
Unknown, Clobbered, Elidable };
11512 unsigned NumArgs = FuncInfo->
Fn->
arg_size();
11513 StaticAllocas.
reserve(NumArgs * 2);
11515 auto GetInfoIfStaticAlloca = [&](
const Value *V) -> StaticAllocaInfo * {
11518 V = V->stripPointerCasts();
11520 if (!AI || !AI->isStaticAlloca() || !FuncInfo->
StaticAllocaMap.count(AI))
11523 return &Iter.first->second;
11540 if (
I.isDebugOrPseudoInst())
11544 for (
const Use &U :
I.operands()) {
11545 if (StaticAllocaInfo *
Info = GetInfoIfStaticAlloca(U))
11546 *
Info = StaticAllocaInfo::Clobbered;
11552 if (StaticAllocaInfo *
Info = GetInfoIfStaticAlloca(
SI->getValueOperand()))
11553 *
Info = StaticAllocaInfo::Clobbered;
11556 const Value *Dst =
SI->getPointerOperand()->stripPointerCasts();
11557 StaticAllocaInfo *
Info = GetInfoIfStaticAlloca(Dst);
11563 if (*
Info != StaticAllocaInfo::Unknown)
11571 const Value *Val =
SI->getValueOperand()->stripPointerCasts();
11573 if (!Arg || Arg->hasPassPointeeByValueCopyAttr() ||
11577 !
DL.typeSizeEqualsStoreSize(Arg->
getType()) ||
11578 ArgCopyElisionCandidates.count(Arg)) {
11579 *
Info = StaticAllocaInfo::Clobbered;
11583 LLVM_DEBUG(
dbgs() <<
"Found argument copy elision candidate: " << *AI
11587 *
Info = StaticAllocaInfo::Elidable;
11588 ArgCopyElisionCandidates.insert({Arg, {AI,
SI}});
11593 if (ArgCopyElisionCandidates.size() == NumArgs)
11617 auto ArgCopyIter = ArgCopyElisionCandidates.find(&Arg);
11618 assert(ArgCopyIter != ArgCopyElisionCandidates.end());
11619 const AllocaInst *AI = ArgCopyIter->second.first;
11620 int FixedIndex = FINode->getIndex();
11622 int OldIndex = AllocaIndex;
11626 dbgs() <<
" argument copy elision failed due to bad fixed stack "
11632 LLVM_DEBUG(
dbgs() <<
" argument copy elision failed: alignment of alloca "
11633 "greater than stack argument alignment ("
11634 <<
DebugStr(RequiredAlignment) <<
" vs "
11642 dbgs() <<
"Eliding argument copy from " << Arg <<
" to " << *AI <<
'\n'
11643 <<
" Replacing frame index " << OldIndex <<
" with " << FixedIndex
11649 AllocaIndex = FixedIndex;
11650 ArgCopyElisionFrameIndexMap.
insert({OldIndex, FixedIndex});
11651 for (
SDValue ArgVal : ArgVals)
11655 const StoreInst *
SI = ArgCopyIter->second.second;
11668void SelectionDAGISel::LowerArguments(
const Function &
F) {
11669 SelectionDAG &DAG =
SDB->DAG;
11670 SDLoc dl =
SDB->getCurSDLoc();
11675 if (
F.hasFnAttribute(Attribute::Naked))
11680 MVT ValueVT =
TLI->getPointerTy(
DL,
DL.getAllocaAddrSpace());
11682 ISD::ArgFlagsTy
Flags;
11684 MVT RegisterVT =
TLI->getRegisterType(*DAG.
getContext(), ValueVT);
11685 ISD::InputArg RetArg(Flags, RegisterVT, ValueVT,
F.getReturnType(),
true,
11687 Ins.push_back(RetArg);
11695 ArgCopyElisionCandidates);
11698 for (
const Argument &Arg :
F.args()) {
11699 unsigned ArgNo = Arg.getArgNo();
11702 bool isArgValueUsed = !Arg.
use_empty();
11703 unsigned PartBase = 0;
11705 if (Arg.hasAttribute(Attribute::ByVal))
11706 FinalType = Arg.getParamByValType();
11707 bool NeedsRegBlock =
TLI->functionArgumentNeedsConsecutiveRegisters(
11708 FinalType,
F.getCallingConv(),
F.isVarArg(),
DL);
11709 for (
unsigned Value = 0, NumValues =
Types.size();
Value != NumValues;
11712 EVT VT =
TLI->getValueType(
DL, ArgTy);
11713 ISD::ArgFlagsTy
Flags;
11716 Flags.setPointer();
11719 if (Arg.hasAttribute(Attribute::ZExt))
11721 if (Arg.hasAttribute(Attribute::SExt))
11723 if (Arg.hasAttribute(Attribute::InReg)) {
11730 Flags.setHvaStart();
11736 if (Arg.hasAttribute(Attribute::StructRet))
11738 if (Arg.hasAttribute(Attribute::SwiftSelf))
11739 Flags.setSwiftSelf();
11740 if (Arg.hasAttribute(Attribute::SwiftAsync))
11741 Flags.setSwiftAsync();
11742 if (Arg.hasAttribute(Attribute::SwiftError))
11743 Flags.setSwiftError();
11744 if (Arg.hasAttribute(Attribute::ByVal))
11746 if (Arg.hasAttribute(Attribute::ByRef))
11748 if (Arg.hasAttribute(Attribute::InAlloca)) {
11749 Flags.setInAlloca();
11757 if (Arg.hasAttribute(Attribute::Preallocated)) {
11758 Flags.setPreallocated();
11770 const Align OriginalAlignment(
11771 TLI->getABIAlignmentForCallingConv(ArgTy,
DL));
11772 Flags.setOrigAlign(OriginalAlignment);
11775 Type *ArgMemTy =
nullptr;
11776 if (
Flags.isByVal() ||
Flags.isInAlloca() ||
Flags.isPreallocated() ||
11779 ArgMemTy = Arg.getPointeeInMemoryValueType();
11781 uint64_t MemSize =
DL.getTypeAllocSize(ArgMemTy);
11786 if (
auto ParamAlign = Arg.getParamStackAlign())
11787 MemAlign = *ParamAlign;
11788 else if ((ParamAlign = Arg.getParamAlign()))
11789 MemAlign = *ParamAlign;
11791 MemAlign =
TLI->getByValTypeAlignment(ArgMemTy,
DL);
11792 if (
Flags.isByRef())
11793 Flags.setByRefSize(MemSize);
11795 Flags.setByValSize(MemSize);
11796 }
else if (
auto ParamAlign = Arg.getParamStackAlign()) {
11797 MemAlign = *ParamAlign;
11799 MemAlign = OriginalAlignment;
11801 Flags.setMemAlign(MemAlign);
11803 if (Arg.hasAttribute(Attribute::Nest))
11806 Flags.setInConsecutiveRegs();
11807 if (ArgCopyElisionCandidates.count(&Arg))
11808 Flags.setCopyElisionCandidate();
11809 if (Arg.hasAttribute(Attribute::Returned))
11810 Flags.setReturned();
11812 MVT RegisterVT =
TLI->getRegisterTypeForCallingConv(
11813 *
CurDAG->getContext(),
F.getCallingConv(), VT);
11814 unsigned NumRegs =
TLI->getNumRegistersForCallingConv(
11815 *
CurDAG->getContext(),
F.getCallingConv(), VT);
11816 for (
unsigned i = 0; i != NumRegs; ++i) {
11820 ISD::InputArg MyFlags(
11821 Flags, RegisterVT, VT, ArgTy, isArgValueUsed, ArgNo,
11823 if (NumRegs > 1 && i == 0)
11824 MyFlags.Flags.setSplit();
11827 MyFlags.Flags.setOrigAlign(
Align(1));
11828 if (i == NumRegs - 1)
11829 MyFlags.Flags.setSplitEnd();
11831 Ins.push_back(MyFlags);
11833 if (NeedsRegBlock &&
Value == NumValues - 1)
11834 Ins[
Ins.size() - 1].Flags.setInConsecutiveRegsLast();
11841 SDValue NewRoot =
TLI->LowerFormalArguments(
11842 DAG.
getRoot(),
F.getCallingConv(),
F.isVarArg(), Ins, dl, DAG, InVals);
11846 "LowerFormalArguments didn't return a valid chain!");
11848 "LowerFormalArguments didn't emit the correct number of values!");
11850 for (
unsigned i = 0, e =
Ins.size(); i != e; ++i) {
11852 "LowerFormalArguments emitted a null value!");
11854 "LowerFormalArguments emitted a value with the wrong type!");
11866 MVT VT =
TLI->getPointerTy(
DL,
DL.getAllocaAddrSpace());
11867 MVT RegVT =
TLI->getRegisterType(*
CurDAG->getContext(), VT);
11868 std::optional<ISD::NodeType> AssertOp;
11871 F.getCallingConv(), AssertOp);
11873 MachineFunction&
MF =
SDB->DAG.getMachineFunction();
11874 MachineRegisterInfo&
RegInfo =
MF.getRegInfo();
11876 RegInfo.createVirtualRegister(
TLI->getRegClassFor(RegVT));
11877 FuncInfo->DemoteRegister = SRetReg;
11879 SDB->DAG.getCopyToReg(NewRoot,
SDB->getCurSDLoc(), SRetReg, ArgValue);
11887 DenseMap<int, int> ArgCopyElisionFrameIndexMap;
11888 for (
const Argument &Arg :
F.args()) {
11892 unsigned NumValues = ValueVTs.
size();
11893 if (NumValues == 0)
11900 if (Ins[i].
Flags.isCopyElisionCandidate()) {
11901 unsigned NumParts = 0;
11902 for (EVT VT : ValueVTs)
11903 NumParts +=
TLI->getNumRegistersForCallingConv(*
CurDAG->getContext(),
11904 F.getCallingConv(), VT);
11908 ArrayRef(&InVals[i], NumParts), ArgHasUses);
11913 bool isSwiftErrorArg =
11914 TLI->supportSwiftError() &&
11915 Arg.hasAttribute(Attribute::SwiftError);
11916 if (!ArgHasUses && !isSwiftErrorArg) {
11917 SDB->setUnusedArgValue(&Arg, InVals[i]);
11920 if (FrameIndexSDNode *FI =
11922 FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
11925 for (
unsigned Val = 0; Val != NumValues; ++Val) {
11926 EVT VT = ValueVTs[Val];
11927 MVT PartVT =
TLI->getRegisterTypeForCallingConv(*
CurDAG->getContext(),
11928 F.getCallingConv(), VT);
11929 unsigned NumParts =
TLI->getNumRegistersForCallingConv(
11930 *
CurDAG->getContext(),
F.getCallingConv(), VT);
11935 if (ArgHasUses || isSwiftErrorArg) {
11936 std::optional<ISD::NodeType> AssertOp;
11937 if (Arg.hasAttribute(Attribute::SExt))
11939 else if (Arg.hasAttribute(Attribute::ZExt))
11944 NewRoot,
F.getCallingConv(), AssertOp);
11947 if (NoFPClass !=
fcNone) {
11949 static_cast<uint64_t
>(NoFPClass), dl, MVT::i32);
11951 OutVal, SDNoFPClass);
11960 if (ArgValues.
empty())
11964 if (FrameIndexSDNode *FI =
11966 FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
11969 SDB->getCurSDLoc());
11971 SDB->setValue(&Arg, Res);
11981 if (LoadSDNode *LNode =
11983 if (FrameIndexSDNode *FI =
11985 FuncInfo->setArgumentFrameIndex(&Arg, FI->getIndex());
12013 FuncInfo->InitializeRegForValue(&Arg);
12014 SDB->CopyToExportRegsIfNeeded(&Arg);
12018 if (!Chains.
empty()) {
12025 assert(i == InVals.
size() &&
"Argument register count mismatch!");
12029 if (!ArgCopyElisionFrameIndexMap.
empty()) {
12030 for (MachineFunction::VariableDbgInfo &VI :
12031 MF->getInStackSlotVariableDbgInfo()) {
12032 auto I = ArgCopyElisionFrameIndexMap.
find(
VI.getStackSlot());
12033 if (
I != ArgCopyElisionFrameIndexMap.
end())
12034 VI.updateStackSlot(
I->second);
12049SelectionDAGBuilder::HandlePHINodesInSuccessorBlocks(
const BasicBlock *LLVMBB) {
12050 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12052 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
12058 MachineBasicBlock *SuccMBB =
FuncInfo.getMBB(SuccBB);
12062 if (!SuccsHandled.
insert(SuccMBB).second)
12070 for (
const PHINode &PN : SuccBB->phis()) {
12072 if (PN.use_empty())
12076 if (PN.getType()->isEmptyTy())
12080 const Value *PHIOp = PN.getIncomingValueForBlock(LLVMBB);
12085 RegOut =
FuncInfo.CreateRegs(&PN);
12103 "Didn't codegen value into a register!??");
12113 for (EVT VT : ValueVTs) {
12115 for (
unsigned i = 0; i != NumRegisters; ++i)
12117 Reg += NumRegisters;
12137void SelectionDAGBuilder::updateDAGForMaybeTailCall(
SDValue MaybeTC) {
12139 if (MaybeTC.
getNode() !=
nullptr)
12140 DAG.setRoot(MaybeTC);
12145void SelectionDAGBuilder::lowerWorkItem(SwitchWorkListItem W,
Value *
Cond,
12148 MachineFunction *CurMF =
FuncInfo.MF;
12149 MachineBasicBlock *NextMBB =
nullptr;
12154 unsigned Size =
W.LastCluster -
W.FirstCluster + 1;
12156 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
12158 if (
Size == 2 &&
W.MBB == SwitchMBB) {
12166 CaseCluster &
Small = *
W.FirstCluster;
12167 CaseCluster &
Big = *
W.LastCluster;
12171 const APInt &SmallValue =
Small.Low->getValue();
12172 const APInt &BigValue =
Big.Low->getValue();
12175 APInt CommonBit = BigValue ^ SmallValue;
12182 DAG.getConstant(CommonBit,
DL, VT));
12184 DL, MVT::i1,
Or,
DAG.getConstant(BigValue | SmallValue,
DL, VT),
12190 addSuccessorWithProb(SwitchMBB,
Small.MBB,
Small.Prob +
Big.Prob);
12192 addSuccessorWithProb(
12193 SwitchMBB, DefaultMBB,
12197 addSuccessorWithProb(SwitchMBB, DefaultMBB);
12204 BrCond =
DAG.getNode(ISD::BR,
DL, MVT::Other, BrCond,
12205 DAG.getBasicBlock(DefaultMBB));
12207 DAG.setRoot(BrCond);
12219 [](
const CaseCluster &a,
const CaseCluster &b) {
12220 return a.Prob != b.Prob ?
12222 a.Low->getValue().slt(b.Low->getValue());
12229 if (
I->Prob >
W.LastCluster->Prob)
12231 if (
I->Kind ==
CC_Range &&
I->MBB == NextMBB) {
12239 BranchProbability DefaultProb =
W.DefaultProb;
12240 BranchProbability UnhandledProbs = DefaultProb;
12242 UnhandledProbs +=
I->Prob;
12244 MachineBasicBlock *CurMBB =
W.MBB;
12246 bool FallthroughUnreachable =
false;
12247 MachineBasicBlock *Fallthrough;
12248 if (
I ==
W.LastCluster) {
12250 Fallthrough = DefaultMBB;
12255 CurMF->
insert(BBI, Fallthrough);
12259 UnhandledProbs -=
I->Prob;
12264 JumpTableHeader *JTH = &
SL->JTCases[
I->JTCasesIndex].first;
12265 SwitchCG::JumpTable *
JT = &
SL->JTCases[
I->JTCasesIndex].second;
12268 MachineBasicBlock *JumpMBB =
JT->MBB;
12269 CurMF->
insert(BBI, JumpMBB);
12271 auto JumpProb =
I->Prob;
12272 auto FallthroughProb = UnhandledProbs;
12280 if (*SI == DefaultMBB) {
12281 JumpProb += DefaultProb / 2;
12282 FallthroughProb -= DefaultProb / 2;
12300 if (FallthroughUnreachable) {
12307 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb);
12308 addSuccessorWithProb(CurMBB, JumpMBB, JumpProb);
12314 JT->Default = Fallthrough;
12317 if (CurMBB == SwitchMBB) {
12325 BitTestBlock *BTB = &
SL->BitTestCases[
I->BTCasesIndex];
12328 for (BitTestCase &BTC : BTB->
Cases)
12340 BTB->
Prob += DefaultProb / 2;
12344 if (FallthroughUnreachable)
12348 if (CurMBB == SwitchMBB) {
12355 const Value *
RHS, *
LHS, *MHS;
12357 if (
I->Low ==
I->High) {
12372 if (FallthroughUnreachable)
12376 CaseBlock CB(CC,
LHS,
RHS, MHS,
I->MBB, Fallthrough, CurMBB,
12379 if (CurMBB == SwitchMBB)
12382 SL->SwitchCases.push_back(CB);
12387 CurMBB = Fallthrough;
12391void SelectionDAGBuilder::splitWorkItem(
SwitchWorkList &WorkList,
12392 const SwitchWorkListItem &W,
12395 assert(
W.FirstCluster->Low->getValue().slt(
W.LastCluster->Low->getValue()) &&
12396 "Clusters not sorted?");
12397 assert(
W.LastCluster -
W.FirstCluster + 1 >= 2 &&
"Too small to split!");
12399 auto [LastLeft, FirstRight, LeftProb, RightProb] =
12400 SL->computeSplitWorkItemInfo(W);
12405 assert(PivotCluster >
W.FirstCluster);
12406 assert(PivotCluster <=
W.LastCluster);
12411 const ConstantInt *Pivot = PivotCluster->Low;
12420 MachineBasicBlock *LeftMBB;
12421 if (FirstLeft == LastLeft && FirstLeft->Kind ==
CC_Range &&
12422 FirstLeft->Low ==
W.GE &&
12423 (FirstLeft->High->getValue() + 1LL) == Pivot->
getValue()) {
12424 LeftMBB = FirstLeft->MBB;
12426 LeftMBB =
FuncInfo.MF->CreateMachineBasicBlock(
W.MBB->getBasicBlock());
12427 FuncInfo.MF->insert(BBI, LeftMBB);
12429 {LeftMBB, FirstLeft, LastLeft,
W.GE, Pivot,
W.DefaultProb / 2});
12437 MachineBasicBlock *RightMBB;
12438 if (FirstRight == LastRight && FirstRight->Kind ==
CC_Range &&
12439 W.LT && (FirstRight->High->getValue() + 1ULL) ==
W.LT->getValue()) {
12440 RightMBB = FirstRight->MBB;
12442 RightMBB =
FuncInfo.MF->CreateMachineBasicBlock(
W.MBB->getBasicBlock());
12443 FuncInfo.MF->insert(BBI, RightMBB);
12445 {RightMBB, FirstRight, LastRight, Pivot,
W.LT,
W.DefaultProb / 2});
12451 CaseBlock CB(
ISD::SETLT,
Cond, Pivot,
nullptr, LeftMBB, RightMBB,
W.MBB,
12454 if (
W.MBB == SwitchMBB)
12457 SL->SwitchCases.push_back(CB);
12482 MachineBasicBlock *SwitchMBB =
FuncInfo.MBB;
12490 unsigned PeeledCaseIndex = 0;
12491 bool SwitchPeeled =
false;
12492 for (
unsigned Index = 0;
Index < Clusters.size(); ++
Index) {
12493 CaseCluster &CC = Clusters[
Index];
12494 if (CC.
Prob < TopCaseProb)
12496 TopCaseProb = CC.
Prob;
12497 PeeledCaseIndex =
Index;
12498 SwitchPeeled =
true;
12503 LLVM_DEBUG(
dbgs() <<
"Peeled one top case in switch stmt, prob: "
12504 << TopCaseProb <<
"\n");
12509 MachineBasicBlock *PeeledSwitchMBB =
12511 FuncInfo.MF->insert(BBI, PeeledSwitchMBB);
12514 auto PeeledCaseIt = Clusters.begin() + PeeledCaseIndex;
12515 SwitchWorkListItem
W = {SwitchMBB, PeeledCaseIt, PeeledCaseIt,
12516 nullptr,
nullptr, TopCaseProb.
getCompl()};
12517 lowerWorkItem(W,
SI.getCondition(), SwitchMBB, PeeledSwitchMBB);
12519 Clusters.erase(PeeledCaseIt);
12520 for (CaseCluster &CC : Clusters) {
12522 dbgs() <<
"Scale the probablity for one cluster, before scaling: "
12523 << CC.
Prob <<
"\n");
12527 PeeledCaseProb = TopCaseProb;
12528 return PeeledSwitchMBB;
12531void SelectionDAGBuilder::visitSwitch(
const SwitchInst &
SI) {
12533 BranchProbabilityInfo *BPI =
FuncInfo.BPI;
12535 Clusters.reserve(
SI.getNumCases());
12536 for (
auto I :
SI.cases()) {
12537 MachineBasicBlock *Succ =
FuncInfo.getMBB(
I.getCaseSuccessor());
12538 const ConstantInt *CaseVal =
I.getCaseValue();
12539 BranchProbability Prob =
12541 : BranchProbability(1,
SI.getNumCases() + 1);
12545 MachineBasicBlock *DefaultMBB =
FuncInfo.getMBB(
SI.getDefaultDest());
12554 MachineBasicBlock *PeeledSwitchMBB =
12555 peelDominantCaseCluster(SI, Clusters, PeeledCaseProb);
12558 MachineBasicBlock *SwitchMBB =
FuncInfo.MBB;
12559 if (Clusters.empty()) {
12560 assert(PeeledSwitchMBB == SwitchMBB);
12562 if (DefaultMBB != NextBlock(SwitchMBB)) {
12569 SL->findJumpTables(Clusters, &SI,
getCurSDLoc(), DefaultMBB,
DAG.getPSI(),
12571 SL->findBitTestClusters(Clusters, &SI);
12574 dbgs() <<
"Case clusters: ";
12575 for (
const CaseCluster &
C : Clusters) {
12581 C.Low->getValue().print(
dbgs(),
true);
12582 if (
C.Low !=
C.High) {
12584 C.High->getValue().print(
dbgs(),
true);
12591 assert(!Clusters.empty());
12595 auto DefaultProb = getEdgeProbability(PeeledSwitchMBB, DefaultMBB);
12599 DefaultMBB ==
FuncInfo.getMBB(
SI.getDefaultDest()))
12602 {PeeledSwitchMBB,
First,
Last,
nullptr,
nullptr, DefaultProb});
12604 while (!WorkList.
empty()) {
12606 unsigned NumClusters =
W.LastCluster -
W.FirstCluster + 1;
12611 splitWorkItem(WorkList, W,
SI.getCondition(), SwitchMBB);
12615 lowerWorkItem(W,
SI.getCondition(), SwitchMBB, DefaultMBB);
12619void SelectionDAGBuilder::visitStepVector(
const CallInst &
I) {
12620 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12626void SelectionDAGBuilder::visitVectorReverse(
const CallInst &
I) {
12627 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12632 assert(VT ==
V.getValueType() &&
"Malformed vector.reverse!");
12641 SmallVector<int, 8>
Mask;
12643 for (
unsigned i = 0; i != NumElts; ++i)
12644 Mask.push_back(NumElts - 1 - i);
12649void SelectionDAGBuilder::visitVectorDeinterleave(
const CallInst &
I,
12658 EVT OutVT = ValueVTs[0];
12662 for (
unsigned i = 0; i != Factor; ++i) {
12663 assert(ValueVTs[i] == OutVT &&
"Expected VTs to be the same");
12665 DAG.getVectorIdxConstant(OutNumElts * i,
DL));
12671 SDValue Even =
DAG.getVectorShuffle(OutVT,
DL, SubVecs[0], SubVecs[1],
12673 SDValue Odd =
DAG.getVectorShuffle(OutVT,
DL, SubVecs[0], SubVecs[1],
12681 DAG.getVTList(ValueVTs), SubVecs);
12685void SelectionDAGBuilder::visitVectorInterleave(
const CallInst &
I,
12688 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12693 for (
unsigned i = 0; i < Factor; ++i) {
12696 "Expected VTs to be the same");
12714 for (
unsigned i = 0; i < Factor; ++i)
12721void SelectionDAGBuilder::visitFreeze(
const FreezeInst &
I) {
12725 unsigned NumValues = ValueVTs.
size();
12726 if (NumValues == 0)
return;
12731 for (
unsigned i = 0; i != NumValues; ++i)
12736 DAG.getVTList(ValueVTs), Values));
12739void SelectionDAGBuilder::visitVectorSplice(
const CallInst &
I) {
12740 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12752 DAG.getSignedConstant(
12759 uint64_t Idx = (NumElts +
Imm) % NumElts;
12762 SmallVector<int, 8>
Mask;
12763 for (
unsigned i = 0; i < NumElts; ++i)
12764 Mask.push_back(Idx + i);
12792 assert(
MI->getOpcode() == TargetOpcode::COPY &&
12793 "start of copy chain MUST be COPY");
12794 Reg =
MI->getOperand(1).getReg();
12797 assert(
Reg.isVirtual() &&
"expected COPY of virtual register");
12798 MI =
MRI.def_begin(
Reg)->getParent();
12801 if (
MI->getOpcode() == TargetOpcode::COPY) {
12802 assert(
Reg.isVirtual() &&
"expected COPY of virtual register");
12803 Reg =
MI->getOperand(1).getReg();
12804 assert(
Reg.isPhysical() &&
"expected COPY of physical register");
12807 assert(
MI->getOpcode() == TargetOpcode::INLINEASM_BR &&
12808 "end of copy chain MUST be INLINEASM_BR");
12818void SelectionDAGBuilder::visitCallBrLandingPad(
const CallInst &
I) {
12824 const TargetLowering &TLI =
DAG.getTargetLoweringInfo();
12825 const TargetRegisterInfo *
TRI =
DAG.getSubtarget().getRegisterInfo();
12826 MachineRegisterInfo &
MRI =
DAG.getMachineFunction().getRegInfo();
12834 for (
auto &
T : TargetConstraints) {
12835 SDISelAsmOperandInfo OpInfo(
T);
12843 switch (OpInfo.ConstraintType) {
12854 FuncInfo.MBB->addLiveIn(OriginalDef);
12862 ResultVTs.
push_back(OpInfo.ConstraintVT);
12871 ResultVTs.
push_back(OpInfo.ConstraintVT);
12879 DAG.getVTList(ResultVTs), ResultValues);
unsigned const MachineRegisterInfo * MRI
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< 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")
Analysis containing CSE Info
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.
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[]
Machine Check Debug Module
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 unsigned getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
static unsigned getAddressSpace(const Value *V, unsigned MaxLookup)
MachineInstr unsigned OpIdx
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
OptimizedStructLayoutField Field
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
static Type * getValueType(Value *V)
Returns the type of the given value/instruction V.
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 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 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 LLVM_ATTRIBUTE_ALWAYS_INLINE MVT::SimpleValueType getSimpleVT(const unsigned char *MatcherTable, unsigned &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 TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
static SymbolRef::Type getType(const Symbol *Sym)
static const fltSemantics & IEEEsingle()
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.
Type * getAllocatedType() const
Return the type that is being allocated by the instruction.
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.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
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
@ FMax
*p = maxnum(old, v) maxnum matches the behavior of llvm.maxnum.
@ UDecWrap
Decrement one until a minimum value or zero.
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 if the block is well formed or null if the block is not well forme...
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.
Conditional or Unconditional Branch instruction.
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 uint32_t getDenominator()
static BranchProbability getOne()
static BranchProbability getUnknown()
uint32_t getNumerator() const
LLVM_ABI uint64_t scale(uint64_t Num) const
Scale a large integer.
BranchProbability getCompl() const
static BranchProbability getZero()
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.
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
DIExpression * getExpression() const
LLVM_ABI Value * getVariableLocationOp(unsigned OpIdx) 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 > iterator
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.
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).
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.
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
@ 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.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
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
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.
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,...
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.
bool contains(const KeyT &Key) const
std::pair< iterator, bool > try_emplace(const KeyT &Key, Ts &&...Args)
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(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
static LLVM_ABI PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type 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 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...
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.
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.
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....
DenseMap< MachineBasicBlock *, SmallVector< unsigned, 4 > > LPadToCallSiteMap
Map a landing pad to the call site indexes.
void handleDebugDeclare(Value *Address, DILocalVariable *Variable, DIExpression *Expression, DebugLoc DL)
bool shouldKeepJumpConditionsTogether(const FunctionLoweringInfo &FuncInfo, const BranchInst &I, Instruction::BinaryOps Opc, const Value *Lhs, const Value *Rhs, TargetLoweringBase::CondMergingParams Params) const
StatepointLoweringState StatepointLowering
State used while lowering a statepoint sequence (gc_statepoint, gc_relocate, and gc_result).
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.
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,...
void init(GCFunctionInfo *gfi, BatchAAResults *BatchAA, AssumptionCache *AC, const TargetLibraryInfo *li)
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
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 > 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 > EmitTargetCodeForStrcpy(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dest, SDValue Src, MachinePointerInfo DestPtrInfo, MachinePointerInfo SrcPtrInfo, bool isStpcpy) const
Emit target-specific code that performs a strcpy or stpcpy, in cases where that is faster than a libc...
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 > 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 std::pair< SDValue, SDValue > EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, MachinePointerInfo Op1PtrInfo, MachinePointerInfo Op2PtrInfo) const
Emit target-specific code that performs a strcmp, 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
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
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 SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr)
Loads are not normal binary operators: their result type is not determined by their operands,...
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 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 getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
LLVM_ABI SDValue getBasicBlock(MachineBasicBlock *MBB)
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...
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.
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.
StringRef - Represent a constant reference to a string, i.e.
constexpr bool empty() const
empty - Check if the string is empty.
constexpr const char * data() const
data - 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
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 bool useStackGuardXorFP() const
If this function returns true, stack protection checks should XOR the frame pointer (or whichever poi...
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...
const TargetMachine & getTargetMachine() const
virtual unsigned getNumRegistersForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain targets require unusual breakdowns of certain types.
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 Value * getSDagStackGuard(const Module &M) const
Return the variable that's previously inserted by insertSSPDeclarations, if any, otherwise return nul...
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.
unsigned getBitWidthForCttzElements(Type *RetTy, ElementCount EC, bool ZeroIsPoison, const ConstantRange *VScaleRange) const
Return the minimum number of bits required to hold the maximum possible number of trailing zero vecto...
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...
virtual Function * getSSPStackGuardCheck(const Module &M) const
If the target has a standard stack protection check function that performs validation and error handl...
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 getTgtMemIntrinsic(IntrinsicInfo &, const CallInst &, MachineFunction &, unsigned) const
Given an intrinsic, checks if on the target the intrinsic will need to map to a MemIntrinsicNode (tou...
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.
MachineMemOperand::Flags getLoadMemOperandFlags(const LoadInst &LI, const DataLayout &DL, AssumptionCache *AC=nullptr, const TargetLibraryInfo *LibInfo=nullptr) const
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 shouldExpandVectorMatch(EVT VT, unsigned SearchSize) const
Return true if the @llvm.experimental.vector.match intrinsic should be expanded for vector type ‘VT’ ...
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...
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 bool shouldExpandCttzElements(EVT VT) const
Return true if the @llvm.experimental.cttz.elts intrinsic should be expanded using generic code in Se...
virtual bool signExtendConstant(const ConstantInt *C) const
Return true if this constant should be sign extended when promoting to a larger type.
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 ...
virtual Register getExceptionPointerRegister(const Constant *PersonalityFn) const
If a physical register, this returns the register that receives the exception address on entry to an ...
bool supportsUnalignedAtomics() const
Whether the target supports unaligned atomic operations.
std::vector< ArgListEntry > ArgListTy
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 Register getExceptionSelectorRegister(const Constant *PersonalityFn) const
If a physical register, this returns the register that receives the exception typeid on entry to a la...
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 ...
MVT getRegisterType(MVT VT) const
Return the type of registers that this ValueType will eventually require.
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 getVPExplicitVectorLengthTy() const
Returns the type to be used for the EVL/AVL operand of VP nodes: ISD::VP_ADD, ISD::VP_SUB,...
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 SDValue emitStackGuardXorFP(SelectionDAG &DAG, SDValue Val, const SDLoc &DL) 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.
std::pair< SDValue, SDValue > makeLibCall(SelectionDAG &DAG, RTLIB::Libcall LC, EVT RetVT, ArrayRef< SDValue > Ops, MakeLibCallOptions CallOptions, const SDLoc &dl, SDValue Chain=SDValue()) const
Returns a pair of (return value, chain).
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 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 ...
virtual void LowerAsmOperandForConstraint(SDValue Op, StringRef Constraint, std::vector< SDValue > &Ops, SelectionDAG &DAG) const
Lower the specified operand into the Ops vector.
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...
CodeGenOptLevel getOptLevel() const
Returns the optimization level: None, Less, Default, or Aggressive.
virtual TargetTransformInfo getTargetTransformInfo(const Function &F) const
Return a TargetTransformInfo for a given function.
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.
unsigned getID() const
Return the register class ID number.
const MCPhysReg * iterator
iterator begin() const
begin/end - Return all of the registers in this class.
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 isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
bool isVoidTy() const
Return true if this is 'void'.
This function has undefined behavior.
A Use represents the edge between a Value definition and its users.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
LLVM_ABI CmpInst::Predicate getPredicate() const
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.
iterator_range< user_iterator > users()
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI LLVMContext & getContext() const
All values hold a context through their type.
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 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...
@ 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.
@ LOOP_DEPENDENCE_RAW_MASK
@ 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.
@ BSWAP
Byte Swap and Counting operators.
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
@ ADD
Simple integer binary arithmetic operators.
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
@ 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.
@ 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 ...
@ FADD
Simple binary floating point operators.
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
@ FMULADD
FMULADD - Performs a * b + c, with, or without, intermediate rounding.
@ FPTRUNC_ROUND
FPTRUNC_ROUND - This corresponds to the fptrunc_round intrinsic.
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
@ EH_RETURN
OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents 'eh_return' gcc dwarf builtin,...
@ SIGN_EXTEND
Conversion operators.
@ ADDROFRETURNADDR
ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
@ CTTZ_ZERO_UNDEF
Bit counting operators with an undefined result for zero inputs.
@ SSUBO
Same for subtraction.
@ 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.
@ 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.
@ GET_ROUNDING
Returns current rounding mode: -1 Undefined 0 Round to 0 1 Round to nearest, ties to even 2 Round to ...
@ 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.
@ LOCAL_RECOVER
LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
@ SMULO
Same for multiplication.
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
@ 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...
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
@ 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.
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
@ AND
Bitwise operators - logical and, logical or, logical xor.
@ 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.
@ STRICT_FADD
Constrained versions of the binary floating point operators.
@ 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.
@ VECTOR_SPLICE
VECTOR_SPLICE(VEC1, VEC2, IMM) - Returns a subvector of the same type as VEC1/VEC2 from CONCAT_VECTOR...
@ 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.
@ 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.
@ 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 ...
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
@ LOOP_DEPENDENCE_WAR_MASK
Set rounding mode.
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.
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.
IntrinsicID_match m_VScale()
Matches a call to llvm.vscale().
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
std::pair< JumpTableHeader, JumpTable > JumpTableBlock
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.
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.
FunctionAddr VTableAddr Value
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.
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.
LLVM_ABI bool isOnlyUsedInZeroEqualityComparison(const Instruction *CxtI)
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)
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 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,...
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
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 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)
generic_gep_type_iterator<> gep_type_iterator
FunctionAddr VTableAddr Count
auto succ_size(const MachineBasicBlock *BB)
bool hasSingleElement(ContainerTy &&C)
Returns true if the given container only contains a single element.
LLVM_ABI ConstantRange getVScaleRange(const Function *F, unsigned BitWidth)
Determine the possible constant range of vscale with the given bit width, based on the vscale_range f...
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...
FunctionAddr VTableAddr uintptr_t uintptr_t Data
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.
@ And
Bitwise or logical AND of integers.
@ Sub
Subtraction of integers.
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
@ 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.
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
ISD::CondCode getFCmpCodeWithoutNaN(ISD::CondCode CC)
getFCmpCodeWithoutNaN - Given an ISD condition code comparing floats, return the equivalent code if w...
void ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL, Type *Ty, SmallVectorImpl< EVT > &ValueVTs, SmallVectorImpl< EVT > *MemVTs, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
ComputeValueVTs - Given an LLVM IR type, compute a sequence of EVTs that represent all the individual...
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 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...
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...
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 values are uniform if and only if all operands are uniform.
int popcount(T Value) noexcept
Count the number of set bits in a value.
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.
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.
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.
bool isScalarInteger() const
Return true if this is an integer, but not a vector.
EVT changeVectorElementType(EVT EltVT) const
Return a VT for a vector type whose attributes match ourselves with the exception of the element type...
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 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.
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.
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)
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)
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 & 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.
void addIPToStateRange(const InvokeInst *II, MCSymbol *InvokeBegin, MCSymbol *InvokeEnd)