Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/assembler/
Dassembly-emitter.cpp267 auto it = program.arrayTypes.find(t); in CheckValueRecordCase()
268 isFound = it != program.arrayTypes.cend(); in CheckValueRecordCase()
778 ASSERT(program.arrayTypes.find(Type("u1", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
785 ASSERT(program.arrayTypes.find(Type("u8", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
791 ASSERT(program.arrayTypes.find(Type("i8", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
797 ASSERT(program.arrayTypes.find(Type("u16", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
803 ASSERT(program.arrayTypes.find(Type("i16", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
809 ASSERT(program.arrayTypes.find(Type("u32", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
815 ASSERT(program.arrayTypes.find(Type("i32", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
821 ASSERT(program.arrayTypes.find(Type("u64", 1)) != program.arrayTypes.end()); in MakeLiteralItems()
[all …]
Dassembly-program.h43 std::set<Type> arrayTypes; member
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.cpp395 Program()->arrayTypes.emplace(std::move(atypePa)); in GenGlobalArrayRecord()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dlower.cpp576 … MIRType &arrayTypes = *GlobalTables::GetTypeTable().GetTypeFromTyIdx(TyIdx(array.GetPrimType())); in LowerArray() local
581 …IRIntConst *eConst = GlobalTables::GetIntConstTable().GetOrCreateIntConst(idx * eSize, arrayTypes); in LowerArray()
589 … GlobalTables::GetIntConstTable().GetOrCreateIntConst(static_cast<int64>(eSize), arrayTypes); in LowerArray()