30 State.PCSections =
nullptr;
33 State.Observer =
nullptr;
60 "Expected inlined-at fields to agree");
63 false, Reg, Variable, Expr));
73 "Expected inlined-at fields to agree");
76 true, Reg, Variable, Expr));
86 "Expected inlined-at fields to agree");
90 .addMetadata(Variable)
101 "Expected inlined-at fields to agree");
104 auto *NumericConstant = [&] () ->
const Constant* {
106 if (CE->getOpcode() == Instruction::IntToPtr)
107 return CE->getOperand(0);
112 if (CI->getBitWidth() > 64)
114 else if (CI->getBitWidth() == 1)
115 MIB.addImm(CI->getZExtValue());
117 MIB.addImm(CI->getSExtValue());
127 MIB.addImm(0).
addMetadata(Variable).addMetadata(Expr);
134 "Expected inlined-at fields to agree");
135 auto MIB =
buildInstr(TargetOpcode::DBG_LABEL);
137 return MIB.addMetadata(Label);
144 auto MIB =
buildInstr(TargetOpcode::G_DYN_STACKALLOC);
146 Size.addSrcToMIB(MIB);
147 MIB.addImm(Alignment.
value());
154 auto MIB =
buildInstr(TargetOpcode::G_FRAME_INDEX);
156 MIB.addFrameIndex(Idx);
165 "address space mismatch");
167 auto MIB =
buildInstr(TargetOpcode::G_GLOBAL_VALUE);
169 MIB.addGlobalAddress(GV);
176 auto MIB =
buildInstr(TargetOpcode::G_CONSTANT_POOL);
178 MIB.addConstantPoolIndex(Idx);
184 return buildInstr(TargetOpcode::G_JUMP_TABLE, {PtrTy}, {})
185 .addJumpTableIndex(JTI);
190 assert((Res == Op0) &&
"type mismatch");
196 assert((Res == Op0 && Res == Op1) &&
"type mismatch");
202 assert((Res == Op0) &&
"type mismatch");
207 const SrcOp &Op1, std::optional<unsigned> Flags) {
212 return buildInstr(TargetOpcode::G_PTR_ADD, {Res}, {Op0, Op1}, Flags);
223std::optional<MachineInstrBuilder>
226 std::optional<unsigned> Flags) {
227 assert(Res == 0 &&
"Res is a result argument");
228 assert(ValueTy.isScalar() &&
"invalid offset type");
237 return buildPtrAdd(Res, Op0, Cst.getReg(0), Flags);
268 "Different vector element types");
270 "Op0 has more elements");
273 for (
auto Op : Unmerge.getInstr()->defs())
277 "Op0 has more size");
283 for (
unsigned i = 0; i < NumberOfPadElts; ++i)
298 "Different vector element types");
301 "Op0 has fewer elements");
325 "Table reg must be a pointer");
343 "creating constant with the wrong size");
345 assert(!Ty.isScalableVector() &&
346 "unexpected scalable vector in buildConstant");
348 if (Ty.isFixedVector()) {
349 auto Const =
buildInstr(TargetOpcode::G_CONSTANT)
355 auto Const =
buildInstr(TargetOpcode::G_CONSTANT);
380 "creating fconstant with the wrong size");
382 assert(!Ty.isPointer() &&
"invalid operand type");
384 assert(!Ty.isScalableVector() &&
385 "unexpected scalable vector in buildFConstant");
387 if (Ty.isFixedVector()) {
388 auto Const =
buildInstr(TargetOpcode::G_FCONSTANT)
395 auto Const =
buildInstr(TargetOpcode::G_FCONSTANT);
398 Const.addFPImm(&Val);
420 auto *CFP = ConstantFP::get(Ctx, Val);
428 auto MIB =
buildInstr(TargetOpcode::G_PTRAUTH_GLOBAL_VALUE);
432 MIB.addUse(AddrDisc);
441 auto MIB =
buildInstr(TargetOpcode::G_BRCOND);
471 MIB.addMemOperand(&MMO);
483 return buildLoad(Dst, BasePtr, *OffsetMMO);
488 auto Ptr =
buildPtrAdd(PtrTy, BasePtr, ConstOffset);
501 MIB.addMemOperand(&MMO);
515 MIB.addMemOperand(&MMO);
545 std::optional<unsigned> Flags) {
546 return buildInstr(TargetOpcode::G_ZEXT, Res,
Op, Flags);
551 switch (TLI->getBooleanContents(IsVec, IsFP)) {
553 return TargetOpcode::G_SEXT;
555 return TargetOpcode::G_ZEXT;
557 return TargetOpcode::G_ANYEXT;
573 switch (TLI->getBooleanContents(IsVector, IsFP)) {
588 assert((TargetOpcode::G_ANYEXT == ExtOpc || TargetOpcode::G_ZEXT == ExtOpc ||
589 TargetOpcode::G_SEXT == ExtOpc) &&
590 "Expecting Extending Opc");
596 unsigned Opcode = TargetOpcode::COPY;
598 Op.getLLTTy(*
getMRI()).getSizeInBits())
601 Op.getLLTTy(*
getMRI()).getSizeInBits())
602 Opcode = TargetOpcode::G_TRUNC;
605 Op.getLLTTy(*
getMRI()).getSizeInBits());
642 if (SrcTy.isPointerOrPointerVector())
643 Opcode = TargetOpcode::G_PTRTOINT;
645 Opcode = TargetOpcode::G_INTTOPTR;
647 assert(!SrcTy.isPointerOrPointerVector() &&
649 Opcode = TargetOpcode::G_BITCAST;
662 assert(SrcTy.isValid() &&
"invalid operand type");
665 "extracting off end of register");
669 assert(Index == 0 &&
"insertion past the end of a register");
673 auto Extract =
buildInstr(TargetOpcode::G_EXTRACT);
674 Dst.addDefToMIB(*
getMRI(), Extract);
675 Src.addSrcToMIB(Extract);
676 Extract.addImm(Index);
681 return buildInstr(TargetOpcode::G_IMPLICIT_DEF, {Res}, {});
691 return buildInstr(TargetOpcode::G_MERGE_VALUES, Res, TmpVec);
702 return buildInstr(getOpcodeForMerge(Res, TmpVec), Res, TmpVec);
707 std::initializer_list<SrcOp>
Ops) {
712unsigned MachineIRBuilder::getOpcodeForMerge(
const DstOp &
DstOp,
715 if (SrcOps[0].getLLTTy(*
getMRI()).isVector())
716 return TargetOpcode::G_CONCAT_VECTORS;
717 return TargetOpcode::G_BUILD_VECTOR;
720 return TargetOpcode::G_MERGE_VALUES;
730 return buildInstr(TargetOpcode::G_UNMERGE_VALUES, TmpVec,
Op);
737 return buildInstr(TargetOpcode::G_UNMERGE_VALUES, TmpVec,
Op);
744 unsigned NumRegs = OpTy.
getSizeInBits() / Attrs.Ty.getSizeInBits();
746 return buildInstr(TargetOpcode::G_UNMERGE_VALUES, TmpVec,
Op);
756 return buildInstr(TargetOpcode::G_UNMERGE_VALUES, TmpVec,
Op);
765 return buildInstr(TargetOpcode::G_BUILD_VECTOR, Res, TmpVec);
774 for (
const auto &
Op :
Ops)
776 return buildInstr(TargetOpcode::G_BUILD_VECTOR, Res, TmpVec);
782 return buildInstr(TargetOpcode::G_BUILD_VECTOR, Res, TmpVec);
792 if (TmpVec[0].getLLTTy(*
getMRI()).getSizeInBits() ==
794 return buildInstr(TargetOpcode::G_BUILD_VECTOR, Res, TmpVec);
795 return buildInstr(TargetOpcode::G_BUILD_VECTOR_TRUNC, Res, TmpVec);
802 "Expected Src to match Dst elt ty");
813 "Expected Src to match Dst elt ty");
814 return buildInstr(TargetOpcode::G_SPLAT_VECTOR, Res, Src);
827 assert(DstElemTy == ElemTy1 && DstElemTy == ElemTy2);
828 assert(Mask.size() > 1 &&
"Scalar G_SHUFFLE_VECTOR are not supported");
833 return buildInstr(TargetOpcode::G_SHUFFLE_VECTOR, {Res}, {Src1, Src2})
834 .addShuffleMask(MaskAlloc);
843 return buildInstr(TargetOpcode::G_CONCAT_VECTORS, Res, TmpVec);
852 "insertion past the end of a register");
855 Op.getLLTTy(*
getMRI()).getSizeInBits()) {
866 APInt(Bitwidth, Step));
867 auto StepVector =
buildInstr(TargetOpcode::G_STEP_VECTOR);
868 StepVector->setDebugLoc(
DebugLoc());
870 StepVector.addCImm(CI);
885 auto VScale =
buildInstr(TargetOpcode::G_VSCALE);
888 VScale.addCImm(&MinElts);
893 const APInt &MinElts) {
900 if (HasSideEffects && IsConvergent)
901 return TargetOpcode::G_INTRINSIC_CONVERGENT_W_SIDE_EFFECTS;
903 return TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS;
905 return TargetOpcode::G_INTRINSIC_CONVERGENT;
906 return TargetOpcode::G_INTRINSIC;
912 bool HasSideEffects,
bool isConvergent) {
914 for (
Register ResultReg : ResultRegs)
915 MIB.addDef(ResultReg);
916 MIB.addIntrinsicID(
ID);
924 bool HasSideEffects = !Attrs.getMemoryEffects().doesNotAccessMemory();
925 bool isConvergent = Attrs.hasAttribute(Attribute::Convergent);
935 Result.addDefToMIB(*
getMRI(), MIB);
936 MIB.addIntrinsicID(
ID);
943 bool HasSideEffects = !Attrs.getMemoryEffects().doesNotAccessMemory();
944 bool isConvergent = Attrs.hasAttribute(Attribute::Convergent);
950 std::optional<unsigned> Flags) {
951 return buildInstr(TargetOpcode::G_TRUNC, Res,
Op, Flags);
956 std::optional<unsigned> Flags) {
957 return buildInstr(TargetOpcode::G_FPTRUNC, Res,
Op, Flags);
964 std::optional<unsigned> Flags) {
965 return buildInstr(TargetOpcode::G_ICMP, Res, {Pred, Op0, Op1}, Flags);
972 std::optional<unsigned> Flags) {
974 return buildInstr(TargetOpcode::G_FCMP, Res, {Pred, Op0, Op1}, Flags);
986 return buildInstr(TargetOpcode::G_UCMP, Res, {Op0, Op1});
992 std::optional<unsigned> Flags) {
994 return buildInstr(TargetOpcode::G_SELECT, {Res}, {Tst, Op0, Op1}, Flags);
1001 return buildInstr(TargetOpcode::G_INSERT_SUBVECTOR, Res,
1008 return buildInstr(TargetOpcode::G_EXTRACT_SUBVECTOR, Res,
1015 return buildInstr(TargetOpcode::G_INSERT_VECTOR_ELT, Res, {Val, Elt, Idx});
1021 return buildInstr(TargetOpcode::G_EXTRACT_VECTOR_ELT, Res, {Val, Idx});
1038 assert(OldValResTy == CmpValTy &&
"type mismatch");
1039 assert(OldValResTy == NewValTy &&
"type mismatch");
1042 auto MIB =
buildInstr(TargetOpcode::G_ATOMIC_CMPXCHG_WITH_SUCCESS);
1048 MIB.addMemOperand(&MMO);
1065 assert(OldValResTy == CmpValTy &&
"type mismatch");
1066 assert(OldValResTy == NewValTy &&
"type mismatch");
1069 auto MIB =
buildInstr(TargetOpcode::G_ATOMIC_CMPXCHG);
1074 MIB.addMemOperand(&MMO);
1079 unsigned Opcode,
const DstOp &OldValRes,
1089 assert(OldValResTy == ValTy &&
"type mismatch");
1097 MIB.addMemOperand(&MMO);
1104 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_XCHG, OldValRes, Addr, Val,
1110 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_ADD, OldValRes, Addr, Val,
1116 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_SUB, OldValRes, Addr, Val,
1122 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_AND, OldValRes, Addr, Val,
1128 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_NAND, OldValRes, Addr, Val,
1135 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_OR, OldValRes, Addr, Val,
1141 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_XOR, OldValRes, Addr, Val,
1147 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_MAX, OldValRes, Addr, Val,
1153 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_MIN, OldValRes, Addr, Val,
1159 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_UMAX, OldValRes, Addr, Val,
1165 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_UMIN, OldValRes, Addr, Val,
1173 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_FADD, OldValRes, Addr, Val,
1180 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_FSUB, OldValRes, Addr, Val,
1187 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_FMAX, OldValRes, Addr, Val,
1194 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_FMIN, OldValRes, Addr, Val,
1202 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_FMAXIMUM, OldValRes, Addr,
1210 return buildAtomicRMW(TargetOpcode::G_ATOMICRMW_FMINIMUM, OldValRes, Addr,
1226 auto MIB =
buildInstr(TargetOpcode::G_PREFETCH);
1228 MIB.addImm(RW).addImm(Locality).addImm(CacheType);
1229 MIB.addMemOperand(&MMO);
1246 assert(SrcTy.isVector() &&
"mismatched cast between vector and non-vector");
1248 "different number of elements in a trunc/ext");
1250 assert(DstTy.
isScalar() && SrcTy.isScalar() &&
"invalid extend/trunc");
1254 "invalid narrowing extend");
1257 "invalid widening trunc");
1262 const LLT Op0Ty,
const LLT Op1Ty) {
1265 "invalid operand type");
1266 assert((ResTy == Op0Ty && ResTy == Op1Ty) &&
"type mismatch");
1280 std::optional<unsigned> Flags) {
1284 case TargetOpcode::G_SELECT: {
1285 assert(DstOps.
size() == 1 &&
"Invalid select");
1286 assert(SrcOps.
size() == 3 &&
"Invalid select");
1288 DstOps[0].getLLTTy(*
getMRI()), SrcOps[0].getLLTTy(*
getMRI()),
1289 SrcOps[1].getLLTTy(*
getMRI()), SrcOps[2].getLLTTy(*
getMRI()));
1292 case TargetOpcode::G_FNEG:
1293 case TargetOpcode::G_ABS:
1296 assert(SrcOps.
size() == 1 &&
"Invalid Srcs");
1298 SrcOps[0].getLLTTy(*
getMRI()));
1300 case TargetOpcode::G_ADD:
1301 case TargetOpcode::G_AND:
1302 case TargetOpcode::G_MUL:
1303 case TargetOpcode::G_OR:
1304 case TargetOpcode::G_SUB:
1305 case TargetOpcode::G_XOR:
1306 case TargetOpcode::G_UDIV:
1307 case TargetOpcode::G_SDIV:
1308 case TargetOpcode::G_UREM:
1309 case TargetOpcode::G_SREM:
1310 case TargetOpcode::G_SMIN:
1311 case TargetOpcode::G_SMAX:
1312 case TargetOpcode::G_UMIN:
1313 case TargetOpcode::G_UMAX:
1314 case TargetOpcode::G_UADDSAT:
1315 case TargetOpcode::G_SADDSAT:
1316 case TargetOpcode::G_USUBSAT:
1317 case TargetOpcode::G_SSUBSAT: {
1320 assert(SrcOps.
size() == 2 &&
"Invalid Srcs");
1322 SrcOps[0].getLLTTy(*
getMRI()),
1323 SrcOps[1].getLLTTy(*
getMRI()));
1326 case TargetOpcode::G_SHL:
1327 case TargetOpcode::G_ASHR:
1328 case TargetOpcode::G_LSHR:
1329 case TargetOpcode::G_USHLSAT:
1330 case TargetOpcode::G_SSHLSAT: {
1332 assert(SrcOps.
size() == 2 &&
"Invalid Srcs");
1334 SrcOps[0].getLLTTy(*
getMRI()),
1335 SrcOps[1].getLLTTy(*
getMRI()));
1338 case TargetOpcode::G_SEXT:
1339 case TargetOpcode::G_ZEXT:
1340 case TargetOpcode::G_ANYEXT:
1342 assert(SrcOps.
size() == 1 &&
"Invalid Srcs");
1344 SrcOps[0].getLLTTy(*
getMRI()),
true);
1346 case TargetOpcode::G_TRUNC:
1347 case TargetOpcode::G_FPTRUNC: {
1349 assert(SrcOps.
size() == 1 &&
"Invalid Srcs");
1351 SrcOps[0].getLLTTy(*
getMRI()),
false);
1354 case TargetOpcode::G_BITCAST: {
1356 assert(SrcOps.
size() == 1 &&
"Invalid Srcs");
1357 assert(DstOps[0].getLLTTy(*
getMRI()).getSizeInBits() ==
1358 SrcOps[0].getLLTTy(*
getMRI()).getSizeInBits() &&
"invalid bitcast");
1361 case TargetOpcode::COPY:
1366 case TargetOpcode::G_FCMP:
1367 case TargetOpcode::G_ICMP: {
1368 assert(DstOps.
size() == 1 &&
"Invalid Dst Operands");
1369 assert(SrcOps.
size() == 3 &&
"Invalid Src Operands");
1373 "Expecting predicate");
1378 }() &&
"Invalid predicate");
1382 LLT Op0Ty = SrcOps[1].getLLTTy(*
getMRI());
1383 LLT DstTy = DstOps[0].getLLTTy(*
getMRI());
1389 }() &&
"Type Mismatch");
1392 case TargetOpcode::G_UNMERGE_VALUES: {
1393 assert(!DstOps.
empty() &&
"Invalid trivial sequence");
1394 assert(SrcOps.
size() == 1 &&
"Invalid src for Unmerge");
1398 DstOps[0].getLLTTy(*
getMRI());
1400 "type mismatch in output list");
1402 DstOps[0].getLLTTy(*
getMRI()).getSizeInBits() ==
1403 SrcOps[0].getLLTTy(*
getMRI()).getSizeInBits() &&
1404 "input operands do not cover output register");
1407 case TargetOpcode::G_MERGE_VALUES: {
1408 assert(SrcOps.
size() >= 2 &&
"invalid trivial sequence");
1413 SrcOps[0].getLLTTy(*
getMRI());
1415 "type mismatch in input list");
1417 SrcOps[0].getLLTTy(*
getMRI()).getSizeInBits() ==
1418 DstOps[0].getLLTTy(*
getMRI()).getSizeInBits() &&
1419 "input operands do not cover output register");
1421 "vectors should be built with G_CONCAT_VECTOR or G_BUILD_VECTOR");
1424 case TargetOpcode::G_EXTRACT_VECTOR_ELT: {
1425 assert(DstOps.
size() == 1 &&
"Invalid Dst size");
1426 assert(SrcOps.
size() == 2 &&
"Invalid Src size");
1427 assert(SrcOps[0].getLLTTy(*
getMRI()).isVector() &&
"Invalid operand type");
1429 DstOps[0].getLLTTy(*
getMRI()).isPointer()) &&
1430 "Invalid operand type");
1431 assert(SrcOps[1].getLLTTy(*
getMRI()).isScalar() &&
"Invalid operand type");
1432 assert(SrcOps[0].getLLTTy(*
getMRI()).getElementType() ==
1433 DstOps[0].getLLTTy(*
getMRI()) &&
1437 case TargetOpcode::G_INSERT_VECTOR_ELT: {
1438 assert(DstOps.
size() == 1 &&
"Invalid dst size");
1439 assert(SrcOps.
size() == 3 &&
"Invalid src size");
1441 SrcOps[0].getLLTTy(*
getMRI()).isVector() &&
"Invalid operand type");
1442 assert(DstOps[0].getLLTTy(*
getMRI()).getElementType() ==
1443 SrcOps[1].getLLTTy(*
getMRI()) &&
1445 assert(SrcOps[2].getLLTTy(*
getMRI()).isScalar() &&
"Invalid index");
1446 assert(DstOps[0].getLLTTy(*
getMRI()).getElementCount() ==
1447 SrcOps[0].getLLTTy(*
getMRI()).getElementCount() &&
1451 case TargetOpcode::G_INSERT_SUBVECTOR: {
1453 assert(SrcOps.
size() == 3 &&
"Invalid Srcs");
1454 [[maybe_unused]]
LLT DstTy = DstOps[0].getLLTTy(*
getMRI());
1455 [[maybe_unused]]
LLT BigVecTy = SrcOps[0].getLLTTy(*
getMRI());
1456 [[maybe_unused]]
LLT SubVecTy = SrcOps[1].getLLTTy(*
getMRI());
1457 assert(DstTy == BigVecTy &&
1458 "Dest and insert subvector source types must match!");
1460 "Insert subvector VTs must be vectors!");
1462 "Insert subvector VTs must have the same element type!");
1464 "Cannot insert a scalable vector into a fixed length vector!");
1468 "Insert subvector must be from smaller vector to larger vector!");
1470 "Insert subvector index must be constant");
1475 "Insert subvector overflow!");
1479 "Insert index is not a multiple of the subvector length");
1482 case TargetOpcode::G_EXTRACT_SUBVECTOR: {
1484 assert(SrcOps.
size() == 2 &&
"Invalid Srcs");
1485 [[maybe_unused]]
LLT DstTy = DstOps[0].getLLTTy(*
getMRI());
1486 [[maybe_unused]]
LLT SrcVecTy = SrcOps[0].getLLTTy(*
getMRI());
1488 "Extract subvector VTs must be vectors!");
1490 "Extract subvector VTs must have the same element type!");
1492 "Cannot extract a scalable vector from a fixed length vector!");
1496 "Extract subvector must be from larger vector to smaller vector!");
1498 "Extract subvector index must be a constant");
1503 "Extract subvector overflow!");
1507 "Extract index is not a multiple of the output vector length");
1510 case TargetOpcode::G_BUILD_VECTOR: {
1512 "Must have at least 2 operands");
1513 assert(DstOps.
size() == 1 &&
"Invalid DstOps");
1515 "Res type must be a vector");
1519 SrcOps[0].getLLTTy(*
getMRI());
1521 "type mismatch in input list");
1523 SrcOps[0].getLLTTy(*
getMRI()).getSizeInBits() ==
1524 DstOps[0].getLLTTy(*
getMRI()).getSizeInBits() &&
1525 "input scalars do not exactly cover the output vector register");
1528 case TargetOpcode::G_BUILD_VECTOR_TRUNC: {
1530 "Must have at least 2 operands");
1531 assert(DstOps.
size() == 1 &&
"Invalid DstOps");
1533 "Res type must be a vector");
1537 SrcOps[0].getLLTTy(*
getMRI());
1539 "type mismatch in input list");
1542 case TargetOpcode::G_CONCAT_VECTORS: {
1543 assert(DstOps.
size() == 1 &&
"Invalid DstOps");
1545 "Must have at least 2 operands");
1548 return (
Op.getLLTTy(*
getMRI()).isVector() &&
1550 SrcOps[0].getLLTTy(*
getMRI()));
1552 "type mismatch in input list");
1554 SrcOps[0].getLLTTy(*
getMRI()).getSizeInBits() ==
1555 DstOps[0].getLLTTy(*
getMRI()).getSizeInBits() &&
1556 "input vectors do not exactly cover the output vector register");
1559 case TargetOpcode::G_UADDE: {
1560 assert(DstOps.
size() == 2 &&
"Invalid no of dst operands");
1561 assert(SrcOps.
size() == 3 &&
"Invalid no of src operands");
1562 assert(DstOps[0].getLLTTy(*
getMRI()).isScalar() &&
"Invalid operand");
1564 (DstOps[0].getLLTTy(*
getMRI()) == SrcOps[1].getLLTTy(*
getMRI())) &&
1566 assert(DstOps[1].getLLTTy(*
getMRI()).isScalar() &&
"Invalid operand");
1574 for (
const DstOp &
Op : DstOps)
1576 for (
const SrcOp &
Op : SrcOps)
1577 Op.addSrcToMIB(MIB);
1579 MIB->setFlags(*Flags);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Function Alias Analysis Results
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static unsigned getIntrinsicOpcode(bool HasSideEffects, bool IsConvergent)
This file declares the MachineIRBuilder class.
Promote Memory to Register
static unsigned getAddressSpace(const Value *V, unsigned MaxLookup)
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
static unsigned getNumElements(Type *Ty)
static SymbolRef::Type getType(const Symbol *Sym)
This file describes how to lower LLVM code to machine code.
static Function * getFunction(FunctionType *Ty, const Twine &Name, Module *M)
static LLVM_ABI unsigned getSizeInBits(const fltSemantics &Sem)
Returns the size of the floating point number (in bits) in the given semantics.
const fltSemantics & getSemantics() const
Class for arbitrary precision integers.
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
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.
This class holds the attributes for a particular argument, parameter, function, or return value.
The address of a basic block.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
bool isFPPredicate() const
bool isIntPredicate() const
ConstantFP - Floating Point Values [float, double].
const APFloat & getValueAPF() const
This is the shared class of boolean and integer constants.
static ConstantInt * getSigned(IntegerType *Ty, int64_t V, bool ImplicitTrunc=false)
Return a ConstantInt with the specified value for the specified type.
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
A signed pointer, in the ptrauth sense.
ConstantInt * getKey() const
The Key ID, an i32 constant.
ConstantInt * getDiscriminator() const
The integer discriminator, an i64 constant, or 0.
This is an important base class in LLVM.
void addDefToMIB(MachineRegisterInfo &MRI, MachineInstrBuilder &MIB) const
LLT getLLTTy(const MachineRegisterInfo &MRI) const
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
PointerType * getType() const
Global values are always pointers.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
constexpr unsigned getScalarSizeInBits() const
constexpr bool isScalar() const
LLT getScalarType() const
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
constexpr bool isValid() const
constexpr uint16_t getNumElements() const
Returns the number of elements in a vector LLT.
constexpr bool isVector() const
constexpr bool isScalable() const
Returns true if the LLT is a scalable vector.
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
constexpr bool isPointer() const
constexpr ElementCount getElementCount() const
constexpr bool isPointerOrPointerVector() const
static LLT integer(unsigned SizeInBits)
LLT getElementType() const
Returns the vector's element type. Only valid for vector types.
const MCInstrDesc & get(unsigned Opcode) const
Return the machine instruction descriptor that corresponds to the specified instruction opcode.
LLVM_ABI instr_iterator insert(instr_iterator I, MachineInstr *M)
Insert MI into the instruction list before I, possibly inside a bundle.
MachineInstrBundleIterator< MachineInstr > iterator
ArrayRef< int > allocateShuffleMask(ArrayRef< int > Mask)
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
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.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
MachineInstrBuilder buildLoadFromOffset(const DstOp &Dst, const SrcOp &BasePtr, MachineMemOperand &BaseMMO, int64_t Offset)
Helper to create a load from a constant offset given a base address.
MachineInstrBuilder buildAtomicRMWFMin(const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_FMIN Addr, Val, MMO.
MachineInstrBuilder buildBoolExtInReg(const DstOp &Res, const SrcOp &Op, bool IsVector, bool IsFP)
MachineInstrBuilder insertInstr(MachineInstrBuilder MIB)
Insert an existing instruction at the insertion point.
MachineInstrBuilder buildAtomicRMWFMaximum(const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_FMAXIMUM Addr, Val, MMO.
MachineInstrBuilder buildAtomicRMWXor(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_XOR Addr, Val, MMO.
MachineInstrBuilder buildGlobalValue(const DstOp &Res, const GlobalValue *GV)
Build and insert Res = G_GLOBAL_VALUE GV.
MachineInstrBuilder buildBr(MachineBasicBlock &Dest)
Build and insert G_BR Dest.
LLVMContext & getContext() const
MachineInstrBuilder buildUndef(const DstOp &Res)
Build and insert Res = IMPLICIT_DEF.
Value * getDeactivationSymbol()
MachineInstrBuilder buildUCmp(const DstOp &Res, const SrcOp &Op0, const SrcOp &Op1)
Build and insert a Res = G_UCMP Op0, Op1.
MachineInstrBuilder buildConstantPool(const DstOp &Res, unsigned Idx)
Build and insert Res = G_CONSTANT_POOL Idx.
MachineInstrBuilder buildJumpTable(const LLT PtrTy, unsigned JTI)
Build and insert Res = G_JUMP_TABLE JTI.
MachineInstrBuilder buildBoolExt(const DstOp &Res, const SrcOp &Op, bool IsFP)
MachineInstrBuilder buildUnmerge(ArrayRef< LLT > Res, const SrcOp &Op)
Build and insert Res0, ... = G_UNMERGE_VALUES Op.
MachineInstrBuilder buildSCmp(const DstOp &Res, const SrcOp &Op0, const SrcOp &Op1)
Build and insert a Res = G_SCMP Op0, Op1.
MachineInstrBuilder buildFence(unsigned Ordering, unsigned Scope)
Build and insert G_FENCE Ordering, Scope.
MachineInstrBuilder buildSelect(const DstOp &Res, const SrcOp &Tst, const SrcOp &Op0, const SrcOp &Op1, std::optional< unsigned > Flags=std::nullopt)
Build and insert a Res = G_SELECT Tst, Op0, Op1.
MachineInstrBuilder buildAtomicRMWAnd(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_AND Addr, Val, MMO.
MachineInstrBuilder buildZExtInReg(const DstOp &Res, const SrcOp &Op, int64_t ImmOp)
Build and inserts Res = G_AND Op, LowBitsSet(ImmOp) Since there is no G_ZEXT_INREG like G_SEXT_INREG,...
MachineInstrBuilder buildAtomicRMWMin(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_MIN Addr, Val, MMO.
MachineInstrBuilder buildExtract(const DstOp &Res, const SrcOp &Src, uint64_t Index)
Build and insert Res0, ... = G_EXTRACT Src, Idx0.
std::optional< MachineInstrBuilder > materializePtrAdd(Register &Res, Register Op0, const LLT ValueTy, uint64_t Value, std::optional< unsigned > Flags=std::nullopt)
Materialize and insert Res = G_PTR_ADD Op0, (G_CONSTANT Value)
MachineInstrBuilder buildInsertSubvector(const DstOp &Res, const SrcOp &Src0, const SrcOp &Src1, unsigned Index)
Build and insert Res = G_INSERT_SUBVECTOR Src0, Src1, Idx.
MachineInstrBuilder buildAnd(const DstOp &Dst, const SrcOp &Src0, const SrcOp &Src1)
Build and insert Res = G_AND Op0, Op1.
MachineInstrBuilder buildCast(const DstOp &Dst, const SrcOp &Src)
Build and insert an appropriate cast between two registers of equal size.
const TargetInstrInfo & getTII()
MachineInstrBuilder buildAtomicRMWFAdd(const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_FADD Addr, Val, MMO.
MachineInstrBuilder buildAtomicRMWNand(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_NAND Addr, Val, MMO.
MachineInstrBuilder buildICmp(CmpInst::Predicate Pred, const DstOp &Res, const SrcOp &Op0, const SrcOp &Op1, std::optional< unsigned > Flags=std::nullopt)
Build and insert a Res = G_ICMP Pred, Op0, Op1.
MachineInstrBuilder buildAnyExtOrTrunc(const DstOp &Res, const SrcOp &Op)
Res = COPY Op depending on the differing sizes of Res and Op.
MachineInstrBuilder buildSExt(const DstOp &Res, const SrcOp &Op)
Build and insert Res = G_SEXT Op.
MachineBasicBlock::iterator getInsertPt()
Current insertion point for new instructions.
MachineInstrBuilder buildSExtOrTrunc(const DstOp &Res, const SrcOp &Op)
Build and insert Res = G_SEXT Op, Res = G_TRUNC Op, or Res = COPY Op depending on the differing sizes...
MachineInstrBuilder buildShuffleSplat(const DstOp &Res, const SrcOp &Src)
Build and insert a vector splat of a scalar Src using a G_INSERT_VECTOR_ELT and G_SHUFFLE_VECTOR idio...
MachineInstrBuilder buildZExt(const DstOp &Res, const SrcOp &Op, std::optional< unsigned > Flags=std::nullopt)
Build and insert Res = G_ZEXT Op.
MachineInstrBuilder buildConcatVectors(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_CONCAT_VECTORS Op0, ...
MachineInstrBuilder buildAtomicRMW(unsigned Opcode, const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_<Opcode> Addr, Val, MMO.
MachineInstrBuilder buildIntrinsic(Intrinsic::ID ID, ArrayRef< Register > Res, bool HasSideEffects, bool isConvergent)
Build and insert a G_INTRINSIC instruction.
MDNode * getPCSections()
Get the current instruction's PC sections metadata.
MachineInstrBuilder buildVScale(const DstOp &Res, unsigned MinElts)
Build and insert Res = G_VSCALE MinElts.
MachineInstrBuilder buildSplatBuildVector(const DstOp &Res, const SrcOp &Src)
Build and insert Res = G_BUILD_VECTOR with Src replicated to fill the number of elements.
MachineInstrBuilder buildIndirectDbgValue(Register Reg, const MDNode *Variable, const MDNode *Expr)
Build and insert a DBG_VALUE instruction expressing the fact that the associated Variable lives in me...
unsigned getBoolExtOp(bool IsVec, bool IsFP) const
MachineInstrBuilder buildObjectPtrOffset(const DstOp &Res, const SrcOp &Op0, const SrcOp &Op1)
Build and insert an instruction with appropriate flags for addressing some offset of an object,...
MachineInstrBuilder buildAtomicRMWUmax(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_UMAX Addr, Val, MMO.
MachineInstrBuilder buildBuildVector(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_BUILD_VECTOR Op0, ...
MachineInstrBuilder buildConstDbgValue(const Constant &C, const MDNode *Variable, const MDNode *Expr)
Build and insert a DBG_VALUE instructions specifying that Variable is given by C (suitably modified b...
void recordInsertion(MachineInstr *InsertedInstr) const
MachineInstrBuilder buildBrCond(const SrcOp &Tst, MachineBasicBlock &Dest)
Build and insert G_BRCOND Tst, Dest.
std::optional< MachineInstrBuilder > materializeObjectPtrOffset(Register &Res, Register Op0, const LLT ValueTy, uint64_t Value)
Materialize and insert an instruction with appropriate flags for addressing some offset of an object,...
MachineInstrBuilder buildMergeLikeInstr(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_MERGE_VALUES Op0, ... or Res = G_BUILD_VECTOR Op0, ... or Res = G_CONCAT_VEC...
MachineInstrBuilder buildAtomicRMWFMinimum(const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_FMINIMUM Addr, Val, MMO.
MachineInstrBuilder buildExtractVectorElement(const DstOp &Res, const SrcOp &Val, const SrcOp &Idx)
Build and insert Res = G_EXTRACT_VECTOR_ELT Val, Idx.
MachineInstrBuilder buildLoad(const DstOp &Res, const SrcOp &Addr, MachineMemOperand &MMO)
Build and insert Res = G_LOAD Addr, MMO.
MachineInstrBuilder buildPtrAdd(const DstOp &Res, const SrcOp &Op0, const SrcOp &Op1, std::optional< unsigned > Flags=std::nullopt)
Build and insert Res = G_PTR_ADD Op0, Op1.
MachineInstrBuilder buildZExtOrTrunc(const DstOp &Res, const SrcOp &Op)
Build and insert Res = G_ZEXT Op, Res = G_TRUNC Op, or Res = COPY Op depending on the differing sizes...
MachineInstrBuilder buildBuildVectorTrunc(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_BUILD_VECTOR_TRUNC Op0, ...
virtual MachineInstrBuilder buildFConstant(const DstOp &Res, const ConstantFP &Val)
Build and insert Res = G_FCONSTANT Val.
MachineInstrBuilder buildStore(const SrcOp &Val, const SrcOp &Addr, MachineMemOperand &MMO)
Build and insert G_STORE Val, Addr, MMO.
MachineInstrBuilder buildInstr(unsigned Opcode)
Build and insert <empty> = Opcode <empty>.
MachineInstrBuilder buildPadVectorWithUndefElements(const DstOp &Res, const SrcOp &Op0)
Build and insert a, b, ..., x = G_UNMERGE_VALUES Op0 Res = G_BUILD_VECTOR a, b, .....
void validateSelectOp(const LLT ResTy, const LLT TstTy, const LLT Op0Ty, const LLT Op1Ty)
MachineInstrBuilder buildFrameIndex(const DstOp &Res, int Idx)
Build and insert Res = G_FRAME_INDEX Idx.
MachineInstrBuilder buildDirectDbgValue(Register Reg, const MDNode *Variable, const MDNode *Expr)
Build and insert a DBG_VALUE instruction expressing the fact that the associated Variable lives in Re...
const DebugLoc & getDL()
Getter for DebugLoc.
MachineInstrBuilder buildBuildVectorConstant(const DstOp &Res, ArrayRef< APInt > Ops)
Build and insert Res = G_BUILD_VECTOR Op0, ... where each OpN is built with G_CONSTANT.
MachineInstrBuilder buildAtomicRMWUmin(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_UMIN Addr, Val, MMO.
void validateBinaryOp(const LLT Res, const LLT Op0, const LLT Op1)
void validateShiftOp(const LLT Res, const LLT Op0, const LLT Op1)
MachineFunction & getMF()
Getter for the function we currently build.
MachineInstrBuilder buildDbgLabel(const MDNode *Label)
Build and insert a DBG_LABEL instructions specifying that Label is given.
MachineInstrBuilder buildBrJT(Register TablePtr, unsigned JTI, Register IndexReg)
Build and insert G_BRJT TablePtr, JTI, IndexReg.
MachineInstrBuilder buildInsert(const DstOp &Res, const SrcOp &Src, const SrcOp &Op, unsigned Index)
MachineInstrBuilder buildDynStackAlloc(const DstOp &Res, const SrcOp &Size, Align Alignment)
Build and insert Res = G_DYN_STACKALLOC Size, Align.
MachineInstrBuilder buildFIDbgValue(int FI, const MDNode *Variable, const MDNode *Expr)
Build and insert a DBG_VALUE instruction expressing the fact that the associated Variable lives in th...
MachineInstrBuilder buildExtOrTrunc(unsigned ExtOpc, const DstOp &Res, const SrcOp &Op)
Build and insert Res = ExtOpc, Res = G_TRUNC Op, or Res = COPY Op depending on the differing sizes of...
MachineInstrBuilder buildAtomicRMWSub(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_SUB Addr, Val, MMO.
MachineInstrBuilder buildMergeValues(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_MERGE_VALUES Op0, ...
MachineInstrBuilder buildTrunc(const DstOp &Res, const SrcOp &Op, std::optional< unsigned > Flags=std::nullopt)
Build and insert Res = G_TRUNC Op.
MachineInstrBuilder buildAtomicRMWFMax(const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_FMAX Addr, Val, MMO.
MachineInstrBuilder buildAtomicRMWOr(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_OR Addr, Val, MMO.
const MachineBasicBlock & getMBB() const
Getter for the basic block we currently build.
MachineInstrBuilder buildInsertVectorElement(const DstOp &Res, const SrcOp &Val, const SrcOp &Elt, const SrcOp &Idx)
Build and insert Res = G_INSERT_VECTOR_ELT Val, Elt, Idx.
MachineInstrBuilder buildAnyExt(const DstOp &Res, const SrcOp &Op)
Build and insert Res = G_ANYEXT Op0.
MachineInstrBuilder buildAtomicCmpXchgWithSuccess(const DstOp &OldValRes, const DstOp &SuccessRes, const SrcOp &Addr, const SrcOp &CmpVal, const SrcOp &NewVal, MachineMemOperand &MMO)
Build and insert OldValRes<def>, SuccessRes<def> = / G_ATOMIC_CMPXCHG_WITH_SUCCESS Addr,...
MachineInstrBuilder buildDeleteTrailingVectorElements(const DstOp &Res, const SrcOp &Op0)
Build and insert a, b, ..., x, y, z = G_UNMERGE_VALUES Op0 Res = G_BUILD_VECTOR a,...
MachineRegisterInfo * getMRI()
Getter for MRI.
MachineInstrBuilder buildAtomicRMWAdd(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_ADD Addr, Val, MMO.
MachineInstrBuilder buildFPTrunc(const DstOp &Res, const SrcOp &Op, std::optional< unsigned > Flags=std::nullopt)
Build and insert Res = G_FPTRUNC Op.
MachineInstrBuilder buildAtomicCmpXchg(const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &CmpVal, const SrcOp &NewVal, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMIC_CMPXCHG Addr, CmpVal, NewVal, / MMO.
MachineInstrBuilder buildShuffleVector(const DstOp &Res, const SrcOp &Src1, const SrcOp &Src2, ArrayRef< int > Mask)
Build and insert Res = G_SHUFFLE_VECTOR Src1, Src2, Mask.
void validateTruncExt(const LLT Dst, const LLT Src, bool IsExtend)
MachineInstrBuilder buildInstrNoInsert(unsigned Opcode)
Build but don't insert <empty> = Opcode <empty>.
MachineInstrBuilder buildPtrMask(const DstOp &Res, const SrcOp &Op0, const SrcOp &Op1)
Build and insert Res = G_PTRMASK Op0, Op1.
MachineInstrBuilder buildCopy(const DstOp &Res, const SrcOp &Op)
Build and insert Res = COPY Op.
void validateUnaryOp(const LLT Res, const LLT Op0)
MachineInstrBuilder buildBlockAddress(Register Res, const BlockAddress *BA)
Build and insert Res = G_BLOCK_ADDR BA.
MDNode * getMMRAMetadata()
Get the current instruction's MMRA metadata.
MachineInstrBuilder buildAtomicRMWMax(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_MAX Addr, Val, MMO.
MachineInstrBuilder buildPrefetch(const SrcOp &Addr, unsigned RW, unsigned Locality, unsigned CacheType, MachineMemOperand &MMO)
Build and insert G_PREFETCH Addr, RW, Locality, CacheType.
MachineInstrBuilder buildExtractSubvector(const DstOp &Res, const SrcOp &Src, unsigned Index)
Build and insert Res = G_EXTRACT_SUBVECTOR Src, Idx0.
MachineInstrBuilder buildBrIndirect(Register Tgt)
Build and insert G_BRINDIRECT Tgt.
MachineInstrBuilder buildSplatVector(const DstOp &Res, const SrcOp &Val)
Build and insert Res = G_SPLAT_VECTOR Val.
MachineInstrBuilder buildLoadInstr(unsigned Opcode, const DstOp &Res, const SrcOp &Addr, MachineMemOperand &MMO)
Build and insert Res = <opcode> Addr, MMO.
void setMF(MachineFunction &MF)
MachineInstrBuilder buildStoreInstr(unsigned Opcode, const SrcOp &Val, const SrcOp &Addr, MachineMemOperand &MMO)
Build and insert <opcode> Val, Addr, MMO.
MachineInstrBuilder buildStepVector(const DstOp &Res, unsigned Step)
Build and insert Res = G_STEP_VECTOR Step.
MachineInstrBuilder buildAtomicRMWFSub(const DstOp &OldValRes, const SrcOp &Addr, const SrcOp &Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_FSUB Addr, Val, MMO.
MachineInstrBuilder buildAtomicRMWXchg(Register OldValRes, Register Addr, Register Val, MachineMemOperand &MMO)
Build and insert OldValRes<def> = G_ATOMICRMW_XCHG Addr, Val, MMO.
MachineInstrBuilder buildMaskLowPtrBits(const DstOp &Res, const SrcOp &Op0, uint32_t NumBits)
Build and insert Res = G_PTRMASK Op0, G_CONSTANT (1 << NumBits) - 1.
virtual MachineInstrBuilder buildConstant(const DstOp &Res, const ConstantInt &Val)
Build and insert Res = G_CONSTANT Val.
MachineInstrBuilder buildFCmp(CmpInst::Predicate Pred, const DstOp &Res, const SrcOp &Op0, const SrcOp &Op1, std::optional< unsigned > Flags=std::nullopt)
Build and insert a Res = G_FCMP PredOp0, Op1.
MachineInstrBuilder buildSExtInReg(const DstOp &Res, const SrcOp &Op, int64_t ImmOp)
Build and insert Res = G_SEXT_INREG Op, ImmOp.
MachineInstrBuilder buildConstantPtrAuth(const DstOp &Res, const ConstantPtrAuth *CPA, Register Addr, Register AddrDisc)
Build and insert G_PTRAUTH_GLOBAL_VALUE.
Register getReg(unsigned Idx) const
Get the register for the operand index.
const MachineInstrBuilder & addCImm(const ConstantInt *Val) const
const MachineInstrBuilder & addUse(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addBlockAddress(const BlockAddress *BA, int64_t Offset=0, unsigned TargetFlags=0) const
const MachineInstrBuilder & addFPImm(const ConstantFP *Val) const
const MachineInstrBuilder & addJumpTableIndex(unsigned Idx, unsigned TargetFlags=0) const
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
const MachineInstrBuilder & addDef(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register definition operand.
A description of a memory reference used in the backend.
bool isAtomic() const
Returns true if this operation has an atomic ordering requirement of unordered or higher,...
Flags
Flags values. These may be or'd together.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
LLVM_ABI Register createGenericVirtualRegister(LLT Ty, StringRef Name="")
Create and return a new generic virtual register with low-level type Ty.
unsigned getAddressSpace() const
Return the address space of the Pointer type.
Wrapper class representing virtual and physical registers.
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
LLT getLLTTy(const MachineRegisterInfo &MRI) const
void addSrcToMIB(MachineInstrBuilder &MIB) const
@ ZeroOrOneBooleanContent
@ UndefinedBooleanContent
@ ZeroOrNegativeOneBooleanContent
virtual const TargetInstrInfo * getInstrInfo() const
virtual const TargetLowering * getTargetLowering() const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI void addMetadata(unsigned KindID, MDNode &MD)
Add a metadata attachment.
static constexpr bool isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
static constexpr bool isKnownGT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ C
The default llvm calling convention, compatible with C.
LLVM_ABI AttributeSet getFnAttributes(LLVMContext &C, ID id)
Return the function attributes for an intrinsic.
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
@ Undef
Value of the register doesn't matter.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
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...
constexpr T maskTrailingZeros(unsigned N)
Create a bitmask with the N right-most bits set to 0, and all other bits set to 1.
DWARFExpression::Operation Op
LLVM_ABI APFloat getAPFloatFromSize(double Val, unsigned Size)
Returns an APFloat from Val converted to the appropriate size.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
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.
This class contains a discriminated union of information about pointers in memory operands,...
All attributes(register class or bank and low-level type) a virtual register can have.