Package org.jruby.ir.targets
Interface InvocationCompiler
- All Known Implementing Classes:
IndyInvocationCompiler,NormalInvocationCompiler
public interface InvocationCompiler
-
Method Summary
Modifier and TypeMethodDescriptionvoidinvokeArrayDeref(String file, String scopeFieldName, CallBase call) Invoke the array dereferencing method ([]) on an object other than self.voidinvokeClassSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap) Invoke a superclass method from a class context.voidPerform a === call appropriate for a case/when statement.voidinvokeInstanceSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap) Invoke a superclass method from an instance context.voidinvokeOther(String file, String scopeFieldName, CallBase call, int arity) Invoke a method on an object other than self.voidinvokeOtherOneFixnum(String file, CallBase call, long fixnum) Invoke a fixnum-receiving method on an object other than self.voidinvokeOtherOneFloat(String file, CallBase call, double flote) Invoke a float-receiving method on an object other than self.voidinvokeSelf(String file, String scopeFieldName, CallBase call, int arity) Invoke a method on self.voidinvokeUnresolvedSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap) Invoke a superclass method from an unresolved context.voidinvokeZSuper(String file, String name, int arity, boolean hasClosure, boolean[] splatmap) Invoke a superclass method from a zsuper in a block.
-
Method Details
-
invokeOther
Invoke a method on an object other than self.Stack required: context, self, all arguments, optional block
- Parameters:
call- the call to be invoked
-
invokeArrayDeref
Invoke the array dereferencing method ([]) on an object other than self.If this invokes against a Hash with a frozen string, it will follow an optimized path.
Stack required: context, self, target, arg0
- Parameters:
file-
-
invokeOtherOneFixnum
Invoke a fixnum-receiving method on an object other than self.Stack required: context, self, receiver (fixnum will be handled separately)
-
invokeOtherOneFloat
Invoke a float-receiving method on an object other than self.Stack required: context, self, receiver (float will be handled separately)
-
invokeSelf
Invoke a method on self. Stack required: context, caller, self, all arguments, optional block- Parameters:
file- the filename of the script making this callcall- to be invoked on selfarity- of the call.
-
invokeInstanceSuper
void invokeInstanceSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap) Invoke a superclass method from an instance context. Stack required: context, caller, self, start class, arguments[, block]- Parameters:
file- the filename of the script making this callname- name of the method to invokearity- arity of the arguments on the stackhasClosure- whether a block is passedliteralClosure- whether the block passed is a literal closuresplatmap- a map of arguments to be splatted back into arg list
-
invokeClassSuper
void invokeClassSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap) Invoke a superclass method from a class context. Stack required: context, caller, self, start class, arguments[, block]- Parameters:
file- the filename of the script making this callname- name of the method to invokearity- arity of the arguments on the stackhasClosure- whether a block is passedliteralClosure- whether the block passed is a literal closuresplatmap- a map of arguments to be splatted back into arg list
-
invokeUnresolvedSuper
void invokeUnresolvedSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap) Invoke a superclass method from an unresolved context. Stack required: context, caller, self, arguments[, block]- Parameters:
file- the filename of the script making this callname- name of the method to invokearity- arity of the arguments on the stackhasClosure- whether a block is passedliteralClosure- whether the block passed is a literal closuresplatmap- a map of arguments to be splatted back into arg list
-
invokeZSuper
Invoke a superclass method from a zsuper in a block. Stack required: context, caller, self, arguments[, block]- Parameters:
file- the filename of the script making this callname- name of the method to invokearity- arity of the arguments on the stackhasClosure- whether a block is passedsplatmap- a map of arguments to be splatted back into arg list
-
invokeEQQ
Perform a === call appropriate for a case/when statement. Stack required: context, case value, when value
-