Searched refs:sizeArray (Results 1 – 6 of 6) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
| D | global_tables.cpp | 224 …ArrayType *TypeTable::GetOrCreateArrayType(const MIRType &elem, uint8 dim, const uint32 *sizeArray, in GetOrCreateArrayType() argument 229 sizeVector.push_back(sizeArray != nullptr ? sizeArray[i] : 0); in GetOrCreateArrayType()
|
| D | mir_type.cpp | 872 size_t numelems = sizeArray[0]; in GetSize() 874 numelems *= sizeArray[i]; in GetSize() 1715 numberOfElemInLowerDim *= sizeArray[dim - id]; in GetBitOffsetFromArrayAddress() 1735 elemNum *= sizeArray[id]; in ElemNumber()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | mir_type.h | 1114 MIRArrayType(TyIdx eTyIdx, const std::vector<uint32> &sizeArray) in MIRArrayType() argument 1115 : MIRType(kTypeArray, PTY_agg), eTyIdx(eTyIdx), dim(sizeArray.size()) in MIRArrayType() 1118 this->sizeArray[i] = (i < dim) ? sizeArray[i] : 0; in MIRArrayType() 1138 return sizeArray[n]; in GetSizeArrayItem() 1143 sizeArray[idx] = value; in SetSizeArrayItem() 1200 hIdx += (sizeArray[i] << i); in GetHashIndex() 1224 std::array<uint32, kMaxArrayDim> sizeArray {{0}};
|
| D | global_tables.h | 484 MIRArrayType *GetOrCreateArrayType(const MIRType &elem, uint8 dim, const uint32 *sizeArray,
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
| D | x64_MPIsel.cpp | 898 std::vector<uint32> sizeArray; in SelectRangeGoto() local 900 sizeArray.emplace_back(switchTable.size()); in SelectRangeGoto() 902 MIRArrayType *arrayType = memPool->New<MIRArrayType>(etype->GetTypeIndex(), sizeArray); in SelectRangeGoto()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_cgfunc.cpp | 6238 std::vector<uint32> sizeArray; in SelectRangeGoto() local 6239 sizeArray.emplace_back(switchTable.size()); in SelectRangeGoto() 6240 MIRArrayType *arrayType = memPool->New<MIRArrayType>(etype->GetTypeIndex(), sizeArray); in SelectRangeGoto()
|