Searched refs:methodOop (Results 76 - 100 of 160) sorted by relevance

1234567

/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.cpp31 #include "oops/methodOop.hpp"
145 methodOop method,
H A DstubGenerator_zero.cpp32 #include "oops/methodOop.hpp"
64 methodOop method,
/openjdk7/hotspot/src/share/vm/runtime/
H A DdtraceJSDT.cpp95 methodOop m = JNIHandles::resolve_jmethod_id(method);
H A DjavaCalls.hpp29 #include "oops/methodOop.hpp"
70 methodOop _callee_method; // to be able to collect arguments if entry frame is top frame
90 methodOop callee_method() { return _callee_method; }
H A DcompilationPolicy.cpp32 #include "oops/methodOop.hpp"
225 static void do_method(methodOop m) {
280 void NonTieredCompPolicy::delay_compilation(methodOop method) {
285 void NonTieredCompPolicy::disable_compilation(methodOop method) {
294 bool NonTieredCompPolicy::is_mature(methodOop method) {
H A Dframe.cpp33 #include "oops/methodOop.hpp"
386 methodOop frame::interpreter_frame_method() const {
388 methodOop m = *interpreter_frame_method_addr();
389 assert(m->is_perm(), "bad methodOop in interpreter frame");
390 assert(m->is_method(), "not a methodOop");
394 void frame::interpreter_frame_set_method(methodOop method) {
694 methodOop m = this->interpreter_frame_method();
712 methodOop m = ((nmethod *)_cb)->method();
739 It uses the methodOop in order to get the max_stack value but during GC this
740 methodOop valu
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.cpp153 void JvmtiEnvThreadState::compare_and_set_current_location(methodOop new_method,
274 methodOop method = vf->method();
H A DmethodHandles.hpp58 static oop init_method_MemberName(oop mname_oop, methodOop m, bool do_dispatch,
65 static int method_ref_kind(methodOop m, bool do_dispatch_if_possible = true);
H A DjvmtiEnv.cpp1990 JvmtiEnv::SetBreakpoint(methodOop method_oop, jlocation location) {
2016 JvmtiEnv::ClearBreakpoint(methodOop method_oop, jlocation location) {
2258 methodOop m = methodOop(instanceK_h->methods()->obj_at(index));
2267 methodOop m = methodOop(instanceK_h->methods()->obj_at(index));
2673 JvmtiEnv::GetMethodName(methodOop method_oop, char** name_ptr, char** signature_ptr, char** generic_ptr) {
2714 JvmtiEnv::GetMethodDeclaringClass(methodOop method_oop, jclass* declaring_class_ptr) {
2724 JvmtiEnv::GetMethodModifiers(methodOop method_oop, jint* modifiers_ptr) {
2734 JvmtiEnv::GetMaxLocals(methodOop method_oo
[all...]
H A Djvm.cpp38 #include "oops/methodOop.hpp"
140 methodOop last_caller = NULL;
143 methodOop m = vfst.method();
1184 methodOop method = vfst.method();
1204 methodOop m_oop = Klass::cast(object->klass())->uncached_lookup_method(
1208 if (m.is_null() || !m->is_method() || !methodOop(m())->is_public() || methodOop(m())->is_static()) {
1297 methodOop method = vfst.method();
1596 static methodOop jvm_get_method_common(jobject method, TRAPS) {
1615 methodOop
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp35 #include "oops/methodOop.hpp"
336 ((methodOop)JNIHandles::resolve(_method))->print_name(tty);
371 void CompileTask::print_compilation_impl(outputStream* st, methodOop method, int compile_id, int comp_level,
491 methodOop method = (methodOop) rem;
501 (methodOop)JNIHandles::resolve(method_handle()));
537 (methodOop)JNIHandles::resolve(_hot_method));
539 (methodOop)JNIHandles::resolve(_method));
565 (methodOop)JNIHandles::resolve(method_handle()));
616 ((methodOop)JNIHandle
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.cpp205 methodOop method = (methodOop)JNIHandles::resolve(method_ref);
389 void Dictionary::methods_do(void f(methodOop)) {
602 void SymbolPropertyTable::methods_do(void f(methodOop)) {
607 f((methodOop)prop);
H A Ddictionary.hpp93 void methods_do(void f(methodOop));
337 void methods_do(void f(methodOop));
H A DjavaClasses.hpp257 static methodOop resolved_constructor(oop java_class);
258 static void set_resolved_constructor(oop java_class, methodOop constructor);
464 static char* print_stack_element_to_buffer(methodOop method, int bci);
489 static void print_stack_element(Handle stream, methodOop method, int bci);
490 static void print_stack_element(outputStream *st, methodOop method, int bci);
H A DvmSymbols.cpp214 // dynamically common. (methodOop::intrinsic_id has a cache.)
489 static bool match_method(methodOop m, Symbol* n, Symbol* s) {
494 static vmIntrinsics::ID match_method_with_klass(methodOop m, Symbol* mk) {
509 void vmIntrinsics::verify_method(ID actual_id, methodOop m) {
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp40 // A methodOop represents a Java method.
145 // Adapter blob (i2c/c2i) for this methodOop. Set once when method is linked.
205 // Static routine in the situations we don't have a methodOop
582 static objArrayHandle resolved_checked_exceptions_impl(methodOop this_oop, TRAPS);
617 // see the definition in methodOop.cpp for the gory details
828 BreakpointInfo(methodOop m, int bci);
848 void set(methodOop method);
849 void clear(methodOop method);
859 ExceptionTable(methodOop m) {
H A DarrayKlass.cpp67 methodOop arrayKlass::uncached_lookup_method(Symbol* name, Symbol* signature) const {
H A DconstMethodOop.hpp82 // Utitily class decribing elements in checked exceptions table inlined in methodOop.
89 // Utitily class decribing elements in local variable table inlined in methodOop.
152 // Size of Java bytecodes allocated immediately after methodOop.
189 methodOop method() const;
H A DoopsHierarchy.hpp44 typedef class methodOopDesc* methodOop; typedef in typeref:class:methodOopDesc
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp50 methodOop mobj = (methodOop)obj;
101 ((methodOop)obj)->remove_unshareable_info();
284 methodOop m = methodOop(obj);
512 methodOop m = methodOop(methods->obj_at(i));
561 methodOop m = methodOop(methods->obj_at(i));
H A Duniverse.cpp789 // We have a heap so create the methodOop caches before
1133 methodOop m = instanceKlass::cast(SystemDictionary::Finalizer_klass())->find_method(
1551 void CommonMethodOopCache::init(klassOop k, methodOop m, TRAPS) {
1581 void ActiveMethodOopsCache::add_previous_version(const methodOop method) {
1617 methodOop m = (methodOop)JNIHandles::resolve(method_ref);
1631 bool ActiveMethodOopsCache::is_same_method(const methodOop method) const {
1633 methodOop check_method = ik->method_with_idnum(method_idnum());
1650 check_method = (methodOop)JNIHandles::resolve(method_ref);
1663 methodOop LatestMethodOopCach
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp29 #include "oops/methodOop.hpp"
528 methodOop method = interpreter_frame_method();
565 methodOop m = *interpreter_frame_method_addr();
610 methodOop method = interpreter_frame_method();
H A DinterpreterRT_x86_32.cpp30 #include "oops/methodOop.hpp"
135 methodHandle m(thread, (methodOop)method);
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.cpp630 extern "C" methodOop findm(intptr_t pc) {
633 return (nm == NULL) ? (methodOop)NULL : nm->method();
767 tty->print_cr(" pm(int pc) - print methodOop given compiled PC");
768 tty->print_cr(" findm(intptr_t pc) - finds methodOop");
815 (char *)"findm", CMDID_FINDM, " Find a methodOop from a PC",
840 methodOop m;
875 m = (methodOop)findm(addr);
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp37 #include "oops/methodOop.hpp"
453 nmethod* CodeCache::find_and_remove_saved_code(methodOop m) {
473 xtty->method(methodOop(m));
523 xtty->method(methodOop(nm->method()));
691 methodOop old_method = (methodOop) old_methods->obj_at(i);
707 // flush caches in case they refer to a redefined methodOop
726 int CodeCache::mark_for_deoptimization(methodOop dependee) {

Completed in 274 milliseconds

1234567