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

123

/openjdk7/hotspot/src/share/vm/ci/
H A DciFlags.cpp83 if (is_native()) {
H A DciFlags.hpp58 bool is_native () const { return (_flags & JVM_ACC_NATIVE ) != 0; } function in class:VALUE_OBJ_CLASS_SPEC
H A DciMethod.hpp280 bool is_native () const { return flags().is_native(); } function in class:ciMethod
/openjdk7/hotspot/src/share/vm/utilities/
H A DaccessFlags.cpp71 if (is_native ()) st->print("native " );
H A DaccessFlags.hpp109 bool is_native () const { return (_flags & JVM_ACC_NATIVE ) != 0; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.hpp231 static address zap_dead_locals_stub(bool is_native) { return is_native argument
234 static MachNode* node_to_call_zap_dead_locals(Node* n, int block_num, bool is_native);
H A DbytecodeInfo.cpp188 } else if ( callee_method->is_native()) {
451 if ( callee->is_native()) return "native method";
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp178 assert(is_native() && bcp == code_base() || contains(bcp) || is_error_reported(),
211 assert((is_native() && bci == 0) || (!is_native() && 0 <= bci && bci < code_size()), "illegal bci");
213 assert(is_native() && bcp == code_base() || contains(bcp), "bcp doesn't belong to this method");
218 int methodOopDesc::object_size(bool is_native) { argument
220 int extra_bytes = (is_native) ? 2*sizeof(address*) : 0;
278 if (is_native()) tty->print("native ");
727 if (is_native()) {
760 if (is_native() && !has_native_function()) {
1015 assert(!m->is_native(), "canno
[all...]
H A DmethodKlass.cpp67 int size = methodOopDesc::object_size(access_flags.is_native());
96 if (access_flags.is_native()) {
294 if (m->is_native()) {
H A DmethodOop.hpp479 bool is_native() const { return access_flags().is_native(); } function in class:methodOopDesc
542 static int object_size(bool is_native);
732 address* native_function_addr() const { assert(is_native(), "must be native"); return (address*) (this+1); }
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp384 bool is_native = false; local
388 is_native = method->is_native();
395 const char native_char = is_native ? 'n' : ' ';
413 if (method->is_native())
1187 assert(!method->is_abstract() && (osr_bci == InvocationEntryBci || !method->is_native()), "cannot compile abstract/native methods");
1249 if (method->is_native() && !method->is_method_handle_intrinsic()) {
1281 if (method->is_native()) {
1351 bool is_native = method->is_native(); local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp891 assert((m->is_native() && bci == 0) || (!m->is_native() && bci >= 0 && bci < m->code_size()), "invalid bci value");
921 if (m->is_native()) {
929 if (m->is_native() && m->is_static()) {
934 int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
943 if (!m->is_native()) {
1089 assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1098 assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1231 int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
H A Dvframe.cpp259 if (method()->is_native()) {
300 if (method()->is_native()) {
326 if (method()->is_native()) {
555 if (!m->is_native()) {
H A Dvframe_hp.cpp200 assert(method->is_native(), "");
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp614 if (method->is_native()) {
637 if (method->is_native()) {
661 if (method->is_native()) {
H A DinterpreterRT_x86_32.cpp136 assert(m->is_native(), "sanity check");
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiCodeBlobEvents.cpp245 if (!mh->is_native()) {
H A Dforte.cpp425 if (!method->is_native()) {
457 if (!method->is_native()) {
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp312 (method->is_native() && bci == 0) ||
313 (!method->is_native() && 0 <= bci && bci < method->code_size()) ||
H A Dnmethod.hpp334 bool is_java_method() const { return !method()->is_native(); }
335 bool is_native_method() const { return method()->is_native(); }
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.cpp156 if (method->is_native()) {
304 if (istate->method()->is_native() && addr < istate->stack_base()) {
H A DcppInterpreter_zero.cpp201 assert(method->is_native() && !method->is_abstract(), "should be");
673 if (!method->is_native()) {
689 if (method->is_native())
710 istate->set_bcp(method->is_native() ? NULL : method->code_base());
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.cpp99 assert(!method()->is_native(), "cannot compute oop map for native methods");
366 assert(mh->is_native(), "method must be native method");
381 if (method->is_native()) {
/openjdk7/hotspot/src/share/vm/memory/
H A DoopFactory.cpp164 assert(!access_flags.is_native() || byte_code_size == 0,
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DinterpreterRT_sparc.cpp235 assert(m->is_native(), "sanity check");

Completed in 126 milliseconds

123