本文整理汇总了Java中org.apache.bcel.generic.MULTIANEWARRAY类的典型用法代码示例。如果您正苦于以下问题:Java MULTIANEWARRAY类的具体用法?Java MULTIANEWARRAY怎么用?Java MULTIANEWARRAY使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MULTIANEWARRAY类属于org.apache.bcel.generic包,在下文中一共展示了MULTIANEWARRAY类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: visitMULTIANEWARRAY
import org.apache.bcel.generic.MULTIANEWARRAY; //导入依赖的package包/类
/** Checks if the constraints of operands of the said instruction(s) are satisfied. */
public void visitMULTIANEWARRAY(MULTIANEWARRAY o){
indexValid(o, o.getIndex());
Constant c = cpg.getConstant(o.getIndex());
if (! (c instanceof ConstantClass)){
constraintViolated(o, "Expecting a CONSTANT_Class operand, but found a '"+c+"'.");
}
int dimensions2create = o.getDimensions();
if (dimensions2create < 1){
constraintViolated(o, "Number of dimensions to create must be greater than zero.");
}
Type t = o.getType(cpg);
if (t instanceof ArrayType){
int dimensions = ((ArrayType) t).getDimensions();
if (dimensions < dimensions2create){
constraintViolated(o, "Not allowed to create array with more dimensions ('+dimensions2create+') than the one referenced by the CONSTANT_Class '"+t+"'.");
}
}
else{
constraintViolated(o, "Expecting a CONSTANT_Class referencing an array type. [Constraint not found in The Java Virtual Machine Specification, Second Edition, 4.8.1]");
}
}
开发者ID:Hu6,项目名称:VestaClient,代码行数:23,代码来源:Pass3aVerifier.java
示例2: visitAllocationInstruction
import org.apache.bcel.generic.MULTIANEWARRAY; //导入依赖的package包/类
public void visitAllocationInstruction( AllocationInstruction i ) {
Type type;
if (i instanceof CPInstruction) {
type = ((CPInstruction) i).getType(_cp);
} else {
type = ((NEWARRAY) i).getType();
}
short opcode = ((Instruction) i).getOpcode();
int dim = 1;
switch (opcode) {
case Constants.NEW:
_out.println("il.append(_factory.createNew(\"" + ((ObjectType) type).getClassName()
+ "\"));");
break;
case Constants.MULTIANEWARRAY:
dim = ((MULTIANEWARRAY) i).getDimensions();
case Constants.ANEWARRAY:
case Constants.NEWARRAY:
if (type instanceof ArrayType) {
type = ((ArrayType) type).getBasicType();
}
_out.println("il.append(_factory.createNewArray(" + BCELifier.printType(type)
+ ", (short) " + dim + "));");
break;
default:
throw new RuntimeException("Oops: " + opcode);
}
}
开发者ID:Hu6,项目名称:VestaClient,代码行数:29,代码来源:BCELFactory.java
示例3: noAliasesStoreWithIndexBefore
import org.apache.bcel.generic.MULTIANEWARRAY; //导入依赖的package包/类
/**
* Checks that any store in this basic block to the specified variable is the
* result of a new() or a null.
* @param ih handle up to where to investigate.
* @param localVarIndex the local variable index
* @return true if all stores are OK or there are no stores.
*/
boolean noAliasesStoreWithIndexBefore(InstructionHandle ih, LocalVariableGen lg) {
InstructionHandle prev = null;
for (InstructionContext ic : instructions) {
InstructionHandle current = ic.getInstruction();
if (current.equals(ih)) {
break;
}
if (methodGen.instructionStoresTo(current, lg.getIndex())) {
LocalVariableGen l1 = methodGen.findLocalVar(current, lg.getIndex(), false);
if (l1 != lg) {
prev = current;
continue;
}
if (prev != null) {
Instruction i = prev.getInstruction();
if (i instanceof INVOKESPECIAL) {
INVOKESPECIAL invoker = (INVOKESPECIAL) i;
if (invoker.getMethodName(methodGen.getConstantPool()).equals("<init>")
&& isNonEscapingConstructor(invoker)) {
continue;
}
}
if (i instanceof CHECKCAST) {
InstructionHandle pp = prev.getPrev();
if (pp != null) {
i = pp.getInstruction();
}
}
if (i instanceof NEWARRAY
|| i instanceof ANEWARRAY || i instanceof MULTIANEWARRAY
|| i instanceof ConstantPushInstruction || i instanceof ACONST_NULL) {
prev = current;
continue;
}
}
return false;
}
prev = current;
}
return true;
}
开发者ID:pieterhijma,项目名称:cashmere,代码行数:51,代码来源:LoadAwareBasicBlock.java
示例4: emitMULTIANEWARRAY
import org.apache.bcel.generic.MULTIANEWARRAY; //导入依赖的package包/类
private void emitMULTIANEWARRAY(Element xml_inst, MULTIANEWARRAY inst) {
xml_inst.setAttribute("dimensions", "" + inst.getDimensions());
xml_inst.setAttribute("base-type", inst.getType(cpg).toString().replace("[]", ""));
}
开发者ID:shannah,项目名称:cn1,代码行数:5,代码来源:ClassToXmlvmProcess.java
示例5: visitMULTIANEWARRAY
import org.apache.bcel.generic.MULTIANEWARRAY; //导入依赖的package包/类
@Override
public void visitMULTIANEWARRAY(MULTIANEWARRAY obj) {
modelNormalInstruction(obj, getNumWordsConsumed(obj), 0);
produce(IsNullValue.nonNullValue());
}
开发者ID:ytus,项目名称:findbugs-all-the-bugs,代码行数:6,代码来源:IsNullValueFrameModelingVisitor.java
注:本文中的org.apache.bcel.generic.MULTIANEWARRAY类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论