@@ -1632,24 +1632,21 @@ Error GenericPluginTy::deinitDevice(int32_t DeviceId) {
1632
1632
return Plugin::success ();
1633
1633
}
1634
1634
1635
- Expected<bool > GenericPluginTy::checkELFImage (__tgt_device_image &Image) const {
1636
- StringRef Buffer (reinterpret_cast <const char *>(Image.ImageStart ),
1637
- target::getPtrDiff (Image.ImageEnd , Image.ImageStart ));
1638
-
1635
+ Expected<bool > GenericPluginTy::checkELFImage (StringRef Image) const {
1639
1636
// First check if this image is a regular ELF file.
1640
- if (!utils::elf::isELF (Buffer ))
1637
+ if (!utils::elf::isELF (Image ))
1641
1638
return false ;
1642
1639
1643
1640
// Check if this image is an ELF with a matching machine value.
1644
- auto MachineOrErr = utils::elf::checkMachine (Buffer , getMagicElfBits ());
1641
+ auto MachineOrErr = utils::elf::checkMachine (Image , getMagicElfBits ());
1645
1642
if (!MachineOrErr)
1646
1643
return MachineOrErr.takeError ();
1647
1644
1648
1645
if (!*MachineOrErr)
1649
1646
return false ;
1650
1647
1651
1648
// Perform plugin-dependent checks for the specific architecture if needed.
1652
- return isELFCompatible (Buffer );
1649
+ return isELFCompatible (Image );
1653
1650
}
1654
1651
1655
1652
const bool llvm::omp::target::plugin::libomptargetSupportsRPC () {
@@ -1678,27 +1675,38 @@ int32_t __tgt_rtl_init_plugin() {
1678
1675
return OFFLOAD_SUCCESS;
1679
1676
}
1680
1677
1681
- int32_t __tgt_rtl_is_valid_binary (__tgt_device_image *TgtImage) {
1682
- // TODO: We should be able to perform a trivial ELF machine check without
1683
- // initializing the plugin first to save time if the plugin is not needed.
1678
+ int32_t __tgt_rtl_is_valid_binary (__tgt_device_image *Image) {
1684
1679
if (!Plugin::isActive ())
1685
1680
return false ;
1686
1681
1687
- // Check if this is a valid ELF with a matching machine and processor.
1688
- auto MatchOrErr = Plugin::get ().checkELFImage (*TgtImage);
1689
- if (Error Err = MatchOrErr.takeError ()) {
1682
+ StringRef Buffer (reinterpret_cast <const char *>(Image->ImageStart ),
1683
+ target::getPtrDiff (Image->ImageEnd , Image->ImageStart ));
1684
+
1685
+ auto HandleError = [&](Error Err) -> bool {
1690
1686
[[maybe_unused]] std::string ErrStr = toString (std::move (Err));
1691
- DP (" Failure to check validity of image %p: %s" , TgtImage, ErrStr.c_str ());
1687
+ DP (" Failure to check validity of image %p: %s" , Image, ErrStr.c_str ());
1688
+ return false ;
1689
+ };
1690
+ switch (identify_magic (Buffer)) {
1691
+ case file_magic::elf:
1692
+ case file_magic::elf_relocatable:
1693
+ case file_magic::elf_executable:
1694
+ case file_magic::elf_shared_object:
1695
+ case file_magic::elf_core: {
1696
+ auto MatchOrErr = Plugin::get ().checkELFImage (Buffer);
1697
+ if (Error Err = MatchOrErr.takeError ())
1698
+ return HandleError (std::move (Err));
1699
+ return *MatchOrErr;
1700
+ }
1701
+ case file_magic::bitcode: {
1702
+ auto MatchOrErr = Plugin::get ().getJIT ().checkBitcodeImage (Buffer);
1703
+ if (Error Err = MatchOrErr.takeError ())
1704
+ return HandleError (std::move (Err));
1705
+ return *MatchOrErr;
1706
+ }
1707
+ default :
1692
1708
return false ;
1693
- } else if (*MatchOrErr) {
1694
- return true ;
1695
1709
}
1696
-
1697
- // Check if this is a valid LLVM-IR file with matching triple.
1698
- if (Plugin::get ().getJIT ().checkBitcodeImage (*TgtImage))
1699
- return true ;
1700
-
1701
- return false ;
1702
1710
}
1703
1711
1704
1712
int32_t __tgt_rtl_supports_empty_images () {
0 commit comments