1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/ExecutionEngine/MCJIT
David Blaikie ab043ff680 [opaque pointer type] Add textual IR support for explicit type parameter to 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
2015-02-27 21:17:42 +00:00
..
Inputs
remote [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
2002-12-16-ArgTest.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
2003-01-04-ArgumentBug.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-01-04-LoopTest.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-01-04-PhiTest.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-01-09-SARTest.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-01-10-FUCOM.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-01-15-AlignmentTest.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-05-06-LivenessClobber.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
2003-05-07-ArgumentTest.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
2003-05-11-PHIRegAllocBug.ll [MCJIT] Remove a few redundant MCJIT tests, and drop the extraneous datalayout 2015-01-08 18:52:15 +00:00
2003-06-04-bzip2-bug.ll [MCJIT] Remove a few redundant MCJIT tests, and drop the extraneous datalayout 2015-01-08 18:52:15 +00:00
2003-06-05-PHIBug.ll [MCJIT] Remove a few redundant MCJIT tests, and drop the extraneous datalayout 2015-01-08 18:52:15 +00:00
2003-08-15-AllocaAssertion.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-08-21-EnvironmentTest.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
2003-08-23-RegisterAllocatePhysReg.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2005-12-02-TailCallBug.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
2007-12-10-APIntLoadStore.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
2008-06-05-APInt-OverAShr.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
2013-04-04-RelocAddend.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
cross-module-a.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
cross-module-sm-pic-a.ll MCJIT tests passing on ARM after r222414 fixed the relocation 2014-11-20 13:32:16 +00:00
eh-lg-pic.ll XFAIL several MCJIT EH tests under ASan and MSan bootstrap. 2015-01-07 21:27:26 +00:00
eh-sm-pic.ll XFAIL several MCJIT EH tests under ASan and MSan bootstrap. 2015-01-07 21:27:26 +00:00
eh.ll XFAIL several MCJIT EH tests under ASan and MSan bootstrap. 2015-01-07 21:27:26 +00:00
fpbitcast.ll [opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction 2015-02-27 19:29:02 +00:00
hello2.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
hello-sm-pic.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
hello.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
lit.local.cfg Reverting r226937: lit: Make MCJIT's supported arch check case insensitive 2015-01-24 01:42:44 +00:00
load-object-a.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
multi-module-a.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
multi-module-eh-a.ll XFAIL several MCJIT EH tests under ASan and MSan bootstrap. 2015-01-07 21:27:26 +00:00
multi-module-sm-pic-a.ll MCJIT tests passing on ARM after r222414 fixed the relocation 2014-11-20 13:32:16 +00:00
non-extern-addend.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
pr13727.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
simplesttest.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
simpletest.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
stubs-sm-pic.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
stubs.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-arith.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-branch.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-call-no-external-funcs.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-call.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-cast.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-common-symbols-alignment.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-common-symbols.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-constantexpr.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-data-align.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-fp-no-external-funcs.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-fp.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-global-ctors.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-global-init-nonzero-sm-pic.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-global-init-nonzero.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-global.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-loadstore.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-local.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-logical.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-loop.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-phi.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-ptr-reloc-sm-pic.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-ptr-reloc.ll [opaque pointer type] Add textual IR support for explicit type parameter to load instruction 2015-02-27 21:17:42 +00:00
test-ret.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-return.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-setcond-fp.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-setcond-int.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00
test-shift.ll Reinstate "Nuke the old JIT." 2014-09-02 22:28:02 +00:00