Home
last modified time | relevance | path

Searched refs:ULEB128PadSize (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDIE.cpp526 assert(Offset < (1ULL << (ULEB128PadSize * 7)) && "Offset wont fit"); in emitValue()
527 AP->emitULEB128(Offset, nullptr, ULEB128PadSize); in emitValue()
531 return ULEB128PadSize; in SizeOf()
DDwarfDebug.cpp174 static constexpr unsigned ULEB128PadSize = 4; variable
195 assert(Idx < (1ULL << (ULEB128PadSize * 7)) && "Idx wont fit"); in emitBaseTypeRef()
196 getActiveStreamer().emitULEB128(Idx, Twine(Idx), ULEB128PadSize); in emitBaseTypeRef()
2519 assert(Offset < (1ULL << (ULEB128PadSize * 7)) && "Offset wont fit"); in emitDebugLocEntry()
2520 Streamer.emitULEB128(Offset, "", ULEB128PadSize); in emitDebugLocEntry()
2522 for (unsigned J = 0; J < ULEB128PadSize; ++J) in emitDebugLocEntry()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DDIE.h238 static constexpr unsigned ULEB128PadSize = 4; variable