summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [msan] Reformat one source file.Evgeniy Stepanov2014-07-041-22/+10
| | | | llvm-svn: 212329
* Phabricator doc: Explicit the fact that the patch needs to be there before ↵Sylvestre Ledru2014-07-041-0/+1
| | | | | | the commit llvm-svn: 212328
* gcc comptability: silent -fdefer-pop & -fno-defer-pop Sylvestre Ledru2014-07-042-0/+3
| | | | | | | | | | | | Reviewers: rafael, rnk Reviewed By: rnk Subscribers: rnk, cfe-commits Differential Revision: http://reviews.llvm.org/D4357 llvm-svn: 212327
* [x86] Relax the line in this check to pacify build bots.Chandler Carruth2014-07-041-1/+1
| | | | | | | I still don't love testing the comments, but its the only sane way to check shuffle instructions... llvm-svn: 212326
* [x86] Move some check lines to be slightly easier for me to find.Chandler Carruth2014-07-041-2/+2
| | | | | | (meant to put this cleanup in the previous patch, sorry) llvm-svn: 212325
* [x86] Generalize BuildVectorSDNode::getConstantSplatValue to work forChandler Carruth2014-07-047-113/+148
| | | | | | | | | | | | | | | | | | | | | | | | any constant, constant FP, or undef splat and to tolerate any undef lanes in a splat, then replace all uses of isSplatVector in X86's lowering with it. This fixes issues where undef lanes in an otherwise splat vector would prevent the splat logic from firing. It is a touch more awkward to use this interface, but it is much more accurate. Suggestions for better interface structuring welcome. With this fix, the code generated with the widening legalization strategy for widen_cast-4.ll is *dramatically* improved as the special lowering strategies for a v16i8 SRA kick in even though the high lanes are undef. We also get a slightly different choice for broadcasting an aligned memory location, and use vpshufd instead of vbroadcastss. This looks like a minor win for pipelining and domain crossing, but a minor loss for the number of micro-ops. I suspect its a wash, but folks can easily tweak the lowering if they want. llvm-svn: 212324
* Add an explicit bool operator to SDValue to make it easier to test forChandler Carruth2014-07-041-0/+3
| | | | | | | a non-null node. In particular, this makes it easier to use condition variables with SDValues, etc. llvm-svn: 212323
* [sanitizer] support c11 aligned_alloc, Linux only for nowKostya Serebryany2014-07-048-1/+35
| | | | llvm-svn: 212322
* [X86] Limit maximum nop length on SilvermontAlexey Volkov2014-07-043-3/+15
| | | | | | | | | | | Silvermont can only decode one instruction per cycle if the instruction exceeds 8 bytes. Also in Silvermont instructions with more than 3 prefixes will cause 3 cycle penalty. Maximum nop length is limited to 7 bytes when used for padding on Silvermont. For other x86 processors max nop length remains unchanged 15 bytes. Differential Revision: http://reviews.llvm.org/D4374 llvm-svn: 212321
* Windows build fixes and removal of endlessly recursive termination function.Todd Fiala2014-07-043-13/+12
| | | | | | | | | | | | | This change removes the ScriptInterpreter::TerminateInterpreter() call which ended up endlessly calling itself as things currently stand. It also cleans up some other Windows-related cmake changes. See http://lists.cs.uiuc.edu/pipermail/lldb-commits/Week-of-Mon-20140630/011544.html for more details. Change by Zachary Turner llvm-svn: 212320
* Fix Windows build when python is not explicitly enabledTodd Fiala2014-07-041-1/+3
| | | | | | | | | | | Currently Windows disables Python builds by default. This change ensures we don't process the scripts dir when we're on Windows unless we're explicitly enabling python, which prevents a build error. Change by Deepak Panickal llvm-svn: 212319
* XCore target: remove incorrect DebugLoc entries from prologueRobert Lytton2014-07-043-5/+49
| | | | | | | | Summary: This was causing the prologue_end to be incorrectly positioned. Differential Revision: http://reviews.llvm.org/D4122 llvm-svn: 212318
* Fix OptionDefinition break from r212290.Todd Fiala2014-07-041-15/+15
| | | | | | | | Fixes some structure definitions in CommandObjectType that needed to be adjusted for a new OptionDefinition field. llvm-svn: 212317
* Let test/Unit/lit.cfg add config.shlibdir to $PATH on DLL platforms like ↵NAKAMURA Takumi2014-07-044-0/+16
| | | | | | | | cygming. This makes unittests run with BUILD_SHARED_LIBS on DLL platforms. llvm-svn: 212316
* [CMake] Introduce LLVM_ENABLE_PLUGINS as an internal option. ↵NAKAMURA Takumi2014-07-042-8/+17
| | | | | | | | | | | BUILD_SHARED_LIBS may not control enable/disable plugins. FIXME: Make this configurable. FIXME: "ENABLE_SHARED" doesn't make sense, since it is used just for plugins. We may rename it. I introduced config.enable_shared in r120273. llvm-svn: 212315
* [CMake] Introduce LLVM_SHLIB_OUTPUT_INTDIR.NAKAMURA Takumi2014-07-042-1/+7
| | | | | | For now, its user is configure_lit_site_cfg(). llvm-svn: 212314
* [CMake] Fix set_output_directory to do nothing if *_OUTPUT_INTDIR was not given.NAKAMURA Takumi2014-07-041-0/+5
| | | | llvm-svn: 212313
* Trailing linefeedNAKAMURA Takumi2014-07-041-1/+0
| | | | llvm-svn: 212312
* Fixed test CodeGen/captured-statements.c for powerpc64-linux.Alexey Bataev2014-07-041-2/+2
| | | | llvm-svn: 212311
* Fix prefix comparison from r212308Alp Toker2014-07-041-1/+2
| | | | llvm-svn: 212310
* Move function dependent resetting of a subtarget variable out of theEric Christopher2014-07-0410-26/+28
| | | | | | | | | | subtarget. This involved having the movt predicate take the current function - since we care about size in instruction selection for whether or not to use movw/movt take the function so we can check the attributes. This required adding the current MachineFunction to FastISel and propagating through. llvm-svn: 212309
* Sink undesirable LTO functions into the old C APIAlp Toker2014-07-043-40/+20
| | | | | | | | | We want to encourage users of the C++ LTO API to reuse memory buffers instead of repeatedly opening and reading the same file contents. This reverts commit r212305 and implements a tidier scheme. llvm-svn: 212308
* InstSimplify: Fix a bug when INT_MIN is in a sdivDavid Majnemer2014-07-042-3/+20
| | | | | | | | | | | | | When INT_MIN is the numerator in a sdiv, we would not properly handle overflow when calculating the bounds of possible values; abs(INT_MIN) is not a meaningful number. Instead, check and handle INT_MIN by reasoning that the largest value is INT_MIN/-2 and the smallest value is INT_MIN. This fixes PR20199. llvm-svn: 212307
* [mach-o] Add parsing of arm/thumb relocationsNick Kledzik2014-07-046-95/+1319
| | | | | | | | | | This converts the very complicated mach-o arm relocations into the simple Reference Kinds in lld. The next patch will use the internal Reference kinds to fix up arm/thumb code. llvm-svn: 212306
* Modify LTOModule::isTargetMatch to take a StringRef instead of a MemoryBuffer.Peter Collingbourne2014-07-032-10/+10
| | | | llvm-svn: 212305
* Fix -Wnull-conversion warning.Zachary Turner2014-07-031-1/+1
| | | | llvm-svn: 212304
* gold plugin: move target initialization to the top of the onload function.Peter Collingbourne2014-07-031-5/+6
| | | | | | | | | | On at least my machine, ar does not register an all symbols read hook (which previously triggered target initialization), but it does register a claim files hook, which depends on the targets being initialized. Differential Revision: http://reviews.llvm.org/D4372 llvm-svn: 212303
* LTO: rename the various makeLTOModule overloads.Peter Collingbourne2014-07-035-34/+33
| | | | | | | | | This rename makes it easier to identify the specific overload being called in each particular case and makes future refactorings easier. Differential Revision: http://reviews.llvm.org/D4370 llvm-svn: 212302
* Move createIRObjectFile to the IRObjectFile class and return the concrete type.Rafael Espindola2014-07-033-5/+5
| | | | llvm-svn: 212301
* [x86] Clarify that this lowering only applies to vectors and is onlyChandler Carruth2014-07-031-3/+2
| | | | | | used when we have SSE2. llvm-svn: 212300
* Use std::unique_ptr to manage memory. No functionality change.Rafael Espindola2014-07-032-16/+17
| | | | llvm-svn: 212299
* Temporarily revert "Don't try to construct debug LexicalScopes hierarchy for ↵Eric Christopher2014-07-038-212/+44
| | | | | | | | functions that do not have top level debug information." as it appears to be breaking some LTO constructs. This reverts commit r212203. llvm-svn: 212298
* Remove caching of the target machine and initialization of theEric Christopher2014-07-031-10/+5
| | | | | | | subtarget from ARMISelDAGtoDAG. The former is unnecessary and the latter is initialized on each runOnMachineFunction. llvm-svn: 212297
* [CostModel][x86] Improved cost model for alternate shuffles.Andrea Di Biagio2014-07-033-20/+468
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch: 1) Improves the cost model for x86 alternate shuffles (originally added at revision 211339); 2) Teaches the Cost Model Analysis pass how to analyze alternate shuffles. Alternate shuffles are a special kind of blend; on x86, we can often easily lowered alternate shuffled into single blend instruction (depending on the subtarget features). The existing cost model didn't take into account subtarget features. Also, it had a couple of "dead" entries for vector types that are never legal (example: on x86 types v2i32 and v2f32 are not legal; those are always either promoted or widened to 128-bit vector types). The new x86 cost model takes into account what target features we have before returning the shuffle cost (i.e. the number of instructions after the blend is lowered/expanded). This patch also teaches the Cost Model Analysis how to identify and analyze alternate shuffles (i.e. 'SK_Alternate' shufflevector instructions): - added function 'isAlternateVectorMask'; - added some logic to check if an instruction is a alternate shuffle and, in case, call the target specific TTI to get the corresponding shuffle cost; - added a test to verify the cost model analysis on alternate shuffles. llvm-svn: 212296
* Add the -just-symbol-name (aka -j) flag to llvm-nm to just print theKevin Enderby2014-07-032-0/+17
| | | | | | | | symbol’s name. On darwin the -j flag is used (often in combinations with other flags) to produce a complete list of symbol names which than can then be reorder and used with ld(1)’s -order_file. llvm-svn: 212294
* [X86] Add ISel patterns to select 'f32_to_f16' and 'f16_to_f32' dag nodes.Andrea Di Biagio2014-07-033-0/+87
| | | | | | | | | | This patch adds tablegen patterns to select F16C float-to-half-float conversion instructions from 'f32_to_f16' and 'f16_to_f32' dag nodes. If the target doesn't have F16C, then 'f32_to_f16' and 'f16_to_f32' are expanded into library calls. llvm-svn: 212293
* Expand the note about llvm-ar now that inline asm works.Rafael Espindola2014-07-031-1/+2
| | | | llvm-svn: 212292
* Make a small crash preventing change.Fariborz Jahanian2014-07-031-2/+2
| | | | llvm-svn: 212291
* Adds the notion of an OptionValidator.Zachary Turner2014-07-0332-380/+387
| | | | | | | | | | | | | | | | | | The purpose of the OptionValidator is to determine, based on some arbitrary set of conditions, whether or not a command option is valid for a given debugger state. An example of this might be to selectively disable or enable certain command options that don't apply to a particular platform. This patch contains no functional change, and does not actually make use of an OptionValidator for any purpose yet. A follow-up patch will begin to add the logic and users of OptionValidator. Reviewed by: Greg Clayton, Jim Ingham Differential Revision: http://reviews.llvm.org/D4369 llvm-svn: 212290
* Move test since it now depends on the x86 backend.Rafael Espindola2014-07-031-0/+0
| | | | llvm-svn: 212289
* LTO depends on Object now.Rafael Espindola2014-07-031-1/+1
| | | | | | | Fixes the build with only the ARM backend enabled. For some reason some other backend was pulling Object and this went unnoticed. llvm-svn: 212288
* Add support for inline asm symbols in llvm-ar.Rafael Espindola2014-07-034-1/+27
| | | | | | | This should allow llvm-ar to be used instead of gnu ar + plugin in a LTO build. I will add a release note about it once I finish a LTO bootstrap with it. llvm-svn: 212287
* Add a cmake build system.Dan Albert2014-07-034-0/+355
| | | | | | | Will add support for tests with lit in a later patch. This does not yet support building the unwinder in src/Unwind. llvm-svn: 212286
* Restore global static array in test caseGerolf Hoflehner2014-07-031-1/+1
| | | | llvm-svn: 212285
* Run interprocedural const prop before global optimizerGerolf Hoflehner2014-07-031-1/+1
| | | | | | | | | | | Exposes more constant globals that can be removed by the global optimizer. A specific example is the removal of the static global block address array in clang/test/CodeGen/indirect-goto.c. This change impacts only lower optimization levels. With LTO interprocedural const prop runs already before global opt. llvm-svn: 212284
* fix configure+make buildRafael Espindola2014-07-031-1/+1
| | | | llvm-svn: 212283
* Add support for inline asm symbols to IRObjectFile.Rafael Espindola2014-07-0310-127/+300
| | | | | | This also enables it in llvm-nm so that it can be tested. llvm-svn: 212282
* The RTTI fallback is no more. Remove outdated diagnostic.Benjamin Kramer2014-07-031-3/+0
| | | | llvm-svn: 212281
* Add the -U flag to llvm-nm as an alias to -defined-onlyKevin Enderby2014-07-032-0/+8
| | | | | | as darwin’s nm(1) uses -U for this functionality. llvm-svn: 212280
* fixed typo in commentSanjay Patel2014-07-031-1/+1
| | | | llvm-svn: 212279
OpenPOWER on IntegriCloud