summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Don't use AVX/XSTATE API on Windows.Zachary Turner2015-02-183-70/+34
| | | | | | | | | | | | | CopyContext is necessary to safely get the XState, but LLDB doesn't currently use the XState. CopyContext is available as of Windows 7 SP1, so it can't be used on Vista. Furthermore, it requires the Windows 8 SDK it compile, making the baseline for compiling and running LLDB higher than necessary. Patch by: Adrian McCarthy Reviewed by: Zachary Turner Differential Revision: http://reviews.llvm.org/D7572 llvm-svn: 229710
* InstrProf: Make CoverageMapping testable and add a basic unit testJustin Bogner2015-02-184-13/+110
| | | | | | | | Make CoverageMapping easier to create, so that we can write targeted unit tests for its internals, and add a some infrastructure to write these tests. Finally, add a simple unit test for basic functionality. llvm-svn: 229709
* Move the default template arguments into the forward declarations for the ↵Marshall Clow2015-02-182-4/+4
| | | | | | container adapters: stack and queue. References PR#22605. llvm-svn: 229708
* [libcxx] Tired of colorless compile errors? Enable color diagnostics today!Eric Fiselier2015-02-182-0/+30
| | | | | | | | | | | | | | | | | | | Summary: This patch adds a lit option to enable color diagnostics when either `--param=color_diagnostics` is passed to LIT or `LIBCXX_COLOR_DIAGNOSTICS` is present in the environment. My only concern with this patch is that GCC and Clang take different flags and that only GCC 4.9 and greater support `-fdiagnostics-color=always` Does anybody have objections to this going in? Reviewers: jroelofs, danalbert Reviewed By: danalbert Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D7729 llvm-svn: 229707
* [mips][microMIPS] Make usage of ADDU16 and SUBU16 by code generatorJozef Kolek2015-02-184-3/+42
| | | | | | Differential Revision: http://reviews.llvm.org/D7609 llvm-svn: 229706
* Move the default template arguments into the forward declarations for the ↵Marshall Clow2015-02-183-5/+6
| | | | | | containers: deque, forwardlist and list. References PR#22605. llvm-svn: 229705
* Add decorator for fd leak test failing on FreeBSDEd Maste2015-02-181-0/+3
| | | | | | | | | An fd leak comes from Python on FreeBSD FreeBSD ports PR: https://bugs.freebsd.org/197376 Python issue: https://bugs.python.org/issue23458 llvm-svn: 229704
* clang-format: [JS] support AtScript style annotations for JS.Daniel Jasper2015-02-182-1/+20
| | | | | | | | Based on Java annotation support and style. Patch by Martin Probst. llvm-svn: 229703
* [mips][microMIPS] Implement JALX instructionJozef Kolek2015-02-183-2/+8
| | | | | | Differential Revision: http://reviews.llvm.org/D5047 llvm-svn: 229702
* clang-format: [JS] Support classes.Daniel Jasper2015-02-183-4/+20
| | | | | | | | | | This adds support for JavaScript class definitions (again following TypeScript & AtScript style). This only required support for visibility modifiers in JS, everything else was already working. Patch by Martin Probst, thank you. llvm-svn: 229701
* clang-format: [JS] Support type annotations.Daniel Jasper2015-02-183-7/+26
| | | | | | | | | | This patch adds support for type annotations that follow TypeScript's, Flow's, and AtScript's syntax style. Patch by Martin Probst, thank you. Review: http://reviews.llvm.org/D7721 llvm-svn: 229700
* Fixed missing checkins.John Thompson2015-02-182-0/+18
| | | | llvm-svn: 229699
* Enable testing with _LIBCPP_DEBUG and fix bad assertions in string_view.Eric Fiselier2015-02-183-2/+21
| | | | llvm-svn: 229698
* Fix broken link to 'Obtaining Commit Access'Alex Denisov2015-02-181-2/+2
| | | | llvm-svn: 229697
* [libc++] Fix PR20084 - std::is_function<void() const> failed.Eric Fiselier2015-02-182-15/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: This patch introduces some black magic to detect const and volatile qualified function types such as `void () const`. The patch works in the following way: We first rule out any type that satisfies on of the following. These restrictions are important so that the test below works properly. * `is_class<_Tp>::value` * `is_union<_Tp>::value` * `is_void<_Tp>::value` * `is_reference<_Tp>::value` * `__is_nullptr_t<_Tp>::value` If none of the above is true we perform overload resolution on `__source<_Tp>(0)` to determine the return type. * If `_Tp&` is well-formed we select `_Tp& __source(int)`. `_Tp&` is only ill formed for cv void types and cv/ref qualified function types. * Otherwise we select `__dummy_type __source(...)`. Since we know `_Tp` cannot be void then it must be a function type. let `R` be the returned from `__source<_Tp>(0)`. We perform overload resolution on `__test<_Tp>(R)`. * If `R` is `__dummy_type` we call `true_type __test(__dummy_type)`. * if `R` is `_Tp&` and `_Tp&` decays to `_Tp*` we call `true_type __test(_Tp*)`. Only references to function types decay to a pointer of the same type. * In all other cases we call `false_type __test(...)`. `__source<_Tp>(0)` will try and form `_Tp&` in the return type. if `_Tp&` is not well formed the return type of `__source<_Tp>(0)` will be dummy type. `_Tp&` is only ill-formed for cv/ref qualified function types (and void which is dealt with elsewhere). This fixes PR20084 - http://llvm.org/bugs/show_bug.cgi?id=20084 Reviewers: rsmith, K-ballo, mclow.lists Reviewed By: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D7573 llvm-svn: 229696
* [mips] Add backend support for Mips32r[35] and Mips64r[35].Daniel Sanders2015-02-1862-115/+4892
| | | | | | | | | | | | | | | | | Summary: These ISA's didn't add any instructions so they are almost identical to Mips32r2 and Mips64r2. Even the ELF e_flags are the same, However the ISA revision in .MIPS.abiflags is 3 or 5 respectively instead of 2. Reviewers: vmedic Reviewed By: vmedic Subscribers: tomatabacu, llvm-commits, atanasyan Differential Revision: http://reviews.llvm.org/D7381 llvm-svn: 229695
* This patch adds the VSX logical instructions introduced in the Power ISA ↵Kit Barton2015-02-186-3/+95
| | | | | | | | | | 2.07. It also removes the added complexity that favors VMX versions of the three instructions. Phabricator review: http://reviews.llvm.org/D7616 Commiting on Nemanja's behalf. llvm-svn: 229694
* Added support for extracting headers from module maps as a source for the ↵John Thompson2015-02-186-17/+325
| | | | | | header list. llvm-svn: 229692
* Add missing exports file and remove unused onesTamas Berghammer2015-02-182-0/+0
| | | | | | | | These files required by the excode project Patch from: flackr <flackr@google.com> llvm-svn: 229691
* Temporary hack to avoid false errors. Real fix comming.John Thompson2015-02-181-0/+3
| | | | llvm-svn: 229690
* R600/SI: Don't set isCodeGenOnly = 1 on all instructionsTom Stellard2015-02-184-5/+19
| | | | | | | We only need to set this on pseudo instructions which won't be used by the assembler. llvm-svn: 229689
* R600/SI: Add missing VOP1 instructionsTom Stellard2015-02-182-5/+18
| | | | llvm-svn: 229688
* R600/SI: Add missing VOP2 instructionsTom Stellard2015-02-181-2/+9
| | | | llvm-svn: 229687
* R600/SI: Add definition for S_CBRANCH_G_FORKTom Stellard2015-02-182-1/+13
| | | | llvm-svn: 229686
* R600/SI: Add missing SOP1 instructionsTom Stellard2015-02-182-12/+27
| | | | llvm-svn: 229685
* R600/SI: Refactor SOP2 definitionsTom Stellard2015-02-181-25/+17
| | | | llvm-svn: 229684
* Merge lldb-platform and lldb-gdbserver into a single binaryTamas Berghammer2015-02-1813-526/+150
| | | | | | | | | | | | | This commit merges lldb-platform and lldb-gdbserver into a single binary of the same size as each of the previous individual binaries. Execution mode is controlled by the first argument being either platform or gdbserver. Patch from: flackr <flackr@google.com> Differential revision: http://reviews.llvm.org/D7545 llvm-svn: 229683
* Fix make_symlink in case when symlink already exists (after r229517)Ilia K2015-02-181-0/+2
| | | | llvm-svn: 229682
* Fix line crossing 80 column border.Hafiz Abid Qadeer2015-02-181-1/+1
| | | | llvm-svn: 229681
* Change representation of member function pointers for MIPS targetsZoran Jovanovic2015-02-187-1/+22
| | | | | | Differential Revision: http://reviews.llvm.org/D7148 llvm-svn: 229680
* [ASan/Win] Speculative fix to make the sed command line work with all sed ↵Timur Iskhodzhanov2015-02-181-1/+3
| | | | | | implementations llvm-svn: 229679
* tsan: fix signal handling during stop-the-worldDmitry Vyukov2015-02-182-50/+85
| | | | | | | | | | Long story short: stop-the-world briefly resets SIGSEGV handler to SIG_DFL. This breaks programs that handle and continue after SIGSEGV (namely JVM). See the test and comments for details. http://reviews.llvm.org/D7722 llvm-svn: 229678
* Updated file comment on modularize usage, as it was out-of-date.John Thompson2015-02-181-3/+23
| | | | llvm-svn: 229677
* Fix test/CodeGen/atomic_ops.c failure on clang-cmake-mips builder (and others).Daniel Sanders2015-02-181-1/+2
| | | | | | | | | Not all targets generate 'store atomic' instructions for '_Atomic(_Complex int)'. Some targets use the __atomic_store builtin instead. This commit makes the test accept either one. llvm-svn: 229676
* [mips] Avoid redundant sign extension of the result of binary bitwise ↵Vasileios Kalintiris2015-02-184-13/+11
| | | | | | | | | | | | instructions. Reviewers: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D7581 llvm-svn: 229675
* Fix typo in make_symlink after r229517. It fixes symlinks on a UNIX style ↵Ilia K2015-02-181-1/+0
| | | | | | platform. llvm-svn: 229674
* Prevent use after free caused by accessing a member into a dense set.Daniel Jasper2015-02-181-1/+2
| | | | | | | | The member gets invalidated as elements are added to the dense set. Directly access the underlying pointer instead. Not sure how to create a test case for this :-(. Maybe Richard can help. llvm-svn: 229673
* X86: Use bitset to manage a bag of bits. NFC.Benjamin Kramer2015-02-181-7/+3
| | | | | | | Doesn't matter in terms of memory usage or perf here, but it's a neat simplification. llvm-svn: 229672
* [mips] [IAS] Fix using .cpsetup with local labels (PR22518).Toma Tabacu2015-02-184-9/+59
| | | | | | | | | | | | | | | | | Summary: Parse for an MCExpr instead of an Identifier and use the symbol for relocations, not just the symbol's name. This fixes errors when using local labels in .cpsetup (PR22518). Reviewers: dsanders Reviewed By: dsanders Subscribers: seanbruno, emaste, llvm-commits Differential Revision: http://reviews.llvm.org/D7697 llvm-svn: 229671
* [x86] Tighten the assertions to document that canonicalization hasChandler Carruth2015-02-181-4/+5
| | | | | | | actually removed all but a *very* small number of choices for v2i64. Also remove dead code handling cases that simply cannot arise. llvm-svn: 229670
* [x86] Switch an if which is trivially true to an assert. NFCChandler Carruth2015-02-181-14/+14
| | | | llvm-svn: 229669
* [x86] Remove some more 'bit' nomenclature from the generic shiftChandler Carruth2015-02-181-3/+3
| | | | | | lowering. llvm-svn: 229668
* [MSan][MIPS] VarArgHelper for MIPS64Mohit K. Bhakkad2015-02-181-0/+104
| | | | | | | | | | Reviewers: Reviewers: eugenis, kcc, samsonov, petarj Subscribers: dsanders, sagar, llvm-commits Differential Revision: http://reviews.llvm.org/D7182 llvm-svn: 229667
* Remove alias template from GDBRemoteCommunicationServerCommonTamas Berghammer2015-02-181-5/+2
| | | | | | | It is required because MSVC 2013 doesn't generate correct code for template aliases. llvm-svn: 229666
* Enable ASAN build and test on AArch64Renato Golin2015-02-181-1/+1
| | | | llvm-svn: 229665
* Fix some warnings in MSVC build.Hafiz Abid Qadeer2015-02-181-3/+2
| | | | | | | | | | Platform.h was causing soem warning due to multiple defined maros. It already has a define that excludes the singal.h but that was not being used at correct place. It has been fixed now. Tested by building on Windows(MSVC) and Linux(gcc). llvm-svn: 229664
* Fix a typo.Hafiz Abid Qadeer2015-02-181-1/+1
| | | | llvm-svn: 229663
* [x86] Fold together the two shift lowering strategies. They were doingChandler Carruth2015-02-181-150/+68
| | | | | | | | | quite literally the same work, we just need to special case the >64-bit element shift code emission to emit the byte shift instructions and offsets. This also makes reasoning about each of the vector lowering strategies easier as we don't have to remember to use both forms. llvm-svn: 229662
* [ARM] Add missing M/R class CPUsBradley Smith2015-02-185-13/+41
| | | | | | | | | | | | Add some of the missing M and R class Cortex CPUs, namely: Cortex-M0+ (called Cortex-M0plus for GCC compatibility) Cortex-M1 SC000 SC300 Cortex-R5 llvm-svn: 229661
* [ARM] Add missing M/R class CPUsBradley Smith2015-02-182-0/+186
| | | | | | | | | | | | Add some of the missing M and R class Cortex CPUs, namely: Cortex-M0+ (called Cortex-M0plus for GCC compatibility) Cortex-M1 SC000 SC300 Cortex-R5 llvm-svn: 229660
OpenPOWER on IntegriCloud