- Dec 03, 2014
-
-
Matt Arsenault authored
It was complaining it wasn't included in any toctree llvm-svn: 223254
-
Benjamin Poulain authored
Fix defininitions->definitions. Reviewed by David Blaikie. llvm-svn: 223216
-
Peter Collingbourne authored
Patch by Ben Gamari! This redefines the `prefix` attribute introduced previously and introduces a `prologue` attribute. There are a two primary usecases that these attributes aim to serve, 1. Function prologue sigils 2. Function hot-patching: Enable the user to insert `nop` operations at the beginning of the function which can later be safely replaced with a call to some instrumentation facility 3. Runtime metadata: Allow a compiler to insert data for use by the runtime during execution. GHC is one example of a compiler that needs this functionality for its tables-next-to-code functionality. Previously `prefix` served cases (1) and (2) quite well by allowing the user to introduce arbitrary data at the entrypoint but before the function body. Case (3), however, was poorly handled by this approach as it required that prefix data was valid executable code. Here we redefine the notion of prefix data to instead be data which occurs immediately before the function entrypoint (i.e. the symbol address). Since prefix data now occurs before the function entrypoint, there is no need for the data to be valid code. The previous notion of prefix data now goes under the name "prologue data" to emphasize its duality with the function epilogue. The intention here is to handle cases (1) and (2) with prologue data and case (3) with prefix data. References ---------- This idea arose out of discussions[1] with Reid Kleckner in response to a proposal to introduce the notion of symbol offsets to enable handling of case (3). [1] http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-May/073235.html Test Plan: testsuite Differential Revision: http://reviews.llvm.org/D6454 llvm-svn: 223189
-
- Dec 02, 2014
-
-
Philip Reames authored
This is the fourth and final patch in the statepoint series. It contains the documentation for the statepoint intrinsics and their usage. There's definitely still room to improve the documentation here, but I wanted to get this landed so it was available for others. There will likely be a series of small cleanup changes over the next few weeks as we work to clarify and revise the documentation. If you have comments or questions, please feel free to discuss them either in this commit thread, the original review thread, or on llvmdev. Comments are more than welcome. Reviewed by: atrick, ributzka Differential Revision: http://reviews.llvm.org/D5683 llvm-svn: 223143
-
- Dec 01, 2014
-
-
Peter Zotov authored
This way most code won't link this (substantially large) library, if compiled statically with LLVM. llvm-svn: 223072
-
Peter Zotov authored
Closes PR15325. llvm-svn: 223071
-
- Nov 26, 2014
-
-
Craig Topper authored
Remove neverHasSideEffects support from TableGen CodeGenInstruction. Everyone should use hasSideEffects now. llvm-svn: 222809
-
- Nov 24, 2014
-
-
Philip Reames authored
Clarify the wording around !invariant.load to properly reflect the semantics of such loads with respect to control dependence and location lifetime. To the best of my knowledge, the revised wording respects the actual implementation and understanding of issues involved highlighted in the recent 'Optimization hints for "constant" loads' thread on LLVMDev. In particular, I'm aiming for the following results: - To clarify that an invariant.load can fault and must respect control dependence. In particular, it is not sound to unconditionally pull an invariant load out of a loop if that loop would potentially never execute. - To clarify that the invariant nature of a given pointer does not preclude the modification of that location through a pointer which is unrelated to the load operand. In particular, initializing a location and then passing a pointer through an opaque intrinsic which produces a new unrelated pointer, should behave as expected provided that the intrinsic is memory dependent on the initializing store. - To clarify that storing a value to an invariant location is defined. It can not, for example, be considered unreachable. The value stored can be assumed to be equal to the value of any previous (or following!) invariant load, but the store itself is defined. I recommend that anyone interested in using !invariant.load, or optimizing for them, read over the discussion in the review thread. A number of motivating examples are discussed. Differential Revision: http://reviews.llvm.org/D6346 llvm-svn: 222700
-
Sergey Dmitrouk authored
llvm-svn: 222678
-
- Nov 21, 2014
-
-
Hal Finkel authored
The previous description of the noalias attribute did not accurately specify the implemented semantics, and the terminology used differed unnecessarily from that used by the C specification to define the semantics of restrict. For the argument attribute, the semantics can be precisely specified in terms of objects accessed through pointers based on the arguments, and this is now what is done. Saying that the semantics are 'slightly weaker' than that provided by C99 restrict is not really useful without further elaboration, so that has been removed from the sentence. noalias on a return value is really used to mean that the function is malloc-like (and, in fact, we use this attribute to represent __attribute__((malloc)) in Clang), and this is a stronger guarantee than that provided by restrict (because it is a property of the pointed-to memory region, not just a guarantee on object access). Clarifying this is relevant to fixing (and was motivated by the discussion on) PR21556. llvm-svn: 222497
-
- Nov 19, 2014
-
-
Evgeniy Stepanov authored
This change makes use of the new "job pool" capability in cmake 3.0 with ninja generator to allow limiting the number of concurrent jobs of a certain type. llvm-svn: 222341
-
- Nov 18, 2014
-
-
Justin Bogner authored
llvm-svn: 222223
-
Justin Bogner authored
- Make CallGraphSCCPass's paragraph about doFinalization refer to runOnSCC instead of runOnFunction, since that's what it's about. - Fix a reference in the FunctionPass paragraph. llvm-svn: 222222
-
- Nov 14, 2014
-
-
Tom Stellard authored
This was done using the Sparc and PowerPC AsmParsers as guides. So far it is very simple and only supports sopp instructions. llvm-svn: 221994
-
- Nov 10, 2014
-
-
Rafael Espindola authored
Patch by Palmer Dabbelt! llvm-svn: 221638
-
- Nov 06, 2014
-
-
Lang Hames authored
The old examples had missing/incorrect flags that were causing failures on newer versions of clang and the tutorial code. llvm-svn: 221419
-
- Nov 05, 2014
-
-
Sean Silva authored
llvm-svn: 221406
-
- Nov 04, 2014
-
-
Tim Northover authored
Patch by Steve King. llvm-svn: 221227
-
- Nov 02, 2014
-
-
Tim Northover authored
The given example was overflowing its alloca and segfaulting if actually run on x86, so it's a good idea to provide something that works there too. Patch by Ramkumar Ramachandra. llvm-svn: 221077
-
- Oct 29, 2014
-
-
Seo Sanghyeon authored
llvm-svn: 220838
-
- Oct 28, 2014
-
-
Peter Zotov authored
When several build targets, e.g. Debug+Asserts and Release+Asserts are present, ocamldoc complains of duplicate interfaces. llvm-svn: 220831
-
- Oct 24, 2014
-
-
Juergen Ributzka authored
llvm.donothing is no longer the only intrinsic that can be invoked. llvm-svn: 220530
-
- Oct 22, 2014
-
-
Matt Arsenault authored
llvm-svn: 220402
-
Matt Arsenault authored
llvm-svn: 220352
-
Matt Arsenault authored
These are named following the IEEE-754 names for these functions, rather than the libm fmin / fmax to avoid possible ambiguities. Some languages may implement something resembling fmin / fmax which return NaN if either operand is to propagate errors. These implement the IEEE-754 semantics of returning the other operand if either is a NaN representing missing data. llvm-svn: 220341
-
- Oct 21, 2014
-
-
Philip Reames authored
The newly introduced 'nonnull' metadata is analogous to existing 'nonnull' attributes, but applies to load instructions rather than call arguments or returns. Long term, it would be nice to combine these into a single construct. The value of the load is allowed to vary between successive loads, but null is not a valid value to be loaded by any load marked nonnull. Reviewed by: Hal Finkel Differential Revision: http://reviews.llvm.org/D5220 llvm-svn: 220240
-
- Oct 17, 2014
-
-
Alexander Potapenko authored
llvm-symbolizer will consult one of the .dSYM paths passed via -dsym-hint if it fails to find the .dSYM bundle at the default location. llvm-svn: 220004
-
- Oct 16, 2014
-
-
Rafael Espindola authored
These days -std-compile-opts was just a silly alias for -O3. llvm-svn: 219951
-
Jon Roelofs authored
llvm-svn: 219947
-
- Oct 14, 2014
-
-
Peter Collingbourne authored
Rather than define our own standards, we adopt a set of best practices that are already in use by the Go community. Differential Revision: http://reviews.llvm.org/D5761 llvm-svn: 219646
-
- Oct 13, 2014
-
-
Paul Robinson authored
match the current implementation. Patch by Douglas Yung! llvm-svn: 219631
-
- Oct 08, 2014
-
-
Frederic Riss authored
Summary: We currently emit an DW_AT_APPLE_property_attribute with a value that is a bitfield describing the various attributes applied to an ObjectiveC property. While trying to add testing to one of my dwarfdump patches that would pretty print that, I realized this information looks totally broken and has maybe never been correct. As with every DWARF info, we have some enum in Dwarf.h that describes this attribute (enum ApplePropertyAttributes). It seems however that the attribute value is set from another definition of these flags in Sema/DeclSpec.h (enum ObjCPropertyAttributeKind). And these 2 enums aren't in sync. This patch updates the Dwarf.h values to the ones we are (and have been for a very long time) emitting. We change some publicly (and even documented in SourceLevelDebugging.rst) values, but I doubt this could be an issue as the information has been wrong for so long... Reviewers: echristo, dblaikie, aprantl Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D5653 llvm-svn: 219311
-
- Oct 06, 2014
-
-
Matt Arsenault authored
llvm-svn: 219134
-
- Oct 04, 2014
-
-
Duncan P. N. Exon Smith authored
llvm-svn: 219056
-
Duncan P. N. Exon Smith authored
llvm-svn: 219055
-
Duncan P. N. Exon Smith authored
llvm-svn: 219054
-
Duncan P. N. Exon Smith authored
llvm-svn: 219053
-
Duncan P. N. Exon Smith authored
Update a couple of the examples of debug info metadata, and prune the rest. Point to the true reference implementation in the source. llvm-svn: 219051
-
- Oct 03, 2014
-
-
Jon Roelofs authored
llvm-svn: 219018
-
Adrian Prantl authored
llvm-svn: 219015
-