llvm-6502/lib/Target/PTX
Chandler Carruth b35552d440 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
..
MCTargetDesc Clean up a pile of hacks in our CMake build relating to TableGen. 2011-07-26 00:09:08 +00:00
TargetInfo PTX: Add intrinsics to list of built-in intrinsics, which allows them to be 2011-04-20 15:37:17 +00:00
CMakeLists.txt Clean up a pile of hacks in our CMake build relating to TableGen. 2011-07-26 00:09:08 +00:00
generate-register-td.py PTX: Reverting implementation of i8. 2011-06-25 18:16:28 +00:00
Makefile Next round of MC refactoring. This patch factor MC table instantiations, MC 2011-07-14 20:59:42 +00:00
PTX.h Next round of MC refactoring. This patch factor MC table instantiations, MC 2011-07-14 20:59:42 +00:00
PTX.td PTX: Re-work target sm/compute selection and add some basic GPU 2011-06-24 16:27:49 +00:00
PTXAsmPrinter.cpp land David Blaikie's patch to de-constify Type, with a few tweaks. 2011-07-18 04:54:35 +00:00
PTXCallingConv.td PTX: Reverting implementation of i8. 2011-06-25 18:16:28 +00:00
PTXFrameLowering.cpp
PTXFrameLowering.h PTX: Fix a couple of lint violations 2011-03-03 13:34:29 +00:00
PTXInstrFormats.td PTX: Rename register classes for readability and combine int and fp registers 2011-06-16 17:49:58 +00:00
PTXInstrInfo.cpp Next round of MC refactoring. This patch factor MC table instantiations, MC 2011-07-14 20:59:42 +00:00
PTXInstrInfo.h Hide the call to InitMCInstrInfo into tblgen generated ctor. 2011-07-01 17:57:27 +00:00
PTXInstrInfo.td PTX: Reverting implementation of i8. 2011-06-25 18:16:28 +00:00
PTXIntrinsicInstrInfo.td PTX: Rename register classes for readability and combine int and fp registers 2011-06-16 17:49:58 +00:00
PTXISelDAGToDAG.cpp PTX: Prevent DCE from eliminating st.param calls, and unify the handling of 2011-06-23 18:10:05 +00:00
PTXISelLowering.cpp Remove unused array. 2011-07-02 16:36:24 +00:00
PTXISelLowering.h PTX: Prevent DCE from eliminating st.param calls, and unify the handling of 2011-06-23 18:10:05 +00:00
PTXMachineFunctionInfo.h PTX: Always use registers for return values, but use .param space for device 2011-06-23 18:10:13 +00:00
PTXMCAsmStreamer.cpp Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. 2011-07-25 23:24:55 +00:00
PTXMFInfoExtract.cpp PTX: Finish new calling convention implementation 2011-06-16 17:50:00 +00:00
PTXRegisterInfo.cpp Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo down 2011-07-18 20:57:22 +00:00
PTXRegisterInfo.h Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo down 2011-07-18 20:57:22 +00:00
PTXRegisterInfo.td PTX: Reverting implementation of i8. 2011-06-25 18:16:28 +00:00
PTXSubtarget.cpp Next round of MC refactoring. This patch factor MC table instantiations, MC 2011-07-14 20:59:42 +00:00
PTXSubtarget.h Compute feature bits at time of MCSubtargetInfo initialization. 2011-07-07 07:07:08 +00:00
PTXTargetMachine.cpp Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. 2011-07-25 23:24:55 +00:00
PTXTargetMachine.h - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. 2011-07-20 07:51:56 +00:00