Searched refs:new_instance (Results 1 - 21 of 21) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkRuntime.hpp45 static void new_instance(JavaThread* thread, int index);
H A DsharkBuilder.cpp214 Value* SharkBuilder::new_instance() { function in class:SharkBuilder
215 return make_function((address) SharkRuntime::new_instance, "Ti", "v");
H A DsharkBuilder.hpp108 llvm::Value* new_instance();
H A DsharkRuntime.cpp85 JRT_ENTRY(void, SharkRuntime::new_instance(JavaThread* thread, int index))
H A DsharkTopLevelBlock.cpp1758 builder()->new_instance(),
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp513 ciInstance* new_instance = new (arena()) ciInstance(instance_klass); local
515 init_ident_of(new_instance);
516 _unloaded_instances->append(new_instance);
519 assert(!new_instance->is_loaded(), "");
520 assert(new_instance->klass() == instance_klass, "");
522 return new_instance;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.hpp49 stub(new_instance) \
134 static void new_instance (JavaThread* thread, klassOopDesc* klass);
H A Dc1_GraphBuilder.hpp253 void new_instance(int klass_index);
H A Dc1_GraphBuilder.cpp629 void new_instance(NewInstance* object) { function in class:MemoryBuffer
1950 void GraphBuilder::new_instance(int klass_index) {
1955 NewInstance* new_instance = new NewInstance(klass->as_instance_klass(), state_before);
1956 _memory->new_instance(new_instance);
1957 apush(append_split(new_instance));
2677 case Bytecodes::_new : new_instance(s.get_index_u2()); break;
H A Dc1_LIRGenerator.hpp327 void new_instance (LIR_Opr dst, ciInstanceKlass* klass, LIR_Opr scratch1, LIR_Opr scratch2, LIR_Opr scratch3, LIR_Opr scratch4, LIR_Opr klass_reg, CodeEmitInfo* info);
H A Dc1_Runtime1.cpp310 JRT_ENTRY(void, Runtime1::new_instance(JavaThread* thread, klassOopDesc* klass))
H A Dc1_LIRGenerator.cpp659 void LIRGenerator::new_instance(LIR_Opr dst, ciInstanceKlass* klass, LIR_Opr scratch1, LIR_Opr scratch2, LIR_Opr scratch3, LIR_Opr scratch4, LIR_Opr klass_reg, CodeEmitInfo* info) { function in class:LIRGenerator
/openjdk7/hotspot/src/share/vm/opto/
H A DparseHelper.cpp275 Node* obj = new_instance(kls);
H A DgraphKit.hpp801 Node* new_instance(Node* klass_node,
H A Dstringopts.cpp1481 result = kit.new_instance(__ makecon(TypeKlassPtr::make(C->env()->String_klass())));
H A Dlibrary_call.cpp2868 Node* obj = new_instance(kls, test);
4230 // Allocation has two cases, and uses GraphKit::new_instance or new_array.
4358 Node* alloc_obj = new_instance(obj_klass, NULL, &obj_size);
H A DgraphKit.cpp3073 //---------------------------new_instance--------------------------------------
3081 Node* GraphKit::new_instance(Node* klass_node, function in class:GraphKit
3158 // See comments on new_instance for the meaning of the other arguments.
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_Runtime1_sparc.cpp378 __ set_info("new_instance", dont_gc_arguments);
380 __ set_info("fast new_instance", dont_gc_arguments);
383 __ set_info("fast new_instance init check", dont_gc_arguments);
456 oop_maps = generate_stub_call(sasm, I0, CAST_FROM_FN_PTR(address, new_instance), G5_klass);
H A Dc1_LIRGenerator_sparc.cpp888 new_instance(reg, x->klass(), tmp1, tmp2, tmp3, tmp4, klass_reg, info);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp1021 new_instance(reg, x->klass(),
H A Dc1_Runtime1_x86.cpp1009 __ set_info("new_instance", dont_gc_arguments);
1011 __ set_info("fast new_instance", dont_gc_arguments);
1014 __ set_info("fast new_instance init check", dont_gc_arguments);
1089 int call_offset = __ call_RT(obj, noreg, CAST_FROM_FN_PTR(address, new_instance), klass);

Completed in 593 milliseconds