Searched defs:_local (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DVariableBase.java56 protected LocalVariableGen _local; // Reference to JVM variable field in class:VariableBase
103 if (_local == null) {
107 _local = methodGen.addLocalVariable2(name, varType, il.getEnd());
116 if (_local != null) {
117 _local.setEnd(methodGen.getInstructionList().getEnd());
118 methodGen.removeLocalVariable(_local);
120 _local = null;
131 _loadInstruction = _type.LOAD(_local.getIndex());
143 _storeInstruction = _type.STORE(_local.getIndex());

Completed in 264 milliseconds