2015-12-23 07:57:37 +08:00
|
|
|
set(LLVM_TARGET_DEFINITIONS AttributesCompatFunc.td)
|
|
|
|
tablegen(LLVM AttributesCompatFunc.inc -gen-attrs)
|
|
|
|
add_public_tablegen_target(AttributeCompatFuncTableGen)
|
|
|
|
|
2008-10-22 10:51:53 +08:00
|
|
|
add_llvm_library(LLVMCore
|
2008-09-22 09:08:49 +08:00
|
|
|
AsmWriter.cpp
|
2008-09-24 09:58:12 +08:00
|
|
|
Attributes.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
AutoUpgrade.cpp
|
|
|
|
BasicBlock.cpp
|
2014-06-28 02:19:56 +08:00
|
|
|
Comdat.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
ConstantFold.cpp
|
2014-03-04 20:24:34 +08:00
|
|
|
ConstantRange.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Constants.cpp
|
|
|
|
Core.cpp
|
2013-11-09 20:26:54 +08:00
|
|
|
DIBuilder.cpp
|
2012-10-05 06:08:14 +08:00
|
|
|
DataLayout.cpp
|
2012-06-28 08:18:12 +08:00
|
|
|
DebugInfo.cpp
|
2015-02-03 02:53:21 +08:00
|
|
|
DebugInfoMetadata.cpp
|
2011-10-05 02:22:24 +08:00
|
|
|
DebugLoc.cpp
|
2017-09-16 04:10:09 +08:00
|
|
|
DiagnosticHandler.cpp
|
2014-04-12 22:26:59 +08:00
|
|
|
DiagnosticInfo.cpp
|
|
|
|
DiagnosticPrinter.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Dominators.cpp
|
Reappl "[Dominators] Add the DomTreeUpdater class"
Summary:
This patch is the first in a series of patches related to the [[ http://lists.llvm.org/pipermail/llvm-dev/2018-June/123883.html | RFC - A new dominator tree updater for LLVM ]].
This patch introduces the DomTreeUpdater class, which provides a cleaner API to perform updates on available dominator trees (none, only DomTree, only PostDomTree, both) using different update strategies (eagerly or lazily) to simplify the updating process.
—Prior to the patch—
- Directly calling update functions of DominatorTree updates the data structure eagerly while DeferredDominance does updates lazily.
- DeferredDominance class cannot be used when a PostDominatorTree also needs to be updated.
- Functions receiving DT/DDT need to branch a lot which is currently necessary.
- Functions using both DomTree and PostDomTree need to call the update function separately on both trees.
- People need to construct an additional DeferredDominance class to use functions only receiving DDT.
—After the patch—
Patch by Chijun Sima <simachijun@gmail.com>.
Reviewers: kuhar, brzycki, dmgreen, grosser, davide
Reviewed By: kuhar, brzycki
Author: NutshellySima
Subscribers: vsk, mgorny, llvm-commits
Differential Revision: https://reviews.llvm.org/D48383
llvm-svn: 336163
2018-07-03 10:06:23 +08:00
|
|
|
DomTreeUpdater.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Function.cpp
|
2010-01-28 04:44:12 +08:00
|
|
|
GVMaterializer.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Globals.cpp
|
2010-01-28 04:44:12 +08:00
|
|
|
IRBuilder.cpp
|
2014-01-09 10:39:45 +08:00
|
|
|
IRPrintingPasses.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
InlineAsm.cpp
|
|
|
|
Instruction.cpp
|
|
|
|
Instructions.cpp
|
|
|
|
IntrinsicInst.cpp
|
2009-06-30 08:48:55 +08:00
|
|
|
LLVMContext.cpp
|
2010-03-22 05:17:34 +08:00
|
|
|
LLVMContextImpl.cpp
|
2013-11-09 20:26:54 +08:00
|
|
|
LegacyPassManager.cpp
|
2014-04-12 22:26:59 +08:00
|
|
|
MDBuilder.cpp
|
2014-01-08 05:19:40 +08:00
|
|
|
Mangler.cpp
|
2009-07-29 05:49:47 +08:00
|
|
|
Metadata.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Module.cpp
|
2016-03-15 08:04:37 +08:00
|
|
|
ModuleSummaryIndex.cpp
|
2015-05-08 08:42:26 +08:00
|
|
|
Operator.cpp
|
2016-04-23 06:06:11 +08:00
|
|
|
OptBisect.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Pass.cpp
|
2013-11-13 09:12:08 +08:00
|
|
|
PassManager.cpp
|
2010-07-21 02:39:06 +08:00
|
|
|
PassRegistry.cpp
|
2018-08-29 05:06:51 +08:00
|
|
|
PassTimingInfo.cpp
|
2017-07-05 09:16:29 +08:00
|
|
|
SafepointIRVerifier.cpp
|
2016-05-20 05:07:12 +08:00
|
|
|
ProfileSummary.cpp
|
[Statepoints 3/4] Statepoint infrastructure for garbage collection: SelectionDAGBuilder
This is the third patch in a small series. It contains the CodeGen support for lowering the gc.statepoint intrinsic sequences (223078) to the STATEPOINT pseudo machine instruction (223085). The change also includes the set of helper routines and classes for working with gc.statepoints, gc.relocates, and gc.results since the lowering code uses them.
With this change, gc.statepoints should be functionally complete. The documentation will follow in the fourth change, and there will likely be some cleanup changes, but interested parties can start experimenting now.
I'm not particularly happy with the amount of code or complexity involved with the lowering step, but at least it's fairly well isolated. The statepoint lowering code is split into it's own files and anyone not working on the statepoint support itself should be able to ignore it.
During the lowering process, we currently spill aggressively to stack. This is not entirely ideal (and we have plans to do better), but it's functional, relatively straight forward, and matches closely the implementations of the patchpoint intrinsics. Most of the complexity comes from trying to keep relocated copies of values in the same stack slots across statepoints. Doing so avoids the insertion of pointless load and store instructions to reshuffle the stack. The current implementation isn't as effective as I'd like, but it is functional and 'good enough' for many common use cases.
In the long term, I'd like to figure out how to integrate the statepoint lowering with the register allocator. In principal, we shouldn't need to eagerly spill at all. The register allocator should do any spilling required and the statepoint should simply record that fact. Depending on how challenging that turns out to be, we may invest in a smarter global stack slot assignment mechanism as a stop gap measure.
Reviewed by: atrick, ributzka
llvm-svn: 223137
2014-12-03 02:50:36 +08:00
|
|
|
Statepoint.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Type.cpp
|
2012-08-03 08:30:35 +08:00
|
|
|
TypeFinder.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Use.cpp
|
2011-01-16 16:10:57 +08:00
|
|
|
User.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
Value.cpp
|
|
|
|
ValueSymbolTable.cpp
|
|
|
|
Verifier.cpp
|
2015-02-11 11:28:02 +08:00
|
|
|
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/IR
|
2012-06-24 11:48:29 +08:00
|
|
|
|
2016-11-17 12:36:50 +08:00
|
|
|
DEPENDS
|
|
|
|
intrinsics_gen
|
|
|
|
)
|