Searched refs:EncodedBytes (Results 1 – 6 of 6) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | BinaryStreamWriter.cpp | 36 uint8_t EncodedBytes[10] = {0}; in writeULEB128() local 37 unsigned Size = encodeULEB128(Value, &EncodedBytes[0]); in writeULEB128() 38 return writeBytes({EncodedBytes, Size}); in writeULEB128() 42 uint8_t EncodedBytes[10] = {0}; in writeSLEB128() local 43 unsigned Size = encodeSLEB128(Value, &EncodedBytes[0]); in writeSLEB128() 44 return writeBytes({EncodedBytes, Size}); in writeSLEB128()
|
| HD | BinaryStreamReader.cpp | 45 SmallVector<uint8_t, 10> EncodedBytes; in readULEB128() local 52 EncodedBytes.push_back(NextByte[0]); in readULEB128() 55 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readULEB128() 60 SmallVector<uint8_t, 10> EncodedBytes; in readSLEB128() local 67 EncodedBytes.push_back(NextByte[0]); in readSLEB128() 70 Dest = decodeSLEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readSLEB128()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| HD | SystemZAsmPrinter.cpp | 626 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 643 EncodedBytes += 6; in LowerPATCHPOINT() 648 EncodedBytes += 6; in LowerPATCHPOINT() 654 EncodedBytes += 2; in LowerPATCHPOINT() 661 EncodedBytes += 6; in LowerPATCHPOINT() 666 assert(NumBytes >= EncodedBytes && in LowerPATCHPOINT() 668 assert((NumBytes - EncodedBytes) % 2 == 0 && in LowerPATCHPOINT() 670 while (EncodedBytes < NumBytes) in LowerPATCHPOINT() 671 EncodedBytes += EmitNop(OutContext, *OutStreamer, NumBytes - EncodedBytes, in LowerPATCHPOINT()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| HD | PPCAsmPrinter.cpp | 388 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 397 EncodedBytes = 0; in LowerPATCHPOINT() 402 ++EncodedBytes; in LowerPATCHPOINT() 407 ++EncodedBytes; in LowerPATCHPOINT() 412 ++EncodedBytes; in LowerPATCHPOINT() 424 ++EncodedBytes; in LowerPATCHPOINT() 436 ++EncodedBytes; in LowerPATCHPOINT() 441 ++EncodedBytes; in LowerPATCHPOINT() 446 ++EncodedBytes; in LowerPATCHPOINT() 448 ++EncodedBytes; in LowerPATCHPOINT() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| HD | AArch64AsmPrinter.cpp | 906 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 911 EncodedBytes = 16; in LowerPATCHPOINT() 931 assert(NumBytes >= EncodedBytes && in LowerPATCHPOINT() 933 assert((NumBytes - EncodedBytes) % 4 == 0 && in LowerPATCHPOINT() 935 for (unsigned i = EncodedBytes; i < NumBytes; i += 4) in LowerPATCHPOINT()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| HD | X86MCInstLower.cpp | 1369 unsigned EncodedBytes = 0; in LowerPATCHPOINT() local 1395 EncodedBytes = 13; in LowerPATCHPOINT() 1397 EncodedBytes = 12; in LowerPATCHPOINT() 1410 assert(NumBytes >= EncodedBytes && in LowerPATCHPOINT() 1413 EmitNops(*OutStreamer, NumBytes - EncodedBytes, Subtarget->is64Bit(), in LowerPATCHPOINT()
|