summaryrefslogtreecommitdiff
path: root/mjit.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-10 01:55:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-10 01:55:47 +0000
commit5b794fee3911528fea9e97cce2d32b3cf9b16400 (patch)
tree024a46dc1e861aad086fa701e4cff1298661f3e0 /mjit.c
parent0e1a5ece622a3a7967914e43cb4ad6b68000136d (diff)
mjit.c: replaced magic numbers
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'mjit.c')
-rw-r--r--mjit.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/mjit.c b/mjit.c
index 3755bd32cd..3a0055b6fe 100644
--- a/mjit.c
+++ b/mjit.c
@@ -653,6 +653,7 @@ make_pch(void)
#define append_str2(p, str, len) ((char *)memcpy((p), str, (len))+(len))
#define append_str(p, str) append_str2(p, str, sizeof(str)-1)
+#define append_lit(p, str) append_str2(p, str, rb_strlen_lit(str))
/* Compile C file to so. It returns 1 if it succeeds. */
static int
@@ -693,7 +694,7 @@ compile_c_to_so(const char *c_file, const char *so_file)
#ifdef _MSC_VER
solen = strlen(so_file);
p = (char *)output[0] = xmalloc(3 + solen + 1);
- p = append_str(p, "-Fe");
+ p = append_lit(p, "-Fe");
p = append_str2(p, so_file, solen);
*p = '\0';
args = form_args(4, (mjit_opts.debug ? VC_COMMON_ARGS_DEBUG : VC_COMMON_ARGS),
@@ -1152,6 +1153,7 @@ init_header_filename(void)
size_t verlen;
static const char header_name[] =
"/" MJIT_HEADER_INSTALL_DIR "/" RUBY_MJIT_HEADER_NAME;
+ const size_t header_name_len = sizeof(header_name) - 1;
char *p;
#ifdef _WIN32
static const char libpathflag[] =
@@ -1161,6 +1163,7 @@ init_header_filename(void)
"-L"
# endif
;
+ const size_t libpathflag_len = sizeof(libpathflag) - 1;
#endif
basedir_val = rb_const_get(rb_cObject, rb_intern_const("TMP_RUBY_PREFIX"));
@@ -1168,11 +1171,11 @@ init_header_filename(void)
baselen = RSTRING_LEN(basedir_val);
verlen = strlen(ruby_version);
- header_file = xmalloc(baselen + sizeof(header_name) + verlen + 2);
+ header_file = xmalloc(baselen + header_name_len + verlen + rb_strlen_lit(".h") + 1);
p = append_str2(header_file, basedir, baselen);
- p = append_str2(p, header_name, sizeof(header_name)-1);
+ p = append_str2(p, header_name, header_name_len);
p = append_str2(p, ruby_version, verlen);
- p = append_str2(p, ".h", 3);
+ p = append_str2(p, ".h", rb_strlen_lit(".h") + 1);
if ((fd = rb_cloexec_open(header_file, O_RDONLY, 0)) < 0) {
verbose(2, "Cannot access header file %s\n", header_file);
xfree(header_file);
@@ -1182,14 +1185,14 @@ init_header_filename(void)
(void)close(fd);
#ifdef _WIN32
- p = libruby_build = xmalloc(sizeof(libpathflag)-1 + baselen + 1);
+ p = libruby_build = xmalloc(libpathflag_len + baselen + 1);
p = append_str(p, libpathflag);
p = append_str2(p, basedir, baselen);
*p = '\0';
- libruby_installed = xmalloc(sizeof(libpathflag)-1 + baselen + 4 + 1);
+ libruby_installed = xmalloc(libpathflag_len + baselen + rb_strlen_lit("/lib") + 1);
p = append_str2(libruby_installed, libruby_build, p - libruby_build);
- p = append_str(p, "/lib");
+ p = append_lit(p, "/lib");
*p = '\0';
#endif
}