revmc_llvm/orc.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
//! Safe wrappers for LLVM ORC and LLJIT, which are not yet implemented in [`inkwell`].
//!
//! Header files implemented:
//! - `LLJIT.h`
//! - `LLJITUtils.h` (experimental, not available in `llvm-sys`)
//! - `Orc.h`
//! - `OrcEE.h` (experimental)
//!
//! Note that lifetimes are implicit here, I just didn't bother to add them.
#![allow(missing_debug_implementations)]
#![allow(clippy::new_without_default)]
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::too_many_arguments)]
use crate::llvm_string;
use inkwell::{
context::ContextRef,
llvm_sys::{
error::*,
orc2::{lljit::*, *},
prelude::*,
},
module::Module,
support::LLVMString,
targets::TargetMachine,
};
use std::{
ffi::{c_char, c_void, CStr, CString},
fmt,
marker::PhantomData,
mem::{self, MaybeUninit},
panic::AssertUnwindSafe,
ptr::{self, NonNull},
};
/// A thread-safe LLVM context.
///
/// Must use a lock to access the context in multi-threaded scenarios.
///
/// See [the ORCv2 docs](https://releases.llvm.org/17.0.1/docs/ORCv2.html).
pub struct ThreadSafeContext {
ctx: LLVMOrcThreadSafeContextRef,
}
impl ThreadSafeContext {
/// Creates a new thread-safe context.
pub fn new() -> Self {
unsafe { Self::from_inner(LLVMOrcCreateNewThreadSafeContext()) }
}
/// Wraps a raw pointer.
pub unsafe fn from_inner(ctx: LLVMOrcThreadSafeContextRef) -> Self {
Self { ctx }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcThreadSafeContextRef {
self.ctx
}
/// Get a reference to the wrapped LLVMContext.
pub fn get_context(&self) -> ContextRef<'_> {
let ptr = unsafe { LLVMOrcThreadSafeContextGetContext(self.as_inner()) };
// `ContextRef::new` is private.
unsafe { std::mem::transmute(ptr) }
}
/// Create a ThreadSafeModule wrapper around the given LLVM module.
pub fn create_module<'ctx>(&'ctx self, module: Module<'ctx>) -> ThreadSafeModule {
ThreadSafeModule::create_in_context(module, self)
}
}
unsafe impl Send for ThreadSafeContext {}
impl Drop for ThreadSafeContext {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeThreadSafeContext(self.ctx) };
}
}
/// A thread-safe module.
///
/// See [the ORCv2 docs](https://releases.llvm.org/17.0.1/docs/ORCv2.html).
// NOTE: A lifetime is not needed according to `LLVMOrcCreateNewThreadSafeContext`
// > Ownership of the underlying ThreadSafeContext data is shared: Clients can and should dispose of
// > their ThreadSafeContext as soon as they no longer need to refer to it directly. Other
// > references (e.g. from ThreadSafeModules) will keep the data alive as long as it is needed.
pub struct ThreadSafeModule {
ptr: LLVMOrcThreadSafeModuleRef,
}
impl ThreadSafeModule {
/// Creates a new module with the given name in a new context.
pub fn create(name: &str) -> (Self, ThreadSafeContext) {
let cx = ThreadSafeContext::new();
let m = cx.get_context().create_module(name);
(Self::create_in_context(m, &cx), cx)
}
/// Create a ThreadSafeModule wrapper around the given LLVM module.
pub fn create_in_context<'ctx>(module: Module<'ctx>, ctx: &'ctx ThreadSafeContext) -> Self {
let module = mem::ManuallyDrop::new(module);
let ptr = unsafe { LLVMOrcCreateNewThreadSafeModule(module.as_mut_ptr(), ctx.as_inner()) };
Self { ptr }
}
/// Wraps a raw pointer.
pub unsafe fn from_inner(ptr: LLVMOrcThreadSafeModuleRef) -> Self {
Self { ptr }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcThreadSafeModuleRef {
self.ptr
}
/// Runs the given closure with the module.
///
/// This implicitly locks the associated context.
pub fn with_module<'tsm>(
&'tsm self,
mut f: impl FnMut(&Module<'tsm>) -> Result<(), String>,
) -> Result<(), LLVMString> {
extern "C" fn shim(ctx: *mut c_void, m: LLVMModuleRef) -> LLVMErrorRef {
let f = ctx.cast::<&mut dyn FnMut(&Module<'_>) -> Result<(), String>>();
let m = mem::ManuallyDrop::new(unsafe { Module::new(m) });
let res = std::panic::catch_unwind(AssertUnwindSafe(|| unsafe { (*f)(&m) }));
cvt_cb_res(res)
}
let mut f = &mut f as &mut dyn FnMut(&Module<'tsm>) -> Result<(), String>;
let ctx = &mut f as *mut _ as *mut c_void;
cvt(unsafe { LLVMOrcThreadSafeModuleWithModuleDo(self.as_inner(), shim, ctx) })
}
}
unsafe impl Send for ThreadSafeModule {}
impl Drop for ThreadSafeModule {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeThreadSafeModule(self.ptr) };
}
}
/// A symbol string pool reference.
#[repr(C)]
pub struct SymbolStringPoolRef {
ptr: LLVMOrcSymbolStringPoolRef,
}
impl SymbolStringPoolRef {
/// Wraps a raw pointer.
pub unsafe fn from_inner(ptr: LLVMOrcSymbolStringPoolRef) -> Self {
Self { ptr }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcSymbolStringPoolRef {
self.ptr
}
/// Clear all unreferenced symbol string pool entries.
///
/// This can be called at any time to release unused entries in the
/// ExecutionSession's string pool. Since it locks the pool (preventing
/// interning of any new strings) it is recommended that it only be called
/// infrequently, ideally when the caller has reason to believe that some
/// entries will have become unreferenced, e.g. after removing a module or
/// closing a JITDylib.
pub fn clear_dead_entries(&self) {
unsafe { LLVMOrcSymbolStringPoolClearDeadEntries(self.as_inner()) };
}
}
/// A reference-counted unique string interned in a `SymbolStringPool`.
#[derive(PartialEq, Eq, Hash)]
#[repr(C)]
pub struct SymbolStringPoolEntry {
ptr: NonNull<LLVMOrcOpaqueSymbolStringPoolEntry>,
}
impl Clone for SymbolStringPoolEntry {
fn clone(&self) -> Self {
unsafe { LLVMOrcRetainSymbolStringPoolEntry(self.as_inner()) };
Self { ..*self }
}
}
impl fmt::Debug for SymbolStringPoolEntry {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.as_cstr().fmt(f)
}
}
impl std::ops::Deref for SymbolStringPoolEntry {
type Target = CStr;
fn deref(&self) -> &Self::Target {
self.as_cstr()
}
}
impl SymbolStringPoolEntry {
/// Wraps a raw pointer.
pub unsafe fn from_inner(ptr: LLVMOrcSymbolStringPoolEntryRef) -> Option<Self> {
NonNull::new(ptr).map(|ptr| Self { ptr })
}
/// Wraps a raw pointer. Must not be null.
pub unsafe fn from_inner_unchecked(ptr: LLVMOrcSymbolStringPoolEntryRef) -> Self {
Self { ptr: NonNull::new_unchecked(ptr) }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcSymbolStringPoolEntryRef {
self.ptr.as_ptr()
}
/// Convert to a C string.
pub fn as_cstr(&self) -> &CStr {
unsafe { CStr::from_ptr(LLVMOrcSymbolStringPoolEntryStr(self.as_inner())) }
}
}
impl Drop for SymbolStringPoolEntry {
fn drop(&mut self) {
unsafe { LLVMOrcReleaseSymbolStringPoolEntry(self.as_inner()) }
}
}
/// An evaluated symbol.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
#[repr(C)]
pub struct EvaluatedSymbol {
/// The address of the symbol.
pub address: u64,
/// The flags of the symbol.
pub flags: SymbolFlags,
}
impl EvaluatedSymbol {
/// Create a new EvaluatedSymbol from the given address and flags.
pub fn new(address: u64, flags: SymbolFlags) -> Self {
Self { address, flags }
}
/// Create a new EvaluatedSymbol from the given flags.
pub fn from_flags(flags: SymbolFlags) -> Self {
Self { address: 0, flags }
}
/// Create a new EvaluatedSymbol from the given address.
pub fn from_address(address: usize) -> Self {
Self { address: address as u64, flags: SymbolFlags::none() }
}
}
/// Symbol flags.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
#[repr(C)]
pub struct SymbolFlags {
/// The generic flags.
pub generic: u8,
/// The target flags.
pub target: u8,
}
impl SymbolFlags {
/// Create a new, empty SymbolFlags.
pub fn none() -> Self {
Self { generic: LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsNone as u8, target: 0 }
}
/// Set the `Exported` flag.
pub fn set_exported(&mut self) {
self.generic |= LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsExported as u8;
}
/// Set the `Exported` flag.
pub fn with_exported(mut self) -> Self {
self.set_exported();
self
}
/// Returns `true` if the `Exported` flag is set.
pub fn is_exported(&self) -> bool {
(self.generic & LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsExported as u8) != 0
}
/// Set the `Weak` flag.
pub fn set_weak(&mut self) {
self.generic |= LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsWeak as u8;
}
/// Set the `Weak` flag.
pub fn weak(mut self) -> Self {
self.set_weak();
self
}
/// Returns `true` if the `Weak` flag is set.
pub fn is_weak(&self) -> bool {
(self.generic & LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsWeak as u8) != 0
}
/// Set the `Callable` flag.
pub fn set_callable(&mut self) {
self.generic |= LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsCallable as u8;
}
/// Set the `Callable` flag.
pub fn callable(mut self) -> Self {
self.set_callable();
self
}
/// Returns `true` if the `Callable` flag is set.
pub fn is_callable(&self) -> bool {
(self.generic & LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsCallable as u8) != 0
}
/// Set the `MaterializationSideEffectsOnly` flag.
pub fn set_materialization_side_effects_only(&mut self) {
self.generic |=
LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsMaterializationSideEffectsOnly
as u8;
}
/// Set the `MaterializationSideEffectsOnly` flag.
pub fn materialization_side_effects_only(mut self) -> Self {
self.set_materialization_side_effects_only();
self
}
/// Returns `true` if the `MaterializationSideEffectsOnly` flag is set.
pub fn is_materialization_side_effects_only(&self) -> bool {
(self.generic
& LLVMJITSymbolGenericFlags::LLVMJITSymbolGenericFlagsMaterializationSideEffectsOnly
as u8)
!= 0
}
/// Add a generic flag.
pub fn set_generic(&mut self, flag: LLVMJITSymbolGenericFlags) {
self.generic |= flag as u8;
}
/// Add a generic flag.
pub fn with_generic(mut self, flag: LLVMJITSymbolGenericFlags) -> Self {
self.set_generic(flag);
self
}
/// Add a target flag.
pub fn set_target(&mut self, flag: LLVMJITSymbolTargetFlags) {
self.target |= flag;
}
/// Add a target flag.
pub fn with_target(mut self, flag: LLVMJITSymbolTargetFlags) -> Self {
self.set_target(flag);
self
}
}
/// A pair of a symbol name and flags.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[repr(C)]
pub struct SymbolFlagsMapPair {
/// The symbol name.
pub name: SymbolStringPoolEntry,
/// The symbol flags.
pub flags: SymbolFlags,
}
impl SymbolFlagsMapPair {
/// Create a new pair.
pub fn new(name: SymbolStringPoolEntry, flags: SymbolFlags) -> Self {
Self { name, flags }
}
}
/// A pair of a symbol name and an evaluated symbol.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[repr(C)]
pub struct SymbolMapPair {
/// The symbol name.
pub name: SymbolStringPoolEntry,
/// The evaluated symbol.
pub evaluated_symbol: EvaluatedSymbol,
}
impl SymbolMapPair {
/// Create a new pair.
pub fn new(name: SymbolStringPoolEntry, evaluated_symbol: EvaluatedSymbol) -> Self {
Self { name, evaluated_symbol }
}
}
/// An owned list of symbol flags map pairs.
///
/// Returned by [`MaterializationResponsibilityRef::get_symbols`].
pub struct SymbolFlagsMapPairs<'a>(&'a [SymbolFlagsMapPair]);
impl<'a> SymbolFlagsMapPairs<'a> {
/// Returns the slice of pairs.
pub fn as_slice(&self) -> &'a [SymbolFlagsMapPair] {
self.0
}
}
impl std::ops::Deref for SymbolFlagsMapPairs<'_> {
type Target = [SymbolFlagsMapPair];
fn deref(&self) -> &Self::Target {
self.0
}
}
impl Drop for SymbolFlagsMapPairs<'_> {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeCSymbolFlagsMap(self.0.as_ptr().cast_mut().cast()) };
}
}
/// A materialization unit.
pub struct MaterializationUnit {
mu: LLVMOrcMaterializationUnitRef,
}
impl MaterializationUnit {
/// Create a custom MaterializationUnit.
pub fn new_custom(
name: &CStr,
syms: Vec<SymbolFlagsMapPair>,
init_sym: Option<SymbolStringPoolEntry>,
mu: Box<dyn CustomMaterializationUnit>,
) -> Self {
extern "C" fn materialize(ctx: *mut c_void, mr: LLVMOrcMaterializationResponsibilityRef) {
// Ownership of the Ctx and MR arguments passes to the callback which must adhere to the
// LLVMOrcMaterializationResponsibilityRef contract (see comment for that type).
//
// If this callback is called then the LLVMOrcMaterializationUnitDestroy callback will
// NOT be called.
let ctx = unsafe { Box::from_raw(ctx.cast::<Box<dyn CustomMaterializationUnit>>()) };
let mr = unsafe { MaterializationResponsibility::from_inner(mr) };
let res = std::panic::catch_unwind(AssertUnwindSafe(move || ctx.materialize(mr)));
if let Err(e) = res {
error!(msg=?panic_payload(&e), "materialize callback panicked");
}
}
extern "C" fn discard(
ctx: *mut c_void,
jd: LLVMOrcJITDylibRef,
symbol: LLVMOrcSymbolStringPoolEntryRef,
) {
// Ownership of JD and Symbol remain with the caller:
// these arguments should not be disposed of or released.
let ctx = unsafe { &mut **ctx.cast::<Box<dyn CustomMaterializationUnit>>() };
let jd = unsafe { JITDylibRef::from_inner_unchecked(jd) };
let symbol = mem::ManuallyDrop::new(unsafe {
SymbolStringPoolEntry::from_inner_unchecked(symbol)
});
let res = std::panic::catch_unwind(AssertUnwindSafe(|| ctx.discard(jd, &symbol)));
if let Err(e) = res {
error!(msg=?panic_payload(&e), "discard callback panicked");
}
}
extern "C" fn destroy(ctx: *mut c_void) {
// If a custom MaterializationUnit is destroyed before its Materialize function is
// called then this function will be called to provide an opportunity for the underlying
// program representation to be destroyed.
let ctx = unsafe { Box::from_raw(ctx.cast::<Box<dyn CustomMaterializationUnit>>()) };
let res = std::panic::catch_unwind(AssertUnwindSafe(|| drop(ctx)));
if let Err(e) = res {
error!(msg=?panic_payload(&e), "destroy callback panicked");
}
}
let ctx = Box::into_raw(Box::new(mu)).cast();
let init_sym = if let Some(init_sym) = init_sym {
mem::ManuallyDrop::new(init_sym).as_inner()
} else {
ptr::null_mut()
};
let syms = ManuallyDropElements::new(syms);
unsafe {
Self::new_custom_raw(
name,
ctx,
syms.as_ptr().cast_mut().cast(),
syms.len(),
init_sym,
materialize,
discard,
destroy,
)
}
}
/// Create a custom MaterializationUnit.
///
/// See [`Self::new_custom`].
pub unsafe fn new_custom_raw(
name: &CStr,
ctx: *mut c_void,
syms: LLVMOrcCSymbolFlagsMapPairs,
num_syms: usize,
init_sym: LLVMOrcSymbolStringPoolEntryRef,
materialize: LLVMOrcMaterializationUnitMaterializeFunction,
discard: LLVMOrcMaterializationUnitDiscardFunction,
destroy: LLVMOrcMaterializationUnitDestroyFunction,
) -> Self {
Self::from_inner(LLVMOrcCreateCustomMaterializationUnit(
name.as_ptr(),
ctx,
syms,
num_syms,
init_sym,
materialize,
discard,
destroy,
))
}
/// Create a MaterializationUnit to define the given symbols as pointing to the corresponding
/// raw addresses.
pub fn absolute_symbols(syms: Vec<SymbolMapPair>) -> Self {
let syms = ManuallyDropElements::new(syms);
unsafe { Self::absolute_symbols_raw(syms.as_ptr().cast_mut().cast(), syms.len()) }
}
/// Create a MaterializationUnit to define the given symbols as pointing to the corresponding
/// raw addresses.
///
/// See [`Self::absolute_symbols`].
pub unsafe fn absolute_symbols_raw(syms: LLVMOrcCSymbolMapPairs, len: usize) -> Self {
unsafe { Self::from_inner(LLVMOrcAbsoluteSymbols(syms, len)) }
}
// TODO: fn lazy_reexports
/// Wraps a raw pointer.
pub unsafe fn from_inner(mu: LLVMOrcMaterializationUnitRef) -> Self {
Self { mu }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcMaterializationUnitRef {
self.mu
}
}
impl Drop for MaterializationUnit {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeMaterializationUnit(self.as_inner()) };
}
}
/// A custom materialization unit.
///
/// Use with [`MaterializationUnit::new_custom`].
pub trait CustomMaterializationUnit {
/// Materialize callback.
fn materialize(self: Box<Self>, mr: MaterializationResponsibility);
/// Discard callback.
fn discard(&mut self, jd: JITDylibRef, symbol: &SymbolStringPoolEntry);
// fn destroy is Drop
}
/// An owned materialization responsibility.
pub struct MaterializationResponsibility {
mr: LLVMOrcMaterializationResponsibilityRef,
}
impl MaterializationResponsibility {
/// Wraps a raw pointer.
pub unsafe fn from_inner(mr: LLVMOrcMaterializationResponsibilityRef) -> Self {
Self { mr }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcMaterializationResponsibilityRef {
self.mr
}
/// Returns a reference to the MaterializationResponsibility.
#[inline]
pub fn as_ref(&self) -> MaterializationResponsibilityRef<'_> {
unsafe { MaterializationResponsibilityRef::from_inner(self.as_inner()) }
}
}
impl Drop for MaterializationResponsibility {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeMaterializationResponsibility(self.as_inner()) };
}
}
/// A reference to a materialization responsibility.
pub struct MaterializationResponsibilityRef<'mr> {
mr: LLVMOrcMaterializationResponsibilityRef,
_marker: PhantomData<&'mr ()>,
}
impl<'mr> MaterializationResponsibilityRef<'mr> {
/// Wraps a raw pointer.
pub unsafe fn from_inner(mr: LLVMOrcMaterializationResponsibilityRef) -> Self {
Self { mr, _marker: PhantomData }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcMaterializationResponsibilityRef {
self.mr
}
/// Returns the target JITDylib that these symbols are being materialized into.
pub fn get_target_dylib(&self) -> JITDylibRef {
unsafe {
JITDylibRef::from_inner_unchecked(LLVMOrcMaterializationResponsibilityGetTargetDylib(
self.as_inner(),
))
}
}
/// Returns the ExecutionSession for this MaterializationResponsibility.
pub fn get_execution_session(&self) -> ExecutionSessionRef<'mr> {
unsafe {
ExecutionSessionRef::from_inner(
LLVMOrcMaterializationResponsibilityGetExecutionSession(self.as_inner()),
)
}
}
/// Returns the symbol flags map for this responsibility instance.
pub fn get_symbols(&self) -> SymbolFlagsMapPairs<'mr> {
/*
* The length of the array is returned in NumPairs and the caller is responsible
* for the returned memory and needs to call LLVMOrcDisposeCSymbolFlagsMap.
*
* To use the returned symbols beyond the lifetime of the
* MaterializationResponsibility requires the caller to retain the symbols
* explicitly.
*/
let mut len = MaybeUninit::uninit();
let data = unsafe {
LLVMOrcMaterializationResponsibilityGetSymbols(self.as_inner(), len.as_mut_ptr())
};
SymbolFlagsMapPairs(unsafe { std::slice::from_raw_parts(data.cast(), len.assume_init()) })
}
/// Returns the initialization pseudo-symbol, if any.
///
/// This symbol will also be present in the SymbolFlagsMap for this
/// MaterializationResponsibility object.
pub fn get_initializer_symbol(&self) -> Option<SymbolStringPoolEntry> {
let ptr =
unsafe { LLVMOrcMaterializationResponsibilityGetInitializerSymbol(self.as_inner()) };
unsafe { SymbolStringPoolEntry::from_inner(ptr) }
}
/// Returns the names of any symbols covered by this MaterializationResponsibility object that
/// have queries pending.
///
/// This information can be used to return responsibility for unrequested symbols back to the
/// JITDylib via the delegate method.
pub fn get_requested_symbols(&self) -> &[SymbolStringPoolEntry] {
let mut len = MaybeUninit::uninit();
let ptr = unsafe {
LLVMOrcMaterializationResponsibilityGetRequestedSymbols(
self.as_inner(),
len.as_mut_ptr(),
)
};
unsafe { std::slice::from_raw_parts(ptr.cast(), len.assume_init()) }
}
/// Notifies the target JITDylib that the given symbols have been resolved.
pub fn notify_resolved(&self, syms: &[SymbolFlagsMapPair]) -> Result<(), LLVMString> {
cvt(unsafe {
LLVMOrcMaterializationResponsibilityNotifyResolved(
self.as_inner(),
syms.as_ptr().cast_mut().cast(),
syms.len(),
)
})
}
/// Notifies the target JITDylib (and any pending queries on that JITDylib)
/// that all symbols covered by this MaterializationResponsibility instance
/// have been emitted.
pub fn notify_emitted(&self) -> Result<(), LLVMString> {
cvt(unsafe { LLVMOrcMaterializationResponsibilityNotifyEmitted(self.as_inner()) })
}
/// Notify all not-yet-emitted covered by this MaterializationResponsibility instance that an
/// error has occurred.
///
/// This will remove all symbols covered by this MaterializationResponsibility from the target
/// JITDylib, and send an error to any queries waiting on these symbols.
pub fn fail_materialization(&self) {
unsafe { LLVMOrcMaterializationResponsibilityFailMaterialization(self.as_inner()) };
}
/// Transfers responsibility to the given MaterializationUnit for all symbols defined by that
/// MaterializationUnit.
///
/// This allows materializers to break up work based on run-time information (e.g.
/// by introspecting which symbols have actually been looked up and
/// materializing only those).
pub fn replace(&self, mu: MaterializationUnit) -> Result<(), LLVMString> {
let mu = mem::ManuallyDrop::new(mu);
cvt(unsafe { LLVMOrcMaterializationResponsibilityReplace(self.as_inner(), mu.as_inner()) })
}
/// Delegates responsibility for the given symbols to the returned
/// materialization responsibility. Useful for breaking up work between
/// threads, or different kinds of materialization processes.
///
/// The caller retains responsibility of the the passed
/// MaterializationResponsibility.
pub fn delegate(&self, syms: &[SymbolStringPoolEntry]) -> Result<Self, LLVMString> {
let mut res = MaybeUninit::uninit();
cvt(unsafe {
LLVMOrcMaterializationResponsibilityDelegate(
self.as_inner(),
syms.as_ptr().cast_mut().cast(),
syms.len(),
res.as_mut_ptr(),
)
})?;
Ok(unsafe { Self::from_inner(res.assume_init()) })
}
}
/// A resource tracker.
///
/// ResourceTrackers allow you to remove code.
pub struct ResourceTracker {
rt: LLVMOrcResourceTrackerRef,
}
impl ResourceTracker {
/// Wraps a raw pointer.
pub unsafe fn from_inner(rt: LLVMOrcResourceTrackerRef) -> Self {
Self { rt }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcResourceTrackerRef {
self.rt
}
/// Remove all resources associated with this tracker.
pub fn remove(&self) -> Result<(), LLVMString> {
cvt(unsafe { LLVMOrcResourceTrackerRemove(self.as_inner()) })
}
/// Transfers tracking of all resources associated with this resource tracker to the given
/// resource tracker.
pub fn transfer_to(&self, rt: &Self) {
unsafe { LLVMOrcResourceTrackerTransferTo(self.as_inner(), rt.as_inner()) };
}
}
impl Drop for ResourceTracker {
fn drop(&mut self) {
unsafe { LLVMOrcReleaseResourceTracker(self.as_inner()) };
}
}
/// A JIT execution session reference.
///
/// Returned by [`LLJIT::get_execution_session`] and
/// [`MaterializationResponsibilityRef::get_execution_session`].
///
/// ExecutionSession represents the JIT'd program and provides context for the JIT: It contains the
/// JITDylibs, error reporting mechanisms, and dispatches the materializers.
///
/// See [the ORCv2 docs](https://releases.llvm.org/17.0.1/docs/ORCv2.html).
pub struct ExecutionSessionRef<'ee> {
es: LLVMOrcExecutionSessionRef,
_marker: PhantomData<&'ee ()>,
}
impl ExecutionSessionRef<'_> {
/// Wraps a raw pointer.
pub unsafe fn from_inner(es: LLVMOrcExecutionSessionRef) -> Self {
Self { es, _marker: PhantomData }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcExecutionSessionRef {
self.es
}
/// Intern a string in the ExecutionSession's SymbolStringPool and return a reference to it.
pub fn intern(&self, name: &CStr) -> SymbolStringPoolEntry {
unsafe {
SymbolStringPoolEntry::from_inner_unchecked(LLVMOrcExecutionSessionIntern(
self.as_inner(),
name.as_ptr(),
))
}
}
/// Returns the JITDylib with the given name, if any.
pub fn get_dylib_by_name(&self, name: &CStr) -> Option<JITDylibRef> {
unsafe {
let dylib = LLVMOrcExecutionSessionGetJITDylibByName(self.as_inner(), name.as_ptr());
JITDylibRef::from_inner(dylib)
}
}
/// Create a "bare" JITDylib.
///
/// The client is responsible for ensuring that the JITDylib's name is unique.
///
/// This call does not install any library code or symbols into the newly created JITDylib. The
/// client is responsible for all configuration.
pub fn create_bare_jit_dylib(&self, name: &CStr) -> JITDylibRef {
debug_assert!(self.get_dylib_by_name(name).is_none());
unsafe {
JITDylibRef::from_inner_unchecked(LLVMOrcExecutionSessionCreateBareJITDylib(
self.as_inner(),
name.as_ptr(),
))
}
}
/// Create a JITDylib.
///
/// The client is responsible for ensuring that the JITDylib's name is unique.
///
/// If a Platform is attached to the ExecutionSession then Platform::setupJITDylib will be
/// called to install standard platform symbols (e.g. standard library interposes). If no
/// Platform is installed then this call is equivalent to [Self::create_bare_jit_dylib] and will
/// always return success.
pub fn create_jit_dylib(&self, name: &CStr) -> Result<JITDylibRef, LLVMString> {
debug_assert!(self.get_dylib_by_name(name).is_none());
let mut res = MaybeUninit::uninit();
cvt(unsafe {
LLVMOrcExecutionSessionCreateJITDylib(self.as_inner(), res.as_mut_ptr(), name.as_ptr())
})?;
Ok(unsafe { JITDylibRef::from_inner_unchecked(res.assume_init()) })
}
/// Sets the default error reporter to the ExecutionSession.
///
/// Uses [`tracing::error!`] to log the error message.
pub fn set_default_error_reporter(&self) {
self.set_error_reporter(|msg| error!(msg = %msg.to_string_lossy(), "LLVM error"))
}
/// Attach a custom error reporter function to the ExecutionSession.
pub fn set_error_reporter(&self, f: fn(&CStr)) {
extern "C" fn shim(ctx: *mut c_void, err: LLVMErrorRef) {
let f = ctx as *mut fn(&CStr);
let Err(e) = cvt(err) else { return };
let res = std::panic::catch_unwind(AssertUnwindSafe(|| unsafe { (*f)(&e) }));
if let Err(e) = res {
error!(msg=?panic_payload(&e), "error reporter closure panicked");
}
}
let ctx = f as *mut c_void;
unsafe { LLVMOrcExecutionSessionSetErrorReporter(self.as_inner(), shim, ctx) };
}
}
/// A JIT dynamic library reference.
///
/// JITDylibs provide the symbol tables.
pub struct JITDylibRef {
dylib: NonNull<LLVMOrcOpaqueJITDylib>,
}
impl JITDylibRef {
/// Wraps a raw pointer.
pub unsafe fn from_inner(dylib: LLVMOrcJITDylibRef) -> Option<Self> {
NonNull::new(dylib).map(|dylib| Self { dylib })
}
/// Wraps a raw pointer. Must not be null.
pub unsafe fn from_inner_unchecked(dylib: LLVMOrcJITDylibRef) -> Self {
Self { dylib: NonNull::new_unchecked(dylib) }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcJITDylibRef {
self.dylib.as_ptr()
}
/// Return a reference to a newly created resource tracker associated with JD.
pub fn create_resource_tracker(&self) -> ResourceTracker {
unsafe {
ResourceTracker::from_inner(LLVMOrcJITDylibCreateResourceTracker(self.as_inner()))
}
}
/// Return a reference to the default resource tracker for the given JITDylib.
pub fn get_default_resource_tracker(&self) -> ResourceTracker {
unsafe {
ResourceTracker::from_inner(LLVMOrcJITDylibGetDefaultResourceTracker(self.as_inner()))
}
}
/// Add the given MaterializationUnit to the given JITDylib.
pub fn define(&self, mu: MaterializationUnit) -> Result<(), (LLVMString, MaterializationUnit)> {
// If this operation succeeds then JITDylib JD will take ownership of MU.
// If the operation fails then ownership remains with the caller who should call
// LLVMOrcDisposeMaterializationUnit to destroy it.
cvt(unsafe { LLVMOrcJITDylibDefine(self.as_inner(), mu.as_inner()) }).map_err(|e| (e, mu))
}
/// Calls remove on all trackers associated with this JITDylib.
pub fn clear(&self) -> Result<(), LLVMString> {
cvt(unsafe { LLVMOrcJITDylibClear(self.as_inner()) })
}
/// Add a DefinitionGenerator to the given JITDylib.
pub fn add_generator(&self, dg: DefinitionGenerator) {
// The JITDylib will take ownership of the given generator:
// the client is no longer responsible for managing its memory.
let dg = mem::ManuallyDrop::new(dg);
unsafe { LLVMOrcJITDylibAddGenerator(self.as_inner(), dg.as_inner()) };
}
}
/// Definition generator.
pub struct DefinitionGenerator {
dg: LLVMOrcDefinitionGeneratorRef,
}
impl DefinitionGenerator {
/// Creates a new custom DefinitionGenerator.
pub fn new_custom(generator: Box<dyn CustomDefinitionGenerator>) -> Self {
extern "C" fn try_to_generate(
generator_obj: LLVMOrcDefinitionGeneratorRef,
ctx: *mut c_void,
lookup_state: *mut LLVMOrcLookupStateRef,
kind: LLVMOrcLookupKind,
jd: LLVMOrcJITDylibRef,
jd_lookup_flags: LLVMOrcJITDylibLookupFlags,
lookup_set: LLVMOrcCLookupSet,
lookup_set_size: usize,
) -> LLVMErrorRef {
let generator = unsafe { &mut **ctx.cast::<Box<dyn CustomDefinitionGenerator>>() };
let lookup_state = unsafe { &mut *lookup_state };
let jd = unsafe { JITDylibRef::from_inner_unchecked(jd) };
let lookup_set = unsafe { std::slice::from_raw_parts(lookup_set, lookup_set_size) };
let res = std::panic::catch_unwind(AssertUnwindSafe(|| {
generator.try_to_generate(
generator_obj,
lookup_state,
kind,
jd,
jd_lookup_flags,
lookup_set,
)
}));
cvt_cb_res(res)
}
extern "C" fn dispose(ctx: *mut c_void) {
let generator =
unsafe { Box::from_raw(ctx.cast::<Box<dyn CustomDefinitionGenerator>>()) };
let res = std::panic::catch_unwind(AssertUnwindSafe(|| drop(generator)));
if let Err(e) = res {
error!(msg=?panic_payload(&e), "dispose callback panicked");
}
}
let ctx = Box::into_raw(Box::new(generator)).cast();
unsafe { Self::new_custom_raw(try_to_generate, ctx, dispose) }
}
/// Creates a new custom DefinitionGenerator.
///
/// See [`Self::new_custom`].
pub unsafe fn new_custom_raw(
f: LLVMOrcCAPIDefinitionGeneratorTryToGenerateFunction,
ctx: *mut c_void,
dispose: LLVMOrcDisposeCAPIDefinitionGeneratorFunction,
) -> Self {
Self::from_inner(LLVMOrcCreateCustomCAPIDefinitionGenerator(f, ctx, dispose))
}
/// Wraps a raw pointer.
pub unsafe fn from_inner(dg: LLVMOrcDefinitionGeneratorRef) -> Self {
Self { dg }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcDefinitionGeneratorRef {
self.dg
}
}
impl Drop for DefinitionGenerator {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeDefinitionGenerator(self.as_inner()) };
}
}
/// A custom definition generator.
pub trait CustomDefinitionGenerator {
/// A custom generator function.
///
/// This can be used to create a custom generator object using
/// LLVMOrcCreateCustomCAPIDefinitionGenerator. The resulting object can be attached to a
/// JITDylib, via LLVMOrcJITDylibAddGenerator, to receive callbacks when lookups fail to match
/// existing definitions.
///
/// GeneratorObj will contain the address of the custom generator object.
///
/// Ctx will contain the context object passed to LLVMOrcCreateCustomCAPIDefinitionGenerator.
///
/// LookupState will contain a pointer to an LLVMOrcLookupStateRef object. This can optionally
/// be modified to make the definition generation process asynchronous: If the LookupStateRef
/// value is copied, and the original LLVMOrcLookupStateRef set to null, the lookup will be
/// suspended. Once the asynchronous definition process has been completed clients must call
/// LLVMOrcLookupStateContinueLookup to continue the lookup (this should be done
/// unconditionally, even if errors have occurred in the mean time, to free the lookup state
/// memory and notify the query object of the failures). If LookupState is captured this
/// function must return LLVMErrorSuccess.
///
/// The Kind argument can be inspected to determine the lookup kind (e.g.
/// as-if-during-static-link, or as-if-during-dlsym).
///
/// The JD argument specifies which JITDylib the definitions should be generated into.
///
/// The JDLookupFlags argument can be inspected to determine whether the original lookup
/// included non-exported symbols.
///
/// Finally, the LookupSet argument contains the set of symbols that could not be found in JD
/// already (the set of generation candidates).
fn try_to_generate(
&mut self,
generator_obj: LLVMOrcDefinitionGeneratorRef,
lookup_state: &mut LLVMOrcLookupStateRef,
kind: LLVMOrcLookupKind,
jd: JITDylibRef,
jd_lookup_flags: LLVMOrcJITDylibLookupFlags,
lookup_set: &[LLVMOrcCLookupSetElement],
) -> Result<(), String>;
}
impl<T> CustomDefinitionGenerator for T
where
T: FnMut(
LLVMOrcDefinitionGeneratorRef,
&mut LLVMOrcLookupStateRef,
LLVMOrcLookupKind,
JITDylibRef,
LLVMOrcJITDylibLookupFlags,
&[LLVMOrcCLookupSetElement],
) -> Result<(), String>,
{
#[inline]
fn try_to_generate(
&mut self,
generator_obj: LLVMOrcDefinitionGeneratorRef,
lookup_state: &mut LLVMOrcLookupStateRef,
kind: LLVMOrcLookupKind,
jd: JITDylibRef,
jd_lookup_flags: LLVMOrcJITDylibLookupFlags,
lookup_set: &[LLVMOrcCLookupSetElement],
) -> Result<(), String> {
self(generator_obj, lookup_state, kind, jd, jd_lookup_flags, lookup_set)
}
}
/// [`LLVMOrcJITTargetMachineBuilderRef`], used in [`LLJITBuilder`].
pub struct JITTargetMachineBuilder {
builder: LLVMOrcJITTargetMachineBuilderRef,
}
impl JITTargetMachineBuilder {
/// Create a JITTargetMachineBuilder from the given TargetMachine template.
pub fn new(tm: TargetMachine) -> Self {
let tm = mem::ManuallyDrop::new(tm);
unsafe {
Self::from_inner(LLVMOrcJITTargetMachineBuilderCreateFromTargetMachine(tm.as_mut_ptr()))
}
}
/// Create a JITTargetMachineBuilder by detecting the host.
pub fn detect_host() -> Result<Self, LLVMString> {
let mut res = MaybeUninit::uninit();
cvt(unsafe { LLVMOrcJITTargetMachineBuilderDetectHost(res.as_mut_ptr()) })?;
Ok(Self { builder: unsafe { res.assume_init() } })
}
/// Wraps a raw pointer.
pub unsafe fn from_inner(builder: LLVMOrcJITTargetMachineBuilderRef) -> Self {
Self { builder }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcJITTargetMachineBuilderRef {
self.builder
}
/// Returns the target triple for the given JITTargetMachineBuilder as a string.
pub fn get_target_triple(&self) -> LLVMString {
unsafe { llvm_string(LLVMOrcJITTargetMachineBuilderGetTargetTriple(self.as_inner())) }
}
/// Sets the target triple for the given JITTargetMachineBuilder to the given string.
pub fn set_target_triple(&self, triple: &CStr) {
unsafe { LLVMOrcJITTargetMachineBuilderSetTargetTriple(self.as_inner(), triple.as_ptr()) }
}
}
impl Drop for JITTargetMachineBuilder {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeJITTargetMachineBuilder(self.builder) }
}
}
/// Lazily-initialized [`LLJIT`] builder.
#[must_use]
pub struct LLJITBuilder {
builder: lljit::LLVMOrcLLJITBuilderRef,
}
impl LLJITBuilder {
/// Creates a new default LLJIT builder.
pub fn new() -> Self {
Self { builder: ptr::null_mut() }
}
/// Wraps a raw pointer.
pub unsafe fn from_inner(builder: LLVMOrcLLJITBuilderRef) -> Self {
Self { builder }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcLLJITBuilderRef {
self.builder
}
fn as_inner_init(&mut self) -> LLVMOrcLLJITBuilderRef {
if self.builder.is_null() {
self.builder = unsafe { LLVMOrcCreateLLJITBuilder() };
}
self.builder
}
/// Set the target machine builder by creating it from the given template.
pub fn set_target_machine(self, tm: TargetMachine) -> Self {
self.set_target_machine_builder(JITTargetMachineBuilder::new(tm))
}
/// Set the target machine builder by detecting the host.
pub fn set_target_machine_from_host(self) -> Result<Self, LLVMString> {
JITTargetMachineBuilder::detect_host().map(|jtmb| self.set_target_machine_builder(jtmb))
}
/// Set the target machine builder.
pub fn set_target_machine_builder(mut self, jtmb: JITTargetMachineBuilder) -> Self {
let jtmb = mem::ManuallyDrop::new(jtmb);
unsafe {
LLVMOrcLLJITBuilderSetJITTargetMachineBuilder(self.as_inner_init(), jtmb.as_inner())
};
self
}
/*
pub fn set_object_linking_layer_creator(self, mut f: &mut dyn FnMut(*const (), &CStr)) -> Self {
extern "C" fn shim(
ctx: *mut c_void,
es: LLVMOrcExecutionSessionRef,
triple: *const c_char,
) -> LLVMOrcObjectLayerRef {
let f = ctx.cast::<&mut dyn FnMut(*const (), &CStr)>();
let name = unsafe { CStr::from_ptr(triple) };
unsafe { (*f)(es.cast(), name) };
ptr::null_mut()
}
let ctx = &mut f as *mut _ as *mut c_void;
unsafe { LLVMOrcLLJITBuilderSetObjectLinkingLayerCreator(self.as_inner_init(), shim, ctx) };
self
}
*/
/// Builds the JIT.
pub fn build(self) -> Result<LLJIT, LLVMString> {
// This operation takes ownership of the Builder argument: clients should not
// dispose of the builder after calling this function (even if the function
// returns an error).
let builder = mem::ManuallyDrop::new(self);
let mut res = MaybeUninit::uninit();
cvt(unsafe { LLVMOrcCreateLLJIT(res.as_mut_ptr(), builder.as_inner()) })?;
Ok(unsafe { LLJIT::from_inner(res.assume_init()) })
}
}
impl Drop for LLJITBuilder {
fn drop(&mut self) {
unsafe { LLVMOrcDisposeLLJITBuilder(self.builder) };
}
}
/// An ORC JIT.
///
/// Manages the memory of all JIT'd code and all modules that are transferred to it.
///
/// See [the ORCv2 docs](https://releases.llvm.org/17.0.1/docs/ORCv2.html).
pub struct LLJIT {
jit: LLVMOrcLLJITRef,
}
impl LLJIT {
/// Creates a new LLJIT builder.
pub fn builder() -> LLJITBuilder {
LLJITBuilder::new()
}
/// Creates a new ORC JIT with a target machine for the host.
pub fn new() -> Result<Self, LLVMString> {
LLJITBuilder::new().set_target_machine_from_host()?.build()
}
/// Creates a new default ORC JIT.
pub fn new_empty() -> Result<Self, LLVMString> {
LLJITBuilder::new().build()
}
/// Wraps a raw pointer.
pub unsafe fn from_inner(jit: LLVMOrcLLJITRef) -> Self {
Self { jit }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcLLJITRef {
self.jit
}
/// Return the target triple for this LLJIT instance.
pub fn get_triple_string(&self) -> &CStr {
// This string is owned by the LLJIT instance and does not need to be freed by the caller.
unsafe { CStr::from_ptr(LLVMOrcLLJITGetTripleString(self.jit)) }
}
/// Return the data layout for this LLJIT instance.
pub fn get_data_layout_string(&self) -> &CStr {
// This string is owned by the LLJIT instance and does not need to be freed by the caller.
unsafe { CStr::from_ptr(LLVMOrcLLJITGetDataLayoutStr(self.jit)) }
}
/// Returns the global prefix character according to the LLJIT's DataLayout.
pub fn get_global_prefix(&self) -> c_char {
unsafe { LLVMOrcLLJITGetGlobalPrefix(self.jit) }
}
/// Add an IR module to the main JITDylib.
pub fn add_module(&self, tsm: ThreadSafeModule) -> Result<(), LLVMString> {
let jd = self.get_main_jit_dylib();
self.add_module_with_dylib(tsm, jd)
}
/// Add an IR module to the given JITDylib.
pub fn add_module_with_dylib(
&self,
tsm: ThreadSafeModule,
jd: JITDylibRef,
) -> Result<(), LLVMString> {
let tsm = mem::ManuallyDrop::new(tsm);
cvt(unsafe { LLVMOrcLLJITAddLLVMIRModule(self.as_inner(), jd.as_inner(), tsm.as_inner()) })
}
/// Add an IR module to the given ResourceTracker's JITDylib.
pub fn add_module_with_rt(
&self,
tsm: ThreadSafeModule,
jd: ResourceTracker,
) -> Result<(), LLVMString> {
let tsm = mem::ManuallyDrop::new(tsm);
cvt(unsafe {
LLVMOrcLLJITAddLLVMIRModuleWithRT(self.as_inner(), jd.as_inner(), tsm.as_inner())
})
}
/// Gets the execution session.
pub fn get_execution_session(&self) -> ExecutionSessionRef<'_> {
unsafe { ExecutionSessionRef::from_inner(LLVMOrcLLJITGetExecutionSession(self.as_inner())) }
}
/// Return a reference to the Main JITDylib.
pub fn get_main_jit_dylib(&self) -> JITDylibRef {
unsafe { JITDylibRef::from_inner_unchecked(LLVMOrcLLJITGetMainJITDylib(self.as_inner())) }
}
/// Mangles the given string according to the LLJIT instance's DataLayout, then interns the
/// result in the SymbolStringPool and returns a reference to the pool entry.
pub fn mangle_and_intern(&self, unmangled_name: &CStr) -> SymbolStringPoolEntry {
unsafe {
SymbolStringPoolEntry::from_inner_unchecked(LLVMOrcLLJITMangleAndIntern(
self.as_inner(),
unmangled_name.as_ptr(),
))
}
}
/// Look up the given symbol in the main JITDylib of the given LLJIT instance.
pub fn lookup(&self, name: &CStr) -> Result<usize, LLVMString> {
self.lookup_unmangled(&self.mangle_and_intern(name))
}
/// Look up the given symbol in the main JITDylib of the given LLJIT instance.
///
/// The name should be mangled.
pub fn lookup_unmangled(&self, unmangled_name: &CStr) -> Result<usize, LLVMString> {
let mut res = MaybeUninit::uninit();
cvt(unsafe {
LLVMOrcLLJITLookup(self.as_inner(), res.as_mut_ptr(), unmangled_name.as_ptr())
})?;
Ok(unsafe { res.assume_init() }.try_into().unwrap())
}
/// Returns a non-owning reference to the LLJIT instance's IR transform layer.
pub fn get_ir_transform_layer(&self) -> IRTransformLayerRef {
unsafe { IRTransformLayerRef::from_inner(LLVMOrcLLJITGetIRTransformLayer(self.as_inner())) }
}
// get_*_layer...
// Experimental interface for `libLLVMOrcDebugging.a`.
/*
/// Install the plugin that submits debug objects to the executor.
/// Executors must expose the llvm_orc_registerJITLoaderGDBWrapper symbol.
pub fn enable_debug_support(&self) -> Result<(), LLVMString> {
cvt(unsafe { LLVMOrcLLJITEnableDebugSupport(self.as_inner()) })
}
*/
}
impl Drop for LLJIT {
fn drop(&mut self) {
if let Err(e) = cvt(unsafe { LLVMOrcDisposeLLJIT(self.jit) }) {
error!("Failed to dispose JIT: {e}");
}
}
}
/*
pub struct ObjectLayerRef {
ptr: LLVMOrcObjectLayerRef,
}
impl ObjectLayerRef {
/// Wraps a raw pointer.
pub unsafe fn from_inner(ptr: LLVMOrcObjectLayerRef) -> Self {
Self { ptr }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcObjectLayerRef {
self.ptr
}
}
pub struct ObjectTransformLayerRef {
ptr: LLVMOrcObjectTransformLayerRef,
}
impl ObjectTransformLayerRef {
/// Wraps a raw pointer.
pub unsafe fn from_inner(ptr: LLVMOrcObjectTransformLayerRef) -> Self {
Self { ptr }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcObjectTransformLayerRef {
self.ptr
}
}
*/
/// A reference to an IR transform layer.
pub struct IRTransformLayerRef {
ptr: LLVMOrcIRTransformLayerRef,
}
impl IRTransformLayerRef {
/// Wraps a raw pointer.
pub unsafe fn from_inner(ptr: LLVMOrcIRTransformLayerRef) -> Self {
Self { ptr }
}
/// Unwraps the raw pointer.
pub fn as_inner(&self) -> LLVMOrcIRTransformLayerRef {
self.ptr
}
/// Emit should materialize the given IR.
pub fn emit(&self, mr: MaterializationResponsibility, tsm: ThreadSafeModule) {
let mr = mem::ManuallyDrop::new(mr);
let tsm = mem::ManuallyDrop::new(tsm);
unsafe { LLVMOrcIRTransformLayerEmit(self.as_inner(), mr.as_inner(), tsm.as_inner()) };
}
/// Set the transform function of this transform layer.
pub fn set_transform(&self, f: fn(&ThreadSafeModule) -> Result<(), String>) {
extern "C" fn shim(
ctx: *mut c_void,
m: *mut LLVMOrcThreadSafeModuleRef,
_mr: LLVMOrcMaterializationResponsibilityRef,
) -> LLVMErrorRef {
let f = ctx as *mut fn(&ThreadSafeModule) -> Result<(), String>;
let m = mem::ManuallyDrop::new(unsafe { ThreadSafeModule::from_inner(*m) });
let res = std::panic::catch_unwind(AssertUnwindSafe(|| unsafe { (*f)(&m) }));
cvt_cb_res(res)
}
let ctx = f as *mut c_void;
unsafe { LLVMOrcIRTransformLayerSetTransform(self.as_inner(), shim, ctx) };
}
}
/// Converts an `LLVMErrorRef` to a `Result`.
fn cvt(ptr: LLVMErrorRef) -> Result<(), LLVMString> {
if ptr.is_null() {
Ok(())
} else {
Err(unsafe { llvm_string(LLVMGetErrorMessage(ptr)) })
}
}
fn cvt_cb_res(res: Result<Result<(), String>, Box<dyn std::any::Any + Send>>) -> LLVMErrorRef {
let msg = match res {
Ok(Ok(())) => return ptr::null_mut(), // LLVMErrorSuccess
Ok(Err(e)) => e,
Err(e) => format!("callback panicked, payload: {:?}", panic_payload(&e)),
};
unsafe { LLVMCreateStringError(CString::new(msg).unwrap_or_default().as_ptr()) }
}
fn panic_payload(any: &dyn std::any::Any) -> Option<&str> {
if let Some(s) = any.downcast_ref::<&str>() {
Some(*s)
} else if let Some(s) = any.downcast_ref::<String>() {
Some(s.as_str())
} else {
None
}
}
/// Deallocates the vector without running the elements' destructors.
// Comment from LLVMOrcAbsoluteSymbols:
/*
* This function takes ownership of the elements of the Syms array. The Name
* fields of the array elements are taken to have been retained for this
* function. This allows the following pattern...
*
* size_t NumPairs;
* LLVMOrcCSymbolMapPairs Sym;
* -- Build Syms array --
* LLVMOrcMaterializationUnitRef MU =
* LLVMOrcAbsoluteSymbols(Syms, NumPairs);
*
* ... without requiring cleanup of the elements of the Sym array afterwards.
*
* The client is still responsible for deleting the Sym array itself.
*
* If a client wishes to reuse elements of the Sym array after this call they
* must explicitly retain each of the elements for themselves.
*/
struct ManuallyDropElements<T> {
vec: Vec<T>,
}
impl<T> ManuallyDropElements<T> {
#[inline(always)]
fn new(vec: Vec<T>) -> Self {
Self { vec }
}
}
impl<T> std::ops::Deref for ManuallyDropElements<T> {
type Target = Vec<T>;
#[inline(always)]
fn deref(&self) -> &Vec<T> {
&self.vec
}
}
impl<T> std::ops::DerefMut for ManuallyDropElements<T> {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Vec<T> {
&mut self.vec
}
}
impl<T> Drop for ManuallyDropElements<T> {
#[inline(always)]
fn drop(&mut self) {
unsafe { self.vec.set_len(0) };
}
}
#[cfg(test)]
mod tests {
use super::*;
use inkwell::{passes::PassBuilderOptions, targets::Target};
#[test]
#[ignore = "ci fails idk"]
fn e2e() {
let (tsm, tscx) = ThreadSafeModule::create("test");
let fn_name = "my_fn";
tsm.with_module(|m| {
let cx = tscx.get_context();
let bcx = cx.create_builder();
let ty = cx.i64_type().fn_type(&[], false);
let f = m.add_function(fn_name, ty, Some(inkwell::module::Linkage::External));
let bb = cx.append_basic_block(f, "entry");
bcx.position_at_end(bb);
bcx.build_int_compare(
inkwell::IntPredicate::EQ,
cx.i64_type().const_zero(),
cx.i64_type().const_all_ones(),
"a",
)
.unwrap();
bcx.build_return(Some(&cx.i64_type().const_int(69, false))).unwrap();
eprintln!("--before--");
eprintln!("{}", m.print_to_string().to_string_lossy());
m.verify().map_err(|e| e.to_string())?;
Target::initialize_native(&Default::default()).unwrap();
let triple = TargetMachine::get_default_triple();
let cpu = TargetMachine::get_host_cpu_name();
let features = TargetMachine::get_host_cpu_features();
let target = Target::from_triple(&triple).map_err(|e| e.to_string())?;
let machine = target
.create_target_machine(
&triple,
&cpu.to_string_lossy(),
&features.to_string_lossy(),
Default::default(),
inkwell::targets::RelocMode::Default,
inkwell::targets::CodeModel::Default,
)
.ok_or_else(|| String::from("failed to create target machine"))?;
m.run_passes("default<O3>", &machine, PassBuilderOptions::create()).unwrap();
eprintln!("--after--");
eprintln!("{}", m.print_to_string().to_string_lossy());
Ok(())
})
.unwrap();
let jit = LLJIT::new_empty().unwrap();
jit.add_module(tsm).unwrap();
let address =
jit.lookup_unmangled(&jit.mangle_and_intern(&CString::new(fn_name).unwrap())).unwrap();
eprintln!("address: {address:#x}");
let f = unsafe { std::mem::transmute::<usize, extern "C" fn() -> u64>(address) };
let r = f();
assert_eq!(r, 69);
}
}