2008-09-26 04:40:32 +00:00
|
|
|
set(LLVM_TARGET_DEFINITIONS ARM.td)
|
|
|
|
|
2011-11-04 19:04:23 +00:00
|
|
|
tablegen(LLVM ARMGenRegisterInfo.inc -gen-register-info)
|
|
|
|
tablegen(LLVM ARMGenInstrInfo.inc -gen-instr-info)
|
2014-09-02 22:28:02 +00:00
|
|
|
tablegen(LLVM ARMGenMCCodeEmitter.inc -gen-emitter)
|
2011-11-04 19:04:23 +00:00
|
|
|
tablegen(LLVM ARMGenMCPseudoLowering.inc -gen-pseudo-lowering)
|
|
|
|
tablegen(LLVM ARMGenAsmWriter.inc -gen-asm-writer)
|
|
|
|
tablegen(LLVM ARMGenAsmMatcher.inc -gen-asm-matcher)
|
|
|
|
tablegen(LLVM ARMGenDAGISel.inc -gen-dag-isel)
|
|
|
|
tablegen(LLVM ARMGenFastISel.inc -gen-fast-isel)
|
|
|
|
tablegen(LLVM ARMGenCallingConv.inc -gen-callingconv)
|
|
|
|
tablegen(LLVM ARMGenSubtargetInfo.inc -gen-subtarget)
|
|
|
|
tablegen(LLVM ARMGenDisassemblerTables.inc -gen-disassembler)
|
Clean up a pile of hacks in our CMake build relating to TableGen.
The first problem to fix is to stop creating synthetic *Table_gen
targets next to all of the LLVM libraries. These had no real effect as
CMake specifies that add_custom_command(OUTPUT ...) directives (what the
'tablegen(...)' stuff expands to) are implicitly added as dependencies
to all the rules in that CMakeLists.txt.
These synthetic rules started to cause problems as we started more and
more heavily using tablegen files from *subdirectories* of the one where
they were generated. Within those directories, the set of tablegen
outputs was still available and so these synthetic rules added them as
dependencies of those subdirectories. However, they were no longer
properly associated with the custom command to generate them. Most of
the time this "just worked" because something would get to the parent
directory first, and run tablegen there. Once run, the files existed and
the build proceeded happily. However, as more and more subdirectories
have started using this, the probability of this failing to happen has
increased. Recently with the MC refactorings, it became quite common for
me when touching a large enough number of targets.
To add insult to injury, several of the backends *tried* to fix this by
adding explicit dependencies back to the parent directory's tablegen
rules, but those dependencies didn't work as expected -- they weren't
forming a linear chain, they were adding another thread in the race.
This patch removes these synthetic rules completely, and adds a much
simpler function to declare explicitly that a collection of tablegen'ed
files are referenced by other libraries. From that, we can add explicit
dependencies from the smaller libraries (such as every architectures
Desc library) on this and correctly form a linear sequence. All of the
backends are updated to use it, sometimes replacing the existing attempt
at adding a dependency, sometimes adding a previously missing dependency
edge.
Please let me know if this causes any problems, but it fixes a rather
persistent and problematic source of build flakiness on our end.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136023 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-26 00:09:08 +00:00
|
|
|
add_public_tablegen_target(ARMCommonTableGen)
|
2008-09-26 04:40:32 +00:00
|
|
|
|
2008-10-22 02:51:53 +00:00
|
|
|
add_llvm_target(ARMCodeGen
|
2013-03-15 18:28:25 +00:00
|
|
|
A15SDOptimizer.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
ARMAsmPrinter.cpp
|
2009-07-08 16:09:28 +00:00
|
|
|
ARMBaseInstrInfo.cpp
|
2009-07-08 20:13:41 +00:00
|
|
|
ARMBaseRegisterInfo.cpp
|
2008-09-26 04:40:32 +00:00
|
|
|
ARMConstantIslandPass.cpp
|
|
|
|
ARMConstantPoolValue.cpp
|
2009-11-07 03:26:59 +00:00
|
|
|
ARMExpandPseudoInsts.cpp
|
2010-07-22 06:00:01 +00:00
|
|
|
ARMFastISel.cpp
|
2011-01-10 12:39:23 +00:00
|
|
|
ARMFrameLowering.cpp
|
2010-12-05 22:04:16 +00:00
|
|
|
ARMHazardRecognizer.cpp
|
2008-09-26 04:40:32 +00:00
|
|
|
ARMISelDAGToDAG.cpp
|
|
|
|
ARMISelLowering.cpp
|
2009-11-03 04:14:12 +00:00
|
|
|
ARMInstrInfo.cpp
|
2008-09-26 04:40:32 +00:00
|
|
|
ARMLoadStoreOptimizer.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
ARMMCInstLower.cpp
|
2011-12-20 08:42:11 +00:00
|
|
|
ARMMachineFunctionInfo.cpp
|
2008-09-26 04:40:32 +00:00
|
|
|
ARMRegisterInfo.cpp
|
2014-04-02 09:03:43 +00:00
|
|
|
ARMOptimizeBarriersPass.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
ARMSelectionDAGInfo.cpp
|
2008-09-26 04:40:32 +00:00
|
|
|
ARMSubtarget.cpp
|
|
|
|
ARMTargetMachine.cpp
|
2010-03-09 18:31:07 +00:00
|
|
|
ARMTargetObjectFile.cpp
|
Switch TargetTransformInfo from an immutable analysis pass that requires
a TargetMachine to construct (and thus isn't always available), to an
analysis group that supports layered implementations much like
AliasAnalysis does. This is a pretty massive change, with a few parts
that I was unable to easily separate (sorry), so I'll walk through it.
The first step of this conversion was to make TargetTransformInfo an
analysis group, and to sink the nonce implementations in
ScalarTargetTransformInfo and VectorTargetTranformInfo into
a NoTargetTransformInfo pass. This allows other passes to add a hard
requirement on TTI, and assume they will always get at least on
implementation.
The TargetTransformInfo analysis group leverages the delegation chaining
trick that AliasAnalysis uses, where the base class for the analysis
group delegates to the previous analysis *pass*, allowing all but tho
NoFoo analysis passes to only implement the parts of the interfaces they
support. It also introduces a new trick where each pass in the group
retains a pointer to the top-most pass that has been initialized. This
allows passes to implement one API in terms of another API and benefit
when some other pass above them in the stack has more precise results
for the second API.
The second step of this conversion is to create a pass that implements
the TargetTransformInfo analysis using the target-independent
abstractions in the code generator. This replaces the
ScalarTargetTransformImpl and VectorTargetTransformImpl classes in
lib/Target with a single pass in lib/CodeGen called
BasicTargetTransformInfo. This class actually provides most of the TTI
functionality, basing it upon the TargetLowering abstraction and other
information in the target independent code generator.
The third step of the conversion adds support to all TargetMachines to
register custom analysis passes. This allows building those passes with
access to TargetLowering or other target-specific classes, and it also
allows each target to customize the set of analysis passes desired in
the pass manager. The baseline LLVMTargetMachine implements this
interface to add the BasicTTI pass to the pass manager, and all of the
tools that want to support target-aware TTI passes call this routine on
whatever target machine they end up with to add the appropriate passes.
The fourth step of the conversion created target-specific TTI analysis
passes for the X86 and ARM backends. These passes contain the custom
logic that was previously in their extensions of the
ScalarTargetTransformInfo and VectorTargetTransformInfo interfaces.
I separated them into their own file, as now all of the interface bits
are private and they just expose a function to create the pass itself.
Then I extended these target machines to set up a custom set of analysis
passes, first adding BasicTTI as a fallback, and then adding their
customized TTI implementations.
The fourth step required logic that was shared between the target
independent layer and the specific targets to move to a different
interface, as they no longer derive from each other. As a consequence,
a helper functions were added to TargetLowering representing the common
logic needed both in the target implementation and the codegen
implementation of the TTI pass. While technically this is the only
change that could have been committed separately, it would have been
a nightmare to extract.
The final step of the conversion was just to delete all the old
boilerplate. This got rid of the ScalarTargetTransformInfo and
VectorTargetTransformInfo classes, all of the support in all of the
targets for producing instances of them, and all of the support in the
tools for manually constructing a pass based around them.
Now that TTI is a relatively normal analysis group, two things become
straightforward. First, we can sink it into lib/Analysis which is a more
natural layer for it to live. Second, clients of this interface can
depend on it *always* being available which will simplify their code and
behavior. These (and other) simplifications will follow in subsequent
commits, this one is clearly big enough.
Finally, I'm very aware that much of the comments and documentation
needs to be updated. As soon as I had this working, and plausibly well
commented, I wanted to get it committed and in front of the build bots.
I'll be doing a few passes over documentation later if it sticks.
Commits to update DragonEgg and Clang will be made presently.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171681 91177308-0d34-0410-b5e6-96231b3b80d8
2013-01-07 01:37:14 +00:00
|
|
|
ARMTargetTransformInfo.cpp
|
2010-12-05 23:08:57 +00:00
|
|
|
MLxExpansionPass.cpp
|
2011-01-10 12:39:23 +00:00
|
|
|
Thumb1FrameLowering.cpp
|
2011-09-27 23:29:59 +00:00
|
|
|
Thumb1InstrInfo.cpp
|
2009-07-02 22:18:33 +00:00
|
|
|
Thumb1RegisterInfo.cpp
|
2009-07-10 08:31:50 +00:00
|
|
|
Thumb2ITBlockPass.cpp
|
2009-07-02 22:18:33 +00:00
|
|
|
Thumb2InstrInfo.cpp
|
|
|
|
Thumb2RegisterInfo.cpp
|
2009-08-08 17:03:13 +00:00
|
|
|
Thumb2SizeReduction.cpp
|
2008-09-26 04:40:32 +00:00
|
|
|
)
|
2010-12-29 03:59:27 +00:00
|
|
|
|
2011-02-20 02:55:27 +00:00
|
|
|
add_subdirectory(TargetInfo)
|
|
|
|
add_subdirectory(AsmParser)
|
|
|
|
add_subdirectory(Disassembler)
|
|
|
|
add_subdirectory(InstPrinter)
|
2011-07-06 22:02:34 +00:00
|
|
|
add_subdirectory(MCTargetDesc)
|