pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/lang/llvm lang/llvm: update to 14.0.6
details: https://anonhg.NetBSD.org/pkgsrc/rev/1ccba4df5a7f
branches: trunk
changeset: 383098:1ccba4df5a7f
user: pin <pin%pkgsrc.org@localhost>
date: Fri Aug 12 08:37:58 2022 +0000
description:
lang/llvm: update to 14.0.6
Updated in wip by @wiz and myself.
14.0.6
-This release is a bug-fix release and is API and ABI compatible with 14.0.0.
This release fixes a bug that was introduced in 14.0.5.
This will likely be the last 14.0.x release.
14.0.5
-This release is a bug-fix release and is API and ABI compatible with 14.0.0.
Note that we have adopted a new release schedule for the project, so there
will be a new bug-fix release (14.0.x) every 2 weeks.
14.0.5 is the last planned release, but we may do a 14.0.6 release if there
are critical issues found in 14.0.5.
14.0.4
-This release is a bug-fix release and is API and ABI compatible with 14.0.0.
14.0.0
Changes to the LLVM IR
Using the legacy pass manager for the optimization pipeline is deprecated
and will be removed after LLVM 14. In the meantime, only minimal effort will
be made to maintain the legacy pass manager for the optimization pipeline.
Max allowed integer type was reduced from 2^24-1 bits to 2^23 bits.
Max allowed alignment was increased from 2^29 to 2^32.
Changes to building LLVM
Building LLVM with Visual Studio now requires version 2019 or later.
Changes to the AArch64 Backend
Added support for the Armv9-A, Armv9.1-A and Armv9.2-A architectures.
The compiler now recognises the “tune-cpu” function attribute to support
the use of the -mtune frontend flag. This allows certain scheduling features
and optimisations to be enabled independently of the architecture.
If the “tune-cpu” attribute is absent it tunes according to the
“target-cpu”.
Fixed relocations against temporary symbols (e.g. in jump tables and
constant pools) in large COFF object files.
Auto-vectorization now targets SVE by default when available.
Changes to the ARM Backend
Added support for the Armv9-A, Armv9.1-A and Armv9.2-A architectures.
Added support for the Armv8.1-M PACBTI-M extension.
Changed the assembly comment string for MSVC targets to @ (consistent with
the MinGW and ELF targets), freeing up ; to be used as statement separator.
Changes to the PowerPC Target
Linux improvements:
Provided a number of builtins for compatibility with the XL compiler.
Allow MMA builtin types in pre-P10 compilation units.
Add support for Return Oriented Programming (ROP) protection for 32 bit.
Refactored code to use more inclusive language.
Switched to LLD as the default linker for pre-built Linux binaries.
Enabled IEEE quad long double on Linux via PPC_LINUX_DEFAULT_IEEELONGDOUBLE
in cmake config.
Added __ibm128 type to represent IBM double-double format, also
available as __attribute__((mode(IF))).
-mfloat128 can now be used in Linux subtargets with VSX enabled.
Added quadword atomic load/store support in codegen; not enabled by default.
Codegen improvements for splat load, byval parameter, stack lowering, etc.
Implemented P10 instruction scheduling model.
Implemented P10 instruction fusion pairs.
Improved handling of #pragma clang loop unroll_and_jam.
Various bug fixes.
AIX Support/improvements:
Variadic (ellipsis) functions with C complex types are now supported.
Added toc-data support for AIX 64-bit.
Added toc-data support for read-only globals.
Updated default target on AIX from pwr4 to pwr7.
AIX 64-bit code generation now uses fast-isel for O0.
Added DWARF support for 32-bit XCOFF.
Changes to the RISC-V Target
Codegen improvements for RV64 around the selection of addw/subw/mulw/slliw
instructions and removal of redundant sext.w instructions (using the new
RISCVSExtWRemoval pass).
The various RISC-V vector extensions were updated to version 1.0 and are no
longer experimental.
The Zba, Zbb, Zbc, and Zbs bit-manipulation extensions were updated to
version 1.0 and are no longer experimental.
Added MC layer support for the ratified scalar cryptography extensions.
The Zfh and Zfhmin extensions for half-precision floating point were updated
to version 1.0 and are no longer experimental.
Added support for the .insn directive.
Various improvements to immediate materialisation, including when
bit-manipulation extensions are enabled. Additionally, the constant pool is
now used for large integers.
Added support for constrained FP intrinsics for scalar types.
Added support for CSRs introduced in the Sscofpmf, Smstateen, and Sstc
extensions.
The experimental ‘Zbproposedc’ extension was removed, as was the ‘B’
extension (including all bit-manipulation sub-extensions). Individual ‘Zb*’
extensions should be used instead.
Changes to the X86 Target
Support for AVX512-FP16 instructions has been added.
Removed incomplete support for Intel MPX. (D111517)
Changes to the AMDGPU Target
Changes to the Windows Target
Changed how the .pdata sections refer to the code they’re describing, to
avoid conflicting unwind info if weak symbols are overridden.
Fixed code generation for calling support routines for converting 128 bit
integers from/to floats on x86_64.
The preferred path separator form (backslashes or forward slashes) can be
configured in Windows builds of LLVM now, with the
LLVM_WINDOWS_PREFER_FORWARD_SLASH CMake option. This defaults to true in
MinGW builds of LLVM.
Set proper COFF symbol types for function aliases (e.g. for Itanium C++
constructors), making sure that GNU ld exports all of them correctly as
functions, not data, when linking a DLL.
Handling of temporary files on more uncommon file systems (network mounts,
ramdisks) on Windows is fixed now (which previously either errored out or
left stray files behind).
Changes to the C API
LLVMSetInstDebugLocation has been deprecated in favor of the more general
LLVMAddMetadataToInst.
Fixed building LLVM-C.dll for i386 targets with MSVC, which had been broken
since the LLVM 8.0.0 release.
Changes to the LLVM tools
llvm-cov: -name-allowlist is now accepted in addition to -name-whitelist.
-name-whitelist is marked as deprecated and to be removed in future
releases.
llvm-ar now supports --thin for creating a thin archive. The modifier T has
a different meaning in some ar implementations. (D116979)
llvm-ar now supports reading big archives for XCOFF. (D111889)
llvm-nm now demangles Rust symbols. (D111937)
llvm-objcopy’s ELF port now avoids reordering section headers to preserve
st_shndx fields of dynamic symbols. (D107653)
llvm-objcopy now supports --update-section for ELF and Mach-O. (D112116)
(D117281)
llvm-objcopy now supports --subsystem for PE/COFF. (D116556)
llvm-objcopy now supports mips64le relocations for ELF. (D115635)
llvm-objcopy --rename-section now renames relocation sections together with
their targets. (D110352)
llvm-objdump --symbolize-operands now supports PowerPC. (D114492)
llvm-objdump -p now dumps PE header. (D113356)
llvm-objdump -R now supports ELF position-dependent executables. (D110595)
llvm-objdump -T now prints symbol versions. (D108097)
llvm-readobj: Improved printing of symbols in Windows unwind data.
llvm-readobj now supports --elf-output-style=JSON for JSON output and
--pretty-print for pretty printing of this output. (D114225)
llvm-readobj now supports several dump styles (--needed-libs, --relocs,
--syms) for XCOFF.
llvm-symbolizer now supports –debuginfod. (D113717)
llvm-cov now accepts “allowlist” spelling for -name-allowlist.
llvm-nm now supports XCOFF object files.
Added --needed-libs, aux header, and symbols support in llvm-readobj.
Added --symbolize-operands support in llvm-objdump.
Tools that read archive files now support reading AIX big format archive
files.
Added dump section support in obj2yaml.
Added yaml2obj support for 64-bit XCOFF.
Changes to LLDB
A change in Clang’s type printing has changed the way LLDB names array types
(from int [N] to int[N]) - LLDB pretty printer type name matching code may
need to be updated to handle this.
The following commands now ignore non-address bits (e.g. AArch64 pointer
signatures) in address arguments. In addition, non-address bits will not be
shown in the output of the commands.
memory find
memory read
memory region (see below)
memory tag read
memory tag write
The memory region command and GetMemoryRegionInfo API method now ignore
non-address bits in the address parameter. This also means that on systems
with non-address bits the last (usually unmapped) memory region will not
extend to 0xF…F. Instead it will end at the end of the mappable range that
the virtual address size allows.
The memory read command has a new option --show-tags. Use this option to
show memory tags beside the contents of tagged memory ranges.
Fixed continuing from breakpoints and singlestepping on Windows on ARM/ARM64.
LLDB has been included in Windows on ARM64 binary release with Python
support disabled.
Changes to BOLT
BOLT project is added to the LLVM monorepo. BOLT is a post-link optimizer
developed to speed up large applications. Build and usage instructions are
given in README.
Additional Information
A wide variety of additional information is available on the LLVM web page, in
particular in the documentation section. The web page also contains versions of
the API documentation which is up-to-date with the Git version of the source
code. You can access versions of these documents specific to this release by
going into the llvm/docs/ directory in the LLVM tree.
If you have any questions or comments about LLVM, please feel free to contact
us via the mailing lists.
diffstat:
lang/llvm/Makefile | 5 +-
lang/llvm/PLIST | 108 ++++++++++++++++++++-----
lang/llvm/buildlink3.mk | 7 +-
lang/llvm/distinfo | 10 +-
lang/llvm/options.mk | 4 +-
lang/llvm/patches/patch-cmake_config-ix.cmake | 13 +--
lang/llvm/version.mk | 4 +-
7 files changed, 103 insertions(+), 48 deletions(-)
diffs (truncated from 684 to 300 lines):
diff -r f6be7106524b -r 1ccba4df5a7f lang/llvm/Makefile
--- a/lang/llvm/Makefile Fri Aug 12 08:28:01 2022 +0000
+++ b/lang/llvm/Makefile Fri Aug 12 08:37:58 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.73 2022/08/06 16:49:59 he Exp $
+# $NetBSD: Makefile,v 1.74 2022/08/12 08:37:58 pin Exp $
#
# when updating this, please also update:
# devel/include-what-you-use
@@ -21,7 +21,6 @@
# Always update all */buildlink3.mk to require the latest stable release
# version in BUILDLINK_API_DEPENDS, as there is no backwards compatibility
-PKGREVISION= 2
.include "version.mk"
DISTNAME= llvm-${LLVM_VERSION}.src
@@ -38,7 +37,7 @@
GCC_REQD+= 5
PYTHON_FOR_BUILD_ONLY= yes
-PYTHON_VERSIONS_INCOMPATIBLE= 27
+PYTHON_VERSIONS_INCOMPATIBLE= 27
NOT_FOR_PLATFORM+= *-*-alpha
NOT_FOR_PLATFORM+= *-*-vax
diff -r f6be7106524b -r 1ccba4df5a7f lang/llvm/PLIST
--- a/lang/llvm/PLIST Fri Aug 12 08:28:01 2022 +0000
+++ b/lang/llvm/PLIST Fri Aug 12 08:37:58 2022 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.19 2021/11/26 19:55:13 wiz Exp $
+@comment $NetBSD: PLIST,v 1.20 2022/08/12 08:37:58 pin Exp $
+@comment $NetBSD: PLIST,v 1.20 2022/08/12 08:37:58 pin Exp $
bin/FileCheck
bin/bugpoint
bin/count
@@ -21,6 +22,7 @@
bin/llvm-cxxdump
bin/llvm-cxxfilt
bin/llvm-cxxmap
+bin/llvm-debuginfod-find
bin/llvm-diff
bin/llvm-dis
bin/llvm-dlltool
@@ -67,6 +69,7 @@
bin/llvm-symbolizer
bin/llvm-tapi-diff
bin/llvm-tblgen
+bin/llvm-tli-checker
bin/llvm-undname
bin/llvm-windres
bin/llvm-xray
@@ -86,6 +89,7 @@
include/llvm-c/Core.h
include/llvm-c/DataTypes.h
include/llvm-c/DebugInfo.h
+include/llvm-c/Deprecated.h
include/llvm-c/Disassembler.h
include/llvm-c/DisassemblerTypes.h
include/llvm-c/Error.h
@@ -127,6 +131,7 @@
include/llvm/ADT/BreadthFirstIterator.h
include/llvm/ADT/CachedHashString.h
include/llvm/ADT/CoalescingBitVector.h
+include/llvm/ADT/CombinationGenerator.h
include/llvm/ADT/DAGDeltaAlgorithm.h
include/llvm/ADT/DeltaAlgorithm.h
include/llvm/ADT/DenseMap.h
@@ -140,6 +145,9 @@
include/llvm/ADT/FloatingPointMode.h
include/llvm/ADT/FoldingSet.h
include/llvm/ADT/FunctionExtras.h
+include/llvm/ADT/GenericCycleImpl.h
+include/llvm/ADT/GenericCycleInfo.h
+include/llvm/ADT/GenericSSAContext.h
include/llvm/ADT/GraphTraits.h
include/llvm/ADT/Hashing.h
include/llvm/ADT/ImmutableList.h
@@ -161,8 +169,10 @@
include/llvm/ADT/PriorityQueue.h
include/llvm/ADT/PriorityWorklist.h
include/llvm/ADT/SCCIterator.h
+include/llvm/ADT/STLArrayExtras.h
include/llvm/ADT/STLExtras.h
include/llvm/ADT/STLForwardCompat.h
+include/llvm/ADT/STLFunctionalExtras.h
include/llvm/ADT/ScopeExit.h
include/llvm/ADT/ScopedHashTable.h
include/llvm/ADT/Sequence.h
@@ -188,10 +198,10 @@
include/llvm/ADT/Twine.h
include/llvm/ADT/TypeSwitch.h
include/llvm/ADT/UniqueVector.h
-include/llvm/ADT/Waymarking.h
include/llvm/ADT/bit.h
include/llvm/ADT/edit_distance.h
include/llvm/ADT/fallible_iterator.h
+include/llvm/ADT/identity.h
include/llvm/ADT/ilist.h
include/llvm/ADT/ilist_base.h
include/llvm/ADT/ilist_iterator.h
@@ -224,6 +234,8 @@
include/llvm/Analysis/CodeMetrics.h
include/llvm/Analysis/ConstantFolding.h
include/llvm/Analysis/ConstraintSystem.h
+include/llvm/Analysis/CostModel.h
+include/llvm/Analysis/CycleAnalysis.h
include/llvm/Analysis/DDG.h
include/llvm/Analysis/DDGPrinter.h
include/llvm/Analysis/DOTGraphTraitsPass.h
@@ -249,8 +261,10 @@
include/llvm/Analysis/InlineAdvisor.h
include/llvm/Analysis/InlineCost.h
include/llvm/Analysis/InlineModelFeatureMaps.h
+include/llvm/Analysis/InlineOrder.h
include/llvm/Analysis/InlineSizeEstimatorAnalysis.h
include/llvm/Analysis/InstCount.h
+include/llvm/Analysis/InstSimplifyFolder.h
include/llvm/Analysis/InstructionPrecedenceTracking.h
include/llvm/Analysis/InstructionSimplify.h
include/llvm/Analysis/Interval.h
@@ -281,9 +295,11 @@
include/llvm/Analysis/MemoryLocation.h
include/llvm/Analysis/MemorySSA.h
include/llvm/Analysis/MemorySSAUpdater.h
+include/llvm/Analysis/ModelUnderTrainingRunner.h
include/llvm/Analysis/ModuleDebugInfoPrinter.h
include/llvm/Analysis/ModuleSummaryAnalysis.h
include/llvm/Analysis/MustExecute.h
+include/llvm/Analysis/NoInferenceModelRunner.h
include/llvm/Analysis/ObjCARCAliasAnalysis.h
include/llvm/Analysis/ObjCARCAnalysisUtils.h
include/llvm/Analysis/ObjCARCInstKind.h
@@ -301,6 +317,7 @@
include/llvm/Analysis/RegionIterator.h
include/llvm/Analysis/RegionPass.h
include/llvm/Analysis/RegionPrinter.h
+include/llvm/Analysis/ReleaseModeModelRunner.h
include/llvm/Analysis/ReplayInlineAdvisor.h
include/llvm/Analysis/ScalarEvolution.h
include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
@@ -370,6 +387,8 @@
include/llvm/BinaryFormat/MsgPackDocument.h
include/llvm/BinaryFormat/MsgPackReader.h
include/llvm/BinaryFormat/MsgPackWriter.h
+include/llvm/BinaryFormat/Swift.def
+include/llvm/BinaryFormat/Swift.h
include/llvm/BinaryFormat/Wasm.h
include/llvm/BinaryFormat/WasmRelocs.def
include/llvm/BinaryFormat/WasmTraits.h
@@ -395,6 +414,7 @@
include/llvm/CodeGen/CSEConfigBase.h
include/llvm/CodeGen/CalcSpillWeights.h
include/llvm/CodeGen/CallingConvLower.h
+include/llvm/CodeGen/CodeGenCommonISel.h
include/llvm/CodeGen/CodeGenPassBuilder.h
include/llvm/CodeGen/CommandFlags.h
include/llvm/CodeGen/CostTable.h
@@ -434,6 +454,7 @@
include/llvm/CodeGen/GlobalISel/Legalizer.h
include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
+include/llvm/CodeGen/GlobalISel/LoadStoreOpt.h
include/llvm/CodeGen/GlobalISel/Localizer.h
include/llvm/CodeGen/GlobalISel/LostDebugLocObserver.h
include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
@@ -469,6 +490,7 @@
include/llvm/CodeGen/MIRParser/MIParser.h
include/llvm/CodeGen/MIRParser/MIRParser.h
include/llvm/CodeGen/MIRPrinter.h
+include/llvm/CodeGen/MIRSampleProfile.h
include/llvm/CodeGen/MIRYamlMapping.h
include/llvm/CodeGen/MachORelocation.h
include/llvm/CodeGen/MachineBasicBlock.h
@@ -476,6 +498,7 @@
include/llvm/CodeGen/MachineBranchProbabilityInfo.h
include/llvm/CodeGen/MachineCombinerPattern.h
include/llvm/CodeGen/MachineConstantPool.h
+include/llvm/CodeGen/MachineCycleAnalysis.h
include/llvm/CodeGen/MachineDominanceFrontier.h
include/llvm/CodeGen/MachineDominators.h
include/llvm/CodeGen/MachineFrameInfo.h
@@ -502,6 +525,7 @@
include/llvm/CodeGen/MachinePostDominators.h
include/llvm/CodeGen/MachineRegionInfo.h
include/llvm/CodeGen/MachineRegisterInfo.h
+include/llvm/CodeGen/MachineSSAContext.h
include/llvm/CodeGen/MachineSSAUpdater.h
include/llvm/CodeGen/MachineScheduler.h
include/llvm/CodeGen/MachineSizeOpts.h
@@ -569,6 +593,7 @@
include/llvm/CodeGen/TargetSubtargetInfo.h
include/llvm/CodeGen/TileShapeInfo.h
include/llvm/CodeGen/UnreachableBlockElim.h
+include/llvm/CodeGen/VLIWMachineScheduler.h
include/llvm/CodeGen/ValueTypes.h
include/llvm/CodeGen/ValueTypes.td
include/llvm/CodeGen/VirtRegMap.h
@@ -577,6 +602,7 @@
include/llvm/Config/AsmParsers.def
include/llvm/Config/AsmPrinters.def
include/llvm/Config/Disassemblers.def
+include/llvm/Config/TargetMCAs.def
include/llvm/Config/Targets.def
include/llvm/Config/abi-breaking.h
include/llvm/Config/llvm-config.h
@@ -823,9 +849,13 @@
include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
include/llvm/DebugInfo/PDB/PDBTypes.h
include/llvm/DebugInfo/PDB/UDTLayout.h
+include/llvm/DebugInfo/Symbolize/DIFetcher.h
include/llvm/DebugInfo/Symbolize/DIPrinter.h
include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
include/llvm/DebugInfo/Symbolize/Symbolize.h
+include/llvm/Debuginfod/DIFetcher.h
+include/llvm/Debuginfod/Debuginfod.h
+include/llvm/Debuginfod/HTTPClient.h
include/llvm/Demangle/Demangle.h
include/llvm/Demangle/DemangleConfig.h
include/llvm/Demangle/ItaniumDemangle.h
@@ -839,6 +869,7 @@
include/llvm/ExecutionEngine/JITEventListener.h
include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
include/llvm/ExecutionEngine/JITLink/ELF.h
+include/llvm/ExecutionEngine/JITLink/ELF_aarch64.h
include/llvm/ExecutionEngine/JITLink/ELF_riscv.h
include/llvm/ExecutionEngine/JITLink/ELF_x86_64.h
include/llvm/ExecutionEngine/JITLink/JITLink.h
@@ -847,6 +878,9 @@
include/llvm/ExecutionEngine/JITLink/MachO.h
include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
+include/llvm/ExecutionEngine/JITLink/MemoryFlags.h
+include/llvm/ExecutionEngine/JITLink/TableManager.h
+include/llvm/ExecutionEngine/JITLink/aarch64.h
include/llvm/ExecutionEngine/JITLink/riscv.h
include/llvm/ExecutionEngine/JITLink/x86_64.h
include/llvm/ExecutionEngine/JITSymbol.h
@@ -858,9 +892,15 @@
include/llvm/ExecutionEngine/Orc/Core.h
include/llvm/ExecutionEngine/Orc/DebugObjectManagerPlugin.h
include/llvm/ExecutionEngine/Orc/DebugUtils.h
+include/llvm/ExecutionEngine/Orc/DebuggerSupportPlugin.h
+include/llvm/ExecutionEngine/Orc/ELFNixPlatform.h
include/llvm/ExecutionEngine/Orc/EPCDebugObjectRegistrar.h
include/llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h
include/llvm/ExecutionEngine/Orc/EPCEHFrameRegistrar.h
+include/llvm/ExecutionEngine/Orc/EPCGenericDylibManager.h
+include/llvm/ExecutionEngine/Orc/EPCGenericJITLinkMemoryManager.h
+include/llvm/ExecutionEngine/Orc/EPCGenericMemoryAccess.h
+include/llvm/ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.h
include/llvm/ExecutionEngine/Orc/EPCIndirectionUtils.h
include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
include/llvm/ExecutionEngine/Orc/ExecutorProcessControl.h
@@ -869,38 +909,37 @@
include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
include/llvm/ExecutionEngine/Orc/LLJIT.h
-include/llvm/ExecutionEngine/Orc/LLVMSPSSerializers.h
include/llvm/ExecutionEngine/Orc/Layer.h
include/llvm/ExecutionEngine/Orc/LazyReexports.h
+include/llvm/ExecutionEngine/Orc/LookupAndRecordAddrs.h
include/llvm/ExecutionEngine/Orc/MachOPlatform.h
include/llvm/ExecutionEngine/Orc/Mangling.h
+include/llvm/ExecutionEngine/Orc/ObjectFileInterface.h
include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
include/llvm/ExecutionEngine/Orc/OrcABISupport.h
-include/llvm/ExecutionEngine/Orc/OrcRPCExecutorProcessControl.h
-include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
-include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
-include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
+include/llvm/ExecutionEngine/Orc/Shared/AllocationActions.h
include/llvm/ExecutionEngine/Orc/Shared/ExecutorAddress.h
-include/llvm/ExecutionEngine/Orc/Shared/FDRawByteChannel.h
include/llvm/ExecutionEngine/Orc/Shared/OrcError.h
-include/llvm/ExecutionEngine/Orc/Shared/RPCUtils.h
-include/llvm/ExecutionEngine/Orc/Shared/RawByteChannel.h
-include/llvm/ExecutionEngine/Orc/Shared/Serialization.h
+include/llvm/ExecutionEngine/Orc/Shared/OrcRTBridge.h
include/llvm/ExecutionEngine/Orc/Shared/SimplePackedSerialization.h
+include/llvm/ExecutionEngine/Orc/Shared/SimpleRemoteEPCUtils.h
include/llvm/ExecutionEngine/Orc/Shared/TargetProcessControlTypes.h
include/llvm/ExecutionEngine/Orc/Shared/WrapperFunctionUtils.h
+include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
include/llvm/ExecutionEngine/Orc/Speculation.h
include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/ExecutorBootstrapService.h
include/llvm/ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.h
-include/llvm/ExecutionEngine/Orc/TargetProcess/OrcRPCTPCServer.h
include/llvm/ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/SimpleExecutorDylibManager.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/SimpleExecutorMemoryManager.h
+include/llvm/ExecutionEngine/Orc/TargetProcess/SimpleRemoteEPCServer.h
include/llvm/ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.h
+include/llvm/ExecutionEngine/Orc/TaskDispatch.h
include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
-include/llvm/ExecutionEngine/OrcMCJITReplacement.h
Home |
Main Index |
Thread Index |
Old Index