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

12

/openjdk7/hotspot/src/share/vm/memory/
H A Dclassify.hpp30 typedef enum oop_type { enum
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkType.hpp91 static const llvm::PointerType* oop_type() { function in class:SharkType
92 return context().oop_type();
H A DllvmValue.hpp57 return llvm::ConstantPointerNull::get(SharkType::oop_type());
H A DsharkCacheDecache.cpp99 SharkType::oop_type(),
196 CreateAddressOfOSRBufEntry(src_offset + 1, SharkType::oop_type())),
197 stack()->slot_addr(obj_offset, SharkType::oop_type()));
203 *value = read_value_from_frame(SharkType::oop_type(), offset);
H A DsharkContext.cpp137 _to_stackType[i] = oop_type();
138 _to_arrayType[i] = oop_type();
H A DsharkNativeWrapper.cpp73 SharkType::oop_type(),
88 const PointerType *box_type = PointerType::getUnqual(SharkType::oop_type());
137 box = stack()->slot_addr(slot_offset, SharkType::oop_type());
308 PHINode *phi = builder()->CreatePHI(SharkType::oop_type(), "result");
H A DsharkIntrinsics.cpp213 SharkType::oop_type(),
221 SharkType::oop_type(),
239 SharkType::oop_type(),
H A DsharkContext.hpp148 const llvm::PointerType* oop_type() const { function in class:SharkContext
H A DsharkNativeWrapper.hpp153 llvm::PointerType::getUnqual(SharkType::oop_type()),
H A DsharkStack.hpp219 SharkType::oop_type(),
H A DsharkValue.cpp131 return llvm_value()->getType() == SharkType::oop_type();
H A DsharkTopLevelBlock.cpp565 SharkType::oop_type(),
745 SharkType::oop_type(),
1115 SharkType::oop_type(),
1139 SharkType::oop_type(),
1186 SharkType::oop_type(),
1498 SharkType::oop_type(),
1666 old_top, SharkType::oop_type(), "tlab_object");
1699 old_top, SharkType::oop_type(), "heap_object");
1710 SharkType::oop_type(), "fast_object");
1733 PointerType::getUnqual(SharkType::oop_type()),
[all...]
H A DsharkTopLevelBlock.hpp257 llvm::PointerType::getUnqual(SharkType::oop_type()),
336 llvm::PointerType::getUnqual(SharkType::oop_type()),
H A DsharkBuilder.cpp148 return SharkType::oop_type();
562 PointerType::getUnqual(SharkType::oop_type())),
H A DsharkValue.hpp123 assert(value->getType() == SharkType::oop_type(), "should be");
H A DsharkState.cpp145 PHINode *phi = builder()->CreatePHI(SharkType::oop_type(), "oop_tmp");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DrelocInfo_sparc.cpp100 assert(type() == relocInfo::oop_type, "only narrow oops case");
186 //assert(type() == relocInfo::oop_type, "only oops are inlined at present");
193 //assert(type() == relocInfo::oop_type, "only oops are inlined at present");
H A Dc1_CodeStubs_sparc.cpp358 relocInfo::change_reloc_info_for_address(&iter, (address) pc, relocInfo::oop_type, relocInfo::none);
362 relocInfo::change_reloc_info_for_address(&iter2, (address) pc, relocInfo::oop_type, relocInfo::none);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp1019 if (oops.type() == relocInfo::oop_type) {
1044 if (oops.type() == relocInfo::oop_type) {
1076 relocInfo::none, relocInfo::oop_type);
1082 relocInfo::none, relocInfo::oop_type);
1087 relocInfo::change_reloc_info_for_address(&iter2, (address) instr_pc2, relocInfo::none, relocInfo::oop_type);
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp1052 if (iter.type() == relocInfo::oop_type) {
1074 if (iter.type() == relocInfo::oop_type) {
1628 // The remaining live cached oops will be traversed in the relocInfo::oop_type
1658 if (iter.type() == relocInfo::oop_type) {
1739 if (iter.type() == relocInfo::oop_type ) {
1876 if (iter.type() == relocInfo::oop_type) {
2524 case relocInfo::oop_type: {
H A DrelocInfo.cpp437 case relocInfo::oop_type:
848 if (iter.type() == relocInfo::oop_type) {
1121 case relocInfo::oop_type:
H A DrelocInfo.hpp34 // Also, the source of relocation types (relocInfo::oop_type, ...).
109 // After the GC runs, oop_type relocations must be reapplied.
121 // relocInfo::oop_type -- a reference to an oop
224 // sethi %hi(myObject), R oop_type [n(myObject)]
225 // ld [R+%lo(myObject)+fldOffset], R2 oop_type [n(myObject) fldOffset]
227 // st R2, [R+%lo(myObject)+fldOffset] oop_type [n(myObject) fldOffset]
258 oop_type = 1, // embedded oop enumerator in enum:VALUE_OBJ_CLASS_SPEC::relocType
514 // case relocInfo::oop_type :
923 relocInfo::relocType type() { return relocInfo::oop_type; }
H A DcompiledIC.cpp68 if (iter.type() == relocInfo::oop_type) {
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp2995 const TypeOopPtr* oop_type) {
3030 if (oop_type->isa_aryptr()) {
3031 const TypePtr* telemref = oop_type->add_offset(Type::OffsetBot);
3034 } else if (oop_type->isa_instptr()) {
3035 ciInstanceKlass* ik = oop_type->klass()->as_instance_klass();
3048 Node* javaoop = new (C) CheckCastPPNode(control(), rawoop, oop_type);
3137 const TypeOopPtr* oop_type = tklass->as_instance_type(); local
3152 return set_output_for_allocation(alloc, oop_type);
2994 set_output_for_allocation(AllocateNode* alloc, const TypeOopPtr* oop_type) argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp383 relocInfo::change_reloc_info_for_address(&iter, (address) _pc_start, relocInfo::oop_type, relocInfo::none);

Completed in 4778 milliseconds

12