Searched refs:cpg (Results 1 - 25 of 113) sorted by relevance

12345

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DLoadClass.java74 public ObjectType getLoadClassType(ConstantPoolGen cpg); argument
88 public Type getType(ConstantPoolGen cpg); argument
H A DInvokeInstruction.java100 public int consumeStack(ConstantPoolGen cpg) { argument
101 String signature = getSignature(cpg);
122 public int produceStack(ConstantPoolGen cpg) { argument
123 return getReturnType(cpg).getSize();
128 public Type getType(ConstantPoolGen cpg) { argument
129 return getReturnType(cpg);
134 public String getMethodName(ConstantPoolGen cpg) { argument
135 return getName(cpg);
140 public Type getReturnType(ConstantPoolGen cpg) { argument
141 return Type.getReturnType(getSignature(cpg));
146 getArgumentTypes(ConstantPoolGen cpg) argument
[all...]
H A DFieldOrMethod.java84 public String getSignature(ConstantPoolGen cpg) { argument
85 ConstantPool cp = cpg.getConstantPool();
94 public String getName(ConstantPoolGen cpg) { argument
95 ConstantPool cp = cpg.getConstantPool();
103 public String getClassName(ConstantPoolGen cpg) { argument
104 ConstantPool cp = cpg.getConstantPool();
111 public ObjectType getClassType(ConstantPoolGen cpg) { argument
112 return new ObjectType(getClassName(cpg));
117 public ObjectType getLoadClassType(ConstantPoolGen cpg) { argument
118 return getClassType(cpg);
[all...]
H A DStackConsumer.java69 public int consumeStack(ConstantPoolGen cpg); argument
H A DStackProducer.java70 public int produceStack(ConstantPoolGen cpg); argument
H A DTypedInstruction.java68 public Type getType(ConstantPoolGen cpg); argument
H A DFieldInstruction.java97 protected int getFieldSize(ConstantPoolGen cpg) { argument
98 return getType(cpg).getSize();
103 public Type getType(ConstantPoolGen cpg) { argument
104 return getFieldType(cpg);
109 public Type getFieldType(ConstantPoolGen cpg) { argument
110 return Type.getType(getSignature(cpg));
115 public String getFieldName(ConstantPoolGen cpg) { argument
116 return getName(cpg);
H A DLDC2_W.java80 public Type getType(ConstantPoolGen cpg) { argument
81 switch(cpg.getConstantPool().getConstant(index).getTag()) {
89 public Number getValue(ConstantPoolGen cpg) { argument
90 com.sun.org.apache.bcel.internal.classfile.Constant c = cpg.getConstantPool().getConstant(index);
H A DGETSTATIC.java83 public int produceStack(ConstantPoolGen cpg) { return getFieldSize(cpg); } argument
H A DINSTANCEOF.java83 public ObjectType getLoadClassType(ConstantPoolGen cpg) { argument
84 Type t = getType(cpg);
H A DPUTSTATIC.java84 public int consumeStack(ConstantPoolGen cpg) { return getFieldSize(cpg); } argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DDecimalFormatting.java93 ConstantPoolGen cpg = classGen.getConstantPool();
98 final int init = cpg.addMethodref(DFS_CLASS, "<init>",
103 il.append(new PUSH(cpg, _name.toString()));
109 il.append(new NEW(cpg.addClass(DFS_CLASS)));
111 il.append(new GETSTATIC(cpg.addFieldref(LOCALE_CLASS, "US",
117 int nan = cpg.addMethodref(DFS_CLASS,
120 il.append(new PUSH(cpg, "NaN"));
126 int inf = cpg.addMethodref(DFS_CLASS,
130 il.append(new PUSH(cpg, "Infinity"));
144 method = cpg
[all...]
H A DMessage.java60 final ConstantPoolGen cpg = classGen.getConstantPool();
68 il.append(new PUSH(cpg, ""));
73 il.append(new PUSH(cpg, ((Text) child).getText()));
82 il.append(new NEW(cpg.addClass(STREAM_XML_OUTPUT)));
86 il.append(new NEW(cpg.addClass(STRING_WRITER)));
90 cpg.addMethodref(STRING_WRITER, "<init>", "()V")));
95 cpg.addMethodref(STREAM_XML_OUTPUT, "<init>",
102 cpg.addInterfaceMethodref(TRANSLET_OUTPUT_INTERFACE,
108 il.append(new PUSH(cpg, "UTF-8")); // other encodings?
110 cpg
[all...]
H A DComment.java54 final ConstantPoolGen cpg = classGen.getConstantPool();
76 cpg.addInterfaceMethodref(TRANSLET_OUTPUT_INTERFACE,
81 il.append(new PUSH(cpg, rawText.getText()));
83 cpg.addInterfaceMethodref(TRANSLET_OUTPUT_INTERFACE,
95 il.append(new GETFIELD(cpg.addFieldref(TRANSLET_CLASS,
105 il.append(new INVOKEVIRTUAL(cpg.addMethodref(STRING_VALUE_HANDLER,
110 cpg.addInterfaceMethodref(TRANSLET_OUTPUT_INTERFACE,
H A DIdKeyPattern.java86 final ConstantPoolGen cpg = classGen.getConstantPool();
90 final int getKeyIndex = cpg.addMethodref(TRANSLET_CLASS,
96 final int lookupId = cpg.addMethodref(KEY_INDEX_CLASS,
99 final int lookupKey = cpg.addMethodref(KEY_INDEX_CLASS,
102 final int getNodeIdent = cpg.addInterfaceMethodref(DOM_INTF,
109 il.append(new PUSH(cpg,_index));
115 il.append(new PUSH(cpg,_value));
H A DNumber.java233 ConstantPoolGen cpg = classGen.getConstantPool();
240 cpg.addUtf8(FieldNames[_level]),
241 cpg.addUtf8(NODE_COUNTER_SIG),
243 cpg.getConstantPool());
249 fieldIndexes[_level] = cpg.addFieldref(classGen.getClassName(),
260 index = cpg.addMethodref(ClassNames[_level],
293 final ConstantPoolGen cpg = classGen.getConstantPool();
309 "<init>", _className, il, cpg);
317 int index = cpg.addMethodref(ClassNames[_level],
339 ConstantPoolGen cpg
[all...]
H A DStep.java243 final ConstantPoolGen cpg = classGen.getConstantPool();
266 int iter = cpg.addInterfaceMethodref(DOM_INTF,
270 il.append(new PUSH(cpg, Axis.ATTRIBUTE));
271 il.append(new PUSH(cpg, _nodeType));
286 int init = cpg.addMethodref(SINGLETON_ITERATOR,
289 il.append(new NEW(cpg.addClass(SINGLETON_ITERATOR)));
295 int git = cpg.addInterfaceMethodref(DOM_INTF,
299 il.append(new PUSH(cpg, _axis));
320 int git = cpg.addInterfaceMethodref(DOM_INTF,
324 il.append(new PUSH(cpg, _axi
[all...]
H A DConcatCall.java61 final ConstantPoolGen cpg = classGen.getConstantPool();
67 il.append(new PUSH(cpg, EMPTYSTRING));
75 final int initBuffer = cpg.addMethodref(STRING_BUFFER_CLASS,
78 new INVOKEVIRTUAL(cpg.addMethodref(STRING_BUFFER_CLASS,
83 final int toString = cpg.addMethodref(STRING_BUFFER_CLASS,
87 il.append(new NEW(cpg.addClass(STRING_BUFFER_CLASS)));
H A DParam.java174 final ConstantPoolGen cpg = classGen.getConstantPool();
205 il.append(new PUSH(cpg, name));
207 il.append(new PUSH(cpg, true));
210 il.append(new INVOKEVIRTUAL(cpg.addMethodref(TRANSLET_CLASS,
214 il.append(new CHECKCAST(cpg.addClass(className)));
233 classGen.addField(new Field(ACC_PUBLIC, cpg.addUtf8(name),
234 cpg.addUtf8(signature),
235 null, cpg.getConstantPool()));
238 il.append(new PUSH(cpg, name));
240 il.append(new PUSH(cpg, tru
[all...]
H A DOutput.java325 ConstantPoolGen cpg = classGen.getConstantPool();
333 field = cpg.addFieldref(TRANSLET_CLASS, "_version", STRING_SIG);
335 il.append(new PUSH(cpg, _version));
341 field = cpg.addFieldref(TRANSLET_CLASS, "_method", STRING_SIG);
343 il.append(new PUSH(cpg, _method));
349 field = cpg.addFieldref(TRANSLET_CLASS, "_encoding", STRING_SIG);
351 il.append(new PUSH(cpg, _encoding));
357 field = cpg.addFieldref(TRANSLET_CLASS, "_omitHeader", "Z");
359 il.append(new PUSH(cpg, _omitHeader));
365 field = cpg
[all...]
H A DLocalNameCall.java60 final ConstantPoolGen cpg = classGen.getConstantPool();
64 final int getNodeName = cpg.addInterfaceMethodref(DOM_INTF,
68 final int getLocalName = cpg.addMethodref(BASIS_LIBRARY_CLASS,
H A DSort.java219 final ConstantPoolGen cpg = classGen.getConstantPool();
221 il.append(new PUSH(cpg, _lang)); // bug! see 26869
251 final ConstantPoolGen cpg = classGen.getConstantPool();
255 final int init = cpg.addMethodref(SORT_ITERATOR, "<init>",
282 final int children = cpg.addInterfaceMethodref(DOM_INTF,
287 il.append(new PUSH(cpg, Axis.CHILD));
302 il.append(new NEW(cpg.addClass(SORT_ITERATOR)));
335 final ConstantPoolGen cpg = classGen.getConstantPool();
352 il.append(new PUSH(cpg, nsorts));
353 il.append(new ANEWARRAY(cpg
663 compileInit(Vector sortObjects, NodeSortRecordGenerator sortRecord, ConstantPoolGen cpg, String className) argument
691 compileExtract(Vector sortObjects, NodeSortRecordGenerator sortRecord, ConstantPoolGen cpg, String className) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DResultTreeType.java133 final ConstantPoolGen cpg = classGen.getConstantPool();
149 final ConstantPoolGen cpg = classGen.getConstantPool();
153 int index = cpg.addInterfaceMethodref(DOM_INTF,
165 il.append(new CHECKCAST(cpg.addClass(className)));
168 il.append(new GETFIELD(cpg.addFieldref(className, "_dom",
172 int index = cpg.addMethodref(STRING_VALUE_HANDLER, "<init>", "()V");
173 il.append(new NEW(cpg.addClass(STRING_VALUE_HANDLER)));
186 index = cpg.addMethodref(className, _methodName,
192 index = cpg.addMethodref(STRING_VALUE_HANDLER,
225 final ConstantPoolGen cpg
[all...]
H A DMarkerInstruction.java62 * @param cpg The {@link com.sun.org.apache.bcel.internal.generic.ConstantPoolGen} for the
66 final public int consumeStack(ConstantPoolGen cpg) { argument
73 * @param cpg The {@link com.sun.org.apache.bcel.internal.generic.ConstantPoolGen} for the
77 final public int produceStack(ConstantPoolGen cpg) { argument
H A DNodeType.java124 final ConstantPoolGen cpg = classGen.getConstantPool();
132 int index = cpg.addInterfaceMethodref(DOM_INTF,
144 index = cpg.addInterfaceMethodref(DOM_INTF,
196 ConstantPoolGen cpg = classGen.getConstantPool();
200 il.append(new NEW(cpg.addClass(SINGLETON_ITERATOR)));
203 final int init = cpg.addMethodref(SINGLETON_ITERATOR, "<init>",
240 final ConstantPoolGen cpg = classGen.getConstantPool();
242 il.append(new NEW(cpg.addClass(RUNTIME_NODE_CLASS)));
245 il.append(new PUSH(cpg, _type));
246 il.append(new INVOKESPECIAL(cpg
[all...]

Completed in 101 milliseconds

12345