Lines Matching defs:CodeBlob

47 const char* CodeBlob::compiler_name() const {
51 unsigned int CodeBlob::align_code_offset(int offset) {
59 // This must be consistent with the CodeBlob constructor's layout actions.
60 unsigned int CodeBlob::allocation_size(CodeBuffer* cb, int header_size) {
71 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) :
99 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) :
129 // Creates a simple CodeBlob. Sets up the size of the different regions.
131 : CodeBlob(name, compiler_none, CodeBlobLayout((address) this, size, header_size, locs_size, size), frame_complete, 0, NULL, false /* caller_must_gc_arguments */)
156 ) : CodeBlob(name, compiler_none, CodeBlobLayout((address) this, size, header_size, cb), cb, frame_complete, frame_size, oop_maps, caller_must_gc_arguments) {
160 void CodeBlob::flush() {
168 void CodeBlob::set_oop_maps(OopMapSet* p) {
206 const ImmutableOopMap* CodeBlob::oop_map_for_return_address(address return_address) {
211 void CodeBlob::print_code() {
231 size = CodeBlob::align_code_offset(size);
253 unsigned int size = CodeBlob::allocation_size(cb, sizeof(BufferBlob));
293 unsigned int size = CodeBlob::allocation_size(cb, sizeof(AdapterBlob));
314 size = CodeBlob::align_code_offset(size);
356 unsigned int size = CodeBlob::allocation_size(cb, sizeof(RuntimeStub));
415 unsigned int size = CodeBlob::allocation_size(cb, sizeof(DeoptimizationBlob));
454 unsigned int size = CodeBlob::allocation_size(cb, sizeof(UncommonTrapBlob));
490 unsigned int size = CodeBlob::allocation_size(cb, sizeof(ExceptionBlob));
525 unsigned int size = CodeBlob::allocation_size(cb, sizeof(SafepointBlob));
538 void CodeBlob::print_on(outputStream* st) const {
539 st->print_cr("[CodeBlob (" INTPTR_FORMAT ")]", p2i(this));
543 void CodeBlob::print_value_on(outputStream* st) const {
544 st->print_cr("[CodeBlob]");