Home
last modified time | relevance | path

Searched full:array_types (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/assembler/
Dassembly-emitter.cpp585 ASSERT(program.array_types.find(Type("u1", 1)) != program.array_types.end()); in MakeLiteralItems()
591 ASSERT(program.array_types.find(Type("u8", 1)) != program.array_types.end()); in MakeLiteralItems()
597 ASSERT(program.array_types.find(Type("i8", 1)) != program.array_types.end()); in MakeLiteralItems()
603 ASSERT(program.array_types.find(Type("u16", 1)) != program.array_types.end()); in MakeLiteralItems()
609 ASSERT(program.array_types.find(Type("i16", 1)) != program.array_types.end()); in MakeLiteralItems()
615 ASSERT(program.array_types.find(Type("u32", 1)) != program.array_types.end()); in MakeLiteralItems()
621 ASSERT(program.array_types.find(Type("i32", 1)) != program.array_types.end()); in MakeLiteralItems()
627 ASSERT(program.array_types.find(Type("u64", 1)) != program.array_types.end()); in MakeLiteralItems()
633 ASSERT(program.array_types.find(Type("i64", 1)) != program.array_types.end()); in MakeLiteralItems()
639 ASSERT(program.array_types.find(Type("f32", 1)) != program.array_types.end()); in MakeLiteralItems()
[all …]
Dassembly-program.h39 std::unordered_set<Type> array_types; member
Dassembly-parser.cpp138 program_.array_types.insert(*type); in ParseType()
395 if (program_.array_types.find(type) == program_.array_types.end()) { in ParseArrayElementType()
396 program_.array_types.emplace(type, 1); in ParseArrayElementType()
400 if (program_.array_types.find(type_with_slash) == program_.array_types.end()) { in ParseArrayElementType()
401 program_.array_types.emplace(type_with_slash, 1); in ParseArrayElementType()
/arkcompiler/ets_frontend/merge_abc/src/
DassemblyProgramProto.cpp46 for (const auto &type : program.array_types) { in Serialize()
89 program.array_types.insert(std::move(arrayType)); in Deserialize()
/arkcompiler/runtime_core/verification/
Dmessages.yaml196 args: type, array_types
198 Cannot create array of non-array type '${type}'. Possible types are ${array_types}.