- Dec 08, 2013
-
-
Mark Seaborn authored
Before this change, inlining one "invoke" into an outer "invoke" call site can lead to the outer landingpad's catch/filter clauses being copied multiple times into the resulting landingpad. This happens: * when the inlined function contains multiple "resume" instructions, because forwardResume() copies the clauses but is called multiple times; * when the inlined function contains a "resume" and a "call", because HandleCallsInBlockInlinedThroughInvoke() copies the clauses but is redundant with forwardResume(). Fix this by deduplicating the code. This problem doesn't lead to any incorrect execution; it's only untidy. This change will make fixing PR17872 a little easier. llvm-svn: 196710
-
- Dec 07, 2013
-
-
Renato Golin authored
llvm-svn: 196669
-
Jakub Staszak authored
overall time of LLVM compilation by ~1%. llvm-svn: 196667
-
Faisal Vali authored
llvm-svn: 196664
-
Faisal Vali authored
Employed the following refactorings: - Renamed some functions - Introduced explaining variables - Cleaned up & added comments - Used Optional<unsigned> for return value instead of an out parameter - Added assertions - Constified a few member functions No functionality change. All regressions pass. llvm-svn: 196662
-
Rafael Espindola authored
They were out of place since the introduction of arbitrary precision integer types. This also synchronizes the documentation to Types.h, so it refers to first class types and single value types. llvm-svn: 196661
-
Benjamin Kramer authored
Add LLVM_OVERRIDE to make this a hard error in the future. llvm-svn: 196659
-
Benjamin Kramer authored
This can happen when we're trying to emit a thunk with available_externally linkage with optimization enabled but bail because it doesn't make sense for vararg functions. PR18098. llvm-svn: 196658
-
Alp Toker authored
assert(sanity()) reads so much better than preprocessor conditional blocks. llvm-svn: 196657
-
Alp Toker authored
Code in headers shouldn't be conditional on the build configuration. llvm-svn: 196656
-
Tobias Grosser authored
This includes isl commits b9c7b8c8c98a6722262f076b27f833a25b83f55d and 454621e935ff836361c77df436fbd7066c9d44e0 which fix PR18130. llvm-svn: 196655
-
NAKAMURA Takumi authored
llvm-svn: 196654
-
John Thompson authored
llvm-svn: 196648
-
Alp Toker authored
There was already a condition earlier in the function so just place the check there. Cleanup only. llvm-svn: 196647
-
Alp Toker authored
__builtin_types_compatible_p() isn't a C++ type trait at all, rather a GNU C special-case, so it's fine to use BoolTy the default return type for binary type traits. This brings BTT in line with other arities that already default to BoolTy. Cleanup only, no change in behaviour. llvm-svn: 196646
-
NAKAMURA Takumi authored
llvm-svn: 196645
-
Argyrios Kyrtzidis authored
attribute is acceptable. llvm-svn: 196644
-
Andrew Trick authored
These helper classes take care of the book-keeping the drives the GenericScheduler heuristics. It is likely that developers writing target-specific schedulers that work similarly to GenericScheduler will want to use these helpers too. The immediate goal is to develop a GenericPostScheduler that can run in place of the old PostRAScheduler, but will use the new machine model. No functionality change intended. llvm-svn: 196643
-
Richard Smith authored
instantiation appears in a non-enclosing namespace (the previous diagnostic talked about the C++98 rule even in C++11 mode). llvm-svn: 196642
-
Lang Hames authored
llvm-svn: 196641
-
Lang Hames authored
llvm-svn: 196640
-
Lang Hames authored
Patch by Andy Kaylor, with minor edits to resolve merge conflicts. llvm-svn: 196639
-
Matt Arsenault authored
llvm-svn: 196638
-
Matt Arsenault authored
llvm-svn: 196637
-
Akira Hatanaka authored
Indent the command lines to indicate they continue from previous lines. Also, fix incorrect uses of CHECK-DAG and CHECK-NOT. llvm-svn: 196636
-
Rafael Espindola authored
llvm-svn: 196635
-
Vincent Lejeune authored
llvm-svn: 196634
-
Vincent Lejeune authored
llvm-svn: 196633
-
Yuchen Wu authored
llvm-svn: 196632
-
Jim Ingham authored
it succeeded, since the plan that was using it can figure out what to do from there. It should only say it failed if it truely went off into the weeds. <rdar://problem/15597807> llvm-svn: 196631
-
Joerg Sonnenberger authored
and MIPS64. From Brad Smith. llvm-svn: 196630
-
Fariborz Jahanian authored
attribute in sema and issuing a variety of diagnostics lazily for misuse of this attribute (and what to do) when converting from CF types to ObjectiveC types (and vice versa). // rdar://15499111 llvm-svn: 196629
-
Rui Ueyama authored
GroupedSectionsPass was a complicated pass. That pass's job was to reorder atoms by section name, so that the atoms with the same section prefix will be emitted consecutively to the executable. The pass added layout edges to atoms, and let the layout pass to actually reorder them. This patch simplifies the design by making GroupedSectionPass to directly reorder atoms, rather than adding layout edges. This resembles ELF's ArrayOrderPass. This patch improves the performance of LLD; it used to take 7.1 seconds to link LLD with LLD on my Macbook Pro, but it now takes 6.1 seconds. llvm-svn: 196628
-
Warren Hunt authored
Also includes a minor refactor with no functional change. llvm-svn: 196627
-
Kaelyn Uhrain authored
The sefault occurs due to an infinite loop when the verifier tries to determine the size of a type of the form "%rt = type { %rt }" while checking an alloca of the type. llvm-svn: 196626
-
Jean-Daniel Dupas authored
llvm-svn: 196625
-
Sylvestre Ledru authored
Failure to install python packages now fails the make install. This patch properly handles the optional DESTDIR variable. Patch by Todd Fiala llvm-svn: 196624
-
Kaelyn Uhrain authored
lib/Transforms/Instrumentation/AddressSanitizer.cpp:1405:36: error: non-constant-expression cannot be narrowed from type 'uint64_t' (aka 'unsigned long long') to 'size_t' (aka 'unsigned int') in initializer list [-Wc++11-narrowing] getAllocaSizeInBytes(AI), ^~~~~~~~~~~~~~~~~~~~~~~~ llvm-svn: 196623
-
David Peixotto authored
This commit caches the value of the AllowAtInIdentifier variable as a class variable in AsmLexer. We do this to avoid repeated MAI queries and string comparisons each time we lex an identifier. llvm-svn: 196622
-
- Dec 06, 2013
-
-
Justin Bogner authored
This tests the bug fix in llvm r196620. llvm-svn: 196621
-