|
From: <sv...@va...> - 2015-04-21 12:27:17
|
Author: cborntra
Date: Tue Apr 21 13:27:09 2015
New Revision: 15121
Log:
increase function size even more (see r15095). On s390 this testcase
might use a relative load (e.g. via load address relative long(larl)
for the address) into the literal pool for some constants. 1280 seems
to be enough that the r/o data is copied along the function.
Modified:
trunk/perf/bigcode.c
Modified: trunk/perf/bigcode.c
==============================================================================
--- trunk/perf/bigcode.c (original)
+++ trunk/perf/bigcode.c Tue Apr 21 13:27:09 2015
@@ -20,7 +20,8 @@
#endif
#include "tests/sys_mman.h"
-#define FN_SIZE 1024 // Must be big enough to hold the compiled f()
+#define FN_SIZE 1280 // Must be big enough to hold the compiled f()
+ // and any literal pool that might be used
#define N_LOOPS 20000 // Should be divisible by four
#define RATIO 4 // Ratio of code sizes between the two modes
|