ΒΆOptional<uint8_t> getFixedFormByteSize(
dwarf::Form Form,
llvm::dwarf::FormParams Params)
Optional<uint8_t> getFixedFormByteSize(
dwarf::Form Form,
llvm::dwarf::FormParams Params)
Description
Get the fixed byte size for a given form. If the form has a fixed byte size, then an Optional with a value will be returned. If the form is always encoded using a variable length storage format (ULEB or SLEB numbers or blocks) then None will be returned.
Declared at: llvm/include/llvm/BinaryFormat/Dwarf.h:699
Parameters
- dwarf::Form Form
- DWARF form to get the fixed byte size for.
- llvm::dwarf::FormParams Params
- DWARF parameters to help interpret forms.
Returns
Optional <uint8 _t> value with the fixed byte size or None if\p Form doesn't have a fixed byte size.