2

使用 -fdump-tree-gimple 选项(GCC 4.6.1)编译 C++ 时,我得到的代码中包含以下函数:

std::_Vector_base<_Tp, _Alloc>::~_Vector_base() [with _Tp = int, _Alloc = std::allocator<int>] (struct _Vector_base * const this)
{
  int * D.8482;
  long int D.8483;
  int * D.8484;
  long int D.8485;
  long int D.8486;
  long int D.8487;
  long unsigned int D.8488;
  int * D.8489;
  struct _Vector_impl * D.8490;

  {
    try
      {
        D.8482 = this->_M_impl._M_end_of_storage;
        D.8483 = (long int) D.8482;
        D.8484 = this->_M_impl._M_start;
        D.8485 = (long int) D.8484;
        D.8486 = D.8483 - D.8485;
        D.8487 = D.8486 /[ex] 4;
        D.8488 = (long unsigned int) D.8487;
        D.8489 = this->_M_impl._M_start;
        std::_Vector_base<int, std::allocator<int> >::_M_deallocate(this, D.8489, D.8488);
      }
    finally
      {
        D.8490 = &this->_M_impl;
        std::_Vector_base<int, std::allocator<int>::_Vector_impl::~_Vector_impl (D.8490);
      }
  }
  <D.8393>:
}

您可以通过制作一个使用std::vector<int>. 无论如何,我不明白的代码部分是D.8487 = D.8486 /[ex] 4;. 我查看了 的源代码/usr/include/c++/4.6.1/std_vector.h,它的析构函数是一个调用_M_deallocate. 有谁知道运营商/[ex]代表什么?到目前为止,我唯一注意到的是 RHS 操作数是向量参数化的类型的大小。

4

1 回答 1

3

/[ex]意味着它是一个精确的除法表达式。

从 GCC 内部手册:

EXACT_DIV_EXPR

EXACT_DIV_EXPR 代码用于表示已知分子是分母的精确倍数的整数除法。这允许后端为当前目标在 TRUNC_DIV_EXPR、CEIL_DIV_EXPR 和 FLOOR_DIV_EXPR 中选择较快的一个。

于 2012-02-02T15:05:34.410 回答