aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Revert "Add -fno-inline to LLVM device flags.""Stephen Hines2015-01-291-4/+0
|\
| * Revert "Add -fno-inline to LLVM device flags."Stephen Hines2015-01-211-4/+0
| | | | | | | | | | | | | | | | This reverts commit 666dcadba6e445a06085ee785721bab99a01a226. Bug: 18808781 Change-Id: I222968a99bdafe2368c97d1602081bbcdff70ed0
* | Merge "MISched: Fix moving stores across barriers"Stephen Hines2015-01-292-6/+49
|\ \ | |/
| * MISched: Fix moving stores across barriersTom Stellard2015-01-212-6/+49
|/ | | | | | | | This fixes an issue with ScheduleDAGInstrs::buildSchedGraph where stores without an underlying object would not be added as a predecessor to the current BarrierChain. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223717 91177308-0d34-0410-b5e6-96231b3b80d8
* Merge "Pass LSAN_OPTIONS down so that it is possible to add suppressions."Dan Albert2015-01-081-1/+2
|\
| * Pass LSAN_OPTIONS down so that it is possible to add suppressions.Rafael Espindola2015-01-081-1/+2
| | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224777 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 50c8c5686ec5fbae19d8ec72d46b228feb960862)
* | Merge "Split executeShTest into two parts so that it can be better leveraged ↵Dan Albert2015-01-081-13/+18
|\ \ | |/ | | | | by libc++"
| * Split executeShTest into two parts so that it can be better leveraged by libc++Eric Fiselier2015-01-081-13/+18
| | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224672 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 2bea59bd02fe2a448314dfba205cd748a66ac6b9)
* | Merge "[LIT] Add JSONMetricValue type to wrap types supported by the json ↵Dan Albert2015-01-081-0/+36
|\ \ | |/ | | | | encoder."
| * [LIT] Add JSONMetricValue type to wrap types supported by the json encoder.Eric Fiselier2015-01-081-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: The following types can be encoded and decoded by the json library: `dict`, `list`, `tuple`, `str`, `unicode`, `int`, `long`, `float`, `bool`, `NoneType`. `JSONMetricValue` can be constructed with any of these types, and used as part of Test.Result. This patch also adds a toMetricValue function that converts a value into a MetricValue. Reviewers: ddunbar, EricWF Reviewed By: EricWF Subscribers: cfe-commits, llvm-commits Differential Revision: http://reviews.llvm.org/D6576 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224628 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 74430387cd6b1d0e3f89b604f747fa53fc3315b3)
* | Merge "Now that we require a newer python, use the new exception syntax."Dan Albert2015-01-081-1/+1
|\ \ | |/
| * Now that we require a newer python, use the new exception syntax.Rafael Espindola2015-01-081-1/+1
| | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224130 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit fe6c7ee0f0e11a368d8c98db7e75d26c1c2b32e6)
* | Merge "Require python 2.7."Dan Albert2015-01-086-20/+18
|\ \ | |/
| * Require python 2.7.Rafael Espindola2015-01-086-20/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We were already requiring 2.5, which meant that people on old linux distros had to upgrade anyway. Requiring python 2.6 will make supporting 3.X easier as we can use the 3.X exception syntax. According to the discussion on llvmdev, there is not much value is requiring just 2.6, we may as well just require 2.7. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224129 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 708bc15ff07dc2fcee3a66988bfc5bc15b80eb5f)
* | Merge "[LIT] Add support for `UNSUPPORTED` tag to ↵Dan Albert2015-01-082-19/+29
|\ \ | |/ | | | | `TestRunner.parseIntegratedTestScript`"
| * [LIT] Add support for `UNSUPPORTED` tag to ↵Eric Fiselier2015-01-082-19/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `TestRunner.parseIntegratedTestScript` Summary: This patch gives me just enough to leverage the existing functionality in `TestRunner` for use in `libc++` and `libc++abi` . It does the following: * Adds the `UNSUPPORTED` tag to `TestRunner.parseIntegratedTestScript`. * Allows `parseIntegratedTestScript` to return an empty script if a script is not required by the caller. Reviewers: ddunbar, EricWF Reviewed By: EricWF Subscribers: cfe-commits, llvm-commits Differential Revision: http://reviews.llvm.org/D6589 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223915 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit bd112609813171fad2eeb4ad5f7a9cd95fc78b2e)
* | Merge "lit: Don't use python 2.6 features"Dan Albert2015-01-081-1/+1
|\ \ | |/
| * lit: Don't use python 2.6 featuresDavid Majnemer2015-01-081-1/+1
| | | | | | | | | | | | | | LLVM supports python 2.5, this fixes a (somewhat) recent regression. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223626 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 726bd4160263609011b3a8168bde045203fd021b)
* | Merge "Fix for xunit output to work around issue in Jenkins when tests are ↵Dan Albert2015-01-081-1/+1
|\ \ | |/ | | | | at the root level"
| * Fix for xunit output to work around issue in Jenkins when tests are at the ↵Chris Matthews2015-01-081-1/+1
| | | | | | | | | | | | | | root level git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223562 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit ab1837aef3d93a0bf2294aeaeb488c62e3d45535)
* | Merge "Fix corner cases in lit xunit for paths with dots"Dan Albert2015-01-081-2/+9
|\ \ | |/
| * Fix corner cases in lit xunit for paths with dotsChris Matthews2015-01-081-2/+9
| | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223549 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 689f10d1b56f68fafd999debc86e0b58d2d5de80)
* | Merge "Add a test-case for lit xunit output"Dan Albert2015-01-081-0/+10
|\ \ | |/
| * Add a test-case for lit xunit outputChris Matthews2015-01-081-0/+10
| | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223307 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 0baca9564c9df7b06645f71abdda0fe3090f46a6)
* | Merge "Don't allow test-suite names with . in them in xml output"Dan Albert2015-01-082-6/+8
|\ \ | |/
| * Don't allow test-suite names with . in them in xml outputChris Matthews2015-01-082-6/+8
| | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223305 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 06a1a5f256cabe6d20cf745cd93b389815c988a9)
* | Merge "Give lit a --xunit-xml-output option for saving results in xunit format"Dan Albert2015-01-082-7/+55
|\ \ | |/
| * Give lit a --xunit-xml-output option for saving results in xunit formatChris Matthews2015-01-082-7/+55
|/ | | | | | | | | --xunit-xml-output saves test results to disk in JUnit's xml format. This will allow Jenkins to report the details of a lit run. Based on a patch by David Chisnall. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223163 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit dcedd15f58e7b76c2ee61c8030799c209104229b)
* Merge "Don't clobber LOCAL_CFLAGS_arm64 in llvm-device-build."Tim Murray2015-01-051-1/+1
|\
| * Don't clobber LOCAL_CFLAGS_arm64 in llvm-device-build.Tim Murray2015-01-051-1/+1
| | | | | | | | | | | | bug 18808781 Change-Id: Iabd483a8ec91a4bb6a21e4569c53f28271abdd22
* | Merge "Add -fno-inline to LLVM device flags."Tim Murray2015-01-051-0/+4
|\ \ | |/
| * Add -fno-inline to LLVM device flags.Tim Murray2014-12-301-0/+4
| | | | | | | | | | | | | | | | | | This works around a problem in the last rebase where RS compiles using an AArch64-based toolchain crash. bug 18808781 Change-Id: I6c51cf6fc34a1da9182b11fae9471791fa959e6e
* | Merge "Update LLVM lit test configuration to be able to work for 3.6."Stephen Hines2014-12-226-2/+157
|\ \
| * | Update LLVM lit test configuration to be able to work for 3.6.Stephen Hines2014-12-196-2/+157
|/ / | | | | | | | | | | | | | | | | | | | | Add support for building more host verification tools: + LLVMHello.so (loadable plugin pass) + lli-child-target + llvm-symbolizer (missing some Android.mk magic) + llvm-vtabledump + verify-uselistorder Change-Id: Id7a9397bf458e97fc330ea0301ebb001750aac7c
* | Merge "Build opt for the device."Tim Murray2014-12-191-0/+16
|\ \ | |/
| * Build opt for the device.Tim Murray2014-12-191-0/+16
|/ | | | Change-Id: I3b62c323c3d0062b5de3900f7e285f0dbf2ce533
* Merge "Update aosp/master LLVM for rebase to r222494."Stephen Hines2014-12-045086-104450/+265811
|\
| * Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-025086-104450/+265811
|/ | | | Change-Id: Ic787f5e0124df789bd26f3f24680f45e678eef2d
* Merge "glibc has <sys/uio.h>."Elliott Hughes2014-11-251-1/+1
|\
| * glibc has <sys/uio.h>.Elliott Hughes2014-11-251-1/+1
|/ | | | Change-Id: Iaed181ce8f142355b69b8fd9590f62199c13e534
* Merge "Don't use libgcc_s on Darwin."Dan Albert2014-11-091-2/+4
|\
| * Don't use libgcc_s on Darwin.Dan Albert2014-11-081-2/+4
|/ | | | | | Apple doesn't have a libgcc_s. Change-Id: I2d20a579ec629afb2487e61b962c7f22a920c845
* Merge "Enable 64-bit builds of all host LLVM tools."Dan Albert2014-11-081-3/+2
|\
| * Enable 64-bit builds of all host LLVM tools.Stephen Hines2014-11-081-3/+2
|/ | | | | | | | | | Bug: 10653601 Bug: 13751317 We need to manually specify the same libgcc_s that is linked with all other host tools, because the libc++ build rules explicitly pass -nodefaultlibs. Change-Id: If85ebb2949f456a2ed5cc412e7d1510cc72a3c76
* am fbc55c91: Merge "Revert "Enable 64-bit builds of all host LLVM tools.""Stephen Hines2014-11-061-2/+3
|\ | | | | | | | | * commit 'fbc55c91b9e9eb1f38fd2b9b1a4a1bb3a9c50ef4': Revert "Enable 64-bit builds of all host LLVM tools."
| * Merge "Revert "Enable 64-bit builds of all host LLVM tools.""Stephen Hines2014-11-051-2/+3
| |\
| | * Revert "Enable 64-bit builds of all host LLVM tools."Stephen Hines2014-11-051-2/+3
| | | | | | | | | | | | | | | | | | This reverts commit f514d2c2b4a722b311d2f2c2a8762d7a83d42c00. Change-Id: I240b55287c4c8a812b95b950a9a928f3e36628c5
* | | am e5a80829: Merge "Enable 64-bit builds of all host LLVM tools."Stephen Hines2014-11-051-3/+2
|\ \ \ | |/ / | | | | | | | | | * commit 'e5a8082990418db051a52f003033a480ca691bec': Enable 64-bit builds of all host LLVM tools.
| * | Merge "Enable 64-bit builds of all host LLVM tools."Stephen Hines2014-11-051-3/+2
| |\ \ | | |/
| | * Enable 64-bit builds of all host LLVM tools.Stephen Hines2014-11-041-3/+2
| |/ | | | | | | | | | | | | | | | | | | Bug: 10653601 Bug: 13751317 We need to manually specify the same libgcc_s that is linked with all other host tools, because the libc++ build rules explicitly pass -nodefaultlibs. Change-Id: I09e7d2894e2be90ac81223b523688973fcb7de9a