@@ -297,7 +297,7 @@ return true;
297
297
298
298
const ::llvm::StringLiteral Add32Op::s_name{"xd.add32" };
299
299
300
- Add32Op* Add32Op::create(llvm_dialects::Builder& b, ::llvm::Value * lhs, ::llvm::Value * rhs, uint32_t extra, const llvm::Twine &inst__name ) {
300
+ Add32Op* Add32Op::create(llvm_dialects::Builder& b, ::llvm::Value * lhs, ::llvm::Value * rhs, uint32_t extra, const llvm::Twine &instName ) {
301
301
::llvm::LLVMContext& context = b.getContext();
302
302
(void)context;
303
303
::llvm::Module& module = *b.GetInsertBlock()->getModule();
334
334
::llvm::ConstantInt::get(::llvm::IntegerType::get(context, 32), extra)
335
335
};
336
336
337
- return ::llvm::cast<Add32Op>(b.CreateCall(fn, args, inst__name ));
337
+ return ::llvm::cast<Add32Op>(b.CreateCall(fn, args, instName ));
338
338
}
339
339
340
340
@@ -419,7 +419,7 @@ uint32_t const extra = getExtra();
419
419
420
420
const ::llvm::StringLiteral CombineOp::s_name{"xd.combine" };
421
421
422
- CombineOp* CombineOp::create(llvm_dialects::Builder& b, ::llvm::Value * lhs, ::llvm::Value * rhs, const llvm::Twine &inst__name ) {
422
+ CombineOp* CombineOp::create(llvm_dialects::Builder& b, ::llvm::Value * lhs, ::llvm::Value * rhs, const llvm::Twine &instName ) {
423
423
::llvm::LLVMContext& context = b.getContext();
424
424
(void)context;
425
425
::llvm::Module& module = *b.GetInsertBlock()->getModule();
453
453
rhs
454
454
};
455
455
456
- return ::llvm::cast<CombineOp>(b.CreateCall(fn, args, inst__name ));
456
+ return ::llvm::cast<CombineOp>(b.CreateCall(fn, args, instName ));
457
457
}
458
458
459
459
514
514
515
515
const ::llvm::StringLiteral ExtractElementOp::s_name{"xd.extractelement" };
516
516
517
- ExtractElementOp* ExtractElementOp::create(llvm_dialects::Builder& b, ::llvm::Value * vector, ::llvm::Value * index, const llvm::Twine &inst__name ) {
517
+ ExtractElementOp* ExtractElementOp::create(llvm_dialects::Builder& b, ::llvm::Value * vector, ::llvm::Value * index, const llvm::Twine &instName ) {
518
518
::llvm::LLVMContext& context = b.getContext();
519
519
(void)context;
520
520
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -548,7 +548,7 @@ vector,
548
548
index
549
549
};
550
550
551
- return ::llvm::cast<ExtractElementOp>(b.CreateCall(fn, args, inst__name ));
551
+ return ::llvm::cast<ExtractElementOp>(b.CreateCall(fn, args, instName ));
552
552
}
553
553
554
554
@@ -618,7 +618,7 @@ index
618
618
619
619
const ::llvm::StringLiteral FromFixedVectorOp::s_name{"xd.fromfixedvector" };
620
620
621
- FromFixedVectorOp* FromFixedVectorOp::create(llvm_dialects::Builder& b, ::llvm::Type* resultType, ::llvm::Value * source, const llvm::Twine &inst__name ) {
621
+ FromFixedVectorOp* FromFixedVectorOp::create(llvm_dialects::Builder& b, ::llvm::Type* resultType, ::llvm::Value * source, const llvm::Twine &instName ) {
622
622
::llvm::LLVMContext& context = b.getContext();
623
623
(void)context;
624
624
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -651,7 +651,7 @@ index
651
651
source
652
652
};
653
653
654
- return ::llvm::cast<FromFixedVectorOp>(b.CreateCall(fn, args, inst__name ));
654
+ return ::llvm::cast<FromFixedVectorOp>(b.CreateCall(fn, args, instName ));
655
655
}
656
656
657
657
@@ -788,7 +788,7 @@ source
788
788
789
789
const ::llvm::StringLiteral HandleGetOp::s_name{"xd.handle.get" };
790
790
791
- HandleGetOp* HandleGetOp::create(llvm_dialects::Builder& b, const llvm::Twine &inst__name ) {
791
+ HandleGetOp* HandleGetOp::create(llvm_dialects::Builder& b, const llvm::Twine &instName ) {
792
792
::llvm::LLVMContext& context = b.getContext();
793
793
(void)context;
794
794
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -815,7 +815,7 @@ source
815
815
assert(fn.getFunctionType() == fnType);
816
816
assert(::llvm::cast<::llvm::Function>(fn.getCallee())->getFunctionType() == fn.getFunctionType());
817
817
818
- return ::llvm::cast<HandleGetOp>(b.CreateCall(fn, std::nullopt, inst__name ));
818
+ return ::llvm::cast<HandleGetOp>(b.CreateCall(fn, std::nullopt, instName ));
819
819
}
820
820
821
821
@@ -850,7 +850,7 @@ source
850
850
851
851
const ::llvm::StringLiteral IExtOp::s_name{"xd.iext" };
852
852
853
- IExtOp* IExtOp::create(llvm_dialects::Builder& b, ::llvm::Type* resultType, ::llvm::Value * source, const llvm::Twine &inst__name ) {
853
+ IExtOp* IExtOp::create(llvm_dialects::Builder& b, ::llvm::Type* resultType, ::llvm::Value * source, const llvm::Twine &instName ) {
854
854
::llvm::LLVMContext& context = b.getContext();
855
855
(void)context;
856
856
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -883,7 +883,7 @@ source
883
883
source
884
884
};
885
885
886
- return ::llvm::cast<IExtOp>(b.CreateCall(fn, args, inst__name ));
886
+ return ::llvm::cast<IExtOp>(b.CreateCall(fn, args, instName ));
887
887
}
888
888
889
889
@@ -948,7 +948,7 @@ source
948
948
949
949
const ::llvm::StringLiteral ITruncOp::s_name{"xd.itrunc" };
950
950
951
- ITruncOp* ITruncOp::create(llvm_dialects::Builder& b, ::llvm::Type* resultType, ::llvm::Value * source, const llvm::Twine &inst__name ) {
951
+ ITruncOp* ITruncOp::create(llvm_dialects::Builder& b, ::llvm::Type* resultType, ::llvm::Value * source, const llvm::Twine &instName ) {
952
952
::llvm::LLVMContext& context = b.getContext();
953
953
(void)context;
954
954
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -981,7 +981,7 @@ source
981
981
source
982
982
};
983
983
984
- return ::llvm::cast<ITruncOp>(b.CreateCall(fn, args, inst__name ));
984
+ return ::llvm::cast<ITruncOp>(b.CreateCall(fn, args, instName ));
985
985
}
986
986
987
987
@@ -1046,7 +1046,7 @@ source
1046
1046
1047
1047
const ::llvm::StringLiteral InsertElementOp::s_name{"xd.insertelement" };
1048
1048
1049
- InsertElementOp* InsertElementOp::create(llvm_dialects::Builder& b, ::llvm::Value * vector, ::llvm::Value * value, ::llvm::Value * index, const llvm::Twine &inst__name ) {
1049
+ InsertElementOp* InsertElementOp::create(llvm_dialects::Builder& b, ::llvm::Value * vector, ::llvm::Value * value, ::llvm::Value * index, const llvm::Twine &instName ) {
1050
1050
::llvm::LLVMContext& context = b.getContext();
1051
1051
(void)context;
1052
1052
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1081,7 +1081,7 @@ value,
1081
1081
index
1082
1082
};
1083
1083
1084
- return ::llvm::cast<InsertElementOp>(b.CreateCall(fn, args, inst__name ));
1084
+ return ::llvm::cast<InsertElementOp>(b.CreateCall(fn, args, instName ));
1085
1085
}
1086
1086
1087
1087
@@ -1168,7 +1168,7 @@ index
1168
1168
1169
1169
const ::llvm::StringLiteral ReadOp::s_name{"xd.read" };
1170
1170
1171
- ReadOp* ReadOp::create(llvm_dialects::Builder& b, ::llvm::Type* dataType, const llvm::Twine &inst__name ) {
1171
+ ReadOp* ReadOp::create(llvm_dialects::Builder& b, ::llvm::Type* dataType, const llvm::Twine &instName ) {
1172
1172
::llvm::LLVMContext& context = b.getContext();
1173
1173
(void)context;
1174
1174
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1198,7 +1198,7 @@ index
1198
1198
assert(fn.getFunctionType() == fnType);
1199
1199
assert(::llvm::cast<::llvm::Function>(fn.getCallee())->getFunctionType() == fn.getFunctionType());
1200
1200
1201
- return ::llvm::cast<ReadOp>(b.CreateCall(fn, std::nullopt, inst__name ));
1201
+ return ::llvm::cast<ReadOp>(b.CreateCall(fn, std::nullopt, instName ));
1202
1202
}
1203
1203
1204
1204
@@ -1225,7 +1225,7 @@ index
1225
1225
1226
1226
const ::llvm::StringLiteral SetReadOp::s_name{"xd.set.read" };
1227
1227
1228
- SetReadOp* SetReadOp::create(llvm_dialects::Builder& b, ::llvm::Type* dataType, const llvm::Twine &inst__name ) {
1228
+ SetReadOp* SetReadOp::create(llvm_dialects::Builder& b, ::llvm::Type* dataType, const llvm::Twine &instName ) {
1229
1229
::llvm::LLVMContext& context = b.getContext();
1230
1230
(void)context;
1231
1231
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1255,7 +1255,7 @@ index
1255
1255
assert(fn.getFunctionType() == fnType);
1256
1256
assert(::llvm::cast<::llvm::Function>(fn.getCallee())->getFunctionType() == fn.getFunctionType());
1257
1257
1258
- return ::llvm::cast<SetReadOp>(b.CreateCall(fn, std::nullopt, inst__name ));
1258
+ return ::llvm::cast<SetReadOp>(b.CreateCall(fn, std::nullopt, instName ));
1259
1259
}
1260
1260
1261
1261
@@ -1282,7 +1282,7 @@ index
1282
1282
1283
1283
const ::llvm::StringLiteral SetWriteOp::s_name{"xd.set.write" };
1284
1284
1285
- SetWriteOp* SetWriteOp::create(llvm_dialects::Builder& b, ::llvm::Value * data, const llvm::Twine &inst__name ) {
1285
+ SetWriteOp* SetWriteOp::create(llvm_dialects::Builder& b, ::llvm::Value * data, const llvm::Twine &instName ) {
1286
1286
::llvm::LLVMContext& context = b.getContext();
1287
1287
(void)context;
1288
1288
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1312,7 +1312,7 @@ index
1312
1312
data
1313
1313
};
1314
1314
1315
- return ::llvm::cast<SetWriteOp>(b.CreateCall(fn, args, inst__name ));
1315
+ return ::llvm::cast<SetWriteOp>(b.CreateCall(fn, args, instName ));
1316
1316
}
1317
1317
1318
1318
@@ -1345,7 +1345,7 @@ data
1345
1345
1346
1346
const ::llvm::StringLiteral SizeOfOp::s_name{"xd.sizeof" };
1347
1347
1348
- SizeOfOp* SizeOfOp::create(llvm_dialects::Builder& b, ::llvm::Type * sizeofType, const llvm::Twine &inst__name ) {
1348
+ SizeOfOp* SizeOfOp::create(llvm_dialects::Builder& b, ::llvm::Type * sizeofType, const llvm::Twine &instName ) {
1349
1349
::llvm::LLVMContext& context = b.getContext();
1350
1350
(void)context;
1351
1351
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1375,7 +1375,7 @@ data
1375
1375
::llvm::PoisonValue::get(sizeofType)
1376
1376
};
1377
1377
1378
- return ::llvm::cast<SizeOfOp>(b.CreateCall(fn, args, inst__name ));
1378
+ return ::llvm::cast<SizeOfOp>(b.CreateCall(fn, args, instName ));
1379
1379
}
1380
1380
1381
1381
@@ -1419,7 +1419,7 @@ data
1419
1419
1420
1420
const ::llvm::StringLiteral StreamAddOp::s_name{"xd.stream.add" };
1421
1421
1422
- StreamAddOp* StreamAddOp::create(llvm_dialects::Builder& b, ::llvm::Value * ptr, ::llvm::Value * count, ::llvm::Value * initial, const llvm::Twine &inst__name ) {
1422
+ StreamAddOp* StreamAddOp::create(llvm_dialects::Builder& b, ::llvm::Value * ptr, ::llvm::Value * count, ::llvm::Value * initial, const llvm::Twine &instName ) {
1423
1423
::llvm::LLVMContext& context = b.getContext();
1424
1424
(void)context;
1425
1425
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1454,7 +1454,7 @@ count,
1454
1454
initial
1455
1455
};
1456
1456
1457
- return ::llvm::cast<StreamAddOp>(b.CreateCall(fn, args, inst__name ));
1457
+ return ::llvm::cast<StreamAddOp>(b.CreateCall(fn, args, instName ));
1458
1458
}
1459
1459
1460
1460
@@ -1511,7 +1511,7 @@ initial
1511
1511
1512
1512
const ::llvm::StringLiteral StreamMaxOp::s_name{"xd.stream.max" };
1513
1513
1514
- StreamMaxOp* StreamMaxOp::create(llvm_dialects::Builder& b, ::llvm::Value * ptr, ::llvm::Value * count, ::llvm::Value * initial, const llvm::Twine &inst__name ) {
1514
+ StreamMaxOp* StreamMaxOp::create(llvm_dialects::Builder& b, ::llvm::Value * ptr, ::llvm::Value * count, ::llvm::Value * initial, const llvm::Twine &instName ) {
1515
1515
::llvm::LLVMContext& context = b.getContext();
1516
1516
(void)context;
1517
1517
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1546,7 +1546,7 @@ count,
1546
1546
initial
1547
1547
};
1548
1548
1549
- return ::llvm::cast<StreamMaxOp>(b.CreateCall(fn, args, inst__name ));
1549
+ return ::llvm::cast<StreamMaxOp>(b.CreateCall(fn, args, instName ));
1550
1550
}
1551
1551
1552
1552
@@ -1603,7 +1603,7 @@ initial
1603
1603
1604
1604
const ::llvm::StringLiteral StreamMinOp::s_name{"xd.stream.min" };
1605
1605
1606
- StreamMinOp* StreamMinOp::create(llvm_dialects::Builder& b, ::llvm::Value * ptr, ::llvm::Value * count, ::llvm::Value * initial, const llvm::Twine &inst__name ) {
1606
+ StreamMinOp* StreamMinOp::create(llvm_dialects::Builder& b, ::llvm::Value * ptr, ::llvm::Value * count, ::llvm::Value * initial, const llvm::Twine &instName ) {
1607
1607
::llvm::LLVMContext& context = b.getContext();
1608
1608
(void)context;
1609
1609
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1638,7 +1638,7 @@ count,
1638
1638
initial
1639
1639
};
1640
1640
1641
- return ::llvm::cast<StreamMinOp>(b.CreateCall(fn, args, inst__name ));
1641
+ return ::llvm::cast<StreamMinOp>(b.CreateCall(fn, args, instName ));
1642
1642
}
1643
1643
1644
1644
@@ -1695,7 +1695,7 @@ initial
1695
1695
1696
1696
const ::llvm::StringLiteral WriteOp::s_name{"xd.write" };
1697
1697
1698
- WriteOp* WriteOp::create(llvm_dialects::Builder& b, ::llvm::Value * data, const llvm::Twine &inst__name ) {
1698
+ WriteOp* WriteOp::create(llvm_dialects::Builder& b, ::llvm::Value * data, const llvm::Twine &instName ) {
1699
1699
::llvm::LLVMContext& context = b.getContext();
1700
1700
(void)context;
1701
1701
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1725,7 +1725,7 @@ initial
1725
1725
data
1726
1726
};
1727
1727
1728
- return ::llvm::cast<WriteOp>(b.CreateCall(fn, args, inst__name ));
1728
+ return ::llvm::cast<WriteOp>(b.CreateCall(fn, args, instName ));
1729
1729
}
1730
1730
1731
1731
@@ -1758,7 +1758,7 @@ data
1758
1758
1759
1759
const ::llvm::StringLiteral WriteVarArgOp::s_name{"xd.write.vararg" };
1760
1760
1761
- WriteVarArgOp* WriteVarArgOp::create(llvm_dialects::Builder& b, ::llvm::Value * data, ::llvm::ArrayRef<::llvm::Value *> args, const llvm::Twine &inst__name ) {
1761
+ WriteVarArgOp* WriteVarArgOp::create(llvm_dialects::Builder& b, ::llvm::Value * data, ::llvm::ArrayRef<::llvm::Value *> args, const llvm::Twine &instName ) {
1762
1762
::llvm::LLVMContext& context = b.getContext();
1763
1763
(void)context;
1764
1764
::llvm::Module& module = *b.GetInsertBlock()->getModule();
@@ -1790,7 +1790,7 @@ data
1790
1790
1791
1791
arguments.append(args.begin(), args.end());
1792
1792
1793
- return ::llvm::cast<WriteVarArgOp>(b.CreateCall(fn, arguments, inst__name ));
1793
+ return ::llvm::cast<WriteVarArgOp>(b.CreateCall(fn, arguments, instName ));
1794
1794
}
1795
1795
1796
1796
0 commit comments