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

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DPointerType.java27 public interface PointerType extends Type { interface in inherits:Type
H A DTypeVisitor.java33 public void doPointerType(PointerType t);
H A DType.java41 public PointerType asPointer();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/
H A DPointerType.java32 public interface PointerType extends Type { interface in inherits:Type
33 /** Returns the target type of this PointerType. */
/openjdk10/hotspot/src/share/vm/shark/
H A DsharkContext.hpp108 llvm::PointerType* _itableOffsetEntry_type;
109 llvm::PointerType* _jniEnv_type;
110 llvm::PointerType* _jniHandleBlock_type;
111 llvm::PointerType* _Metadata_type;
112 llvm::PointerType* _klass_type;
113 llvm::PointerType* _Method_type;
115 llvm::PointerType* _oop_type;
116 llvm::PointerType* _thread_type;
117 llvm::PointerType* _zeroStack_type;
122 llvm::PointerType* itableOffsetEntry_typ
[all...]
H A DsharkType.hpp73 static llvm::PointerType* itableOffsetEntry_type() {
76 static llvm::PointerType* jniEnv_type() {
79 static llvm::PointerType* jniHandleBlock_type() {
82 static llvm::PointerType* Metadata_type() {
85 static llvm::PointerType* klass_type() {
88 static llvm::PointerType* Method_type() {
94 static llvm::PointerType* oop_type() {
97 static llvm::PointerType* thread_type() {
100 static llvm::PointerType* zeroStack_type() {
H A DsharkContext.cpp53 _itableOffsetEntry_type = PointerType::getUnqual(
56 _Metadata_type = PointerType::getUnqual(
59 _klass_type = PointerType::getUnqual(
62 _jniEnv_type = PointerType::getUnqual(
65 _jniHandleBlock_type = PointerType::getUnqual(
68 _Method_type = PointerType::getUnqual(
74 _oop_type = PointerType::getUnqual(
77 _thread_type = PointerType::getUnqual(
80 _zeroStack_type = PointerType::getUnqual(
91 params.push_back(PointerType
[all...]
H A DsharkBuilder.cpp64 base, offset, PointerType::getUnqual(type)),
92 PointerType::getUnqual(element_type),
143 return PointerType::getUnqual(make_type(tolower(type), false));
149 return PointerType::getUnqual(SharkType::monitor_type());
201 PointerType::getUnqual(make_ftype(params, ret)));
400 PointerType::getUnqual(SharkType::jbyte_type())),
409 PointerType::getUnqual(SharkType::jbyte_type())),
422 if (isa<PointerType>(value->getType()))
435 PointerType::getUnqual(SharkType::jbyte_type())),
457 PointerType
[all...]
H A DsharkStack.hpp90 llvm::PointerType::getUnqual(SharkType::intptr_type()),
97 llvm::PointerType::getUnqual(SharkType::intptr_type()),
122 llvm::PointerType::getUnqual(SharkType::intptr_type()),
129 llvm::PointerType::getUnqual(SharkType::intptr_type()),
H A DsharkNativeWrapper.hpp147 llvm::PointerType::getUnqual(SharkType::jint_type()),
153 llvm::PointerType::getUnqual(SharkType::oop_type()),
172 llvm::PointerType::getUnqual(SharkType::jint_type())));
185 llvm::PointerType::getUnqual(SharkType::intptr_type()),
H A DsharkNativeWrapper.cpp87 PointerType *box_type = PointerType::getUnqual(SharkType::oop_type());
212 PointerType::getUnqual(
238 PointerType::getUnqual(SharkType::jint_type())),
351 PointerType::getUnqual(SharkType::to_stackType(result_type))));
H A DsharkStack.cpp58 PointerType::getUnqual(
160 fp, PointerType::getUnqual(SharkType::intptr_type()))));
175 result, PointerType::getUnqual(type), name);
H A DsharkTopLevelBlock.cpp410 PointerType::getUnqual(SharkType::jbyte_type())),
419 PointerType::getUnqual(SharkType::jbyte_type())),
446 PointerType::getUnqual(SharkType::jbyte_type())),
625 PointerType::getUnqual(SharkType::jint_type())),
671 PointerType::getUnqual(SharkType::jint_type())),
826 PointerType::getUnqual(SharkType::to_stackType(type))));
1258 PointerType::getUnqual(SharkType::Method_type())),
1359 PointerType::getUnqual(
1360 PointerType::getUnqual(SharkType::entry_point_type()))),
1589 PointerType
[all...]
H A DsharkBuilder.hpp211 llvm::Value* CreateInlineMetadata(Metadata* metadata, llvm::PointerType* type, const char* name = "");
212 llvm::Value* CreateInlineMetadata(ciMetadata* metadata, llvm::PointerType* type, const char* name = "") {
H A DsharkTopLevelBlock.hpp257 llvm::PointerType::getUnqual(SharkType::oop_type()),
336 llvm::PointerType::getUnqual(SharkType::oop_type()),
H A DsharkIntrinsics.cpp264 PointerType::getUnqual(SharkType::jint_type()),
H A DsharkCacheDecache.cpp237 result = builder()->CreateBitCast(result, PointerType::getUnqual(type));
H A DsharkCacheDecache.hpp405 llvm::PointerType::getUnqual(
H A DsharkBlock.cpp1057 PointerType::getUnqual(type),
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicPointerType.java31 /** This specialization of BasicType implements the PointerType
34 public class BasicPointerType extends BasicType implements PointerType {
H A DBasicType.java132 Type target = ((PointerType)this).getTargetType();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicPointerType.java30 public class BasicPointerType extends BasicType implements PointerType {
45 public PointerType asPointer() { return this; }
H A DBasicType.java60 public PointerType asPointer() { return null; }
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/tree/
H A DCTypeTreeNodeAdapter.java193 return new CTypeTreeNodeAdapter(ptr, ((PointerType) t).getTargetType(), cf, getTreeTableMode());
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/
H A DInspector.java215 fieldType = ((PointerType) fieldType).getTargetType();

Completed in 208 milliseconds