aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-18 14:34:23 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-18 14:34:23 +0000
commita0a1d0f268994610932c2ae51df9d8f759591b01 (patch)
treedca13ef23597970323a2cd7b838099aeadfb14bc
parent661cf78bef8db2c55ae1511eadd1e918f63efa8d (diff)
downloadruby-a0a1d0f268994610932c2ae51df9d8f759591b01.tar.gz
* gc.c (gc_profile_dump_major_reason): fix this function because major_reason
can be OR of multiple reasons. * gc.c (gc_profile_dump_on): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--gc.c49
-rw-r--r--test/runner.rb1
3 files changed, 40 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index c6712b0a31..971aecbcb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Dec 18 23:31:04 2013 Koichi Sasada <ko1@atdot.net>
+
+ * gc.c (gc_profile_dump_major_reason): fix this function because major_reason
+ can be OR of multiple reasons.
+
+ * gc.c (gc_profile_dump_on): ditto.
+
Wed Dec 18 17:03:00 2013 Koichi Sasada <ko1@atdot.net>
* gc.c (gc_profile_record_get): should return an empty array
diff --git a/gc.c b/gc.c
index 5330f35d3d..59c9d25811 100644
--- a/gc.c
+++ b/gc.c
@@ -7042,24 +7042,36 @@ gc_profile_record_get(void)
}
#if GC_PROFILE_MORE_DETAIL
-static const char *
-gc_profile_dump_major_reason(int reason)
-{
- switch (reason & GPR_FLAG_MAJOR_MASK) {
-#define C(x, s) case GPR_FLAG_MAJOR_BY_##x: return s
- case GPR_FLAG_NONE: return "-";
- C(NOFREE, "+");
- C(OLDGEN, "O");
- C(SHADY, "S");
- C(RESCAN, "R");
- C(STRESS, "!");
+#define MAJOR_REASON_MAX 0x10
+
+static char *
+gc_profile_dump_major_reason(int flags, char *buff)
+{
+ int reason = flags & GPR_FLAG_MAJOR_MASK;
+ int i = 0;
+
+ if (reason == GPR_FLAG_NONE) {
+ buff[0] = '-';
+ buff[1] = 0;
+ }
+ else {
+#define C(x, s) \
+ if (reason & GPR_FLAG_MAJOR_BY_##x) { \
+ buff[i++] = #x[0]; \
+ if (i >= MAJOR_REASON_MAX) rb_bug("gc_profile_dump_major_reason: overflow"); \
+ buff[i] = 0; \
+ }
+ C(NOFREE, N);
+ C(OLDGEN, O);
+ C(SHADY, S);
+ C(RESCAN, R);
+ C(STRESS, T);
#if RGENGC_ESTIMATE_OLDMALLOC
- C(OLDMALLOC, "M");
+ C(OLDMALLOC, M);
#endif
- default:
- rb_bug("gc_profile_dump_major_reason: no such reason");
#undef C
}
+ return buff;
}
#endif
@@ -7068,6 +7080,9 @@ gc_profile_dump_on(VALUE out, VALUE (*append)(VALUE, VALUE))
{
rb_objspace_t *objspace = &rb_objspace;
size_t count = objspace->profile.next_index;
+#ifdef MAJOR_REASON_MAX
+ char reason_str[MAJOR_REASON_MAX];
+#endif
if (objspace->profile.run && count /* > 1 */) {
size_t i;
@@ -7087,7 +7102,7 @@ gc_profile_dump_on(VALUE out, VALUE (*append)(VALUE, VALUE))
append(out, rb_str_new_cstr("\n\n" \
"More detail.\n" \
"Prepare Time = Previously GC's rest sweep time\n"
- "Index Flags Allocate Inc. Allocate Limit"
+ "Index Flags Allocate Inc. Allocate Limit"
#if CALC_EXACT_MALLOC_SIZE
" Allocated Size"
#endif
@@ -7102,7 +7117,7 @@ gc_profile_dump_on(VALUE out, VALUE (*append)(VALUE, VALUE))
for (i = 0; i < count; i++) {
record = &objspace->profile.records[i];
- append(out, rb_sprintf("%5"PRIdSIZE" %s/%c/%6s%c %13"PRIuSIZE" %15"PRIuSIZE
+ append(out, rb_sprintf("%5"PRIdSIZE" %4s/%c/%6s%c %13"PRIuSIZE" %15"PRIuSIZE
#if CALC_EXACT_MALLOC_SIZE
" %15"PRIuSIZE
#endif
@@ -7116,7 +7131,7 @@ gc_profile_dump_on(VALUE out, VALUE (*append)(VALUE, VALUE))
"\n",
i+1,
- gc_profile_dump_major_reason(record->flags),
+ gc_profile_dump_major_reason(record->flags, reason_str),
(record->flags & GPR_FLAG_HAVE_FINALIZE) ? 'F' : '.',
(record->flags & GPR_FLAG_NEWOBJ) ? "NEWOBJ" :
(record->flags & GPR_FLAG_MALLOC) ? "MALLOC" :
diff --git a/test/runner.rb b/test/runner.rb
index 94beb448cd..7637f8d1bf 100644
--- a/test/runner.rb
+++ b/test/runner.rb
@@ -19,6 +19,7 @@ module Test::Unit
def after_teardown
super
assert_empty(Process.waitall)
+ GC.verify_internal_consistency
end
end
class TestCase