Package org.jruby.ir.targets.simple
Class NormalInvocationCompiler
java.lang.Object
org.jruby.ir.targets.simple.NormalInvocationCompiler
- All Implemented Interfaces:
InvocationCompiler
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidasString(AsStringInstr call, String scopeFieldName, String file) Coerces the receiver to a String using to_s, unless it is already a String Stack required: context, caller, receivervoidvoidinvokeArrayDeref(String file, String scopeFieldName, CallBase call) Invoke the array dereferencing method ([]) on an object other than self.voidinvokeBlockGiven(String methodName, String file) Invoke block_given? or iterator? with awareness of any built-in methods.voidinvokeClassSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap, int flags) Invoke a superclass method from a class context.voidPerform a === call appropriate for a case/when statement.voidinvokeFrameName(String methodName, String file) Invoke __method__ or __callee__ with awareness of any built-in methods.voidinvokeInstanceSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap, int flags) 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, int flags) Invoke a superclass method from an unresolved context.voidinvokeZSuper(String file, String name, int arity, boolean hasClosure, boolean[] splatmap, int flags) Invoke a superclass method from a zsuper in a block.voidsetCallInfo(int flags) Sets the current callInfo, when it cannot be passed other ways Stack required: none
-
Field Details
-
SUPER_SPLAT_UNRESOLVED
-
SUPER_NOSPLAT_UNRESOLVED
-
SUPER_SPLAT_RESOLVED
-
SUPER_NOSPLAT_RESOLVED
-
-
Constructor Details
-
NormalInvocationCompiler
-
-
Method Details
-
invokeOther
Description copied from interface:InvocationCompilerInvoke a method on an object other than self.Stack required: context, self, all arguments, optional block
- Specified by:
invokeOtherin interfaceInvocationCompiler- Parameters:
call- the call to be invoked
-
invokeArrayDeref
Description copied from interface:InvocationCompilerInvoke 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
- Specified by:
invokeArrayDerefin interfaceInvocationCompiler- Parameters:
file-
-
invoke
-
invokeOtherOneFixnum
Description copied from interface:InvocationCompilerInvoke a fixnum-receiving method on an object other than self.Stack required: context, self, receiver (fixnum will be handled separately)
- Specified by:
invokeOtherOneFixnumin interfaceInvocationCompiler
-
invokeOtherOneFloat
Description copied from interface:InvocationCompilerInvoke a float-receiving method on an object other than self.Stack required: context, self, receiver (float will be handled separately)
- Specified by:
invokeOtherOneFloatin interfaceInvocationCompiler
-
invokeSelf
Description copied from interface:InvocationCompilerInvoke a method on self. Stack required: context, caller, self, all arguments, optional block- Specified by:
invokeSelfin interfaceInvocationCompiler- Parameters:
file- the filename of the script making this callcall- to be invoked on selfarity- of the call.
-
invokeInstanceSuper
public void invokeInstanceSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap, int flags) Description copied from interface:InvocationCompilerInvoke a superclass method from an instance context.Stack required: context, caller, self, start class, arguments[, block]
- Specified by:
invokeInstanceSuperin interfaceInvocationCompiler- 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 listflags-
-
invokeClassSuper
public void invokeClassSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap, int flags) Description copied from interface:InvocationCompilerInvoke a superclass method from a class context.Stack required: context, caller, self, start class, arguments[, block]
- Specified by:
invokeClassSuperin interfaceInvocationCompiler- 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 listflags-
-
invokeUnresolvedSuper
public void invokeUnresolvedSuper(String file, String name, int arity, boolean hasClosure, boolean literalClosure, boolean[] splatmap, int flags) Description copied from interface:InvocationCompilerInvoke a superclass method from an unresolved context.Stack required: context, caller, self, arguments[, block]
- Specified by:
invokeUnresolvedSuperin interfaceInvocationCompiler- 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 listflags-
-
invokeZSuper
public void invokeZSuper(String file, String name, int arity, boolean hasClosure, boolean[] splatmap, int flags) Description copied from interface:InvocationCompilerInvoke a superclass method from a zsuper in a block.Stack required: context, caller, self, arguments[, block]
- Specified by:
invokeZSuperin interfaceInvocationCompiler- 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 listflags-
-
invokeEQQ
Description copied from interface:InvocationCompilerPerform a === call appropriate for a case/when statement. Stack required: context, case value, when value- Specified by:
invokeEQQin interfaceInvocationCompiler
-
asString
Description copied from interface:InvocationCompilerCoerces the receiver to a String using to_s, unless it is already a String Stack required: context, caller, receiver- Specified by:
asStringin interfaceInvocationCompiler
-
setCallInfo
public void setCallInfo(int flags) Description copied from interface:InvocationCompilerSets the current callInfo, when it cannot be passed other ways Stack required: none- Specified by:
setCallInfoin interfaceInvocationCompiler
-
invokeBlockGiven
Description copied from interface:InvocationCompilerInvoke block_given? or iterator? with awareness of any built-in methods.- Specified by:
invokeBlockGivenin interfaceInvocationCompiler
-
invokeFrameName
Description copied from interface:InvocationCompilerInvoke __method__ or __callee__ with awareness of any built-in methods.- Specified by:
invokeFrameNamein interfaceInvocationCompiler
-