summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Hexagon/gp-plus-offset-load.ll
Commit message (Collapse)AuthorAgeFilesLines
* [Hexagon] Remove support for V4Krzysztof Parzyszek2018-10-191-33/+39
| | | | llvm-svn: 344791
* [Hexagon] Remove {{ *}} from testcasesKrzysztof Parzyszek2018-03-061-3/+3
| | | | | | The spaces in the instructions are now consistent. llvm-svn: 326829
* [Hexagon] Missed testcase update in r260895Krzysztof Parzyszek2016-02-151-1/+1
| | | | llvm-svn: 260897
* [Hexagon] Use zero-extending loads for anyextKrzysztof Parzyszek2016-02-151-1/+1
| | | | llvm-svn: 260895
* [opaque pointer type] Add textual IR support for explicit type parameter to ↵David Blaikie2015-03-131-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gep operator Similar to gep (r230786) and load (r230794) changes. Similar migration script can be used to update test cases, which successfully migrated all of LLVM and Polly, but about 4 test cases needed manually changes in Clang. (this script will read the contents of stdin and massage it into stdout - wrap it in the 'apply.sh' script shown in previous commits + xargs to apply it over a large set of test cases) import fileinput import sys import re rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL) def conv(match): line = match.group(1) line += match.group(4) line += ", " line += match.group(2) return line line = sys.stdin.read() off = 0 for match in re.finditer(rep, line): sys.stdout.write(line[off:match.start()]) sys.stdout.write(conv(match)) off = match.end() sys.stdout.write(line[off:]) llvm-svn: 232184
* [opaque pointer type] Add textual IR support for explicit type parameter to ↵David Blaikie2015-02-271-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | load instruction Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 llvm-svn: 230794
* Hexagon: Use absolute addressing mode loads/stores for global+offset Jyotsna Verma2013-02-131-0/+51
instead of redefining separate instructions for them. llvm-svn: 175086
OpenPOWER on IntegriCloud