Searched refs:_insts (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp321 CodeSection _insts; // instructions (the main section) member in class:CodeBuffer
351 _insts.initialize_outer(this, SECT_INSTS);
356 _insts.initialize(code_start, code_size);
429 CodeSection* insts() { return &_insts; }
435 // that the various members (_consts, _insts, _stubs, etc.) are
466 address insts_begin() const { return _insts.start(); }
467 address insts_end() const { return _insts.end(); }
468 void set_insts_end(address end) { _insts.set_end(end); }
469 address insts_limit() const { return _insts.limit(); }
470 address insts_mark() const { return _insts
[all...]
H A DcodeBuffer.cpp59 // _insts._start -> +----------------+
90 int align = _insts.alignment();
109 _insts.initialize_locs(locs_size / sizeof(relocInfo));
150 assert(cs != &_insts, "insts is the memory provider, not the consumer");
154 address start = _insts._start;
155 address limit = _insts._limit;
159 _insts._limit = middle - slop; // subtract desired space, plus slop
164 if (_insts.has_locs()) cs->initialize_locs(1);
195 int align = _insts.alignment();
204 _insts
[all...]

Completed in 34 milliseconds