Home
last modified time | relevance | path

Searched refs:arrayTypes (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/static_core/assembler/
Dassembly-program.h43 std::set<Type> arrayTypes; member
Dassembly-emitter.cpp267 auto it = program.arrayTypes.find(t); in CheckValueRecordCase()
268 isFound = it != program.arrayTypes.cend(); in CheckValueRecordCase()
774 …ASSERT(program.arrayTypes.find(Type(AnnotationElement::TypeToString(TYPE), 1)) != program.arrayTyp… in CheckAndCreateArrayValue()
808 ASSERT(program.arrayTypes.find(Type(stringType, 1)) != program.arrayTypes.end() || in MakeLiteralItemArrayValue()
809 … program.arrayTypes.find(Type(stringType.GetPandasmName(), 1)) != program.arrayTypes.end()); in MakeLiteralItemArrayValue()
875 for (const auto &t : program.arrayTypes) { in MakeArrayTypeItems()
Dassembly-parser.cpp138 program_.arrayTypes.insert(*type); in ParseType()
404 if (program_.arrayTypes.find(type) == program_.arrayTypes.end()) { in ParseArrayElementType()
405 program_.arrayTypes.emplace(type, 1); in ParseArrayElementType()
414 if (program_.arrayTypes.find(typeWithSlash) == program_.arrayTypes.end()) { in ParseArrayElementType()
415 program_.arrayTypes.emplace(typeWithSlash, 1); in ParseArrayElementType()
/arkcompiler/ets_frontend/merge_abc/protos/
DassemblyProgram.proto47 repeated Type arrayTypes = 7; field
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DETSemitter.cpp388 Program()->arrayTypes.emplace(PandasmTypeWithRank(arrayType)); in GenGlobalArrayRecord()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dlower.cpp543 … MIRType &arrayTypes = *GlobalTables::GetTypeTable().GetTypeFromTyIdx(TyIdx(array.GetPrimType())); in LowerArray() local
548 …IRIntConst *eConst = GlobalTables::GetIntConstTable().GetOrCreateIntConst(idx * eSize, arrayTypes); in LowerArray()
556 … GlobalTables::GetIntConstTable().GetOrCreateIntConst(static_cast<int64>(eSize), arrayTypes); in LowerArray()