1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/ruby_vm/views/ujit_examples.inc.erb

19 lines
770 B
Text
Raw Normal View History

/* -*- 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, pre_call_bytes, post_call_bytes = RubyVM::MicroJIT.scrape
static const uint8_t ujit_scrape_successful = <%= success %>;
static const uint8_t ujit_pre_call_bytes[] = { <%= pre_call_bytes %> };
static const uint8_t ujit_post_call_bytes[] = { <%= post_call_bytes %> };