- Jul 26, 2011
-
-
Devang Patel authored
While extracting lexical scopes from machine instruction stream, work on one machine basic block at a time. llvm-svn: 136106
-
Jim Grosbach authored
llvm-svn: 136105
-
Jim Grosbach authored
rdar://9842203 llvm-svn: 136102
-
Andrew Trick authored
exit. Added an interfaces for querying either the loop's exact/max backedge taken count or a specific loop exit's not-taken count. llvm-svn: 136100
-
Duncan Sands authored
llvm-svn: 136099
-
Jim Grosbach authored
llvm-svn: 136098
-
Jim Grosbach authored
llvm-svn: 136096
-
Jim Grosbach authored
No intendeded functional change. Just cleaning up a bit to make things more self-consistent in layout and style. llvm-svn: 136095
-
Jim Grosbach authored
llvm-svn: 136091
-
Jim Grosbach authored
llvm-svn: 136090
-
Jim Grosbach authored
llvm-svn: 136089
-
Jim Grosbach authored
llvm-svn: 136088
-
Duncan Sands authored
a GNU userspace). llvm-svn: 136085
-
Rafael Espindola authored
llvm-svn: 136083
-
Rafael Espindola authored
llvm-svn: 136082
-
Duncan Sands authored
llvm-svn: 136080
-
Duncan Sands authored
way for i1 and vector of i1 types. Use these to make some code more self-documenting. llvm-svn: 136079
-
Bill Wendling authored
llvm-svn: 136074
-
Jay Foad authored
llvm-svn: 136068
-
Nick Lewycky authored
and Jeffrey Bosboom! llvm-svn: 136066
-
Bill Wendling authored
llvm-svn: 136065
-
Bill Wendling authored
Describe the reasoning for compact unwind in better terms. Thanks to Nick Kledzik for the description. llvm-svn: 136064
-
Bruno Cardoso Lopes authored
llvm-svn: 136051
-
Bruno Cardoso Lopes authored
support for 256-bit versions (but no instruction selection yet, coming next). llvm-svn: 136050
-
Bruno Cardoso Lopes authored
llvm-svn: 136049
-
Bruno Cardoso Lopes authored
llvm-svn: 136048
-
Bruno Cardoso Lopes authored
27 insertions(+), 62 deletions(-) llvm-svn: 136047
-
Jakob Stoklund Olesen authored
When dead code elimination deletes a PHI value, the virtual register may split into multiple connected components. In that case, revert each component to the RS_Assign stage. The new components are guaranteed to be smaller (the original value numbers are distributed among the components), so this will always be making progress. The components are now allowed to evict other live ranges or be split again. llvm-svn: 136034
-
Evan Cheng authored
llvm-svn: 136031
-
Chandler Carruth authored
llvm-svn: 136030
-
Evan Cheng authored
Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser. llvm-svn: 136027
-
Chandler Carruth authored
dependence on CodeGen layers and backends from the MC layers. llvm-svn: 136024
-
Chandler Carruth authored
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. llvm-svn: 136023
-
Jim Grosbach authored
llvm-svn: 136013
-
Evan Cheng authored
llvm-svn: 136012
-
Evan Cheng authored
llvm-svn: 136010
-
Eli Friedman authored
Initial implementation of 'fence' instruction, the new C++0x-style replacement for llvm.memory.barrier. This is just a LangRef entry and reading/writing/memory representation; optimizer+codegen support coming soon. llvm-svn: 136009
-
Nick Lewycky authored
llvm-svn: 136008
-
Benjamin Kramer authored
I will save before I commit. I will save before I commit. I will save before I commit. llvm-svn: 136007
-
Jim Grosbach authored
llvm-svn: 136006
-