Searched refs:array_types (Results 1 – 4 of 4) sorted by relevance
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | assemblyProgramProto.cpp | 46 for (const auto &type : program.array_types) { in Serialize() 90 program.array_types.insert(std::move(arrayType)); in Deserialize()
|
| /arkcompiler/runtime_core/assembler/ |
| D | assembly-program.h | 39 std::unordered_set<Type> array_types; member
|
| D | assembly-emitter.cpp | 610 ASSERT(program.array_types.find(Type("u1", 1)) != program.array_types.end()); in MakeLiteralItems() 616 ASSERT(program.array_types.find(Type("u8", 1)) != program.array_types.end()); in MakeLiteralItems() 622 ASSERT(program.array_types.find(Type("i8", 1)) != program.array_types.end()); in MakeLiteralItems() 628 ASSERT(program.array_types.find(Type("u16", 1)) != program.array_types.end()); in MakeLiteralItems() 634 ASSERT(program.array_types.find(Type("i16", 1)) != program.array_types.end()); in MakeLiteralItems() 640 ASSERT(program.array_types.find(Type("u32", 1)) != program.array_types.end()); in MakeLiteralItems() 646 ASSERT(program.array_types.find(Type("i32", 1)) != program.array_types.end()); in MakeLiteralItems() 652 ASSERT(program.array_types.find(Type("u64", 1)) != program.array_types.end()); in MakeLiteralItems() 658 ASSERT(program.array_types.find(Type("i64", 1)) != program.array_types.end()); in MakeLiteralItems() 664 ASSERT(program.array_types.find(Type("f32", 1)) != program.array_types.end()); in MakeLiteralItems() [all …]
|
| D | assembly-parser.cpp | 137 program_.array_types.insert(*type); in ParseType() 394 if (program_.array_types.find(type) == program_.array_types.end()) { in ParseArrayElementType() 395 program_.array_types.emplace(type, 1); in ParseArrayElementType() 399 if (program_.array_types.find(type_with_slash) == program_.array_types.end()) { in ParseArrayElementType() 400 program_.array_types.emplace(type_with_slash, 1); in ParseArrayElementType()
|