Lines Matching defs:CodeBlob

49 const char* CodeBlob::compiler_name() const {
53 unsigned int CodeBlob::align_code_offset(int offset) {
61 // This must be consistent with the CodeBlob constructor's layout actions.
62 unsigned int CodeBlob::allocation_size(CodeBuffer* cb, int header_size) {
73 CodeBlob::CodeBlob(const char* name, CompilerType type, const CodeBlobLayout& layout, int frame_complete_offset, int frame_size, ImmutableOopMapSet* oop_maps, bool caller_must_gc_arguments) :
101 CodeBlob::CodeBlob(const char* name, CompilerType type, const CodeBlobLayout& layout, CodeBuffer* cb, int frame_complete_offset, int frame_size, OopMapSet* oop_maps, bool caller_must_gc_arguments) :
131 // Creates a simple CodeBlob. Sets up the size of the different regions.
133 : CodeBlob(name, compiler_none, CodeBlobLayout((address) this, size, header_size, locs_size, size), frame_complete, 0, NULL, false /* caller_must_gc_arguments */)
150 ) : CodeBlob(name, compiler_none, CodeBlobLayout((address) this, size, header_size, cb), cb, frame_complete, frame_size, oop_maps, caller_must_gc_arguments) {
154 void CodeBlob::flush() {
162 void CodeBlob::set_oop_maps(OopMapSet* p) {
200 const ImmutableOopMap* CodeBlob::oop_map_for_return_address(address return_address) {
205 void CodeBlob::print_code() {
224 size = CodeBlob::align_code_offset(size);
246 unsigned int size = CodeBlob::allocation_size(cb, sizeof(BufferBlob));
286 unsigned int size = CodeBlob::allocation_size(cb, sizeof(AdapterBlob));
307 size = CodeBlob::align_code_offset(size);
349 unsigned int size = CodeBlob::allocation_size(cb, sizeof(RuntimeStub));
408 unsigned int size = CodeBlob::allocation_size(cb, sizeof(DeoptimizationBlob));
447 unsigned int size = CodeBlob::allocation_size(cb, sizeof(UncommonTrapBlob));
483 unsigned int size = CodeBlob::allocation_size(cb, sizeof(ExceptionBlob));
518 unsigned int size = CodeBlob::allocation_size(cb, sizeof(SafepointBlob));
531 void CodeBlob::print_on(outputStream* st) const {
532 st->print_cr("[CodeBlob (" INTPTR_FORMAT ")]", p2i(this));
536 void CodeBlob::print_value_on(outputStream* st) const {
537 st->print_cr("[CodeBlob]");