@@ -201,7 +201,7 @@ class RustCLikeEnum : public RustType {
201
201
}
202
202
203
203
uint64_t ByteSize () const override {
204
- return m_underlying_type.GetByteSize (nullptr );
204
+ return m_underlying_type.GetByteSize (nullptr ). getValueOr ( 0 ) ;
205
205
}
206
206
207
207
bool IsSigned () const {
@@ -337,7 +337,7 @@ class RustArray : public RustType {
337
337
}
338
338
339
339
uint64_t ByteSize () const override {
340
- return m_elem.GetByteSize (nullptr ) * m_length;
340
+ return m_elem.GetByteSize (nullptr ). getValueOr ( 0 ) * m_length;
341
341
}
342
342
343
343
std::string GetCABITypeDeclaration (RustASTContext::TypeNameMap *name_map,
@@ -804,7 +804,7 @@ class RustTypedef : public RustType {
804
804
}
805
805
806
806
uint64_t ByteSize () const override {
807
- return m_type.GetByteSize (nullptr );
807
+ return m_type.GetByteSize (nullptr ). getValueOr ( 0 ) ;
808
808
}
809
809
810
810
std::string GetCABITypeDeclaration (RustASTContext::TypeNameMap *name_map,
@@ -1266,7 +1266,7 @@ RustASTContext::GetArrayElementType(lldb::opaque_compiler_type_t type,
1266
1266
RustArray *array = static_cast <RustType *>(type)->AsArray ();
1267
1267
if (array) {
1268
1268
if (stride) {
1269
- *stride = array->ElementType ().GetByteSize (nullptr );
1269
+ *stride = array->ElementType ().GetByteSize (nullptr ). getValueOr ( 0 ) ;
1270
1270
}
1271
1271
return array->ElementType ();
1272
1272
}
@@ -1499,8 +1499,11 @@ CompilerType RustASTContext::GetChildCompilerTypeAtIndex(
1499
1499
uint64_t bit_offset;
1500
1500
CompilerType ret =
1501
1501
GetFieldAtIndex (type, idx, child_name, &bit_offset, nullptr , nullptr );
1502
- child_byte_size = ret.GetByteSize (
1502
+ llvm::Optional< uint64_t > size = ret.GetByteSize (
1503
1503
exe_ctx ? exe_ctx->GetBestExecutionContextScope () : nullptr );
1504
+ if (!size)
1505
+ return {};
1506
+ child_byte_size = *size;
1504
1507
child_byte_offset = bit_offset / 8 ;
1505
1508
return ret;
1506
1509
} else if (RustPointer *ptr = t->AsPointer ()) {
@@ -1525,8 +1528,11 @@ CompilerType RustASTContext::GetChildCompilerTypeAtIndex(
1525
1528
1526
1529
// We have a pointer to an simple type
1527
1530
if (idx == 0 && pointee.GetCompleteType ()) {
1528
- child_byte_size = pointee.GetByteSize (
1531
+ llvm::Optional< uint64_t > size = pointee.GetByteSize (
1529
1532
exe_ctx ? exe_ctx->GetBestExecutionContextScope () : NULL );
1533
+ if (!size)
1534
+ return {};
1535
+ child_byte_size = *size;
1530
1536
child_byte_offset = 0 ;
1531
1537
return pointee;
1532
1538
}
@@ -1538,8 +1544,11 @@ CompilerType RustASTContext::GetChildCompilerTypeAtIndex(
1538
1544
char element_name[64 ];
1539
1545
::snprintf (element_name, sizeof (element_name), "[%zu]", idx);
1540
1546
child_name.assign (element_name);
1541
- child_byte_size = element_type.GetByteSize (
1547
+ llvm::Optional< uint64_t > size = element_type.GetByteSize (
1542
1548
exe_ctx ? exe_ctx->GetBestExecutionContextScope () : NULL );
1549
+ if (!size)
1550
+ return {};
1551
+ child_byte_size = *size;
1543
1552
child_byte_offset = (int32_t )idx * (int32_t )child_byte_size;
1544
1553
return element_type;
1545
1554
}
@@ -1634,14 +1643,17 @@ bool RustASTContext::DumpTypeValue(lldb::opaque_compiler_type_t type, Stream *s,
1634
1643
CompilerType typedef_compiler_type = typ->UnderlyingType ();
1635
1644
if (format == eFormatDefault)
1636
1645
format = typedef_compiler_type.GetFormat ();
1637
- uint64_t typedef_byte_size = typedef_compiler_type.GetByteSize (exe_scope);
1646
+ llvm::Optional<uint64_t > typedef_byte_size =
1647
+ typedef_compiler_type.GetByteSize (exe_scope);
1648
+ if (!typedef_byte_size)
1649
+ return false ;
1638
1650
1639
1651
return typedef_compiler_type.DumpTypeValue (
1640
1652
s,
1641
1653
format, // The format with which to display the element
1642
1654
data, // Data buffer containing all bytes for this type
1643
1655
byte_offset, // Offset into "data" where to grab value from
1644
- typedef_byte_size, // Size of this type in bytes
1656
+ * typedef_byte_size,// Size of this type in bytes
1645
1657
bitfield_bit_size, // Size in bits of a bitfield value, if zero don't
1646
1658
// treat as a bitfield
1647
1659
bitfield_bit_offset, // Offset in bits of a bitfield value if
0 commit comments