Felipe de Azevedo Piovezan
a321b0afe0
[DebugInfo] Update tests to expect new LLVM debug format
2024-07-23 11:06:12 -07:00
Felipe de Azevedo Piovezan
1ed9df0a0c
[DebugInfo] Update tests to use opaque ptrs
2023-06-16 15:05:44 -04:00
Arnold Schwaighofer
c1a93e0bde
Move tests over to use the %use_no_opaque_pointers option
2023-06-14 10:49:48 -07:00
Adrian Prantl
ff22da20c3
Debug Info: Encode let-bindings using DW_TAG_const_type.
...
This allows the debugger to distinguish constant "let" values from
mutable "var" variables.
rdar://problem/16042546
2019-09-25 08:51:05 -07:00
Davide Italiano
854dffb200
[DebugInfo] Stop handling InOut types, they'll be gone soon.
...
<rdar://problem/46043909>
2018-12-06 13:38:34 -08:00
Erik Eckstein
39bb14b094
change mangling prefix from $S to $s
...
This is the final ABI mangling prefix
rdar://problem/38471478
2018-09-19 13:55:11 -07:00
Erik Eckstein
cd3d50a5d9
ABI: Change the mangling prefix from _T0 to $S
2018-01-06 13:55:59 -08:00
Pavel Yaskevich
600b15821d
[Mangling/ABI] NFC: Fix DebugInfo tests to reflect label mangling changes
2017-12-18 15:44:24 -08:00
Adrian Prantl
dc24c29bc8
Adapt to upstream LLVM changes in pretty-printing DIExpression.
2017-08-24 08:53:22 -07:00
Erik Eckstein
e9b4db13ee
Reinstate "AllocBoxToStack: Improve alloc_stack/dealloc_stack scoping"
...
This reverts commit c7ef60c7ed .
It also contains an additional test for the fix in StackNesting
2017-03-30 09:40:09 -07:00
Erik Eckstein
c7ef60c7ed
Revert "AllocBoxToStack: Improve alloc_stack/dealloc_stack scoping"
...
It broke some bots.
This reverts commit 43ddc2a643 .
2017-03-30 07:59:05 -07:00
Erik Eckstein
43ddc2a643
AllocBoxToStack: Improve alloc_stack/dealloc_stack scoping
...
Instead of inserting all alloc_stack/dealloc_stack instructions at the begin/end of the function, insert them at the actual lifetime boundaries.
rdar://problem/16723128
2017-03-29 17:23:16 -07:00
Erik Eckstein
c4a11f4c92
tests: remove the now unused option -new-mangling-for-tests
2017-03-22 11:28:43 -07:00
Erik Eckstein
8e3b05d2f4
IRGen: Use new mangling for llvm type names.
...
This should have no effect on the generated binary.
2017-02-22 09:19:10 -08:00
Erik Eckstein
1d3724666f
tests: convert about 400 tests to the new mangling by using the -new-mangling-for-tests option
...
When the new mangling is enabled permanently, the option can be removed from the RUN command lines again.
2017-01-24 15:27:45 -08:00
Dmitri Gribenko
d175b3b66d
Migrate FileCheck to %FileCheck in tests
2016-08-10 23:52:02 -07:00
Adrian Prantl
361beff9c0
Emit pointer-sized structs only when -gdwarf-types is specified.
...
rdar://problem/25498103
2016-07-05 17:03:10 -07:00
Michael Gottesman
8fc140aab8
Fix bad merge in DebugInfo tests.
...
(cherry picked from commit ec63c19a7d8cd1f839b30bf01af803fd1b3f122b)
2016-05-13 22:04:31 -07:00
Adrian Prantl
0fac43e11f
Adapt to upstream LLVM changes.
...
<rdar://problem/25949511+25962000>
(cherry picked from commit df9dfac609d17cd26d6107f17024c937b1b5b1a2)
2016-05-13 22:04:00 -07:00
Saleem Abdulrasool
4bfdc5c4d4
test: apply some fix-its to DebugInfo tests
...
These tests were causing the current swift compiler to emit fix-it hints for
changes since the tests were written. NFC.
2016-05-05 10:24:19 -07:00
Manav Gabhawala
7928140f79
[SE-0046] Implements consistent function parameter labels by discarding extraneous parameter names and adding _ where necessary
2016-04-06 20:21:58 -04:00
Adrian Prantl
bfd8413c77
Simplify this testcase while making it stricter.
2015-12-22 11:34:27 -08:00
David Farler
8f2fbdc93a
Make function parameters and refutable patterns always immutable
...
All refutable patterns and function parameters marked with 'var'
is now an error.
- Using explicit 'let' keyword on function parameters causes a warning.
- Don't suggest making function parameters mutable
- Remove uses in the standard library
- Update tests
rdar://problem/23378003
2015-11-09 16:56:13 -08:00
Michael Gottesman
6d74962918
Adapt all DebugInfo testcases to the new upstream LLVM metadata format.
...
Swift SVN r31813
2015-09-09 04:37:34 +00:00
Adrian Prantl
4f11ecc1da
Get rid of Int in the debug info tests and preform some general cleanup.
...
<rdar://problem/20856296> Extinguish 'Int' from DebugInfo tests
Swift SVN r31177
2015-08-12 18:16:43 +00:00
Dmitri Hrybenko
0fce5c7b4e
tests: remove uses of println() that are not relevant to the tests
...
Swift SVN r28016
2015-05-01 03:35:50 +00:00
Duncan Exon Smith
c6d42db070
Adapt to MD* => DI* renaming of debug info types
...
Applied the upgrade script from r236120 (LLVM) and r236121 (CFE). This is the
final step of rdar://problem/20434113.
Swift SVN r27925
2015-04-29 21:40:21 +00:00
Duncan Exon Smith
093eb3c365
DebugInfo: Hand-update testcases after LLVM r231082
...
Update debug info testcases after moving the new hierarchy into place in
upstream LLVM r231082.
rdar://problem/19720042
Swift SVN r25715
2015-03-03 19:15:31 +00:00
Dmitri Hrybenko
3b04d1b013
tests: reorganize tests so that they actually use the target platform
...
Most tests were using %swift or similar substitutions, which did not
include the target triple and SDK. The driver was defaulting to the
host OS. Thus, we could not run the tests when the standard library was
not built for OS X.
Swift SVN r24504
2015-01-19 06:52:49 +00:00
Adrian Prantl
162bc8d24c
Updated testcases for upstream assembler changes.
...
Swift SVN r23942
2014-12-15 19:39:21 +00:00
Graham Batty
83f27a8af7
Revert "Mark tests that don't pass on linux as XFAIL."
...
This reverts commit 2711ca86de7bf6a7885ccea24219a48a590b1e95.
Swift SVN r23577
2014-11-24 17:42:13 +00:00
Graham Batty
198402dcfe
Mark tests that don't pass on linux as XFAIL.
...
Swift SVN r23573
2014-11-24 17:40:37 +00:00
Adrian Prantl
d8551038fe
Upgrade debug info tests to the new LLVM debug metadata format.
...
Thanks to Duncan for helping out with the upgrading!
Swift SVN r22512
2014-10-04 00:25:27 +00:00
Ted Kremenek
d075f06573
Require a minimum deployment target of iOS 7 or OSX 10.9
...
Implements <rdar://problem/17532113>
Swift SVN r19451
2014-07-02 06:23:38 +00:00
Ted Kremenek
fad874708e
Adjust test cases.
...
Swift SVN r17964
2014-05-12 22:01:52 +00:00
Adrian Prantl
950f819603
Debug info: support protocol function arguments. rdar://problem/14978875
...
Swift SVN r8261
2013-09-15 01:26:17 +00:00