Searched refs:insts_size (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.cpp224 if ((*adr(i) > (unsigned int)nm->insts_size()) ||
225 (*(adr(i)+1) > (unsigned int)nm->insts_size()))
H A Dnmethod.cpp128 int insts_size; member in struct:nmethod_stats_struct
142 insts_size += nm->insts_size();
157 if (insts_size != 0) tty->print_cr(" main code = %d", insts_size);
176 native_insts_size += nm->insts_size();
443 insts_size() +
1501 insts_begin(), insts_size());
1510 insts_begin(), insts_size());
2407 if (insts_size () >
[all...]
H A DcodeCache.cpp99 code_size += nm->insts_size();
856 if (nm->insts_size() > maxCodeSize) {
857 maxCodeSize = nm->insts_size();
882 buckets[nm->insts_size() / bucketSize]++;
H A Dnmethod.hpp369 int insts_size () const { return insts_end () - insts_begin (); } function in class:nmethod
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp475 bool is_pure() const { return insts_size() == total_content_size(); }
478 csize_t insts_size() const { return _insts.size(); } function in class:CodeBuffer
480 // same as insts_size(), except that it asserts there is no non-code here
482 return insts_size(); }
/openjdk7/hotspot/src/share/vm/runtime/
H A Drframe.cpp129 return nm->insts_size();
H A DsharedRuntime.cpp2370 NOT_PRODUCT(int insts_size);
2439 assert(shared_entry->compare_code(buf->code_begin(), buffer.insts_size(), total_args_passed, sig_bt),
2445 entry->save_code(buf->code_begin(), buffer.insts_size(), total_args_passed, sig_bt);
2451 NOT_PRODUCT(insts_size = buffer.insts_size());
2469 method->signature()->as_C_string(), insts_size);
2474 Disassembler::decode(first_pc, first_pc + insts_size);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp1081 int insts_size = buffer->pure_insts_size(); local
1082 if (handler + insts_size > _handler_blob->code_end()) {
1087 memcpy(handler, buffer->insts_begin(), insts_size);
1089 ICache::invalidate_range(handler, insts_size);
1090 _handler = handler + insts_size;
1129 buffer.insts_size());
1130 Disassembler::decode(handler, handler + buffer.insts_size());
/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp1305 current_offset = cb->insts_size();
1333 current_offset = cb->insts_size();
1419 current_offset = cb->insts_size();
1487 node_offsets[n->_idx] = cb->insts_size();
1491 DEBUG_ONLY( uint instr_offset = cb->insts_size(); )
1493 current_offset = cb->insts_size();
1529 node_offsets[delay_slot->_idx] = cb->insts_size();
1571 current_offset = cb->insts_size();
1594 assert(cb->insts_size() < 500000, "method is unreasonably large");
1613 Scheduling::increment_method_size(cb->insts_size());
[all...]
H A Dcompile.cpp591 return buf.insts_size();
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp2091 _sum_nmethod_code_size += code->insts_size();
2096 _perf_sum_nmethod_code_size->inc(code->insts_size());
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DstubGenerator_sparc.cpp442 int insts_size = VerifyThread ? 1 * K : 600; local
444 int insts_size = VerifyThread ? 1 * K : 256;
448 CodeBuffer code(name, insts_size, locs_size);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_32.cpp2791 int insts_size = 256; local
2794 CodeBuffer code(name, insts_size, locs_size);
H A DstubGenerator_x86_64.cpp3651 int insts_size = 512; local
3654 CodeBuffer code(name, insts_size, locs_size);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp708 _code_size = nm->insts_size();

Completed in 188 milliseconds