public class AddCallProtocolInstructions extends CompilerPass
Modifier and Type | Field and Description |
---|---|
static List<Class<? extends CompilerPass>> |
DEPENDENCIES |
NO_DEPENDENCIES
Constructor and Description |
---|
AddCallProtocolInstructions() |
Modifier and Type | Method and Description |
---|---|
Object |
execute(IRScope scope,
Object... data)
Meat of an individual pass.
|
List<Class<? extends CompilerPass>> |
getDependencies() |
String |
getLabel()
What is the user-friendly name of this compiler pass
|
void |
invalidate(IRScope scope)
The data that this pass is responsible for will get invalidated so that
if this pass is then execute()d it will generate new pass data.
|
Object |
previouslyRun(IRScope scope)
If this pass has been previous run then return the data from that last run.
|
createPassInstance, createPassInstance, getPassesFromString, run, run
public static List<Class<? extends CompilerPass>> DEPENDENCIES
public String getLabel()
CompilerPass
getLabel
in class CompilerPass
public List<Class<? extends CompilerPass>> getDependencies()
getDependencies
in class CompilerPass
public Object execute(IRScope scope, Object... data)
CompilerPass
execute
in class CompilerPass
scope
- is the scope to run this pass ondata
- is the data supplied to this pass to use to execute the passpublic Object previouslyRun(IRScope scope)
CompilerPass
previouslyRun
in class CompilerPass
public void invalidate(IRScope scope)
CompilerPass
invalidate
in class CompilerPass
scope
- is where the pass stores its data.Copyright © 2001-2016 JRuby. All Rights Reserved.