public abstract class org.jruby.runtime.callsite.CachingCallSite extends org.jruby.runtime.CallSite
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: org.jruby.runtime.callsite.CachingCallSite
super_class: org.jruby.runtime.CallSite
{
protected org.jruby.runtime.callsite.CacheEntry cache;
descriptor: Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0004) ACC_PROTECTED
protected org.jruby.runtime.callsite.CacheEntry builtinCache;
descriptor: Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0004) ACC_PROTECTED
public void <init>(java.lang.String, org.jruby.runtime.CallType);
descriptor: (Ljava/lang/String;Lorg/jruby/runtime/CallType;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokespecial org.jruby.runtime.CallSite.<init>:(Ljava/lang/String;Lorg/jruby/runtime/CallType;)V
1: aload 0
getstatic org.jruby.runtime.callsite.CacheEntry.NULL_CACHE:Lorg/jruby/runtime/callsite/CacheEntry;
putfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
2: aload 0
getstatic org.jruby.runtime.callsite.CacheEntry.NULL_CACHE:Lorg/jruby/runtime/callsite/CacheEntry;
putfield org.jruby.runtime.callsite.CachingCallSite.builtinCache:Lorg/jruby/runtime/callsite/CacheEntry;
3: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 4 1 methodName Ljava/lang/String;
0 4 2 callType Lorg/jruby/runtime/CallType;
MethodParameters:
Name Flags
methodName
callType
public final org.jruby.runtime.callsite.CacheEntry getCache();
descriptor: ()Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
protected org.jruby.runtime.callsite.CacheEntry setCache(org.jruby.runtime.callsite.CacheEntry, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
dup_x1
putfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 entry Lorg/jruby/runtime/callsite/CacheEntry;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
entry
self
public final boolean isOptimizable();
descriptor: ()Z
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
getstatic org.jruby.runtime.callsite.CacheEntry.NULL_CACHE:Lorg/jruby/runtime/callsite/CacheEntry;
if_acmpeq 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
public final int getCachedClassIndex();
descriptor: ()I
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=2, locals=2, args_size=1
start local 0 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 1
start local 1 1: aload 1
getstatic org.jruby.runtime.callsite.CacheEntry.NULL_CACHE:Lorg/jruby/runtime/callsite/CacheEntry;
if_acmpeq 3
2: aload 1
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getImplementationClass:()Lorg/jruby/RubyModule;
invokevirtual org.jruby.RubyModule.getClassIndex:()Lorg/jruby/runtime/ClassIndex;
invokevirtual org.jruby.runtime.ClassIndex.ordinal:()I
ireturn
3: StackMap locals: org.jruby.runtime.callsite.CacheEntry
StackMap stack:
getstatic org.jruby.runtime.ClassIndex.NO_INDEX:Lorg/jruby/runtime/ClassIndex;
invokevirtual org.jruby.runtime.ClassIndex.ordinal:()I
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
1 4 1 cache Lorg/jruby/runtime/callsite/CacheEntry;
public final java.lang.String getMethodName();
descriptor: ()Ljava/lang/String;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
public final long getCachedMethodSerial();
descriptor: ()J
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=2, locals=2, args_size=1
start local 0 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 1
start local 1 1: aload 1
getstatic org.jruby.runtime.callsite.CacheEntry.NULL_CACHE:Lorg/jruby/runtime/callsite/CacheEntry;
if_acmpeq 3
2: aload 1
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getSerialNumber:()J
lreturn
3: StackMap locals: org.jruby.runtime.callsite.CacheEntry
StackMap stack:
ldc -1
lreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
1 4 1 cache Lorg/jruby/runtime/callsite/CacheEntry;
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, long);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;J)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=6, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
aload 1
aload 2
aload 3
aload 1
getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
lload 4
invokestatic org.jruby.RubyFixnum.newFixnum:(Lorg/jruby/Ruby;J)Lorg/jruby/RubyFixnum;
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 4 fixnum J
MethodParameters:
Name Flags
context
caller
self
fixnum
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, double);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;D)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=6, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
aload 1
aload 2
aload 3
aload 1
getfield org.jruby.runtime.ThreadContext.runtime:Lorg/jruby/Ruby;
dload 4
invokestatic org.jruby.RubyFloat.newFloat:(Lorg/jruby/Ruby;D)Lorg/jruby/RubyFloat;
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 4 flote D
MethodParameters:
Name Flags
context
caller
self
flote
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[]);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
Code:
stack=6, locals=7, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 5
start local 5 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
start local 6 2: aload 6
aload 5
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 6
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 6
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 5
aload 4
aload 1
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 args [Lorg/jruby/runtime/builtin/IRubyObject;
1 5 5 selfType Lorg/jruby/RubyClass;
2 5 6 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
args
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 6
start local 6 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
start local 7 2: aload 7
aload 6
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 7
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 7
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
aload 5
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 6
aload 5
aload 4
aload 1
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 args [Lorg/jruby/runtime/builtin/IRubyObject;
0 5 5 block Lorg/jruby/runtime/Block;
1 5 6 selfType Lorg/jruby/RubyClass;
2 5 7 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
args
block
public org.jruby.runtime.builtin.IRubyObject callIter(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 0
aload 1
aload 2
aload 3
aload 4
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
astore 7
1: aload 5
invokevirtual org.jruby.runtime.Block.escape:()V
2: aload 7
areturn
3: StackMap locals:
StackMap stack: java.lang.Throwable
astore 6
4: aload 5
invokevirtual org.jruby.runtime.Block.escape:()V
5: aload 6
athrow
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 args [Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 block Lorg/jruby/runtime/Block;
Exception table:
from to target type
0 1 3 any
MethodParameters:
Name Flags
context
caller
self
args
block
public final org.jruby.runtime.builtin.IRubyObject callVarargs(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[]);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
Code:
stack=8, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 4
arraylength
tableswitch { // 0 - 3
0: 1
1: 2
2: 3
3: 4
default: 5
}
1: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
2: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
3: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 4
iconst_1
aaload
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 4
iconst_1
aaload
aload 4
iconst_2
aaload
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
5: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 args [Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
context
caller
self
args
public final org.jruby.runtime.builtin.IRubyObject callVarargs(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=8, locals=6, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 4
arraylength
tableswitch { // 0 - 3
0: 1
1: 2
2: 3
3: 4
default: 5
}
1: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
2: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
3: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 4
iconst_1
aaload
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 4
iconst_1
aaload
aload 4
iconst_2
aaload
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
5: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 args [Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 block Lorg/jruby/runtime/Block;
MethodParameters:
Name Flags
context
caller
self
args
block
public final org.jruby.runtime.builtin.IRubyObject callVarargsIter(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=8, locals=6, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 4
arraylength
tableswitch { // 0 - 3
0: 1
1: 2
2: 3
3: 4
default: 5
}
1: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callIter:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
2: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callIter:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
3: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 4
iconst_1
aaload
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callIter:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
iconst_0
aaload
aload 4
iconst_1
aaload
aload 4
iconst_2
aaload
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callIter:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
5: StackMap locals:
StackMap stack:
aload 0
aload 1
aload 2
aload 3
aload 4
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callIter:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 args [Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 block Lorg/jruby/runtime/Block;
MethodParameters:
Name Flags
context
caller
self
args
block
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=6, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 4
start local 4 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 5
start local 5 2: aload 5
aload 4
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 5
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 5
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 4
aload 1
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
1 5 4 selfType Lorg/jruby/RubyClass;
2 5 5 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=7, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 5
start local 5 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
start local 6 2: aload 6
aload 5
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 6
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 6
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 5
aload 4
aload 1
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 block Lorg/jruby/runtime/Block;
1 5 5 selfType Lorg/jruby/RubyClass;
2 5 6 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
block
public final org.jruby.runtime.builtin.IRubyObject callIter(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=5, locals=7, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
aload 1
aload 2
aload 3
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
astore 6
1: aload 4
invokevirtual org.jruby.runtime.Block.escape:()V
2: aload 6
areturn
3: StackMap locals:
StackMap stack: java.lang.Throwable
astore 5
4: aload 4
invokevirtual org.jruby.runtime.Block.escape:()V
5: aload 5
athrow
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 block Lorg/jruby/runtime/Block;
Exception table:
from to target type
0 1 3 any
MethodParameters:
Name Flags
context
caller
self
block
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=7, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 5
start local 5 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
start local 6 2: aload 6
aload 5
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 6
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 6
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 5
aload 1
aload 3
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
1 5 5 selfType Lorg/jruby/RubyClass;
2 5 6 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
arg1
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 6
start local 6 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
start local 7 2: aload 7
aload 6
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 7
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 7
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
aload 5
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 6
aload 5
aload 1
aload 3
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 5 block Lorg/jruby/runtime/Block;
1 5 6 selfType Lorg/jruby/RubyClass;
2 5 7 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
arg1
block
public org.jruby.runtime.builtin.IRubyObject callIter(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 0
aload 1
aload 2
aload 3
aload 4
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
astore 7
1: aload 5
invokevirtual org.jruby.runtime.Block.escape:()V
2: aload 7
areturn
3: StackMap locals:
StackMap stack: java.lang.Throwable
astore 6
4: aload 5
invokevirtual org.jruby.runtime.Block.escape:()V
5: aload 6
athrow
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 block Lorg/jruby/runtime/Block;
Exception table:
from to target type
0 1 3 any
MethodParameters:
Name Flags
context
caller
self
arg1
block
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 6
start local 6 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
start local 7 2: aload 7
aload 6
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 7
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 7
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
aload 5
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 6
aload 1
aload 3
aload 4
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 5 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
1 5 6 selfType Lorg/jruby/RubyClass;
2 5 7 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
arg1
arg2
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=8, locals=9, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 7
start local 7 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 8
start local 8 2: aload 8
aload 7
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 8
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 8
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
aload 5
aload 6
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 7
aload 6
aload 1
aload 3
aload 4
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 5 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 6 block Lorg/jruby/runtime/Block;
1 5 7 selfType Lorg/jruby/RubyClass;
2 5 8 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
arg1
arg2
block
public final org.jruby.runtime.builtin.IRubyObject callIter(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=7, locals=9, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 0
aload 1
aload 2
aload 3
aload 4
aload 5
aload 6
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
astore 8
1: aload 6
invokevirtual org.jruby.runtime.Block.escape:()V
2: aload 8
areturn
3: StackMap locals:
StackMap stack: java.lang.Throwable
astore 7
4: aload 6
invokevirtual org.jruby.runtime.Block.escape:()V
5: aload 7
athrow
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 6 block Lorg/jruby/runtime/Block;
Exception table:
from to target type
0 1 3 any
MethodParameters:
Name Flags
context
caller
self
arg1
arg2
block
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=8, locals=9, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 7
start local 7 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 8
start local 8 2: aload 8
aload 7
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 8
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 8
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
aload 5
aload 6
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 7
aload 1
aload 3
aload 4
aload 5
aload 6
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 5 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 6 arg3 Lorg/jruby/runtime/builtin/IRubyObject;
1 5 7 selfType Lorg/jruby/RubyClass;
2 5 8 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
arg1
arg2
arg3
public org.jruby.runtime.builtin.IRubyObject call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=9, locals=10, args_size=8
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 0: aload 3
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 8
start local 8 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 9
start local 9 2: aload 9
aload 8
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 9
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 3
aload 9
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
aload 5
aload 6
aload 7
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 2
aload 8
aload 7
aload 1
aload 3
aload 4
aload 5
aload 6
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndCall:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 9 end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 context Lorg/jruby/runtime/ThreadContext;
0 5 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 5 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 5 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 5 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 6 arg3 Lorg/jruby/runtime/builtin/IRubyObject;
0 5 7 block Lorg/jruby/runtime/Block;
1 5 8 selfType Lorg/jruby/RubyClass;
2 5 9 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
context
caller
self
arg1
arg2
arg3
block
public final org.jruby.runtime.builtin.IRubyObject callIter(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=8, locals=10, args_size=8
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 0: aload 0
aload 1
aload 2
aload 3
aload 4
aload 5
aload 6
aload 7
invokevirtual org.jruby.runtime.callsite.CachingCallSite.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
astore 9
1: aload 7
invokevirtual org.jruby.runtime.Block.escape:()V
2: aload 9
areturn
3: StackMap locals:
StackMap stack: java.lang.Throwable
astore 8
4: aload 7
invokevirtual org.jruby.runtime.Block.escape:()V
5: aload 8
athrow
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 context Lorg/jruby/runtime/ThreadContext;
0 6 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 3 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 6 arg3 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 7 block Lorg/jruby/runtime/Block;
Exception table:
from to target type
0 1 3 any
MethodParameters:
Name Flags
context
caller
self
arg1
arg2
arg3
block
public final org.jruby.runtime.callsite.CacheEntry retrieveCache(org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 2
start local 2 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 3
start local 3 2: aload 3
aload 2
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: aload 3
areturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 1
aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndGet:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 self Lorg/jruby/runtime/builtin/IRubyObject;
1 5 2 selfType Lorg/jruby/RubyClass;
2 5 3 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
self
public final org.jruby.runtime.callsite.CacheEntry retrieveCache(org.jruby.RubyClass);
descriptor: (Lorg/jruby/RubyClass;)Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 2
start local 2 1: aload 2
aload 1
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 3
2: aload 2
areturn
3: StackMap locals: org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 1
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndGet:(Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 4 1 selfType Lorg/jruby/RubyClass;
1 4 2 cache Lorg/jruby/runtime/callsite/CacheEntry;
RuntimeVisibleAnnotations:
java.lang.Deprecated()
MethodParameters:
Name Flags
selfType
public final org.jruby.runtime.callsite.CacheEntry retrieveCache(org.jruby.RubyClass, java.lang.String);
descriptor: (Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 3
start local 3 1: aload 3
aload 1
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 3
2: aload 3
areturn
3: StackMap locals: org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 1
aload 2
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndGet:(Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 4 1 selfType Lorg/jruby/RubyClass;
0 4 2 methodName Ljava/lang/String;
1 4 3 cache Lorg/jruby/runtime/callsite/CacheEntry;
RuntimeVisibleAnnotations:
java.lang.Deprecated()
MethodParameters:
Name Flags
selfType
methodName
public boolean isBuiltin(org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
astore 2
start local 2 1: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.builtinCache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 3
start local 3 2: aload 3
aload 2
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 4
3: iconst_1
ireturn
4: StackMap locals: org.jruby.RubyClass org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 1
aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndGet:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isBuiltin:()Z
ireturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 self Lorg/jruby/runtime/builtin/IRubyObject;
1 5 2 selfType Lorg/jruby/RubyClass;
2 5 3 cache Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
self
public final boolean isBuiltin(org.jruby.RubyClass);
descriptor: (Lorg/jruby/RubyClass;)Z
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
astore 2
start local 2 1: aload 2
aload 1
invokevirtual org.jruby.runtime.callsite.CacheEntry.typeOk:(Lorg/jruby/RubyClass;)Z
ifeq 3
2: aload 2
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isBuiltin:()Z
ireturn
3: StackMap locals: org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 0
aload 1
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.runtime.callsite.CachingCallSite.cacheAndGet:(Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isBuiltin:()Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 4 1 selfType Lorg/jruby/RubyClass;
1 4 2 cache Lorg/jruby/runtime/callsite/CacheEntry;
RuntimeVisibleAnnotations:
java.lang.Deprecated()
MethodParameters:
Name Flags
selfType
private org.jruby.runtime.callsite.CacheEntry cacheAndGet(org.jruby.RubyClass, java.lang.String);
descriptor: (Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 1
aload 2
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 3
start local 3 1: aload 3
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isUndefined:()Z
ifne 4
2: aload 0
aload 3
putfield org.jruby.runtime.callsite.CachingCallSite.cache:Lorg/jruby/runtime/callsite/CacheEntry;
3: aload 3
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isBuiltin:()Z
ifeq 4
aload 0
aload 3
putfield org.jruby.runtime.callsite.CachingCallSite.builtinCache:Lorg/jruby/runtime/callsite/CacheEntry;
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 5 1 selfType Lorg/jruby/RubyClass;
0 5 2 methodName Ljava/lang/String;
1 5 3 entry Lorg/jruby/runtime/callsite/CacheEntry;
RuntimeVisibleAnnotations:
java.lang.Deprecated()
MethodParameters:
Name Flags
selfType
methodName
private org.jruby.runtime.callsite.CacheEntry cacheAndGet(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, java.lang.String);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=5, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 2
aload 3
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 4
start local 4 1: aload 4
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isUndefined:()Z
ifne 2
aload 0
aload 4
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 4
2: StackMap locals: org.jruby.runtime.callsite.CacheEntry
StackMap stack:
aload 4
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 3 1 self Lorg/jruby/runtime/builtin/IRubyObject;
0 3 2 selfType Lorg/jruby/RubyClass;
0 3 3 methodName Ljava/lang/String;
1 3 4 entry Lorg/jruby/runtime/callsite/CacheEntry;
MethodParameters:
Name Flags
self
selfType
methodName
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.Block, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=7, locals=9, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
start local 7 1: aload 7
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 8
start local 8 2: aload 0
aload 8
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 5
aload 6
aload 2
aload 8
aload 4
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 7
aload 6
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
5: aload 8
aload 5
aload 6
aload 7
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 4
aload 3
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 block Lorg/jruby/runtime/Block;
0 6 4 args [Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 context Lorg/jruby/runtime/ThreadContext;
0 6 6 self Lorg/jruby/runtime/builtin/IRubyObject;
1 6 7 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 8 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
block
args
context
self
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=6, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
start local 6 1: aload 6
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 7
start local 7 2: aload 0
aload 7
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 4
aload 5
aload 2
aload 7
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 6
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
5: aload 7
aload 4
aload 5
aload 6
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 3
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 args [Lorg/jruby/runtime/builtin/IRubyObject;
0 6 4 context Lorg/jruby/runtime/ThreadContext;
0 6 5 self Lorg/jruby/runtime/builtin/IRubyObject;
1 6 6 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 7 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
args
context
self
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=7, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 5
start local 5 1: aload 5
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 6
start local 6 2: aload 0
aload 6
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 3
aload 4
aload 2
aload 6
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 5
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 5
5: aload 6
aload 3
aload 4
aload 5
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 context Lorg/jruby/runtime/ThreadContext;
0 6 4 self Lorg/jruby/runtime/builtin/IRubyObject;
1 6 5 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 6 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
context
self
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.Block, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=6, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
start local 6 1: aload 6
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 7
start local 7 2: aload 0
aload 7
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 4
aload 5
aload 2
aload 7
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 6
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
5: aload 7
aload 4
aload 5
aload 6
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 3
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 block Lorg/jruby/runtime/Block;
0 6 4 context Lorg/jruby/runtime/ThreadContext;
0 6 5 self Lorg/jruby/runtime/builtin/IRubyObject;
1 6 6 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 7 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
block
context
self
protected org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0004) ACC_PROTECTED
Code:
stack=6, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
start local 6 1: aload 6
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 7
start local 7 2: aload 0
aload 7
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 3
aload 4
aload 2
aload 7
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 6
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 6
5: aload 7
aload 3
aload 4
aload 6
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 context Lorg/jruby/runtime/ThreadContext;
0 6 4 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 arg Lorg/jruby/runtime/builtin/IRubyObject;
1 6 6 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 7 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
context
self
arg
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.Block, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=7, locals=9, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
start local 7 1: aload 7
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 8
start local 8 2: aload 0
aload 8
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 4
aload 5
aload 2
aload 8
aload 6
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 7
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
5: aload 8
aload 4
aload 5
aload 7
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 6
aload 3
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 block Lorg/jruby/runtime/Block;
0 6 4 context Lorg/jruby/runtime/ThreadContext;
0 6 5 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 6 arg Lorg/jruby/runtime/builtin/IRubyObject;
1 6 7 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 8 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
block
context
self
arg
protected org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0004) ACC_PROTECTED
Code:
stack=7, locals=9, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
start local 7 1: aload 7
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 8
start local 8 2: aload 0
aload 8
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 3
aload 4
aload 2
aload 8
aload 5
aload 6
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 7
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 7
5: aload 8
aload 3
aload 4
aload 7
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 context Lorg/jruby/runtime/ThreadContext;
0 6 4 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 6 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
1 6 7 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 8 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
context
self
arg1
arg2
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.Block, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=8, locals=10, args_size=8
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 8
start local 8 1: aload 8
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 9
start local 9 2: aload 0
aload 9
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 4
aload 5
aload 2
aload 9
aload 6
aload 7
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 8
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 8
5: aload 9
aload 4
aload 5
aload 8
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 6
aload 7
aload 3
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 9 end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 block Lorg/jruby/runtime/Block;
0 6 4 context Lorg/jruby/runtime/ThreadContext;
0 6 5 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 6 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 7 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
1 6 8 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 9 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
block
context
self
arg1
arg2
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=8, locals=10, args_size=8
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 8
start local 8 1: aload 8
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 9
start local 9 2: aload 0
aload 9
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 3
aload 4
aload 2
aload 9
aload 5
aload 6
aload 7
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 8
aload 4
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 8
5: aload 9
aload 3
aload 4
aload 8
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
aload 7
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 9 end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 context Lorg/jruby/runtime/ThreadContext;
0 6 4 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 5 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 6 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 7 arg3 Lorg/jruby/runtime/builtin/IRubyObject;
1 6 8 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 9 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
context
self
arg1
arg2
arg3
private org.jruby.runtime.builtin.IRubyObject cacheAndCall(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.Block, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Block;Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0002) ACC_PRIVATE
Code:
stack=9, locals=11, args_size=9
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 start local 8 0: aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
invokevirtual org.jruby.RubyClass.searchWithCache:(Ljava/lang/String;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 9
start local 9 1: aload 9
getfield org.jruby.runtime.callsite.CacheEntry.method:Lorg/jruby/internal/runtime/methods/DynamicMethod;
astore 10
start local 10 2: aload 0
aload 10
aload 1
invokevirtual org.jruby.runtime.callsite.CachingCallSite.methodMissing:(Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
ifeq 4
3: aload 0
aload 4
aload 5
aload 2
aload 10
aload 6
aload 7
aload 8
aload 3
invokevirtual org.jruby.runtime.callsite.CachingCallSite.callMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
4: StackMap locals: org.jruby.runtime.callsite.CacheEntry org.jruby.internal.runtime.methods.DynamicMethod
StackMap stack:
aload 0
aload 9
aload 5
invokevirtual org.jruby.runtime.callsite.CachingCallSite.setCache:(Lorg/jruby/runtime/callsite/CacheEntry;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/callsite/CacheEntry;
astore 9
5: aload 10
aload 4
aload 5
aload 9
getfield org.jruby.runtime.callsite.CacheEntry.sourceModule:Lorg/jruby/RubyModule;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 6
aload 7
aload 8
aload 3
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 10 end local 9 end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 6 1 caller Lorg/jruby/runtime/builtin/IRubyObject;
0 6 2 selfType Lorg/jruby/RubyClass;
0 6 3 block Lorg/jruby/runtime/Block;
0 6 4 context Lorg/jruby/runtime/ThreadContext;
0 6 5 self Lorg/jruby/runtime/builtin/IRubyObject;
0 6 6 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 7 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 6 8 arg3 Lorg/jruby/runtime/builtin/IRubyObject;
1 6 9 entry Lorg/jruby/runtime/callsite/CacheEntry;
2 6 10 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
caller
selfType
block
context
self
arg1
arg2
arg3
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject[]);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=7, locals=6, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 args [Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
context
self
selfType
method
args
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=6, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
MethodParameters:
Name Flags
context
self
selfType
method
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=6, locals=6, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 block Lorg/jruby/runtime/Block;
MethodParameters:
Name Flags
context
self
selfType
method
block
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=7, locals=6, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 arg Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
context
self
selfType
method
arg
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=7, locals=7, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;[Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 args [Lorg/jruby/runtime/builtin/IRubyObject;
0 1 6 block Lorg/jruby/runtime/Block;
MethodParameters:
Name Flags
context
self
selfType
method
args
block
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=7, locals=7, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 arg0 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 6 block Lorg/jruby/runtime/Block;
MethodParameters:
Name Flags
context
self
selfType
method
arg0
block
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=8, locals=7, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 arg0 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 6 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
context
self
selfType
method
arg0
arg1
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=8, locals=8, args_size=8
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
aload 7
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 arg0 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 6 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 7 block Lorg/jruby/runtime/Block;
MethodParameters:
Name Flags
context
self
selfType
method
arg0
arg1
block
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=9, locals=8, args_size=8
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 3
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
aload 7
getstatic org.jruby.runtime.Block.NULL_BLOCK:Lorg/jruby/runtime/Block;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 arg0 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 6 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 7 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
context
self
selfType
method
arg0
arg1
arg2
protected final org.jruby.runtime.builtin.IRubyObject callMethodMissing(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block);
descriptor: (Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyClass;Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=9, locals=9, args_size=9
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 start local 7 start local 8 0: aload 1
aload 3
aload 4
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.getVisibility:()Lorg/jruby/runtime/Visibility;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokestatic org.jruby.runtime.Helpers.selectMethodMissing:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/RubyClass;Lorg/jruby/runtime/Visibility;Ljava/lang/String;Lorg/jruby/runtime/CallType;)Lorg/jruby/internal/runtime/methods/DynamicMethod;
aload 1
aload 2
aload 2
invokeinterface org.jruby.runtime.builtin.IRubyObject.getMetaClass:()Lorg/jruby/RubyClass;
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
aload 5
aload 6
aload 7
aload 8
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.call:(Lorg/jruby/runtime/ThreadContext;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/RubyModule;Ljava/lang/String;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/Block;)Lorg/jruby/runtime/builtin/IRubyObject;
areturn
end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 1 1 context Lorg/jruby/runtime/ThreadContext;
0 1 2 self Lorg/jruby/runtime/builtin/IRubyObject;
0 1 3 selfType Lorg/jruby/RubyClass;
0 1 4 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 1 5 arg0 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 6 arg1 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 7 arg2 Lorg/jruby/runtime/builtin/IRubyObject;
0 1 8 block Lorg/jruby/runtime/Block;
MethodParameters:
Name Flags
context
self
selfType
method
arg0
arg1
arg2
block
protected boolean methodMissing(org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/internal/runtime/methods/DynamicMethod;Lorg/jruby/runtime/builtin/IRubyObject;)Z
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 1
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isUndefined:()Z
ifne 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.methodName:Ljava/lang/String;
ldc "method_missing"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifne 1
aload 1
aload 2
aload 0
getfield org.jruby.runtime.callsite.CachingCallSite.callType:Lorg/jruby/runtime/CallType;
invokevirtual org.jruby.internal.runtime.methods.DynamicMethod.isCallableFrom:(Lorg/jruby/runtime/builtin/IRubyObject;Lorg/jruby/runtime/CallType;)Z
ifeq 2
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
StackMap locals:
StackMap stack:
2: iconst_1
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/jruby/runtime/callsite/CachingCallSite;
0 3 1 method Lorg/jruby/internal/runtime/methods/DynamicMethod;
0 3 2 caller Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
method
caller
protected static org.jruby.RubyClass getClass(org.jruby.runtime.builtin.IRubyObject);
descriptor: (Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
flags: (0x000c) ACC_PROTECTED, ACC_STATIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.jruby.RubyBasicObject.getMetaClass:(Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyClass;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 self Lorg/jruby/runtime/builtin/IRubyObject;
MethodParameters:
Name Flags
self
}
SourceFile: "CachingCallSite.java"