oota-llvm.git
10 years agoRefactor llvm/test/lit.cfg to use lit.util.which.
Paul Robinson [Fri, 21 Mar 2014 17:31:35 +0000 (17:31 +0000)]
Refactor llvm/test/lit.cfg to use lit.util.which.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204486 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agollvm-profdata: Implement show command
Justin Bogner [Fri, 21 Mar 2014 17:29:44 +0000 (17:29 +0000)]
llvm-profdata: Implement show command

The `llvm-profdata show` command summarizes a profdata file's contents
in a human readable format.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204485 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRemove redundant test.
Rafael Espindola [Fri, 21 Mar 2014 17:26:35 +0000 (17:26 +0000)]
Remove redundant test.

The production of the .eh symbols is done from MC now and we already have tests
for it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204483 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoProfileData: Introduce the InstrProfReader interface and a text reader
Justin Bogner [Fri, 21 Mar 2014 17:24:48 +0000 (17:24 +0000)]
ProfileData: Introduce the InstrProfReader interface and a text reader

This introduces the ProfileData library and updates llvm-profdata to
use this library for reading profiles. InstrProfReader is an abstract
base class that will be subclassed for both the raw instrprof data
from compiler-rt and the efficient instrprof format that will be used
for PGO.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204482 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoSplit out the MC part of this test.
Rafael Espindola [Fri, 21 Mar 2014 17:16:11 +0000 (17:16 +0000)]
Split out the MC part of this test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204481 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[mips] Correct lowering of VECTOR_SHUFFLE to VSHF.
Daniel Sanders [Fri, 21 Mar 2014 16:56:51 +0000 (16:56 +0000)]
[mips] Correct lowering of VECTOR_SHUFFLE to VSHF.

Summary:
VECTOR_SHUFFLE concatenates the vectors in an vectorwise fashion.
  <0b00, 0b01> + <0b10, 0b11> -> <0b00, 0b01, 0b10, 0b11>
VSHF concatenates the vectors in a bitwise fashion:
  <0b00, 0b01> + <0b10, 0b11> ->
  0b0100       + 0b1110       -> 0b01001110
                                 <0b10, 0b11, 0b00, 0b01>
We must therefore swap the operands to get the correct result.

The test case that discovered the issue was MultiSource/Benchmarks/nbench.

Reviewers: matheusalmeida

Reviewed By: matheusalmeida

Differential Revision: http://llvm-reviews.chandlerc.com/D3142

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204480 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoAdd overall description, file comments, some structure
Renato Golin [Fri, 21 Mar 2014 16:49:43 +0000 (16:49 +0000)]
Add overall description, file comments, some structure

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204479 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Handle MUBUF instructions in SIInstrInfo::moveToVALU()
Tom Stellard [Fri, 21 Mar 2014 15:51:57 +0000 (15:51 +0000)]
R600/SI: Handle MUBUF instructions in SIInstrInfo::moveToVALU()

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204476 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Handle S_MOV_B64 in SIInstrInfo::moveToVALU()
Tom Stellard [Fri, 21 Mar 2014 15:51:54 +0000 (15:51 +0000)]
R600/SI: Handle S_MOV_B64 in SIInstrInfo::moveToVALU()

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204475 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Use SGPR_(32|64) reg clases when lowering SI_ADDR64_RSRC
Tom Stellard [Fri, 21 Mar 2014 15:51:53 +0000 (15:51 +0000)]
R600/SI: Use SGPR_(32|64) reg clases when lowering SI_ADDR64_RSRC

The SReg_(32|64) register classes contain special registers in addition
to the numbered SGPRs.  This can lead to machine verifier errors when
these register classes are used as sub-registers for SReg_128, since
SReg_128 only uses the numbered SGPRs.

Replacing SReg_(32|64) with SGPR_(32|64) fixes this problem, since
the SGPR_(32|64) register classes contain only numbered SGPRs.

Tests cases for this are comming in a later commit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204474 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoSink: Don't sink static allocas from the entry block
Tom Stellard [Fri, 21 Mar 2014 15:51:51 +0000 (15:51 +0000)]
Sink: Don't sink static allocas from the entry block

CodeGen treats allocas outside the entry block as dynamically sized
stack objects.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204473 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[SystemZ] Use "let Predicates =" for blocks of new instructions
Richard Sandiford [Fri, 21 Mar 2014 11:04:54 +0000 (11:04 +0000)]
[SystemZ] Use "let Predicates =" for blocks of new instructions

...instead of a separate Requires for each one.  This style was already
used in some places and seems more compact.

No behavioral change intended.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204452 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[SystemZ] Add support for z196 float<->unsigned conversions
Richard Sandiford [Fri, 21 Mar 2014 10:56:30 +0000 (10:56 +0000)]
[SystemZ] Add support for z196 float<->unsigned conversions

These complement the older float<->signed instructions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204451 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[mips] Update namespace.
Matheus Almeida [Fri, 21 Mar 2014 10:35:14 +0000 (10:35 +0000)]
[mips] Update namespace.

We should be using the llvm namespace and not an anonymous namespace
in a header file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204450 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[RuntimeDyld] Allow processRelocationRef to process more than one relocation entry...
Juergen Ributzka [Fri, 21 Mar 2014 07:26:41 +0000 (07:26 +0000)]
[RuntimeDyld] Allow processRelocationRef to process more than one relocation entry at a time.

Some targets require more than one relocation entry to perform a relocation.
This change allows processRelocationRef to process more than one relocation
entry at a time by passing the relocation iterator itself instead of just
the relocation entry.

Related to <rdar://problem/16199095>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204439 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoFix test command line to avoid generating output file.
Kevin Qin [Fri, 21 Mar 2014 07:20:29 +0000 (07:20 +0000)]
Fix test command line to avoid generating output file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204437 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Constant Hoisting] Make the constant materialization cost operand dependent
Juergen Ributzka [Fri, 21 Mar 2014 06:04:45 +0000 (06:04 +0000)]
[Constant Hoisting] Make the constant materialization cost operand dependent

Extend the target hook to take also the operand index into account when
calculating the cost of the constant materialization.

Related to <rdar://problem/16381500>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204435 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Constant Hoisting] Lazily compute the idom and cache the result.
Juergen Ributzka [Fri, 21 Mar 2014 06:04:39 +0000 (06:04 +0000)]
[Constant Hoisting] Lazily compute the idom and cache the result.

Related to <rdar://problem/16381500>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204434 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Constant Hoisting] Change the algorithm to only track constants for instructions.
Juergen Ributzka [Fri, 21 Mar 2014 06:04:36 +0000 (06:04 +0000)]
[Constant Hoisting] Change the algorithm to only track constants for instructions.

Originally the algorithm would search for expensive constants and track their
users, which could be instructions and constant expressions. This change only
tracks the constants for instructions, but constant expressions are indirectly
covered too. If an operand is an constant expression, then we look through the
expression to find anny expensive constants.

The algorithm keep now track of the instruction and the operand index where the
constant is used. This allows more precise hoisting of constant materialization
code for PHI instructions, because we only hoist to the basic block of the
incoming operand. Before we had to find the idom of all PHI operands and hoist
the materialization code there.

This also makes updating of instructions easier. Before we had to keep track of
the original constant, find it in the instructions, and then replace it. Now we
can just simply update the operand.

Related to <rdar://problem/16381500>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204433 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Constant Hoisting] Fix capitalization of function names.
Juergen Ributzka [Fri, 21 Mar 2014 06:04:33 +0000 (06:04 +0000)]
[Constant Hoisting] Fix capitalization of function names.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204432 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Constant Hoisting] Replace the MapVector with a separate Map and Vector to keep...
Juergen Ributzka [Fri, 21 Mar 2014 06:04:30 +0000 (06:04 +0000)]
[Constant Hoisting] Replace the MapVector with a separate Map and Vector to keep track of constant candidates.

This simplifies working with the constant candidates and removes the tight
coupling between the map and the vector.

Related to <rdar://problem/16381500>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204431 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoMCParser: add an assertion
Saleem Abdulrasool [Fri, 21 Mar 2014 05:13:23 +0000 (05:13 +0000)]
MCParser: add an assertion

Add an assertion that the section is not NULL.  Potential NULL pointer
dereference identified by clang static analyzer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204429 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoThis reverts commit r203762, "ARM: support emission of complex SO expressions".
Jiangning Liu [Fri, 21 Mar 2014 02:51:01 +0000 (02:51 +0000)]
This reverts commit r203762, "ARM: support emission of complex SO expressions".

The commit r203762 introduced silent failure for complext SO expression, and it's even worse than compiler crash.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204427 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Support] Make sure LockFileManager works correctly with relative paths.
Argyrios Kyrtzidis [Fri, 21 Mar 2014 02:31:56 +0000 (02:31 +0000)]
[Support] Make sure LockFileManager works correctly with relative paths.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204426 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoFix an assertion caused by using inline asm with indirect register inputs.
Kevin Qin [Fri, 21 Mar 2014 02:14:50 +0000 (02:14 +0000)]
Fix an assertion caused by using inline asm with indirect register inputs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204425 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[AArch64] Remove .data_region directive from AArch64.
Kevin Qin [Fri, 21 Mar 2014 02:12:48 +0000 (02:12 +0000)]
[AArch64] Remove .data_region directive from AArch64.

.data_region is only used in Darwin, so it shouldn't be generated
for other OS. Currently AArch64 doesn't support darwin yet, so
I removed it from AArch64. When Darwin is supported someday, we can
add it back and associate it with Darwin.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204424 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Support] Make sure sys::fs::remove can remove symbolic links and make sure LockFileM...
Argyrios Kyrtzidis [Fri, 21 Mar 2014 01:25:37 +0000 (01:25 +0000)]
[Support] Make sure sys::fs::remove can remove symbolic links and make sure LockFileManager can handle a symbolic link that points nowhere.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204422 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoConvert a CodeGen test into a MC test.
Rafael Espindola [Fri, 21 Mar 2014 00:55:42 +0000 (00:55 +0000)]
Convert a CodeGen test into a MC test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204421 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject/COFF: Support large relocation table.
Rui Ueyama [Fri, 21 Mar 2014 00:44:19 +0000 (00:44 +0000)]
Object/COFF: Support large relocation table.

NumberOfRelocations field in COFF section table is only 16-bit wide. If an
object has more than 65535 relocations, the number of relocations is stored
to VirtualAddress field in the first relocation field, and a special flag
(IMAGE_SCN_LNK_NRELOC_OVFL) is set to Characteristics field.

In test we cheated a bit. I made up a test file so that it has
IMAGE_SCN_LNK_NRELOC_OVFL flag but the number of relocations is much smaller
than 65535. This is to avoid checking in a large test file just to test a
file with many relocations.

Differential Revision: http://llvm-reviews.chandlerc.com/D3139

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204418 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoPort test to cfi.
Rafael Espindola [Fri, 21 Mar 2014 00:30:24 +0000 (00:30 +0000)]
Port test to cfi.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204416 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoConvert another CodeGen test into a MC test.
Rafael Espindola [Thu, 20 Mar 2014 23:35:00 +0000 (23:35 +0000)]
Convert another CodeGen test into a MC test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204412 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoFix PR19136: [ARM] Fix Folding SP Update into vpush/vpop
Weiming Zhao [Thu, 20 Mar 2014 23:28:16 +0000 (23:28 +0000)]
Fix PR19136: [ARM] Fix Folding SP Update into vpush/vpop

Sicne MBB->computeRegisterLivenes() returns Dead for sub regs like s0,
d0 is used in vpop instead of updating sp, which causes s0 dead before
its use.

This patch checks the liveness of each subreg to make sure the reg is
actually dead.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204411 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agollvm-objdump output hex to match binutils' objdump
Greg Fitzgerald [Thu, 20 Mar 2014 22:55:15 +0000 (22:55 +0000)]
llvm-objdump output hex to match binutils' objdump

Patch by Ted Woodward

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204409 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoConvert CodeGen test into a more specific MC test.
Rafael Espindola [Thu, 20 Mar 2014 22:05:59 +0000 (22:05 +0000)]
Convert CodeGen test into a more specific MC test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204406 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRemove llvm-mc's disable-cfi option.
Rafael Espindola [Thu, 20 Mar 2014 21:48:20 +0000 (21:48 +0000)]
Remove llvm-mc's disable-cfi option.

It was dead.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204404 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRemove unused options from test.
Rafael Espindola [Thu, 20 Mar 2014 21:38:04 +0000 (21:38 +0000)]
Remove unused options from test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204401 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoDon't use EmitAbsValue with symbol references.
Rafael Espindola [Thu, 20 Mar 2014 21:26:38 +0000 (21:26 +0000)]
Don't use EmitAbsValue with symbol references.

The function exists to force an expression to be absolute, but there it is not
possible to force a symbol reference since

a = b
.long a

means something else.

This is an alternative fix for pr9951 that uses an assert. It then deletes
the old pr9951 test that was testing nothing already.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204399 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoAdd an option to MCJIT to have it forward all sections to the
Lang Hames [Thu, 20 Mar 2014 21:06:46 +0000 (21:06 +0000)]
Add an option to MCJIT to have it forward all sections to the
RTDyldMemoryManager, regardless of whether it thinks they're "required for
execution".

Currently, RuntimeDyld only passes sections that are "required for execution"
to the RTDyldMemoryManager, and takes "required for execution" to mean exactly
"contains symbols or relocations". There are two problems with this:
(1) It can drop sections with anonymous data that is referenced by code.
(2) It leaves the JIT client no way to inspect interesting sections that aren't
    actually required to run the program (e.g dwarf sections).

A test case is still in the works.

Future work: We may want to replace this with a generic section filtering
mechanism, but that will require more consideration. For now, this flag at least
allows clients to volunteer to do the filtering themselves.

Fixes <rdar://problem/15177691>.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204398 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRevert "[Constant Hoisting] Extend coverage of the constant hoisting pass."
Juergen Ributzka [Thu, 20 Mar 2014 20:17:13 +0000 (20:17 +0000)]
Revert "[Constant Hoisting] Extend coverage of the constant hoisting pass."

I will break this up into smaller pieces for review and recommit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204393 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[Constant Hoisting] Extend coverage of the constant hoisting pass.
Juergen Ributzka [Thu, 20 Mar 2014 19:55:52 +0000 (19:55 +0000)]
[Constant Hoisting] Extend coverage of the constant hoisting pass.

This commit extends the coverage of the constant hoisting pass, adds additonal
debug output and updates the function names according to the style guide.

Related to <rdar://problem/16381500>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204389 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRemove LowerInvoke's obsolete "-enable-correct-eh-support" option
Mark Seaborn [Thu, 20 Mar 2014 19:54:47 +0000 (19:54 +0000)]
Remove LowerInvoke's obsolete "-enable-correct-eh-support" option

This option caused LowerInvoke to generate code using SJLJ-based
exception handling, but there is no code left that interprets the
jmp_buf stack that the resulting code maintained (llvm.sjljeh.jblist).
This option has been obsolete for a while, and replaced by
SjLjEHPrepare.

This leaves the default behaviour of LowerInvoke, which is to convert
invokes to calls.

Differential Revision: http://llvm-reviews.chandlerc.com/D3136

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204388 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoTypo.
Eric Christopher [Thu, 20 Mar 2014 19:16:20 +0000 (19:16 +0000)]
Typo.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204378 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoReapply DW_AT_low/high_pc patch:
Eric Christopher [Thu, 20 Mar 2014 19:16:16 +0000 (19:16 +0000)]
Reapply DW_AT_low/high_pc patch:

    Use the range machinery for DW_AT_ranges and DW_AT_high/lo_pc.

    This commit moves us from a single range per subprogram to extending
    ranges if we are:

    a) In the same section, and
    b) In the same enclosing CU.

    This means we have more fine grained ranges for compile units, and fewer
    ranges overall when we have multiple functions in the same CU
    adjacent to each other in the object file.

    Also remove all of the earlier hacks around this functionality for
    function sections etc. Also update all of the testcases to take into
    account the merging functionality.

with a fix for location entries in the debug_loc section:

Make sure that debug loc entries are relative to the low_pc
of the compile unit. This means that when we only have a single
range that the offset should be just relative to the low_pc
of the unit, for multiple ranges for a CU this means that we'll be
relative to 0 which we emit along with DW_AT_ranges.

This mostly shows up with linked binaries, so add a testcase with
multiple CUs so that our location is going to be offset of a CU
with a non-zero low_pc.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204377 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agollvm-profdata: Remove an empty comment
Justin Bogner [Thu, 20 Mar 2014 18:37:27 +0000 (18:37 +0000)]
llvm-profdata: Remove an empty comment

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204370 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoFix a few more grammatic errors in docs/TableGen/index.rst
Eli Bendersky [Thu, 20 Mar 2014 17:59:37 +0000 (17:59 +0000)]
Fix a few more grammatic errors in docs/TableGen/index.rst

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204364 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoFix a couple of typos and an inaccurate description in the new TableGen doc
Eli Bendersky [Thu, 20 Mar 2014 17:45:30 +0000 (17:45 +0000)]
Fix a couple of typos and an inaccurate description in the new TableGen doc

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204363 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRemove dead and incorrect code.
Rafael Espindola [Thu, 20 Mar 2014 17:39:04 +0000 (17:39 +0000)]
Remove dead and incorrect code.

is_symlink was always false since it was using stat instead of lstat.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204361 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoAdd comments from Eric's review of r204094.
David Blaikie [Thu, 20 Mar 2014 17:05:45 +0000 (17:05 +0000)]
Add comments from Eric's review of r204094.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204358 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600: Remove unused method declaration.
Matt Arsenault [Thu, 20 Mar 2014 16:41:06 +0000 (16:41 +0000)]
R600: Remove unused method declaration.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204357 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRe-factor TableGen docs
Renato Golin [Thu, 20 Mar 2014 16:08:34 +0000 (16:08 +0000)]
Re-factor TableGen docs

This is mainly a movement of content around to give place to new content
allowing different people to add bits to it in the right place. There is some
new content, but mostly to fill the gaps left by text movement.

I'm dropping the old syntax documentation as it has the problem of being
quickly outdated by changes and largely unnecessary to people not involved
in creating the language, but using it, which is the whole point of the
documentation.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204351 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoAdd a test for LowerInvoke that doesn't use "-enable-correct-eh-support"
Mark Seaborn [Thu, 20 Mar 2014 14:12:47 +0000 (14:12 +0000)]
Add a test for LowerInvoke that doesn't use "-enable-correct-eh-support"

None of the existing tests for LowerInvoke check LowerInvoke's output,
and all but one use "-enable-correct-eh-support", which is obsolete,
so those tests will be removed when that option is removed.

To make sure LowerInvoke will still have test coverage, this adds a
test for its default mode which converts invokes to calls.

Differential Revision: http://llvm-reviews.chandlerc.com/D3124

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204344 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[MIPS] Add cpu octeon and some instructions
Kai Nacke [Thu, 20 Mar 2014 11:51:58 +0000 (11:51 +0000)]
[MIPS] Add cpu octeon and some instructions

The Octeon cpu from Cavium Networks is mips64r2 based and has an extended
instruction set. In order to utilize this with LLVM, a new cpu feature "octeon"
and a subtarget feature "cnmips" is added. A small set of new instructions
(baddu, dmul, pop, dpop, seq, sne) is also added. LLVM generates dmul, pop and
dpop instructions with option -mcpu=octeon or -mattr=+cnmips.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204337 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[ASan] Add -asan-module to the ASan .ll tests.
Alexander Potapenko [Thu, 20 Mar 2014 11:16:34 +0000 (11:16 +0000)]
[ASan] Add -asan-module to the ASan .ll tests.
After the -asan pass had been split into -asan (function-level) and -asan-module (module-level) some of the
tests have silently stopped working, because they didn't instrument the globals anymore.
We've decided to have every test using both passes, irrespective of the presence of globals in it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204335 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[ASan] Do not instrument globals from the llvm.metadata section.
Alexander Potapenko [Thu, 20 Mar 2014 10:48:34 +0000 (10:48 +0000)]
[ASan] Do not instrument globals from the llvm.metadata section.
Fixes https://code.google.com/p/address-sanitizer/issues/detail?id=279.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204331 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoProvide an operand for microMIPS wait instruction.
Zoran Jovanovic [Thu, 20 Mar 2014 10:41:37 +0000 (10:41 +0000)]
Provide an operand for microMIPS wait instruction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204329 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoImplementation of microMIPS 16-bit instructions MOVE and JALR.
Zoran Jovanovic [Thu, 20 Mar 2014 10:18:24 +0000 (10:18 +0000)]
Implementation of microMIPS 16-bit instructions MOVE and JALR.
Differential Revision: http://llvm-reviews.chandlerc.com/D3112

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204325 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoMark alias symbols as microMIPS if necessary. Differential Revision: http://llvm...
Zoran Jovanovic [Thu, 20 Mar 2014 09:44:49 +0000 (09:44 +0000)]
Mark alias symbols as microMIPS if necessary.   Differential Revision: llvm-reviews.chandlerc.com/D3080

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204323 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[mips] Splitting up class definition from implementation.
Matheus Almeida [Thu, 20 Mar 2014 09:29:54 +0000 (09:29 +0000)]
[mips] Splitting up class definition from implementation.

Also removed some unnecessary #includes.

No functional changes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204320 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoAdd llvm_unreachable after fully-covered switches to appease GCC
Alexey Samsonov [Thu, 20 Mar 2014 07:30:40 +0000 (07:30 +0000)]
Add llvm_unreachable after fully-covered switches to appease GCC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204318 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoTest case for r204305.
Craig Topper [Thu, 20 Mar 2014 06:45:10 +0000 (06:45 +0000)]
Test case for r204305.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204316 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject: Output .file symbols properly
David Majnemer [Thu, 20 Mar 2014 06:29:02 +0000 (06:29 +0000)]
Object: Output .file symbols properly

obj2yaml would emit the NUL bytes padding the auxiliary file symbol
records.  Trimming them looks nicer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204314 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject: Abstract out the determination of function line symbols
David Majnemer [Thu, 20 Mar 2014 06:28:55 +0000 (06:28 +0000)]
Object: Abstract out the determination of function line symbols

No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204313 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject: Don't double-escape empty hexdata
David Majnemer [Thu, 20 Mar 2014 06:28:52 +0000 (06:28 +0000)]
Object: Don't double-escape empty hexdata

We would emit a pair of double quotes inside a pair of single quotes.
Just use a pair of single quotes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204312 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoReapply 'ARM IAS: support .thumb_set'
Saleem Abdulrasool [Thu, 20 Mar 2014 06:05:33 +0000 (06:05 +0000)]
Reapply 'ARM IAS: support .thumb_set'

Re-apply the change after it was reverted to do conflicts due to another change
being reverted.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204306 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[X86] Check return value of readSIB in disassembler so errors propagate. In particula...
Craig Topper [Thu, 20 Mar 2014 05:56:00 +0000 (05:56 +0000)]
[X86] Check return value of readSIB in disassembler so errors propagate. In particular this makes a too short instruction with a missing SIB byte fail.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204305 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[ARM]Fix an assertion failure in A15SDOptimizer about DPair reg class by treating...
Hao Liu [Thu, 20 Mar 2014 05:36:59 +0000 (05:36 +0000)]
[ARM]Fix an assertion failure in A15SDOptimizer about DPair reg class by treating DPair as QPR.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204304 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoLook through variables when computing relocations.
Rafael Espindola [Thu, 20 Mar 2014 02:12:01 +0000 (02:12 +0000)]
Look through variables when computing relocations.

Given

bar = foo + 4
.long bar

MC would eat the 4. GNU as includes it in the relocation. The rule seems to be
that a variable that defines a symbol is used in the relocation and one that
does not define a symbol is evaluated and the result included in the relocation.

Fixing this unfortunately required some other changes:

* Since the variable is now evaluated, it would prevent the ELF writer from
  noticing the weakref marker the elf streamer uses. This patch then replaces
  that with a VariantKind in MCSymbolRefExpr.

* Using VariantKind then requires us to look past other VariantKind to see

.weakref bar,foo
call bar@PLT

  doing this also fixes

zed = foo +2
call zed@PLT

  so that is a good thing.

* Looking past VariantKind means that the relocation selection has to use
  the fixup instead of the target.

This is a reboot of the previous fixes for MC. I will watch the sanitizer
buildbot and wait for a build before adding back the previous fixes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204294 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRevert "Use the range machinery for DW_AT_ranges and DW_AT_high/lo_pc."
Eric Christopher [Thu, 20 Mar 2014 00:12:06 +0000 (00:12 +0000)]
Revert "Use the range machinery for DW_AT_ranges and DW_AT_high/lo_pc."

This appears to trigger failures with optimization and function arguments somehow.

This reverts commit r204277.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204286 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoSupport: Add postincrement and include guards to LineIterator
Justin Bogner [Wed, 19 Mar 2014 22:58:31 +0000 (22:58 +0000)]
Support: Add postincrement and include guards to LineIterator

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204279 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoUse the range machinery for DW_AT_ranges and DW_AT_high/lo_pc.
Eric Christopher [Wed, 19 Mar 2014 22:42:36 +0000 (22:42 +0000)]
Use the range machinery for DW_AT_ranges and DW_AT_high/lo_pc.

This commit moves us from a single range per subprogram to extending
ranges if we are:

a) In the same section, and
b) In the same enclosing CU.

This means we have more fine grained ranges for compile units, and fewer
ranges overall when we have multiple functions in the same CU
adjacent to each other in the object file.

Also remove all of the earlier hacks around this functionality for
function sections etc. Also update all of the testcases to take into
account the merging functionality.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204277 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Add unused LDS 2 form instructions.
Matt Arsenault [Wed, 19 Mar 2014 22:19:56 +0000 (22:19 +0000)]
R600/SI: Add unused LDS 2 form instructions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204275 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Add support for 64-bit LDS writes
Matt Arsenault [Wed, 19 Mar 2014 22:19:54 +0000 (22:19 +0000)]
R600/SI: Add support for 64-bit LDS writes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204274 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Add support for 64-bit LDS loads.
Matt Arsenault [Wed, 19 Mar 2014 22:19:52 +0000 (22:19 +0000)]
R600/SI: Add support for 64-bit LDS loads.

v2:
  -Use correct opcode for DS_READ_64

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204273 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Match i16 immediate offset of LDS instructions.
Matt Arsenault [Wed, 19 Mar 2014 22:19:49 +0000 (22:19 +0000)]
R600/SI: Match i16 immediate offset of LDS instructions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204272 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Fix test checking wrong instruction operand.
Matt Arsenault [Wed, 19 Mar 2014 22:19:45 +0000 (22:19 +0000)]
R600/SI: Fix test checking wrong instruction operand.

The source and destination happen to be the same register.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204271 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Don't display the GDS bit.
Matt Arsenault [Wed, 19 Mar 2014 22:19:43 +0000 (22:19 +0000)]
R600/SI: Don't display the GDS bit.

It isn't actually used now, and probably never will be, plus it makes
tests less annoying. I also think SC prints GDS instructions as a
separate instruction name.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204270 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoR600/SI: Merge offset0 and offset1 fields for single address DS instructions v2
Matt Arsenault [Wed, 19 Mar 2014 22:19:39 +0000 (22:19 +0000)]
R600/SI: Merge offset0 and offset1 fields for single address DS instructions v2

Also remove unused data fields from the DS_Load_Helper class.

v2:
  - Merge fields for DS_WRITE

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204269 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoCOFF: Fix a typo
David Majnemer [Wed, 19 Mar 2014 20:16:23 +0000 (20:16 +0000)]
COFF: Fix a typo

Introduced when I rebased my changes to use isReservedSectionNumber.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204260 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoFix comment (PR19188)
Hans Wennborg [Wed, 19 Mar 2014 18:41:38 +0000 (18:41 +0000)]
Fix comment (PR19188)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204256 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[mips] 80-column.
Matheus Almeida [Wed, 19 Mar 2014 16:29:06 +0000 (16:29 +0000)]
[mips] 80-column.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204252 91177308-0d34-0410-b5e6-96231b3b80d8

10 years ago[mips] Making sure that a '.set noreorder' directive is correctly parsed
Matheus Almeida [Wed, 19 Mar 2014 16:20:19 +0000 (16:20 +0000)]
[mips] Making sure that a '.set noreorder' directive is correctly parsed
and emitted and that no NOPs are emitted in a 'noreorder section'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204250 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoSet debug info for instructions inserted in SplitBlockAndInsertIfThen.
Evgeniy Stepanov [Wed, 19 Mar 2014 12:56:38 +0000 (12:56 +0000)]
Set debug info for instructions inserted in SplitBlockAndInsertIfThen.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204230 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoPrune includes in X86 target.
Craig Topper [Wed, 19 Mar 2014 06:53:25 +0000 (06:53 +0000)]
Prune includes in X86 target.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204216 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject: Provide a richer means of describing auxiliary symbols
David Majnemer [Wed, 19 Mar 2014 04:47:47 +0000 (04:47 +0000)]
Object: Provide a richer means of describing auxiliary symbols

The current state of affairs has auxiliary symbols described as a big
bag of bytes. This is less than satisfying, it detracts from the YAML
file as being human readable.

Instead, allow for symbols to optionally contain their auxiliary data.
This allows us to have a much higher level way of describing things like
weak symbols, function definitions and section definitions.

This depends on D3105.

Differential Revision: http://llvm-reviews.chandlerc.com/D3092

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204214 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject: Move auxiliary symbol definitions from llvm-readobj
David Majnemer [Wed, 19 Mar 2014 04:33:27 +0000 (04:33 +0000)]
Object: Move auxiliary symbol definitions from llvm-readobj

Summary: These definitions are useful to other aspects of LLVM, move them out.

Reviewers: rafael, nrieck, ruiu

CC: llvm-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D3105

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204213 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject: Clean up COFF.h
David Majnemer [Wed, 19 Mar 2014 02:37:19 +0000 (02:37 +0000)]
Object: Clean up COFF.h

The file violated the coding standard.  Make it conform.

No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204212 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agollvm-profdata: Make "merge" into a subcommand.
Justin Bogner [Wed, 19 Mar 2014 02:20:46 +0000 (02:20 +0000)]
llvm-profdata: Make "merge" into a subcommand.

We'll be adding a few more subcommands in the near future.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204211 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agollvm-profdata: Update to use the naive text format with function hash
Justin Bogner [Wed, 19 Mar 2014 02:20:42 +0000 (02:20 +0000)]
llvm-profdata: Update to use the naive text format with function hash

This also uses line_iterator to simplify the parsing logic.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204210 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoMake the test harder by using a non-zero offset.
Rafael Espindola [Wed, 19 Mar 2014 00:26:58 +0000 (00:26 +0000)]
Make the test harder by using a non-zero offset.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204205 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoWhen destroying a StringMap, just iterate over the map and destroy the contained...
Pete Cooper [Wed, 19 Mar 2014 00:23:30 +0000 (00:23 +0000)]
When destroying a StringMap, just iterate over the map and destroy the contained elements.  Don't reset them back to 0 as their values aren't needed any more.  This results in ~StringMap() being mostly empty for POD types in BumpPtrAllocators

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204204 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoRevert "Add back r203962, r204028 and r204059."
Rafael Espindola [Wed, 19 Mar 2014 00:13:43 +0000 (00:13 +0000)]
Revert "Add back r203962, r204028 and r204059."

This reverts commit r204178.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204203 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoDebugInfo: Use the comp_dir of the referencing type units when building debug_line.dwo
David Blaikie [Wed, 19 Mar 2014 00:11:28 +0000 (00:11 +0000)]
DebugInfo: Use the comp_dir of the referencing type units when building debug_line.dwo

This isn't a complete fix - it falls back to non-comp_dir when multiple
compile units are in play. Adding a map of comp_dir to table is part of
the more general solution, but I gave up (in the short term) when I
realized I'd also have to calculate the size of each type unit so as to
produce correct DW_AT_stmt_list attributes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204202 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoExpose "noduplicate" attribute as a property for intrinsics.
Eli Bendersky [Tue, 18 Mar 2014 23:51:07 +0000 (23:51 +0000)]
Expose "noduplicate" attribute as a property for intrinsics.

The "noduplicate" function attribute exists to prevent certain optimizations
from duplicating calls to the function. This is important on platforms where
certain function call duplications are unsafe (for example execution barriers
for CUDA and OpenCL).

This patch makes it possible to specify intrinsics as "noduplicate" and
translates that to the appropriate function attribute.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204200 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoObject/COFF: Add function to check if section number is reserved one.
Rui Ueyama [Tue, 18 Mar 2014 23:37:53 +0000 (23:37 +0000)]
Object/COFF: Add function to check if section number is reserved one.

Differential Revision: http://llvm-reviews.chandlerc.com/D3103

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204199 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoMove yet another test that requires ARM to an ARM test directory.
NAKAMURA Takumi [Tue, 18 Mar 2014 23:12:09 +0000 (23:12 +0000)]
Move yet another test that requires ARM to an ARM test directory.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204198 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoMove tests that require ARM to an ARM test directory.
Jim Grosbach [Tue, 18 Mar 2014 22:43:59 +0000 (22:43 +0000)]
Move tests that require ARM to an ARM test directory.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204197 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoFix use_iterator crash in ObjCArc from r203364
Duncan P. N. Exon Smith [Tue, 18 Mar 2014 22:32:43 +0000 (22:32 +0000)]
Fix use_iterator crash in ObjCArc from r203364

The use_iterator redesign in r203364 introduced an increment past the
end of a range in -objc-arc-contract.  Added an explicit check for the
end of the range.

<rdar://problem/16333235>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204195 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoC++ style comments
Jim Grosbach [Tue, 18 Mar 2014 22:13:13 +0000 (22:13 +0000)]
C++ style comments

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204194 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoTidy up. Update per naming conventions.
Jim Grosbach [Tue, 18 Mar 2014 22:09:10 +0000 (22:09 +0000)]
Tidy up. Update per naming conventions.

No functional change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204192 91177308-0d34-0410-b5e6-96231b3b80d8

10 years agoMachO: Emit a version-min load command when possible.
Jim Grosbach [Tue, 18 Mar 2014 22:09:08 +0000 (22:09 +0000)]
MachO: Emit a version-min load command when possible.

When deployment target version information is available, emit it to the
target streamer for inclusion in the object file.

rdar://11337778

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204191 91177308-0d34-0410-b5e6-96231b3b80d8