Commit fb61d96c by Martin Liska Committed by Martin Liska

Support nested functions (PR sanitizer/78541).

	PR sanitizer/78541
	* gcc.dg/asan/pr78541-2.c: New test.
	* gcc.dg/asan/pr78541.c: New test.
	PR sanitizer/78541
	* asan.c (asan_expand_mark_ifn): Properly
	select a VAR_DECL from FRAME.* component reference.

From-SVN: r243003
parent e03fb6ec
2016-11-30 Martin Liska <mliska@suse.cz>
PR sanitizer/78541
* asan.c (asan_expand_mark_ifn): Properly
select a VAR_DECL from FRAME.* component reference.
2016-11-30 Segher Boessenkool <segher@kernel.crashing.org>
PR rtl-optimization/78583
......@@ -2713,6 +2713,12 @@ asan_expand_mark_ifn (gimple_stmt_iterator *iter)
tree base = gimple_call_arg (g, 1);
gcc_checking_assert (TREE_CODE (base) == ADDR_EXPR);
tree decl = TREE_OPERAND (base, 0);
/* For a nested function, we can have: ASAN_MARK (2, &FRAME.2.fp_input, 4) */
if (TREE_CODE (decl) == COMPONENT_REF
&& DECL_NONLOCAL_FRAME (TREE_OPERAND (decl, 0)))
decl = TREE_OPERAND (decl, 0);
gcc_checking_assert (TREE_CODE (decl) == VAR_DECL);
if (asan_handled_variables == NULL)
asan_handled_variables = new hash_set<tree> (16);
......
2016-11-30 Martin Liska <mliska@suse.cz>
PR sanitizer/78541
* gcc.dg/asan/pr78541-2.c: New test.
* gcc.dg/asan/pr78541.c: New test.
2016-11-30 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/78586
......
/* PR sanitizer/78560 */
/* { dg-do compile } */
void __quadmath_mpn_extract_flt128 (long *fp_input);
int fn1 ()
{
long fp_input[1];
int hack_digit () { __quadmath_mpn_extract_flt128 (fp_input); }
}
// PR sanitizer/78560
// { dg-do run }
// { dg-shouldfail "asan" }
void foo (double a, double b)
{
double *ptr;
{
double x = a + b;
ptr = &x;
}
double square () { __builtin_printf ("", *ptr); }
square ();
}
int main()
{
foo (1.2f, 2.3f);
return 0;
}
// { dg-output "ERROR: AddressSanitizer: stack-use-after-scope on address.*(\n|\r\n|\r)" }
// { dg-output "READ of size.*" }
// { dg-output ".*'x' <== Memory access at offset \[0-9\]* is inside this variable.*" }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment