summaryrefslogtreecommitdiff
path: root/tool/ruby_vm/views/ujit_examples.inc.erb
blob: af0561f852de2ccf1a626c008b12596d5776a9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* -*- 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