mirror of
https://github.com/ruby/ruby.git
synced 2025-09-22 12:04:01 +02:00
19 lines
703 B
Text
19 lines
703 B
Text
/* -*- C -*- */
|
|
|
|
%# Copyright (c) 2020 Wu, Alan. All rights reserved.
|
|
%#
|
|
%# This file is a part of the programming language Ruby. Permission is hereby
|
|
%# granted, to either redistribute and/or modify this file, provided that the
|
|
%# conditions mentioned in the file COPYING are met. Consult the file for
|
|
%# details.
|
|
<%= render 'copyright' %>
|
|
<%= render 'notice', locals: {
|
|
this_file: 'contains raw instruction bytes that helps MicroJIT generate code',
|
|
edit: __FILE__,
|
|
} -%>
|
|
|
|
% success, byte_arrays = RubyVM::MicroJIT.scrape
|
|
static const uint8_t ujit_scrape_successful = <%= success %>;
|
|
% byte_arrays.each do |(name, bytes)|
|
|
static const uint8_t <%= name %>[] = { <%= bytes %> };
|
|
% end
|