aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--parse.y23
2 files changed, 23 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 2dfe0e7740..a168993dbe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Fri Jul 4 18:03:35 2014 Koichi Sasada <ko1@atdot.net>
+
+ * parse.y (must_be_dynamic_symbol): refactoring.
+ * add `inline'.
+ * use UNLIKELY().
+ * check only DYNAMIC_SYM_P(), otherwise it is a bug.
+ * lookup_id_str() is not needed in second condition.
+
Fri Jul 4 11:53:56 2014 Koichi Sasada <ko1@atdot.net>
* parse.y: remove unused code
diff --git a/parse.y b/parse.y
index 47899c196c..30e96d376d 100644
--- a/parse.y
+++ b/parse.y
@@ -10414,16 +10414,23 @@ sym_check_asciionly(VALUE str)
*/
static ID intern_str(VALUE str);
-static void
+static inline void
must_be_dynamic_symbol(VALUE x)
{
- st_data_t data;
- if (STATIC_SYM_P(x) && lookup_id_str(RSHIFT((unsigned long)(x),RUBY_SPECIAL_SHIFT), &data)) {
- rb_bug("wrong argument :%s (inappropriate Symbol)", RSTRING_PTR((VALUE)data));
- }
- if (SPECIAL_CONST_P(x) || BUILTIN_TYPE(x) != T_SYMBOL) {
- rb_bug("wrong argument type %s (expected Symbol)",
- rb_builtin_class_name(x));
+ if (UNLIKELY(DYNAMIC_SYM_P(x))) {
+ if (STATIC_SYM_P(x)) {
+ VALUE str;
+
+ if (lookup_id_str(RSHIFT((unsigned long)(x),RUBY_SPECIAL_SHIFT), (st_data_t *)&str)) {
+ rb_bug("wrong argument: %s (inappropriate Symbol)", RSTRING_PTR(str));
+ }
+ else {
+ rb_bug("wrong argument: inappropriate Symbol (%p)", (void *)x);
+ }
+ }
+ else {
+ rb_bug("wrong argument type %s (expected Symbol)", rb_builtin_class_name(x));
+ }
}
}