Lines Matching defs:code
5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
29 #include "code/compressedStream.hpp"
91 // | code (pointer) |
147 // Entry point for calling from compiled code, to compiled code if it exists
150 // The entry point for calling both from and to compiled code is
155 nmethod* volatile _code; // Points to the corresponding piece of native code
218 void set_orig_bytecode_at(int bci, Bytecodes::Code code);
235 // code size
364 nmethod* volatile code() const { assert( check_code(), "" ); return (nmethod *)OrderAccess::load_ptr_acquire(&_code); }
365 void clear_code(); // Clear out any compiled code
366 static void set_code(methodHandle mh, nmethod* code);
374 // clear entry points. Used by sharing code
430 void set_code(address code) { return constMethod()->set_code(code); }
536 // compiled code support
537 // NOTE: code() is inherently racy as deopt can be clearing code
539 bool has_compiled_code() const { return code() != NULL; }
573 // for code generation
584 // Returns the byte code index from the byte code pointer
775 // Windows AMD64 + Apr 2005 PSDK with /O2 generates bad code for write_pair.
832 void set_orig_bytecode(Bytecodes::Code code) { _orig_bytecode = code; }