当前位置: 首页>>代码示例>>C++>>正文


C++ ArrayType::elemTYPE方法代码示例

本文整理汇总了C++中ArrayType::elemTYPE方法的典型用法代码示例。如果您正苦于以下问题:C++ ArrayType::elemTYPE方法的具体用法?C++ ArrayType::elemTYPE怎么用?C++ ArrayType::elemTYPE使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ArrayType的用法示例。


在下文中一共展示了ArrayType::elemTYPE方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: toDt

// Generate code that initializes the elements of an array.
// Expects an array ref on the top of the stack.
dt_t* BackEnd::toDt(ArrayInitializer& init)
{
    ModuleEmitter& modScope = getModuleScope(init.loc);
    IRState* irstate = modScope.getCurrentIRState();
    if (!irstate)
    {
        fatalError(init.loc, "null IR state");
    }
    irstate->getBlock();
    VarDeclaration* varDecl = irstate->hasVarDecl();
    if (!varDecl)
    {
        BackEnd::fatalError(init.loc, "initializer expects var decl");
    }
    TYPE& type = toILType(init.loc, varDecl->type);
    ArrayType* aType = type.isArrayType();
    if (!aType)
    {
        BackEnd::fatalError(init.loc, "initializer expects array type");
    }
    aType->init(*irstate, *varDecl, init.dim);
    block& blk = irstate->getBlock();

    IRState temp(blk);
    ArrayAdapter<Initializer*> value(init.value);
    ArrayAdapter<Expression*> index(init.index);
    //
    // and here's where the elements are initialized:
    //
    for (size_t i = 0; i != init.dim; ++i)
    {
        if (i >= value.size() || i >= index.size())
        {
            assert(false);
            break;
        }
        if (i + 1 != init.dim)
        {
            // For each element duplicate the reference to the array
            // on the top of the stack, so that one is left on the stack for
            // the next element to use -- except when reaching the last element
            Instruction::create(blk, IL_dup);
        }
    #if 0
        //todo:revisit, indices may be null, what are they useful for anyway?
        DEREF(index[i]).toElem(irstate);
    #else
        Const<int>::create(*TYPE::Int32, i, blk, init.loc);
    #endif
        auto_ptr<dt_t>(DEREF(value[i]).toDt());
        ArrayElemAccess::store(blk, aType->elemTYPE());
    }
    return NULL;
}
开发者ID:Geod24,项目名称:dnet,代码行数:56,代码来源:backend.cpp

示例2:

NewArray::NewArray(const ArrayType& at) : elemTYPE_(at.elemTYPE())
{
}
开发者ID:Geod24,项目名称:dnet,代码行数:3,代码来源:slice.cpp


注:本文中的ArrayType::elemTYPE方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。