116件ヒット
[101-116件を表示]
(0.136秒)
別のキーワード
ライブラリ
- ビルトイン (116)
クラス
キーワード
- compile (12)
-
compile
_ file (12) -
compile
_ option (12) -
compile
_ option= (12) - disasm (12)
- disassemble (12)
-
load
_ from _ binary (10) -
load
_ from _ binary _ extra _ data (10) - new (12)
- of (12)
検索結果
先頭2件
-
RubyVM
:: InstructionSequence . load _ from _ binary _ extra _ data(binary) -> String (21019.0) -
バイナリフォーマットの文字列から埋め込まれたextra_dataを取り出します。
...埋め込まれたextra_dataを取り出します。
//emlist[例][ruby]{
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
binary = iseq.to_binary("extra_data")
RubyVM::InstructionSequence.load_from_binary_extra_data(binary) # => extra_data
//}
@see RubyVM::InstructionSequence#to_binary... -
RubyVM
:: InstructionSequence . compile _ option -> Hash (21013.0) -
命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返 します。
...スのコンパイル時のデフォルトの最適化オプションを Hash で返
します。
//emlist[例][ruby]{
require "pp"
pp RubyVM::InstructionSequence.compile_option
# => {:inline_const_cache=>true,
# :peephole_optimization=>true,
# :tailcall_optimization=>false,
# :specialized_instruc......>true,
# :operands_unification=>true,
# :instructions_unification=>false,
# :stack_caching=>false,
# :trace_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}
@see RubyVM::InstructionSequence.compile_option=...