looksee 4.4.0 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +16 -0
- data/README.markdown +97 -73
- data/Rakefile +27 -0
- data/ext/extconf.rb +5 -8
- data/ext/mri/3.2.0/id_table.h +36 -0
- data/ext/mri/3.2.0/internal/array.h +162 -0
- data/ext/mri/3.2.0/internal/class.h +212 -0
- data/ext/mri/3.2.0/internal/compilers.h +107 -0
- data/ext/mri/3.2.0/internal/gc.h +188 -0
- data/ext/mri/3.2.0/internal/imemo.h +242 -0
- data/ext/mri/3.2.0/internal/serial.h +23 -0
- data/ext/mri/3.2.0/internal/static_assert.h +16 -0
- data/ext/mri/3.2.0/internal/warnings.h +16 -0
- data/ext/mri/3.2.0/internal.h +113 -0
- data/ext/mri/{2.3.0 → 3.2.0}/method.h +95 -55
- data/ext/mri/mri.c +11 -37
- data/lib/looksee/adapter/base.rb +17 -3
- data/lib/looksee/adapter.rb +0 -1
- data/lib/looksee/clean.rb +2 -3
- data/lib/looksee/core_ext.rb +21 -9
- data/lib/looksee/help.rb +4 -2
- data/lib/looksee/inspector.rb +2 -0
- data/lib/looksee/lookup_path.rb +1 -1
- data/lib/looksee/pretty_print_hack.rb +14 -0
- data/lib/looksee/version.rb +1 -1
- data/spec/looksee/adapter_spec.rb +51 -45
- data/spec/looksee/core_ext_spec.rb +2 -2
- data/spec/looksee/inspector_spec.rb +42 -0
- data/spec/looksee/lookup_path_spec.rb +1 -1
- metadata +16 -13
- data/ext/mri/2.1.0/internal.h +0 -889
- data/ext/mri/2.1.0/method.h +0 -142
- data/ext/mri/2.2.0/internal.h +0 -1182
- data/ext/mri/2.2.0/method.h +0 -141
- data/ext/mri/2.3.0/internal.h +0 -1404
- data/ext/rbx/rbx.c +0 -4
- data/lib/looksee/adapter/rubinius.rb +0 -25
- data/lib/looksee/mri.bundle +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e79d312ff99899463a1ae1c3ef7c223bd2761cd51d03fdb4349cb3620c06f624
|
4
|
+
data.tar.gz: 2c5e23a018a88ef8c7bed8c3e9ea230ed81fb58dcd6f2479b3752cbe5e44cac3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef17ec0b836a791aac8b814b9f825aceff66ea346f1ba3f2a6e9504e686d439013583b2c362b2e2c5626d32ca9ec58fd2f1dfecf95f9b503ccb2fd2ee08ceca5
|
7
|
+
data.tar.gz: 5e0d129f6977c2b32b8671168b9fd1ab5e5bc26a1efc0e07e88176ac80c8675d459210c639ef54ad51b088971acb75964886571a8aac81e04a7cc241ac736d51
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
== 5.1.0 2025-03-28
|
2
|
+
|
3
|
+
* Support for MRI 3.3.
|
4
|
+
* Fix color escaping in Looksee.help.
|
5
|
+
|
6
|
+
== 5.0.0 2022-11-08
|
7
|
+
|
8
|
+
* Rename #ls to #look. Sorry! irb now defines an ls built-in, though, and the
|
9
|
+
old name emits a warning on startup.
|
10
|
+
* Support for MRI 3.2.0 preview2. From 3.2 onwards, we once again display
|
11
|
+
undef'd methods.
|
12
|
+
* Remove support for MRI < 2.7. (2.6 is EOL anyway.)
|
13
|
+
* Remove support for Rubinius.
|
14
|
+
* Fix showing modules included in singleton classes with no direct methods.
|
15
|
+
* Fix ANSI color escaping in ruby >= 3.0.
|
16
|
+
|
1
17
|
== 4.4.0 2021-01-17
|
2
18
|
|
3
19
|
* Support for MRI 3.0. [Mathieu Jobin]
|
data/README.markdown
CHANGED
@@ -13,73 +13,97 @@ Pop this in your `.irbrc`:
|
|
13
13
|
|
14
14
|
require 'looksee'
|
15
15
|
|
16
|
-
Now each object has a method `
|
17
|
-
|
18
|
-
irb> [].
|
19
|
-
=>
|
20
|
-
|
21
|
-
|
22
|
-
|
16
|
+
Now each object has a method `look`, which shows you all its methods.
|
17
|
+
|
18
|
+
irb> [].look
|
19
|
+
=>
|
20
|
+
BasicObject
|
21
|
+
! __send__ instance_exec singleton_method_undefined
|
22
|
+
!= equal? method_missing
|
23
|
+
== initialize singleton_method_added
|
24
|
+
__id__ instance_eval singleton_method_removed
|
23
25
|
Kernel
|
24
|
-
!~
|
25
|
-
<=>
|
26
|
-
===
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
Rational
|
34
|
-
String
|
35
|
-
__callee__
|
36
|
-
__dir__
|
37
|
-
__method__
|
38
|
-
`
|
39
|
-
abort
|
40
|
-
at_exit
|
41
|
-
autoload
|
42
|
-
autoload?
|
43
|
-
binding
|
44
|
-
block_given?
|
45
|
-
caller
|
46
|
-
caller_locations
|
47
|
-
catch
|
48
|
-
class
|
49
|
-
clone
|
50
|
-
define_singleton_method
|
51
|
-
display
|
52
|
-
dup
|
26
|
+
!~ format public_method
|
27
|
+
<=> freeze public_methods
|
28
|
+
=== frozen? public_send
|
29
|
+
Array gem putc
|
30
|
+
Complex gem_original_require puts
|
31
|
+
Float gets raise
|
32
|
+
Hash global_variables rand
|
33
|
+
Integer hash readline
|
34
|
+
Pathname initialize_clone readlines
|
35
|
+
Rational initialize_copy remove_instance_variable
|
36
|
+
String initialize_dup require
|
37
|
+
__callee__ inspect require_relative
|
38
|
+
__dir__ instance_of? respond_to?
|
39
|
+
__method__ instance_variable_defined? respond_to_missing?
|
40
|
+
` instance_variable_get select
|
41
|
+
abort instance_variable_set send
|
42
|
+
at_exit instance_variables set_trace_func
|
43
|
+
autoload is_a? singleton_class
|
44
|
+
autoload? iterator? singleton_method
|
45
|
+
binding itself singleton_methods
|
46
|
+
block_given? kind_of? sleep
|
47
|
+
caller lambda spawn
|
48
|
+
caller_locations load sprintf
|
49
|
+
catch local_variables srand
|
50
|
+
class loop syscall
|
51
|
+
clone method system
|
52
|
+
define_singleton_method methods tap
|
53
|
+
display nil? test
|
54
|
+
dup object_id then
|
55
|
+
enum_for open throw
|
56
|
+
eql? p to_enum
|
57
|
+
eval pp to_s
|
58
|
+
exec pretty_inspect trace_var
|
59
|
+
exit print trap
|
60
|
+
exit! printf untrace_var
|
61
|
+
extend private_methods warn
|
62
|
+
fail proc yield_self
|
63
|
+
fork protected_methods
|
53
64
|
Looksee::ObjectMixin
|
54
|
-
|
65
|
+
look
|
66
|
+
PP::ObjectMixin
|
67
|
+
pretty_print pretty_print_inspect
|
68
|
+
pretty_print_cycle pretty_print_instance_variables
|
55
69
|
Object
|
56
|
-
DelegateClass
|
70
|
+
DelegateClass
|
57
71
|
Enumerable
|
58
|
-
all?
|
59
|
-
any?
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
72
|
+
all? drop find_all max reject tally
|
73
|
+
any? drop_while find_index max_by reverse_each to_a
|
74
|
+
chain each_cons first member? select to_h
|
75
|
+
chunk each_entry flat_map min slice_after to_set
|
76
|
+
chunk_while each_slice grep min_by slice_before uniq
|
77
|
+
collect each_with_index grep_v minmax slice_when zip
|
78
|
+
collect_concat each_with_object group_by minmax_by sort
|
79
|
+
compact entries include? none? sort_by
|
80
|
+
count filter inject one? sum
|
81
|
+
cycle filter_map lazy partition take
|
82
|
+
detect find map reduce take_while
|
66
83
|
Array
|
67
|
-
&
|
68
|
-
*
|
69
|
-
+
|
70
|
-
-
|
71
|
-
<<
|
72
|
-
<=>
|
73
|
-
==
|
74
|
-
[]
|
75
|
-
[]=
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
84
|
+
& count include? pretty_print size
|
85
|
+
* cycle index pretty_print_cycle slice
|
86
|
+
+ deconstruct initialize product slice!
|
87
|
+
- delete initialize_copy push sort
|
88
|
+
<< delete_at insert rassoc sort!
|
89
|
+
<=> delete_if inspect reject sort_by!
|
90
|
+
== difference intersect? reject! sum
|
91
|
+
[] dig intersection repeated_combination take
|
92
|
+
[]= drop join repeated_permutation take_while
|
93
|
+
all? drop_while keep_if replace to_a
|
94
|
+
any? each last reverse to_ary
|
95
|
+
append each_index length reverse! to_h
|
96
|
+
assoc empty? map reverse_each to_s
|
97
|
+
at eql? map! rindex transpose
|
98
|
+
bsearch fetch max rotate union
|
99
|
+
bsearch_index fill min rotate! uniq
|
100
|
+
clear filter minmax sample uniq!
|
101
|
+
collect filter! none? select unshift
|
102
|
+
collect! find_index one? select! values_at
|
103
|
+
combination first pack shelljoin zip
|
104
|
+
compact flatten permutation shift |
|
105
|
+
compact! flatten! pop shuffle
|
106
|
+
concat hash prepend shuffle!
|
83
107
|
|
84
108
|
Methods are colored according to whether they're public, protected,
|
85
109
|
private, undefined (using Module#undef_method), or overridden.
|
@@ -88,11 +112,11 @@ private, undefined (using Module#undef_method), or overridden.
|
|
88
112
|
|
89
113
|
You can hide, say, private methods like this:
|
90
114
|
|
91
|
-
irb> [].
|
115
|
+
irb> [].look :noprivate
|
92
116
|
|
93
117
|
Or filter the list by Regexp:
|
94
118
|
|
95
|
-
irb> [].
|
119
|
+
irb> [].look /^to_/
|
96
120
|
=> BasicObject
|
97
121
|
Kernel
|
98
122
|
to_enum to_s
|
@@ -107,32 +131,32 @@ Or filter the list by Regexp:
|
|
107
131
|
## Proxy objects
|
108
132
|
|
109
133
|
Objects that delegate everything via `method_missing` to some other object can
|
110
|
-
be tricky, because they will delegate `
|
111
|
-
always do:
|
134
|
+
be tricky, because they will delegate `look` itself. To view such objects, you
|
135
|
+
can always do:
|
112
136
|
|
113
137
|
Looksee[object]
|
114
138
|
|
115
|
-
This will also work for `BasicObject` instances that don't have an `
|
116
|
-
`Object#
|
139
|
+
This will also work for `BasicObject` instances that don't have an `look`
|
140
|
+
method. `Object#look` is simply a wrapper around `Looksee.[]`.
|
117
141
|
|
118
142
|
## To the source!
|
119
143
|
|
120
144
|
If you want to know more about any of those methods, Looksee can
|
121
145
|
take you straight to the source in your editor:
|
122
146
|
|
123
|
-
[].
|
147
|
+
[].look.edit :to_set
|
124
148
|
|
125
149
|
By default, this uses `vi`; customize it like this:
|
126
150
|
|
127
151
|
# %f = file, %l = line number
|
128
152
|
Looksee.editor = "mate -l%l %f"
|
129
153
|
|
130
|
-
## `
|
154
|
+
## `look` in your way?
|
131
155
|
|
132
|
-
If you have a library that for some reason can't handle an `
|
133
|
-
on `Object`, you may rename it like this:
|
156
|
+
If you have a library that for some reason can't handle an `look` method
|
157
|
+
existing on `Object`, you may rename it like this:
|
134
158
|
|
135
|
-
Looksee.rename :
|
159
|
+
Looksee.rename :_look
|
136
160
|
|
137
161
|
## Quick Reference
|
138
162
|
|
data/Rakefile
CHANGED
@@ -11,3 +11,30 @@ end
|
|
11
11
|
task :default => [:clobber, :ext] do
|
12
12
|
sh 'bundle exec rspec -I. spec'
|
13
13
|
end
|
14
|
+
|
15
|
+
task :test_all do
|
16
|
+
docker_configs.each do |config|
|
17
|
+
docker_run(config, 'rspec')
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
task :console, :config do |task, args|
|
22
|
+
docker_run(args[:config], nil)
|
23
|
+
end
|
24
|
+
|
25
|
+
task :test, :config do |task, args|
|
26
|
+
docker_run(args[:config], 'rspec')
|
27
|
+
end
|
28
|
+
|
29
|
+
task :shell, :config do |task, args|
|
30
|
+
docker_run(args[:config], '/bin/bash')
|
31
|
+
end
|
32
|
+
|
33
|
+
def docker_configs
|
34
|
+
Dir['Dockerfile.*'].map { |path| path[/(?<=\.).*?\z/] }
|
35
|
+
end
|
36
|
+
|
37
|
+
def docker_run(config, command)
|
38
|
+
sh "docker build -f Dockerfile.#{config} -t looksee:#{config} ."
|
39
|
+
sh "docker run -it looksee:#{config} #{command}"
|
40
|
+
end
|
data/ext/extconf.rb
CHANGED
@@ -4,16 +4,13 @@ extension = ruby_engine == 'ruby' ? 'mri' : ruby_engine
|
|
4
4
|
require 'mkmf'
|
5
5
|
$CPPFLAGS << " -DRUBY_VERSION=#{RUBY_VERSION.tr('.', '')}"
|
6
6
|
if extension == 'mri'
|
7
|
-
if RUBY_VERSION >= '3.
|
7
|
+
if RUBY_VERSION >= '3.2.0'
|
8
|
+
$CPPFLAGS << " -Imri/3.2.0"
|
9
|
+
elsif RUBY_VERSION >= '3.0.0'
|
8
10
|
$CPPFLAGS << " -Imri/3.0.0"
|
9
|
-
|
11
|
+
else
|
10
12
|
$CPPFLAGS << " -Imri/2.7.0"
|
11
|
-
elsif RUBY_VERSION >= '2.3.0'
|
12
|
-
$CPPFLAGS << " -Imri/2.3.0"
|
13
|
-
elsif RUBY_VERSION >= '2.2.0'
|
14
|
-
$CPPFLAGS << " -Imri/2.2.0"
|
15
|
-
elsif RUBY_VERSION >= '2.1.0'
|
16
|
-
$CPPFLAGS << " -Imri/2.1.0"
|
17
13
|
end
|
18
14
|
end
|
15
|
+
|
19
16
|
create_makefile "looksee/#{extension}", extension
|
@@ -0,0 +1,36 @@
|
|
1
|
+
#ifndef RUBY_ID_TABLE_H
|
2
|
+
#define RUBY_ID_TABLE_H 1
|
3
|
+
#include "ruby/internal/config.h"
|
4
|
+
#include <stddef.h>
|
5
|
+
#include "ruby/ruby.h"
|
6
|
+
|
7
|
+
struct rb_id_table;
|
8
|
+
|
9
|
+
/* compatible with ST_* */
|
10
|
+
enum rb_id_table_iterator_result {
|
11
|
+
ID_TABLE_CONTINUE = ST_CONTINUE,
|
12
|
+
ID_TABLE_STOP = ST_STOP,
|
13
|
+
ID_TABLE_DELETE = ST_DELETE,
|
14
|
+
ID_TABLE_REPLACE = ST_REPLACE,
|
15
|
+
ID_TABLE_ITERATOR_RESULT_END
|
16
|
+
};
|
17
|
+
|
18
|
+
struct rb_id_table *rb_id_table_create(size_t size);
|
19
|
+
void rb_id_table_free(struct rb_id_table *tbl);
|
20
|
+
void rb_id_table_clear(struct rb_id_table *tbl);
|
21
|
+
|
22
|
+
size_t rb_id_table_size(const struct rb_id_table *tbl);
|
23
|
+
size_t rb_id_table_memsize(const struct rb_id_table *tbl);
|
24
|
+
|
25
|
+
int rb_id_table_insert(struct rb_id_table *tbl, ID id, VALUE val);
|
26
|
+
int rb_id_table_lookup(struct rb_id_table *tbl, ID id, VALUE *valp);
|
27
|
+
int rb_id_table_delete(struct rb_id_table *tbl, ID id);
|
28
|
+
|
29
|
+
typedef enum rb_id_table_iterator_result rb_id_table_update_value_callback_func_t(VALUE *val, void *data, int existing);
|
30
|
+
typedef enum rb_id_table_iterator_result rb_id_table_foreach_func_t(ID id, VALUE val, void *data);
|
31
|
+
typedef enum rb_id_table_iterator_result rb_id_table_foreach_values_func_t(VALUE val, void *data);
|
32
|
+
void rb_id_table_foreach(struct rb_id_table *tbl, rb_id_table_foreach_func_t *func, void *data);
|
33
|
+
void rb_id_table_foreach_values(struct rb_id_table *tbl, rb_id_table_foreach_values_func_t *func, void *data);
|
34
|
+
void rb_id_table_foreach_values_with_replace(struct rb_id_table *tbl, rb_id_table_foreach_values_func_t *func, rb_id_table_update_value_callback_func_t *replace, void *data);
|
35
|
+
|
36
|
+
#endif /* RUBY_ID_TABLE_H */
|
@@ -0,0 +1,162 @@
|
|
1
|
+
#ifndef INTERNAL_ARRAY_H /*-*-C-*-vi:se ft=c:*/
|
2
|
+
#define INTERNAL_ARRAY_H
|
3
|
+
/**
|
4
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
5
|
+
* @copyright This file is a part of the programming language Ruby.
|
6
|
+
* Permission is hereby granted, to either redistribute and/or
|
7
|
+
* modify this file, provided that the conditions mentioned in the
|
8
|
+
* file COPYING are met. Consult the file for details.
|
9
|
+
* @brief Internal header for Array.
|
10
|
+
*/
|
11
|
+
#include "ruby/internal/config.h"
|
12
|
+
#include <stddef.h> /* for size_t */
|
13
|
+
#include "internal/static_assert.h" /* for STATIC_ASSERT */
|
14
|
+
#include "ruby/internal/stdbool.h" /* for bool */
|
15
|
+
#include "ruby/ruby.h" /* for RARRAY_LEN */
|
16
|
+
|
17
|
+
#ifndef ARRAY_DEBUG
|
18
|
+
# define ARRAY_DEBUG (0+RUBY_DEBUG)
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#define RARRAY_SHARED_FLAG ELTS_SHARED
|
22
|
+
#define RARRAY_SHARED_ROOT_FLAG FL_USER12
|
23
|
+
#define RARRAY_PTR_IN_USE_FLAG FL_USER14
|
24
|
+
|
25
|
+
/* array.c */
|
26
|
+
VALUE rb_ary_last(int, const VALUE *, VALUE);
|
27
|
+
void rb_ary_set_len(VALUE, long);
|
28
|
+
void rb_ary_delete_same(VALUE, VALUE);
|
29
|
+
VALUE rb_ary_hidden_new_fill(long capa);
|
30
|
+
VALUE rb_ary_at(VALUE, VALUE);
|
31
|
+
size_t rb_ary_memsize(VALUE);
|
32
|
+
VALUE rb_to_array_type(VALUE obj);
|
33
|
+
VALUE rb_to_array(VALUE obj);
|
34
|
+
void rb_ary_cancel_sharing(VALUE ary);
|
35
|
+
size_t rb_ary_size_as_embedded(VALUE ary);
|
36
|
+
void rb_ary_make_embedded(VALUE ary);
|
37
|
+
bool rb_ary_embeddable_p(VALUE ary);
|
38
|
+
|
39
|
+
static inline VALUE rb_ary_entry_internal(VALUE ary, long offset);
|
40
|
+
static inline bool ARY_PTR_USING_P(VALUE ary);
|
41
|
+
static inline void RARY_TRANSIENT_SET(VALUE ary);
|
42
|
+
static inline void RARY_TRANSIENT_UNSET(VALUE ary);
|
43
|
+
|
44
|
+
MJIT_SYMBOL_EXPORT_BEGIN
|
45
|
+
VALUE rb_ary_tmp_new_from_values(VALUE, long, const VALUE *);
|
46
|
+
VALUE rb_check_to_array(VALUE ary);
|
47
|
+
VALUE rb_ary_behead(VALUE, long);
|
48
|
+
VALUE rb_ary_aref1(VALUE ary, VALUE i);
|
49
|
+
|
50
|
+
struct rb_execution_context_struct;
|
51
|
+
VALUE rb_ec_ary_new_from_values(struct rb_execution_context_struct *ec, long n, const VALUE *elts);
|
52
|
+
MJIT_SYMBOL_EXPORT_END
|
53
|
+
|
54
|
+
// YJIT needs this function to never allocate and never raise
|
55
|
+
static inline VALUE
|
56
|
+
rb_ary_entry_internal(VALUE ary, long offset)
|
57
|
+
{
|
58
|
+
long len = RARRAY_LEN(ary);
|
59
|
+
const VALUE *ptr = RARRAY_CONST_PTR_TRANSIENT(ary);
|
60
|
+
if (len == 0) return Qnil;
|
61
|
+
if (offset < 0) {
|
62
|
+
offset += len;
|
63
|
+
if (offset < 0) return Qnil;
|
64
|
+
}
|
65
|
+
else if (len <= offset) {
|
66
|
+
return Qnil;
|
67
|
+
}
|
68
|
+
return ptr[offset];
|
69
|
+
}
|
70
|
+
|
71
|
+
static inline bool
|
72
|
+
ARY_PTR_USING_P(VALUE ary)
|
73
|
+
{
|
74
|
+
return FL_TEST_RAW(ary, RARRAY_PTR_IN_USE_FLAG);
|
75
|
+
}
|
76
|
+
|
77
|
+
RBIMPL_ATTR_MAYBE_UNUSED()
|
78
|
+
static inline int
|
79
|
+
ary_should_not_be_shared_and_embedded(VALUE ary)
|
80
|
+
{
|
81
|
+
return !FL_ALL_RAW(ary, RARRAY_SHARED_FLAG|RARRAY_EMBED_FLAG);
|
82
|
+
}
|
83
|
+
|
84
|
+
static inline bool
|
85
|
+
ARY_SHARED_P(VALUE ary)
|
86
|
+
{
|
87
|
+
assert(RB_TYPE_P(ary, T_ARRAY));
|
88
|
+
assert(ary_should_not_be_shared_and_embedded(ary));
|
89
|
+
return FL_TEST_RAW(ary, RARRAY_SHARED_FLAG);
|
90
|
+
}
|
91
|
+
|
92
|
+
static inline bool
|
93
|
+
ARY_EMBED_P(VALUE ary)
|
94
|
+
{
|
95
|
+
assert(RB_TYPE_P(ary, T_ARRAY));
|
96
|
+
assert(ary_should_not_be_shared_and_embedded(ary));
|
97
|
+
return FL_TEST_RAW(ary, RARRAY_EMBED_FLAG);
|
98
|
+
}
|
99
|
+
|
100
|
+
static inline VALUE
|
101
|
+
ARY_SHARED_ROOT(VALUE ary)
|
102
|
+
{
|
103
|
+
assert(ARY_SHARED_P(ary));
|
104
|
+
return RARRAY(ary)->as.heap.aux.shared_root;
|
105
|
+
}
|
106
|
+
|
107
|
+
static inline bool
|
108
|
+
ARY_SHARED_ROOT_P(VALUE ary)
|
109
|
+
{
|
110
|
+
assert(RB_TYPE_P(ary, T_ARRAY));
|
111
|
+
return FL_TEST_RAW(ary, RARRAY_SHARED_ROOT_FLAG);
|
112
|
+
}
|
113
|
+
|
114
|
+
static inline long
|
115
|
+
ARY_SHARED_ROOT_REFCNT(VALUE ary)
|
116
|
+
{
|
117
|
+
assert(ARY_SHARED_ROOT_P(ary));
|
118
|
+
return RARRAY(ary)->as.heap.aux.capa;
|
119
|
+
}
|
120
|
+
|
121
|
+
static inline void
|
122
|
+
RARY_TRANSIENT_SET(VALUE ary)
|
123
|
+
{
|
124
|
+
#if USE_TRANSIENT_HEAP
|
125
|
+
FL_SET_RAW(ary, RARRAY_TRANSIENT_FLAG);
|
126
|
+
#endif
|
127
|
+
}
|
128
|
+
|
129
|
+
static inline void
|
130
|
+
RARY_TRANSIENT_UNSET(VALUE ary)
|
131
|
+
{
|
132
|
+
#if USE_TRANSIENT_HEAP
|
133
|
+
FL_UNSET_RAW(ary, RARRAY_TRANSIENT_FLAG);
|
134
|
+
#endif
|
135
|
+
}
|
136
|
+
|
137
|
+
#undef rb_ary_new_from_args
|
138
|
+
#if RBIMPL_HAS_WARNING("-Wgnu-zero-variadic-macro-arguments")
|
139
|
+
# /* Skip it; clang -pedantic doesn't like the following */
|
140
|
+
#elif defined(__GNUC__) && defined(HAVE_VA_ARGS_MACRO)
|
141
|
+
#define rb_ary_new_from_args(n, ...) \
|
142
|
+
__extension__ ({ \
|
143
|
+
const VALUE args_to_new_ary[] = {__VA_ARGS__}; \
|
144
|
+
if (__builtin_constant_p(n)) { \
|
145
|
+
STATIC_ASSERT(rb_ary_new_from_args, numberof(args_to_new_ary) == (n)); \
|
146
|
+
} \
|
147
|
+
rb_ary_new_from_values(numberof(args_to_new_ary), args_to_new_ary); \
|
148
|
+
})
|
149
|
+
#endif
|
150
|
+
|
151
|
+
#undef RARRAY_AREF
|
152
|
+
RBIMPL_ATTR_PURE_UNLESS_DEBUG()
|
153
|
+
RBIMPL_ATTR_ARTIFICIAL()
|
154
|
+
static inline VALUE
|
155
|
+
RARRAY_AREF(VALUE ary, long i)
|
156
|
+
{
|
157
|
+
RBIMPL_ASSERT_TYPE(ary, RUBY_T_ARRAY);
|
158
|
+
|
159
|
+
return RARRAY_CONST_PTR_TRANSIENT(ary)[i];
|
160
|
+
}
|
161
|
+
|
162
|
+
#endif /* INTERNAL_ARRAY_H */
|