欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

认识Java中的Stub与StubQueue

程序员文章站 2022-07-06 14:47:20
目录1、interpretercodelet与stub类2、stubqueue类在文章开始前先简单介绍templateinterpreter::initialize()函数,在这个函数中会调用temp...

在文章开始前先简单介绍templateinterpreter::initialize()函数,在这个函数中会调用templatetable::initialize()函数初始化模板表,随后会使用new关键字初始化定义在abstractinterpreter类中的_code静态属性,如下:

static stubqueue* _code;

由于templateinterpreter继承自abstractinterpreter,所以在templateinterpreter中初始化的_code属性其实就是abstractinterpreter类中定义的_code属性。

在initialize()函数中初始化_code变量的代码如下

// interpretercodesize是在平台相关
// 的templateinterpreter_x86.hpp中
// 定义的,64位下是256 * 1024
int code_size = interpretercodesize;
_code = new stubqueue(
                new interpretercodeletinterface, 
                code_size, 
                null,
                "interpreter");


stubqueue是用来保存生成的本地代码的stub队列,队列每一个元素对应一个interpretercodelet对象,interpretercodelet对象继承自抽象基类stub,包含了字节码对应的本地代码以及一些调试和输出信息。下面我们介绍一下stubqueue类及相关类stubinterpretercodelet类和codeletmark类。

1、interpretercodelet与stub类

stub类的定义如下:

class stub value_obj_class_spec { ... };


interpretercodelet类继承自stub类,具体的定义如下

class interpretercodelet: public stub {
 private:
  int                _size;         // the size in bytes
  const char*        _description;  // a description of the codelet, for debugging & printing
  bytecodes::code    _bytecode;     // associated bytecode if any
 
 public:
  // code info
  address code_begin() const  {
     return (address)this + round_to(sizeof(interpretercodelet), codeentryalignment);
  }
  address code_end() const {
     return (address)this + size();
  }
 
  int size() const {
     return _size;
  }
  // ...
  int code_size() const { 
     return code_end() - code_begin();  
  }
  // ...
};


interpretercodelet实例存储在stubqueue中,每个interpretercodelet实例都代表一段机器指令(包含了字节码对应的机器指令片段以及一些调试和输出信息),如每个字节码都有一个interpretercodelet实例,所以在解释执行时,如果要执行某个字节码,则执行的就是由interpretercodelet实例代表的机器指令片段。

类中定义了3个属性及一些函数,其内存布局如下图所示。

  认识Java中的Stub与StubQueue

在对齐至codeentryalignment后,紧接着interpretercodelet的就是生成的目标代码。

2、stubqueue类

stubqueue是用来保存生成的本地机器指令片段的stub队列,队列每一个元素都是一个interpretercodelet实例。

stubqueue类的定义如下:

class stubqueue: public cheapobj<mtcode> {
 private:
  stubinterface* _stub_interface;     // the interface prototype
  address        _stub_buffer;        // where all stubs are stored
 
  int            _buffer_size;       // the buffer size in bytes
  int            _buffer_limit;      // the (byte) index of the actual buffer limit (_buffer_limit <= _buffer_size)
 
  int            _queue_begin;       // the (byte) index of the first queue entry (word-aligned)
  int            _queue_end;         // the (byte) index of the first entry after the queue (word-aligned)
 
  int            _number_of_stubs;   // the number of buffered stubs
 
 
  bool is_contiguous() const {
      return _queue_begin <= _queue_end;
  }
  int index_of(stub* s) const {
      int i = (address)s - _stub_buffer;
      return i;
  }
  stub* stub_at(int i) const {
      return (stub*)(_stub_buffer + i);
  }
  stub* current_stub() const {
      return stub_at(_queue_end);
  }
 
  // ...
}


这个类的构造函数如下:

stubqueue::stubqueue(
 stubinterface* stub_interface,  // interpretercodeletinterface对象
 int            buffer_size,     // 256*1024
 mutex*         lock,
 const char*    name) : _mutex(lock)
{
  intptr_t     size = round_to(buffer_size, 2*bytesperword); // bytesperword的值为8
  bufferblob*  blob = bufferblob::create(name, size); // 在stubqueue中创建bufferblob对象
 
  _stub_interface  = stub_interface;
 
  _buffer_size     = blob->content_size();
  _buffer_limit    = blob->content_size();
  _stub_buffer     = blob->content_begin();
 
  _queue_begin     = 0;
  _queue_end       = 0;
  _number_of_stubs = 0;
}


stub_interface用来保存一个interpretercodeletinterface类型的实例,interpretercodeletinterface类中定义了操作stub的函数,避免了在stub中定义虚函数。每个stubqueue都有一个interpretercodeletinterface,可以通过这个来操作stubqueue中存储的每个stub实例。

调用bufferblob::create()函数为stubqueue分配内存,这里我们需要记住stubqueue用的内存是通过bufferblob分配出来的,也就是bufferblob其本质可能是一个stubqueue。下面就来详细介绍下create()函数。

bufferblob* bufferblob::create(const char* name, int buffer_size) {
  // ...
  bufferblob*    blob = null;
  unsigned int   size = sizeof(bufferblob);
 
  // align the size to codeentryalignment
  size = align_code_offset(size);
  size += round_to(buffer_size, oopsize); // oopsize是一个指针的宽度,在64位上就是8
 
  {
     mutexlockerex mu(codecache_lock, mutex::_no_safepoint_check_flag);
     blob = new (size) bufferblob(name, size);
  }
 
  return blob;
}


通过new关键字为bufferblob分配内存,new重载运算符如下:

void* bufferblob::operator new(size_t s, unsigned size, bool is_critical) throw() {
  void* p = codecache::allocate(size, is_critical);
  return p;
}


codecache中分配内存,codecache使用的是本地内存,有自己的内存管理办法,在后面将会详细介绍。

stubqueue的布局结构如下图所示。

认识Java中的Stub与StubQueue

队列中的interpretercodelet表示一个小例程,比如iconst_1对应的机器码,invokedynamic对应的机器码,异常处理对应的代码,方法入口点对应的代码,这些代码都是一个个interpretercodelet。整个解释器都是由这些小块代码例程组成的,每个小块例程完成解释器的部分功能,以此实现整个解释器。

到此这篇关于认识java中的stub与stubqueue的文章就介绍到这了,更多相关stub与stubqueue内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!