| 1 19 20 25 26 27 28 29 30 package soot.baf.internal; 31 32 import soot.*; 33 import soot.baf.*; 34 import soot.util.*; 35 import java.util.*; 36 37 public class BOrInst extends AbstractOpTypeInst implements OrInst 38 { 39 public BOrInst(Type opType) 40 { 41 super(opType); 42 } 43 44 public int getInCount() 45 { 46 return 2; 47 } 48 49 50 51 public Object clone() 52 { 53 return new BOrInst(getOpType()); 54 } 55 56 57 58 public int getInMachineCount() 59 { 60 return 2 * JasminClass.sizeOfType(getOpType()); 61 } 62 63 public int getOutCount() 64 { 65 return 1; 66 } 67 68 public int getOutMachineCount() 69 { 70 return 1 * JasminClass.sizeOfType(getOpType()); 71 } 72 73 public final String getName() { return "or"; } 74 75 public void apply(Switch sw) 76 { 77 ((InstSwitch) sw).caseOrInst(this); 78 } 79 } 80 81 | Popular Tags |