Searched defs:new_instance (Results 1 - 5 of 5) sorted by relevance

/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/shark/
H A DsharkBuilder.cpp214 Value* SharkBuilder::new_instance() { function in class:SharkBuilder
215 return make_function((address) SharkRuntime::new_instance, "Ti", "v");
/openjdk7/hotspot/src/share/vm/c1/
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.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 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.

Completed in 2143 milliseconds