Searched refs:nextLEB (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/ |
H A D | WebAssemblyDisassembler.cpp | 86 static bool nextLEB(int64_t &Val, ArrayRef<uint8_t> Bytes, uint64_t &Size, in nextLEB() function 104 if (!nextLEB(Val, Bytes, Size, Signed)) in parseLEBImmediate() 134 if (!nextLEB(FunctionCount, Bytes, Size, false)) in onSymbolStart() 140 if (!nextLEB(BodySize, Bytes, Size, false) || in onSymbolStart() 141 !nextLEB(LocalEntryCount, Bytes, Size, false)) in onSymbolStart() 147 if (!nextLEB(Count, Bytes, Size, false) || in onSymbolStart() 148 !nextLEB(Type, Bytes, Size, false)) in onSymbolStart() 184 if (!nextLEB(PrefixedOpc, Bytes, Size, false)) in getInstruction() 226 if (!nextLEB(Val, Bytes, Size, true)) in getInstruction() 281 if (!nextLEB(TargetTableLen, Bytes, Size, false)) in getInstruction()
|