summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-19 12:00:51 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-19 12:00:51 +0000
commit21ecf88ce0bb50dd2014a78e41c78db48f7b0bff (patch)
tree39e68a912834112a5deb3e913548e4c16be43d24 /gc.c
parent158f3547e91792658b6881e32e20ca079af585da (diff)
* gc.c: fix around GC_DEBUG.
* gc.c (RVALUE::line): should be VALUE. On some environment (such as mswin64), `int' introduces alignment mismatch. * gc.c (newobj_of): add an assertion to check VALUE alignment. * gc.c (aligned_malloc): `&' is low priority than `=='. * gc.c: define GC_DEBUG everytime and use it as value 0 or 1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42624 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c22
1 files changed, 15 insertions, 7 deletions
diff --git a/gc.c b/gc.c
index 52b8aa7417..3486e51b2c 100644
--- a/gc.c
+++ b/gc.c
@@ -90,6 +90,13 @@ static ruby_gc_params_t initial_params = {
#endif
};
+/* GC_DEBUG:
+ * enable to embed GC debugging information.
+ */
+#ifndef GC_DEBUG
+#define GC_DEBUG 0
+#endif
+
#if USE_RGENGC
/* RGENGC_DEBUG:
* 1: basic information
@@ -230,9 +237,9 @@ typedef struct RVALUE {
VALUE v3;
} values;
} as;
-#ifdef GC_DEBUG
+#if GC_DEBUG
const char *file;
- int line;
+ VALUE line;
#endif
} RVALUE;
@@ -979,9 +986,10 @@ newobj_of(VALUE klass, VALUE flags, VALUE v1, VALUE v2, VALUE v3)
RANY(obj)->as.values.v2 = v2;
RANY(obj)->as.values.v3 = v3;
-#ifdef GC_DEBUG
+#if GC_DEBUG
RANY(obj)->file = rb_sourcefile();
RANY(obj)->line = rb_sourceline();
+ assert(!SPECIAL_CONST_P(obj)); /* check alignment */
#endif
#if RGENGC_PROFILE
@@ -3339,7 +3347,7 @@ gc_mark_children(rb_objspace_t *objspace, VALUE ptr)
break;
default:
-#ifdef GC_DEBUG
+#if GC_DEBUG
rb_gcdebug_print_obj_condition((VALUE)obj);
#endif
if (BUILTIN_TYPE(obj) == T_NONE) rb_bug("rb_gc_mark(): %p is T_NONE", (void *)obj);
@@ -4619,9 +4627,9 @@ aligned_malloc(size_t alignment, size_t size)
res = (void*)aligned;
#endif
-#if defined(_DEBUG) || defined(GC_DEBUG)
+#if defined(_DEBUG) || GC_DEBUG
/* alignment must be a power of 2 */
- assert((alignment - 1) & alignment == 0);
+ assert(((alignment - 1) & alignment) == 0);
assert(alignment % sizeof(void*) == 0);
#endif
return res;
@@ -5640,7 +5648,7 @@ obj_type_name(VALUE obj)
return type_name(TYPE(obj), obj);
}
-#ifdef GC_DEBUG
+#if GC_DEBUG
void
rb_gcdebug_print_obj_condition(VALUE obj)