Searched refs:thisKlass (Results 1 - 8 of 8) sorted by relevance

/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/classes/
H A DMainKlass.java39 private final TypeKlass thisKlass; field in class:MainKlass
41 public MainKlass(String name, TypeKlass thisKlass, IRNode variableDeclarations, argument
43 super(thisKlass);
49 this.thisKlass = thisKlass;
70 return thisKlass;
H A DKlass.java36 return thisKlass;
63 protected final TypeKlass thisKlass; field in class:Klass
67 public Klass(TypeKlass thisKlass, TypeKlass parent, argument
73 super(thisKlass);
74 this.thisKlass = thisKlass;
75 owner = thisKlass;
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/factories/
H A DKlassFactory.java53 private TypeKlass thisKlass; field in class:KlassFactory
74 thisKlass = new TypeKlass(name);
83 for (Symbol symbol : SymbolTable.getAllCombined(thisKlass, FunctionInfo.class)) {
101 thisKlass.setAbstract();
137 thisKlass.addParent(parent.getName());
138 thisKlass.setParent(parent);
141 SymbolTable.add(new VariableInfo("this", thisKlass, thisKlass,
149 IRNodeBuilder builder = new IRNodeBuilder().setOwnerKlass(thisKlass)
173 thisKlass
[all...]
H A DInterfaceFactory.java56 TypeKlass thisKlass;
72 thisKlass = new TypeKlass(name, TypeKlass.INTERFACE);
74 thisKlass.addParent(parent.getName());
75 thisKlass.setParent(parent);
79 functionInfo.owner = thisKlass;
80 functionInfo.argTypes.get(0).type = thisKlass;
86 functionDeclarations = new IRNodeBuilder().setOwnerKlass(thisKlass)
93 TypeList.add(thisKlass);
H A DMainKlassFactory.java51 private TypeKlass thisKlass; field in class:MainKlassFactory
68 thisKlass = new TypeKlass(name);
69 thisKlass.addParent(parent.getName());
70 thisKlass.setParent(parent);
72 parent.addChild(thisKlass);
73 SymbolTable.add(new VariableInfo("this", thisKlass, thisKlass,
76 .setOwnerKlass(thisKlass)
99 SymbolTable.remove(new Symbol("this", thisKlass, thisKlass, VariableInf
[all...]
/openjdk9/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp77 const methodHandle& m, VerificationType thisKlass, TRAPS) {
84 thisKlass.name() != vmSymbols::java_lang_Object()) {
88 _locals[0] = thisKlass;
76 set_locals_from_arg( const methodHandle& m, VerificationType thisKlass, TRAPS) argument
H A DstackMapFrame.hpp155 const methodHandle& m, VerificationType thisKlass, TRAPS);
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DJavaCodeVisitor.java627 TypeKlass thisKlass = node.getThisKlass();
629 + (thisKlass.isFinal() ? "final " : "")
630 + (thisKlass.isAbstract() ? "abstract " : "")

Completed in 101 milliseconds