Home
last modified time | relevance | path

Searched full:numbbranges (Results 1 – 7 of 7) sorted by relevance

/llvm-project/llvm/test/tools/obj2yaml/ELF/
H A Dbb-addr-map.yaml72 NumBBRanges: [[NUMBBRANGES=<none>]]
165 ## when an invalid 'NumBlocks' or 'NumBBRanges` field is specified.
/llvm-project/llvm/lib/Object/
H A DELF.cpp824 uint32_t NumBBRanges = 1; in decodeBBAddrMapImpl()
827 NumBBRanges = readULEB128As<uint32_t>(Data, Cur, ULEBSizeErr); in decodeBBAddrMapImpl()
830 if (!NumBBRanges) in decodeBBAddrMapImpl()
843 for (uint32_t BBRangeIndex = 0; BBRangeIndex < NumBBRanges; in decodeBBAddrMapImpl()
822 uint32_t NumBBRanges = 1; decodeBBAddrMapImpl() local
/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1471 (E.NumBBRanges.has_value() && E.NumBBRanges.value() != 1) || in writeSectionContent()
1478 // 'NumBBRanges' field when specified. in writeSectionContent()
1479 uint64_t NumBBRanges = in writeSectionContent()
1480 E.NumBBRanges.value_or(E.BBRanges ? E.BBRanges->size() : 0); in writeSectionContent()
1481 SHeader.sh_size += CBA.writeULEB128(NumBBRanges); in writeSectionContent()
1486 uint64_t NumBBRanges = writeSectionContent() local
H A DELFYAML.cpp1856 IO.mapOptional("NumBBRanges", E.NumBBRanges); in mapping()
/llvm-project/llvm/tools/obj2yaml/
H A Delf2yaml.cpp909 uint64_t NumBBRanges = 1; in dumpBBAddrMapSection()
916 NumBBRanges = Data.getULEB128(Cur); in dumpBBAddrMapSection()
923 for (uint64_t BBRangeN = 0; Cur && BBRangeN != NumBBRanges; ++BBRangeN) { in dumpBBAddrMapSection()
945 {Version, Feature, /*NumBBRanges=*/{}, std::move(BBRanges)}); in dumpBBAddrMapSection()
908 uint64_t NumBBRanges = 1; dumpBBAddrMapSection() local
/llvm-project/llvm/unittests/Object/
H A DELFObjectFileTest.cpp662 // Check for proper error handling when the 'NumBBRanges' field is overridden in TEST()
666 NumBBRanges: 0x100000000 in TEST()
/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h175 std::optional<uint64_t> NumBBRanges; member