debugger-ruby_core_source 1.3.3 → 1.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/addr2line.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/constant.h +36 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/dln.h +50 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/encdb.h +169 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/eval_intern.h +213 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/gc.h +104 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/id.h +135 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/insns.inc +187 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/insns_info.inc +724 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/internal.h +392 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/iseq.h +140 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/known_errors.inc +731 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/method.h +138 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/node.h +541 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/node_name.inc +212 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/opt_sc.inc +702 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/optinsn.inc +83 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/optunifs.inc +120 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/parse.h +181 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/probes_helper.h +67 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/regenc.h +227 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/regint.h +915 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/regparse.h +367 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/revision.h +1 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/ruby_atomic.h +170 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/siphash.h +48 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/thread_pthread.h +56 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/thread_win32.h +45 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/timev.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/transcode_data.h +127 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/transdb.h +193 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/version.h +52 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm.inc +3196 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_core.h +1013 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_debug.h +41 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_exec.h +173 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_insnhelper.h +274 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_opts.h +56 -0
- data/lib/debugger/ruby_core_source/ruby-2.0.0-p481/vmtc.inc +101 -0
- data/lib/debugger/ruby_core_source/version.rb +1 -1
- metadata +40 -1
@@ -0,0 +1,56 @@
|
|
1
|
+
/*-*-c-*-*/
|
2
|
+
/**********************************************************************
|
3
|
+
|
4
|
+
vm_opts.h - VM optimize option
|
5
|
+
|
6
|
+
$Author: nagachika $
|
7
|
+
|
8
|
+
Copyright (C) 2004-2007 Koichi Sasada
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
|
13
|
+
#ifndef RUBY_VM_OPTS_H
|
14
|
+
#define RUBY_VM_OPTS_H
|
15
|
+
|
16
|
+
/* Compile options.
|
17
|
+
* You can change these options at runtime by VM::CompileOption.
|
18
|
+
* Following definitions are default values.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#define OPT_TRACE_INSTRUCTION 1
|
22
|
+
#define OPT_TAILCALL_OPTIMIZATION 0
|
23
|
+
#define OPT_PEEPHOLE_OPTIMIZATION 1
|
24
|
+
#define OPT_SPECIALISED_INSTRUCTION 1
|
25
|
+
#define OPT_INLINE_CONST_CACHE 1
|
26
|
+
|
27
|
+
|
28
|
+
/* Build Options.
|
29
|
+
* You can't change these options at runtime.
|
30
|
+
*/
|
31
|
+
|
32
|
+
/* C compiler dependent */
|
33
|
+
#define OPT_DIRECT_THREADED_CODE 1
|
34
|
+
#define OPT_TOKEN_THREADED_CODE 0
|
35
|
+
#define OPT_CALL_THREADED_CODE 0
|
36
|
+
|
37
|
+
/* VM running option */
|
38
|
+
#define OPT_CHECKED_RUN 1
|
39
|
+
#define OPT_INLINE_METHOD_CACHE 1
|
40
|
+
#define OPT_GLOBAL_METHOD_CACHE 1
|
41
|
+
#define OPT_BLOCKINLINING 0
|
42
|
+
|
43
|
+
/* architecture independent, affects generated code */
|
44
|
+
#define OPT_OPERANDS_UNIFICATION 1
|
45
|
+
#define OPT_INSTRUCTIONS_UNIFICATION 0
|
46
|
+
#define OPT_UNIFY_ALL_COMBINATION 0
|
47
|
+
#define OPT_STACK_CACHING 0
|
48
|
+
|
49
|
+
/* misc */
|
50
|
+
#define SUPPORT_JOKE 0
|
51
|
+
|
52
|
+
#ifndef VM_COLLECT_USAGE_DETAILS
|
53
|
+
#define VM_COLLECT_USAGE_DETAILS 0
|
54
|
+
#endif
|
55
|
+
|
56
|
+
#endif /* RUBY_VM_OPTS_H */
|
@@ -0,0 +1,101 @@
|
|
1
|
+
/* -*-c-*- *********************************************************/
|
2
|
+
/*******************************************************************/
|
3
|
+
/*******************************************************************/
|
4
|
+
/**
|
5
|
+
This file is for threaded code.
|
6
|
+
|
7
|
+
----
|
8
|
+
This file is auto generated by insns2vm.rb
|
9
|
+
DO NOT TOUCH!
|
10
|
+
|
11
|
+
If you want to fix something, you must edit 'template/vmtc.inc.tmpl'
|
12
|
+
or insns2vm.rb
|
13
|
+
*/
|
14
|
+
|
15
|
+
static const void *const insns_address_table[] = {
|
16
|
+
LABEL_PTR(nop),
|
17
|
+
LABEL_PTR(getlocal),
|
18
|
+
LABEL_PTR(setlocal),
|
19
|
+
LABEL_PTR(getspecial),
|
20
|
+
LABEL_PTR(setspecial),
|
21
|
+
LABEL_PTR(getinstancevariable),
|
22
|
+
LABEL_PTR(setinstancevariable),
|
23
|
+
LABEL_PTR(getclassvariable),
|
24
|
+
LABEL_PTR(setclassvariable),
|
25
|
+
LABEL_PTR(getconstant),
|
26
|
+
LABEL_PTR(setconstant),
|
27
|
+
LABEL_PTR(getglobal),
|
28
|
+
LABEL_PTR(setglobal),
|
29
|
+
LABEL_PTR(putnil),
|
30
|
+
LABEL_PTR(putself),
|
31
|
+
LABEL_PTR(putobject),
|
32
|
+
LABEL_PTR(putspecialobject),
|
33
|
+
LABEL_PTR(putiseq),
|
34
|
+
LABEL_PTR(putstring),
|
35
|
+
LABEL_PTR(concatstrings),
|
36
|
+
LABEL_PTR(tostring),
|
37
|
+
LABEL_PTR(toregexp),
|
38
|
+
LABEL_PTR(newarray),
|
39
|
+
LABEL_PTR(duparray),
|
40
|
+
LABEL_PTR(expandarray),
|
41
|
+
LABEL_PTR(concatarray),
|
42
|
+
LABEL_PTR(splatarray),
|
43
|
+
LABEL_PTR(newhash),
|
44
|
+
LABEL_PTR(newrange),
|
45
|
+
LABEL_PTR(pop),
|
46
|
+
LABEL_PTR(dup),
|
47
|
+
LABEL_PTR(dupn),
|
48
|
+
LABEL_PTR(swap),
|
49
|
+
LABEL_PTR(reput),
|
50
|
+
LABEL_PTR(topn),
|
51
|
+
LABEL_PTR(setn),
|
52
|
+
LABEL_PTR(adjuststack),
|
53
|
+
LABEL_PTR(defined),
|
54
|
+
LABEL_PTR(checkmatch),
|
55
|
+
LABEL_PTR(trace),
|
56
|
+
LABEL_PTR(defineclass),
|
57
|
+
LABEL_PTR(send),
|
58
|
+
LABEL_PTR(opt_send_simple),
|
59
|
+
LABEL_PTR(invokesuper),
|
60
|
+
LABEL_PTR(invokeblock),
|
61
|
+
LABEL_PTR(leave),
|
62
|
+
LABEL_PTR(throw),
|
63
|
+
LABEL_PTR(jump),
|
64
|
+
LABEL_PTR(branchif),
|
65
|
+
LABEL_PTR(branchunless),
|
66
|
+
LABEL_PTR(getinlinecache),
|
67
|
+
LABEL_PTR(onceinlinecache),
|
68
|
+
LABEL_PTR(setinlinecache),
|
69
|
+
LABEL_PTR(opt_case_dispatch),
|
70
|
+
LABEL_PTR(opt_plus),
|
71
|
+
LABEL_PTR(opt_minus),
|
72
|
+
LABEL_PTR(opt_mult),
|
73
|
+
LABEL_PTR(opt_div),
|
74
|
+
LABEL_PTR(opt_mod),
|
75
|
+
LABEL_PTR(opt_eq),
|
76
|
+
LABEL_PTR(opt_neq),
|
77
|
+
LABEL_PTR(opt_lt),
|
78
|
+
LABEL_PTR(opt_le),
|
79
|
+
LABEL_PTR(opt_gt),
|
80
|
+
LABEL_PTR(opt_ge),
|
81
|
+
LABEL_PTR(opt_ltlt),
|
82
|
+
LABEL_PTR(opt_aref),
|
83
|
+
LABEL_PTR(opt_aset),
|
84
|
+
LABEL_PTR(opt_length),
|
85
|
+
LABEL_PTR(opt_size),
|
86
|
+
LABEL_PTR(opt_empty_p),
|
87
|
+
LABEL_PTR(opt_succ),
|
88
|
+
LABEL_PTR(opt_not),
|
89
|
+
LABEL_PTR(opt_regexpmatch1),
|
90
|
+
LABEL_PTR(opt_regexpmatch2),
|
91
|
+
LABEL_PTR(opt_call_c_function),
|
92
|
+
LABEL_PTR(bitblt),
|
93
|
+
LABEL_PTR(answer),
|
94
|
+
LABEL_PTR(getlocal_OP__WC__0),
|
95
|
+
LABEL_PTR(getlocal_OP__WC__1),
|
96
|
+
LABEL_PTR(setlocal_OP__WC__0),
|
97
|
+
LABEL_PTR(setlocal_OP__WC__1),
|
98
|
+
LABEL_PTR(putobject_OP_INT2FIX_O_0_C_),
|
99
|
+
LABEL_PTR(putobject_OP_INT2FIX_O_1_C_),
|
100
|
+
};
|
101
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: debugger-ruby_core_source
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Moseley
|
@@ -873,6 +873,45 @@ files:
|
|
873
873
|
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p451/vm_insnhelper.h"
|
874
874
|
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p451/vm_opts.h"
|
875
875
|
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p451/vmtc.inc"
|
876
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/addr2line.h"
|
877
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/constant.h"
|
878
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/dln.h"
|
879
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/encdb.h"
|
880
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/eval_intern.h"
|
881
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/gc.h"
|
882
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/id.h"
|
883
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/insns.inc"
|
884
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/insns_info.inc"
|
885
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/internal.h"
|
886
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/iseq.h"
|
887
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/known_errors.inc"
|
888
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/method.h"
|
889
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/node.h"
|
890
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/node_name.inc"
|
891
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/opt_sc.inc"
|
892
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/optinsn.inc"
|
893
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/optunifs.inc"
|
894
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/parse.h"
|
895
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/probes_helper.h"
|
896
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/regenc.h"
|
897
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/regint.h"
|
898
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/regparse.h"
|
899
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/revision.h"
|
900
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/ruby_atomic.h"
|
901
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/siphash.h"
|
902
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/thread_pthread.h"
|
903
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/thread_win32.h"
|
904
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/timev.h"
|
905
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/transcode_data.h"
|
906
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/transdb.h"
|
907
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/version.h"
|
908
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm.inc"
|
909
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_core.h"
|
910
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_debug.h"
|
911
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_exec.h"
|
912
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_insnhelper.h"
|
913
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/vm_opts.h"
|
914
|
+
- "./lib/debugger/ruby_core_source/ruby-2.0.0-p481/vmtc.inc"
|
876
915
|
- "./lib/debugger/ruby_core_source/ruby-2.1.0-p0/addr2line.h"
|
877
916
|
- "./lib/debugger/ruby_core_source/ruby-2.1.0-p0/constant.h"
|
878
917
|
- "./lib/debugger/ruby_core_source/ruby-2.1.0-p0/dln.h"
|