2013-08-26 07:37:15 +04:00
|
|
|
%# -*- c -*-
|
|
|
|
#include "ruby/ruby.h"
|
|
|
|
<%
|
|
|
|
class String
|
|
|
|
def tr_cpp
|
|
|
|
strip.upcase.tr_s("^A-Z0-9_*", "_").tr_s("*", "P")
|
|
|
|
end
|
|
|
|
end
|
2016-04-25 08:39:12 +03:00
|
|
|
headers = Hash.new {[]}
|
|
|
|
sizes = {}
|
2015-06-03 15:00:50 +03:00
|
|
|
types = ARGF.grep(/^\s*RUBY_CHECK_SIZEOF\((\w[^\[\],#]*)[^#]*\)|
|
2015-06-29 01:24:05 +03:00
|
|
|
^\s*RUBY_DEFINT\((\w[^\[\],#]*)[^#]*\)|
|
2016-04-25 08:39:12 +03:00
|
|
|
^\s*have_type\('(.+?)'(?:,\s*%w\[(.+)\])?\)/x) do
|
|
|
|
sizes[type = $3] = true
|
|
|
|
hdrs = $4 and hdrs.split.each {|h| headers[h] <<= type}
|
|
|
|
type || $+
|
|
|
|
end
|
2013-08-26 07:37:15 +04:00
|
|
|
conditions = {
|
|
|
|
"long long" => 'defined(HAVE_TRUE_LONG_LONG)',
|
|
|
|
}
|
|
|
|
%>
|
2016-04-25 08:39:12 +03:00
|
|
|
% headers.each do |h, type|
|
|
|
|
#if <%= type.map {|t| "defined(HAVE_TYPE_#{t.tr_cpp})"}.join(' || ') %>
|
|
|
|
# include <<%= h %>>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
% end
|
2017-09-30 02:41:19 +03:00
|
|
|
extern void Init_limits(void);
|
2013-08-26 07:37:15 +04:00
|
|
|
void
|
2013-11-18 18:19:16 +04:00
|
|
|
Init_sizeof(void)
|
2013-08-26 07:37:15 +04:00
|
|
|
{
|
|
|
|
VALUE s = rb_hash_new();
|
|
|
|
rb_define_const(rb_define_module("RbConfig"), "SIZEOF", s);
|
|
|
|
|
2016-04-25 08:38:55 +03:00
|
|
|
#define DEFINE(type, size) rb_hash_aset(s, rb_str_new_cstr(#type), INT2FIX(SIZEOF_##size))
|
2016-04-25 08:39:12 +03:00
|
|
|
#define DEFINE_SIZE(type) rb_hash_aset(s, rb_str_new_cstr(#type), INT2FIX(sizeof(type)))
|
2013-08-26 07:37:15 +04:00
|
|
|
|
|
|
|
% types.each do |type|
|
2016-04-25 08:39:12 +03:00
|
|
|
% if sizes[type]
|
|
|
|
#ifdef HAVE_TYPE_<%= type.tr_cpp %>
|
|
|
|
DEFINE_SIZE(<%= type %>);
|
|
|
|
#endif
|
|
|
|
% next
|
|
|
|
% end
|
2013-08-26 07:37:15 +04:00
|
|
|
% cond = conditions[type]
|
|
|
|
#if SIZEOF_<%= type.tr_cpp %> != 0<%= " && #{cond}" if cond %>
|
|
|
|
DEFINE(<%= type %>, <%= type.tr_cpp %>);
|
|
|
|
#endif
|
|
|
|
% end
|
2017-04-06 05:33:40 +03:00
|
|
|
OBJ_FREEZE(s);
|
2013-08-26 07:37:15 +04:00
|
|
|
|
|
|
|
#undef DEFINE
|
2017-04-06 05:33:40 +03:00
|
|
|
Init_limits();
|
2013-08-26 07:37:15 +04:00
|
|
|
}
|