- May 27, 2015
-
-
Renato Golin authored
Now that most of the methods in Clang and LLVM that were parsing arch/cpu/fpu strings are using ARMTargetParser, it's time to make it a bit more conforming with what the ABI says. This commit adds some clarification on what build attributes are accepted and which are "non-standard". It also makes clear that the "defaultCPU" and "defaultArch" methods were really just build attribute getters. It also diverges from GCC's behaviour to say that armv2/armv3 are really an ARMv4 in the build attributes, when the ABI has a clear state for that: Pre-v4. llvm-svn: 238344
-
Yaron Keren authored
llvm-svn: 238343
-
Alex Lorenz authored
This commit a 3rd attempt at comitting the initial MIR serialization patch. The first commit (r237708) was reverted in 237730. Then the second commit (r237954) was reverted in r238007, as the MIR library under CodeGen caused a circular dependency where the CodeGen library depended on MIR and MIR library depended on CodeGen. This commit has fixed the dependencies between CodeGen and MIR by reorganizing the MIR serialization code - the code that prints out MIR has been moved to CodeGen, and the MIR library has been renamed to MIRParser. Now the CodeGen library doesn't depend on the MIRParser library, thus the circular dependency no longer exists. --Original Commit Message-- MIR Serialization: print and parse LLVM IR using MIR format. This commit is the initial commit for the MIR serialization project. It creates a new library under CodeGen called 'MIR'. This new library adds a new machine function pass that prints out the LLVM IR using the MIR format. This pass is then added as a last pass when a 'stop-after' option is used in llc. The new library adds the initial functionality for parsing of MIR files as well. This commit also extends the llc tool so that it can recognize and parse MIR input files. Reviewers: Duncan P. N. Exon Smith, Matthias Braun, Philip Reames Differential Revision: http://reviews.llvm.org/D9616 llvm-svn: 238341
-
Jan Vesely authored
reviewer: tstellardAMD llvm-svn: 238337
-
Jan Vesely authored
v2: TargetLoweringBase:: -> TargetLowering:: Use Ops array v3: Explicitly use value 0 for ?DIV Remove redundant newline Differential revision: http://reviews.llvm.org/D7803 reviewer: ab llvm-svn: 238336
-
Diego Novillo authored
Counter symbols created for linkonce functions are not discarded by ELF linkers unless the symbols are placed in the same comdat section as its associated function. llvm-svn: 238335
-
Zoran Jovanovic authored
Differential Revision: http://reviews.llvm.org/D9739 llvm-svn: 238333
-
Rafael Espindola authored
llvm-svn: 238332
-
Rafael Espindola authored
llvm-svn: 238331
-
Rafael Espindola authored
llvm-svn: 238330
-
Rafael Espindola authored
llvm-svn: 238329
-
Rafael Espindola authored
llvm-svn: 238328
-
Rafael Espindola authored
llvm-svn: 238327
-
Jozef Kolek authored
This patch implements microMIPS32r6 BEQZALC, BGEZALC, BGTZALC, BLEZALC, BLTZALC and BNEZALC instructions using mapping. Differential Revision: http://reviews.llvm.org/D10031 llvm-svn: 238325
-
Elena Demikhovsky authored
By Igor Breger (igor.breger@intel.com) llvm-svn: 238322
-
Rafael Espindola authored
llvm-svn: 238320
-
Rafael Espindola authored
llvm-svn: 238317
-
Rafael Espindola authored
llvm-svn: 238315
-
Rafael Espindola authored
llvm-svn: 238311
-
Chandler Carruth authored
manager arguments... I have no idea why, but compilers seem to hate this and its late, so I'm not going to debug it. :: sigh :: This is why we can't have nice things. llvm-svn: 238306
-
Chandler Carruth authored
when invoking run methods. This technique was suggested by Dinesh Dwivedi who also wrote the original patch. During the code review, they explained to me that this isn't a fully general technique as we need to know the signatures of the method candidates. Since this is really a narrower utility, I switched the names and structure to be more clearly a specialized run method invoke helper and commented it accordingly. I still think this is a pretty big win. Very sorry to Dinesh for the extreme delay in landing this patch. I've been far to busy poking at other things. Original review: http://reviews.llvm.org/D3543 llvm-svn: 238305
-
Daniel Sanders authored
This broke the llvm-mips-linux builder and several of our out-of-tree builders. Initial investigations show that the commit probably isn't the problem but reverting anyway while I investigate. llvm-svn: 238302
-
Elena Demikhovsky authored
Implemented DAG lowering for all these forms. Added tests for DAG lowering and encoding. By Igor Breger (igor.breger@intel.com) llvm-svn: 238301
-
Chandler Carruth authored
reviwes.llvm.org to help reduce confusion. llvm-svn: 238295
-
Quentin Colombet authored
With this patch the x86 backend is now shrink-wrapping capable and this functionality can be tested by using the -enable-shrink-wrap switch. The next step is to make more test and enable shrink-wrapping by default for x86. Related to <rdar://problem/20821487> llvm-svn: 238293
-
Quentin Colombet authored
the target can handle a given basic block as prologue or epilogue. Related to <rdar://problem/20821487> llvm-svn: 238292
-
Matthias Braun authored
llvm-svn: 238289
-
Matthias Braun authored
- Clean documentation comment - Change the API to accept an iterator so you can actually pass MachineBasicBlock::end() now. - Add more "const". llvm-svn: 238288
-
Matthias Braun authored
This shouldn't happen, but it's nice not to abort when printing broken machine functions. llvm-svn: 238287
-
Rui Ueyama authored
llvm-svn: 238277
-
Chandler Carruth authored
model the dense vector instruction bonuses. Previously, this code really didn't effectively compute the density of inlined vector instructions and apply the intended inliner bonus. It would try to compute it repeatedly while analyzing the function and didn't handle the case where future vector instructions would tip the scales back towards the bonus. Instead, speculatively apply all possible bonuses to the threshold initially. Once we *know* that a certain bonus can not be applied, subtract it. This should delay early bailout enough to get much more consistent results without actually causing us to analyze huge swaths of code. I expect some (hopefully mild) compile time hit here, and some swings in performance, but this was definitely the intended behavior of these bonuses. This also dramatically simplifies the computation of the bonuses to not interact with each other in confusing ways. The previous code didn't do a good job of this and the values for bonuses may be surprising but are at least now clearly written in the code. Finally, fix code to be in line with comments and use zero as the bailout condition. Patch by Easwaran Raman, with some comment tweaks by me to try and further clarify what is going on with this code. http://reviews.llvm.org/D8267 llvm-svn: 238276
-
Rui Ueyama authored
This type is described in the PE/COFF spec section 7.1. llvm-svn: 238275
-
Filipe Cabecinhas authored
It can be triggered by user input. Bug found with AFL fuzz. llvm-svn: 238272
-
Filipe Cabecinhas authored
Bug found with AFL fuzz. llvm-svn: 238269
-
Filipe Cabecinhas authored
llvm-svn: 238268
-
Filipe Cabecinhas authored
Bug found with AFL fuzz. llvm-svn: 238265
-
Owen Anderson authored
llvm-svn: 238264
-
Filipe Cabecinhas authored
Shouldn't be an assert, since user input can trigger it. Bug found with AFL fuzz. llvm-svn: 238261
-
- May 26, 2015
-
-
Rafael Espindola authored
llvm-svn: 238255
-
Philip Reames authored
Long ago, the poll insertion code assumed that the insertion site was a terminator. As a result, the entry selection code would split a basic block to ensure it could pass a terminator. The insertion code was updated quite a while ago - possibly before it ever landed upstream - but the now redundant work was never removed. While I'm at it, remove a comment which doesn't apply to the upstreamed code. NFC intended. llvm-svn: 238254
-