Delta Between Two Patch Sets: gcc/testsuite/gcc.target/i386/patch-functions-2.c
Issue 5416043 :
[google] Patch to enable efficient function level instrumentation
Left Patch Set: Addressed comments from David for the original patch
Right Patch Set: Updated tests to make them runnable
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
gcc/config/i386/i386.c
gcc/config/i386/i386.md
gcc/config/i386/i386.opt
gcc/config/i386/i386-protos.h
gcc/params.def
gcc/testsuite/gcc.target/i386/patch-functions-1.c
gcc/testsuite/gcc.target/i386/patch-functions-2.c
gcc/testsuite/gcc.target/i386/patch-functions-3.c
gcc/testsuite/gcc.target/i386/patch-functions-4.c
gcc/testsuite/gcc.target/i386/patch-functions-5.c
gcc/testsuite/gcc.target/i386/patch-functions-6.c
gcc/testsuite/gcc.target/i386/patch-functions-7.c
LEFT RIGHT
1 /* { dg-do compile } */ 1 /* { dg-do run } */
2 /* { dg-options "-mpatch-functions-for-instrumentation" } */ 2 /* { dg-options "-mpatch-functions-for-instrumentation -mno-patch-functions-main
-always " } */
3 3
4 /* Function is small to be instrumented with default values. Check there 4 /* Function is small to be instrumented with default values. Check there
5 aren't any nop-bytes at beginning or end of function. */ 5 aren't any nop-bytes at beginning or end of function. */
6 6
7 /* { dg-final { scan-assembler-not ".byte\t0xeb,0x09(.*).byte\t0x90" } } */ 7 /* { dg-final { scan-assembler-not ".byte\t0xeb,0x09(.*).byte\t0x90" } } */
8 /* { dg-final { scan-assembler-not "ret(.*).byte\t0x90(.*).byte\t0x90" } } */ 8 /* { dg-final { scan-assembler-not "ret(.*).byte\t0x90(.*).byte\t0x90" } } */
9 9
10 void foo() { 10 void foo() {
11 int x = 0; 11 int x = 0;
12 } 12 }
13
14 int main() {
15 foo();
16 return 0;
17 }
LEFT RIGHT