| Commit message (Collapse) | Author | Age | Files | Lines | 
| | 
| 
| 
|  | 
llvm-svn: 154070
 | 
| | 
| 
| 
|  | 
llvm-svn: 153997
 | 
| | 
| 
| 
| 
| 
| 
|  | 
svn r145378 inadvertently changed the destination for the Embedded target
in the makefile.  Add a "/Developer" suffix to DSTROOT to compensate.
llvm-svn: 153980
 | 
| | 
| 
| 
|  | 
llvm-svn: 153978
 | 
| | 
| 
| 
|  | 
llvm-svn: 153977
 | 
| | 
| 
| 
| 
| 
| 
| 
|  | 
So far all of configure tests have been run against the default SDK and
architecture, regardless of what is actually being built.  We've gotten
lucky until now.  <rdar://problem/11112479>
llvm-svn: 153972
 | 
| | 
| 
| 
|  | 
llvm-svn: 153971
 | 
| | 
| 
| 
|  | 
llvm-svn: 153937
 | 
| | 
| 
| 
|  | 
llvm-svn: 153935
 | 
| | 
| 
| 
| 
| 
|  | 
can turn off comparisons though.
llvm-svn: 153927
 | 
| | 
| 
| 
|  | 
llvm-svn: 153922
 | 
| | 
| 
| 
| 
| 
| 
|  | 
I just noticed Jakob's examples of the proper application of
std::set... routines.
llvm-svn: 153918
 | 
| | 
| 
| 
| 
| 
|  | 
comparison altogether.
llvm-svn: 153909
 | 
| | 
| 
| 
|  | 
llvm-svn: 153875
 | 
| | 
| 
| 
| 
| 
|  | 
This way we can get AVX v-prefixed instructions tail merged with the normal insns.
llvm-svn: 153869
 | 
| | 
| 
| 
| 
| 
|  | 
tricky due to the target specific sizes for some of the fields so the ordering is only optimal for the targets in the tree.
llvm-svn: 153865
 | 
| | 
| 
| 
| 
| 
|  | 
using the instruction name table from MCInstrInfo. Reduces static data in the InstPrinter implementations.
llvm-svn: 153863
 | 
| | 
| 
| 
|  | 
llvm-svn: 153857
 | 
| | 
| 
| 
| 
| 
|  | 
particularly on X86 where AVX instructions just add a 'v' to the front of other instructions.
llvm-svn: 153841
 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
|  | 
search to do the lookup.
This also avoids emitting the information twice, which led to code bloat. On i386-linux-Release+Asserts
with all targets built this change shaves a whopping 1.3 MB off clang. The number is probably exaggerated
by recent inliner changes but the methods were already enormous with the old inline cost computation.
The DWARF reg -> LLVM reg mapping doesn't seem to have holes in it, so it could be a simple lookup table.
I didn't implement that optimization yet to avoid potentially changing functionality.
There is still some duplication both in tablegen and the generated code that should be cleaned up eventually.
llvm-svn: 153837
 | 
| | 
| 
| 
|  | 
llvm-svn: 153796
 | 
| | 
| 
| 
| 
| 
| 
| 
|  | 
First small step toward modeling multi-register multi-pressure. In the
future, register units can also be used to model liveness and
aliasing.
llvm-svn: 153794
 | 
| | 
| 
| 
| 
| 
|  | 
It's slow, bloated and completely redundant with MCRegisterClass::contains.
llvm-svn: 153782
 | 
| | 
| 
| 
| 
| 
|  | 
This allows suffix sharing in register names. (AX is a suffix of EAX).
llvm-svn: 153777
 | 
| | 
| 
| 
| 
| 
| 
| 
| 
|  | 
Use an explicit comparator instead of the default.
The sets are sorted, but not using the default comparator. Hopefully,
this will unbreak the Linux builders.
llvm-svn: 153772
 | 
| | 
| 
| 
| 
| 
|  | 
--enable-expensive-checks build.
llvm-svn: 153771
 | 
| | 
| 
| 
| 
| 
|  | 
Many register classes have the same value types. Share the table space.
llvm-svn: 153764
 | 
| | 
| 
| 
| 
| 
| 
| 
|  | 
TableGen emits lists of sub-registers, super-registers, and overlaps. Put
them all in a single table and use a SequenceToOffsetTable to share
suffixes.
llvm-svn: 153761
 | 
| | 
| 
| 
| 
| 
| 
| 
|  | 
This is similar to the StringToOffsetTable we use to produce string
tables, but it can be used for other sequences than strings, and it
eliminates entries for suffixes.
llvm-svn: 153760
 | 
| | 
| 
| 
|  | 
llvm-svn: 153667
 | 
| | 
| 
| 
| 
| 
| 
| 
| 
|  | 
The arm_neon intrinsics can create virtual registers from the DPair
register class which allows both even-odd and odd-even D-register pairs.
This fixes PR12389.
llvm-svn: 153603
 | 
| | 
| 
| 
|  | 
llvm-svn: 153457
 | 
| | 
| 
| 
| 
| 
|  | 
was the c backend.
llvm-svn: 153432
 | 
| | 
| 
| 
| 
| 
|  | 
a very (*very*) old version of Python (2.4?)
llvm-svn: 153409
 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
|  | 
* Removed test/lib/llvm.exp - it is no longer needed 
* Deleted the dg.exp reading code from test/lit.cfg. There are no dg.exp files
  left in the test suite so this code is no longer required. test/lit.cfg is
  now much shorter and clearer 
* Removed a lot of duplicate code in lit.local.cfg files that need access to
  the root configuration, by adding a "root" attribute to the TestingConfig
  object. This attribute is dynamically computed to provide the same
  information as was previously provided by the custom getRoot functions. 
* Documented the config.root attribute in docs/CommandGuide/lit.pod
llvm-svn: 153408
 | 
| | 
| 
| 
| 
| 
|  | 
through StringExtras.h
llvm-svn: 153328
 | 
| | 
| 
| 
|  | 
llvm-svn: 153307
 | 
| | 
| 
| 
| 
| 
| 
| 
|  | 
This is in braces so that it doesn't conflict with the existing %p.
It uses braces instead of parens because parens would have to be
regex-escaped.
llvm-svn: 153213
 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
|  | 
Python Win32 Extensions.
We can simply confirm the handle released to open it with EXCLUSIVE. Attempting renaming was bad.
Disable win32file at ImportError. Thanks to Francois to let me know.
FIXME: Could we report warning or notification if win32file were not found?
llvm-svn: 153172
 | 
| | 
| 
| 
|  | 
llvm-svn: 153125
 | 
| | 
| 
| 
|  | 
llvm-svn: 152958
 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
|  | 
(obsoleted) written_files[].
In previous case,
RUN: foo -o %t
RUN: FileCheck < %t
RUN: bar -o %t
2nd read handle might prevent manipulation of 3rd %t in bar, to remove and rename.
llvm-svn: 152916
 | 
| | 
| 
| 
| 
| 
|  | 
We can simply confirm the handle released to open it with EXCLUSIVE. Attempting renaming was bad.
llvm-svn: 152915
 | 
| | 
| 
| 
|  | 
llvm-svn: 152906
 | 
| | 
| 
| 
| 
| 
|  | 
reference instead of value to avoid some copying.
llvm-svn: 152899
 | 
| | 
| 
| 
| 
| 
|  | 
the opening parenthese instead of 2 spaces in.
llvm-svn: 152889
 | 
| | 
| 
| 
| 
| 
|  | 
same result could be found with VariableInstructions.size(). Also fix some typos in comments.
llvm-svn: 152885
 | 
| | 
| 
| 
|  | 
llvm-svn: 152840
 | 
| | 
| 
| 
| 
| 
| 
|  | 
We currently assume that all targets have less than 64k opcodes. We
shouldn't limit it further.
llvm-svn: 152833
 | 
| | 
| 
| 
| 
| 
| 
| 
|  | 
We cannot limit the concatenated instruction names to 64K.  ARM is
already at 32K, and it is easy to imagine a target with more
instructions.
llvm-svn: 152817
 |