Home
last modified time | relevance | path

Searched refs:GotoInstruction (Results 1 – 13 of 13) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DGotoInstruction.java25 public abstract class GotoInstruction extends BranchInstruction implements UnconditionalBranch { class
27 GotoInstruction(final short opcode, final InstructionHandle target) { in GotoInstruction() method in GotoInstruction
36 GotoInstruction() { in GotoInstruction() method in GotoInstruction
DGOTO_W.java30 public class GOTO_W extends GotoInstruction {
DGOTO.java28 public class GOTO extends GotoInstruction implements VariableLengthInstruction {
DVisitor.java66 void visitGotoInstruction( GotoInstruction obj ); in visitGotoInstruction()
DEmptyVisitor.java73 public void visitGotoInstruction( final GotoInstruction obj ) { in visitGotoInstruction()
/external/v8/src/torque/
Dcfg.cc85 Emit(GotoInstruction{block}); in Goto()
95 Emit(GotoInstruction{block}); in Goto()
190 if (!instruction.Is<GotoInstruction>()) break; in OptimizeCfg()
191 Block* destination = instruction.Cast<GotoInstruction>().destination; in OptimizeCfg()
Dinstructions.h50 V(GotoInstruction) \
554 struct GotoInstruction : InstructionBase { struct
561 explicit GotoInstruction(Block* destination) : destination(destination) {} in GotoInstruction() argument
Dcc-generator.cc46 EmitInstruction(GotoInstruction{cfg_.start()}, &parameters); in EmitGraph()
302 void CCGenerator::EmitInstruction(const GotoInstruction& instruction, in EmitInstruction()
Dinstructions.cc539 void GotoInstruction::TypeInstruction(Stack<const Type*>* stack, in TypeInstruction()
544 void GotoInstruction::RecomputeDefinitionLocations( in RecomputeDefinitionLocations()
Dcsa-generator.cc41 EmitInstruction(GotoInstruction{cfg_.start()}, &parameters); in EmitGraph()
743 void CSAGenerator::EmitInstruction(const GotoInstruction& instruction, in EmitInstruction()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DControlFlowGraph.java28 import org.apache.bcel.generic.GotoInstruction;
371 if (inst instanceof GotoInstruction) { in _getSuccessors()
372 single[0] = ((GotoInstruction) inst).getTarget(); in _getSuccessors()
DSubroutines.java31 import org.apache.bcel.generic.GotoInstruction;
650 if (inst instanceof GotoInstruction) { in getSuccessors()
651 single[0] = ((GotoInstruction) inst).getTarget(); in getSuccessors()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass3aVerifier.java59 import org.apache.bcel.generic.GotoInstruction;
388 (last instanceof GotoInstruction) || in pass3StaticInstructionChecks()