Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [SystemZ] Add support for fentry. | Jonas Paulsson | 2019-09-03 | 1 | -0/+1 |
| | | | | | | | SystemZAsmPrinter now properly emits function calls to __fentry__. Review: Ulrich Weigand llvm-svn: 370743 | ||||
* | [AsmPrinter] refactor to remove remove AsmVariant. NFC | Nick Desaulniers | 2019-04-10 | 1 | -4/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Summary: The InlineAsm::AsmDialect is only required for X86; no architecture makes use of it and as such it gets passed around between arch-specific and general code while being unused for all architectures but X86. Since the AsmDialect is queried from a MachineInstr, which we also pass around, remove the additional AsmDialect parameter and query for it deep in the X86AsmPrinter only when needed/as late as possible. This refactor should help later planned refactors to AsmPrinter, as this difference in the X86AsmPrinter makes it harder to make AsmPrinter more generic. Reviewers: craig.topper Subscribers: jholewinski, arsenm, dschuff, jyknight, dylanmckay, sdardis, nemanjai, jvesely, nhaehnle, javed.absar, sbc100, jgravelle-google, eraman, hiraditya, aheejin, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, jsji, llvm-commits, peter.smith, srhines Tags: #llvm Differential Revision: https://reviews.llvm.org/D60488 llvm-svn: 358101 | ||||
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| | | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636 | ||||
* | [SystemZ] Support stackmaps and patchpoints | Ulrich Weigand | 2018-03-02 | 1 | -1/+16 |
| | | | | | | | This adds back-end support for the @llvm.experimental.stackmap and @llvm.experimental.patchpoint intrinsics. llvm-svn: 326611 | ||||
* | Use StringRef in Pass/PassManager APIs (NFC) | Mehdi Amini | 2016-10-01 | 1 | -3/+1 |
| | | | | llvm-svn: 283004 | ||||
* | Refactor a lot of duplicated code for stub output. | Rafael Espindola | 2015-04-07 | 1 | -1/+0 |
| | | | | | | | This also moves it earlier so that it they are produced before we print an end symbol for the data section. llvm-svn: 234315 | ||||
* | Remove the local subtarget variable from the SystemZ asm printer | Eric Christopher | 2015-02-19 | 1 | -6/+1 |
| | | | | | | and update the two calls accordingly. llvm-svn: 229805 | ||||
* | std::unique_ptrify the MCStreamer argument to createAsmPrinter | David Blaikie | 2015-01-18 | 1 | -2/+2 |
| | | | | llvm-svn: 226414 | ||||
* | Canonicalize header guards into a common format. | Benjamin Kramer | 2014-08-13 | 1 | -2/+2 |
| | | | | | | | | | | Add header guards to files that were missing guards. Remove #endif comments as they don't seem common in LLVM (we can easily add them back if we decide they're useful) Changes made by clang-tidy with minor tweaks. llvm-svn: 215558 | ||||
* | [SystemZ] Remove "virtual" from override methods | Richard Sandiford | 2014-03-06 | 1 | -12/+10 |
| | | | | | | | Also fix a couple of cases where "override" was missing. No behavioural change intended. llvm-svn: 203110 | ||||
* | Switch all uses of LLVM_OVERRIDE to just use 'override' directly. | Craig Topper | 2014-03-02 | 1 | -7/+7 |
| | | | | llvm-svn: 202621 | ||||
* | [SystemZ] Add back end | Ulrich Weigand | 2013-05-06 | 1 | -0/+52 |
This adds the actual lib/Target/SystemZ target files necessary to implement the SystemZ target. Note that at this point, the target cannot yet be built since the configure bits are missing. Those will be provided shortly by a follow-on patch. This version of the patch incorporates feedback from reviews by Chris Lattner and Anton Korobeynikov. Thanks to all reviewers! Patch by Richard Sandiford. llvm-svn: 181203 |