summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM64/ARM64CollectLOH.cpp
Commit message (Collapse)AuthorAgeFilesLines
* AArch64/ARM64: move ARM64 into AArch64's placeTim Northover2014-05-241-1117/+0
| | | | | | | | | | | | | | | This commit starts with a "git mv ARM64 AArch64" and continues out from there, renaming the C++ classes, intrinsics, and other target-local objects for consistency. "ARM64" test directories are also moved, and tests that began their life in ARM64 use an arm64 triple, those from AArch64 use an aarch64 triple. Both should be equivalent though. This finishes the AArch64 merge, and everyone should feel free to continue committing as normal now. llvm-svn: 209577
* [C++11] Add 'override' keywords and remove 'virtual'. Additionally add ↵Craig Topper2014-04-291-3/+3
| | | | | | 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. ARM64 edition llvm-svn: 207509
* [C++] Use 'nullptr'. Target edition.Craig Topper2014-04-251-7/+7
| | | | llvm-svn: 207197
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-221-1/+2
| | | | | | | definition below all of the header #include lines, lib/Target/... edition. llvm-svn: 206842
* Fixing a compile error in debug versions of MSVC. It seems that the ↵Aaron Ballman2014-04-161-1/+2
| | | | | | range-based for loop is confused by the DEBUG macro expansion unless a compound statement is used. llvm-svn: 206376
* ARM64: Nuke some dead code.Jim Grosbach2014-04-161-1/+0
| | | | | | Missed in previous commit. llvm-svn: 206343
* [ARM64,C++11] Clean up the ARM64 LOH collection pass.Jim Grosbach2014-04-151-155/+114
| | | | | | | | Range'ify a bunch of loops, mainly. As a result, we have a variety of objects via reference rather than by pointer, so propogate that through the various helper functions where it makes sense. llvm-svn: 206337
* Fix some doc and comment typosAlp Toker2014-04-091-3/+3
| | | | llvm-svn: 205899
* Tidy up. Space before ':' in range-based for loops.Jim Grosbach2014-04-031-2/+2
| | | | llvm-svn: 205585
* Make some range based loop types more explicit.Jim Grosbach2014-04-021-4/+4
| | | | | | No functional change, but more readable code. llvm-svn: 205451
* [C++11,ARM64] Range based for loops for LOHJim Grosbach2014-04-021-34/+21
| | | | | | No functional change intended. llvm-svn: 205440
* [ARM64][CollectLOH] Remove the link to the radar from the comments.Quentin Colombet2014-04-021-3/+0
| | | | llvm-svn: 205435
* [ARM64][CollectLOH] Add some comments to explain how the LOHsQuentin Colombet2014-04-021-1/+52
| | | | | | | framework works (for the compiler part), since the design document is not available. llvm-svn: 205379
* ARM64CollectLOH.cpp: Tweak \param. [-Wdocumentation]NAKAMURA Takumi2014-03-311-1/+1
| | | | llvm-svn: 205162
* Fix a few -Wdocumentation warningsDmitri Gribenko2014-03-291-3/+3
| | | | llvm-svn: 205116
* ARM64: initial backend importTim Northover2014-03-291-0/+1122
This adds a second implementation of the AArch64 architecture to LLVM, accessible in parallel via the "arm64" triple. The plan over the coming weeks & months is to merge the two into a single backend, during which time thorough code review should naturally occur. Everything will be easier with the target in-tree though, hence this commit. llvm-svn: 205090
OpenPOWER on IntegriCloud