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
|
AbstractCallSite -- A unified interface for (in)direct and callback calls
An abstract call site is a wrapper that allows to treat direct,
indirect, and callback calls the same. If an abstract call site
represents a direct or indirect call site it behaves like a stripped
down version of a normal call site object. The abstract call site can
also represent a callback call, thus the fact that the initially
called function (=broker) may invoke a third one (=callback callee).
In this case, the abstract call side hides the middle man, hence the
broker function. The result is a representation of the callback call,
inside the broker, but in the context of the original instruction that
invoked the broker.
Again, there are up to three functions involved when we talk about
callback call sites. The caller (1), which invokes the broker
function. The broker function (2), that may or may not invoke the
callback callee. And finally the callback callee (3), which is the
target of the callback call.
The abstract call site will handle the mapping from parameters to
arguments depending on the semantic of the broker function. However,
it is important to note that the mapping is often partial. Thus, some
arguments of the call/invoke instruction are mapped to parameters of
the callee while others are not. At the same time, arguments of the
callback callee might be unknown, thus "null" if queried.
This patch introduces also !callback metadata which describe how a
callback broker maps from parameters to arguments. This metadata is
directly created by clang for known broker functions, provided through
source code attributes by the user, or later deduced by analyses.
For motivation and additional information please see the corresponding
talk (slides/video)
https://llvm.org/devmtg/2018-10/talk-abstracts.html#talk20
as well as the LCPC paper
http://compilers.cs.uni-saarland.de/people/doerfert/par_opt_lcpc18.pdf
Differential Revision: https://reviews.llvm.org/D54498
llvm-svn: 351627
2019-01-19 13:19:06 +08:00
|
|
|
AbstractCallSite.cpp
|
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
|
|
|
|
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
|
2018-09-21 01:08:45 +08:00
|
|
|
PassInstrumentation.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
|
|
|
|
)
|