Searched refs:EncodedBytes (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamWriter.cpp36 uint8_t EncodedBytes[10] = {0}; local
37 unsigned Size = encodeULEB128(Value, &EncodedBytes[0]);
38 return writeBytes({EncodedBytes, Size});
42 uint8_t EncodedBytes[10] = {0}; local
43 unsigned Size = encodeSLEB128(Value, &EncodedBytes[0]);
44 return writeBytes({EncodedBytes, Size});
H A DBinaryStreamReader.cpp44 SmallVector<uint8_t, 10> EncodedBytes; local
51 EncodedBytes.push_back(NextByte[0]);
54 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end());
59 SmallVector<uint8_t, 10> EncodedBytes; local
66 EncodedBytes.push_back(NextByte[0]);
69 Dest = decodeSLEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end());
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp795 unsigned EncodedBytes = 0; local
812 EncodedBytes += 6;
817 EncodedBytes += 6;
823 EncodedBytes += 2;
830 EncodedBytes += 6;
835 assert(NumBytes >= EncodedBytes &&
837 assert((NumBytes - EncodedBytes) % 2 == 0 &&
839 while (EncodedBytes < NumBytes)
840 EncodedBytes += EmitNop(OutContext, *OutStreamer, NumBytes - EncodedBytes,
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp524 unsigned EncodedBytes = 0; local
533 EncodedBytes = 0;
538 ++EncodedBytes;
543 ++EncodedBytes;
548 ++EncodedBytes;
560 ++EncodedBytes;
572 ++EncodedBytes;
577 ++EncodedBytes;
582 ++EncodedBytes;
584 ++EncodedBytes;
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVAsmPrinter.cpp155 unsigned EncodedBytes = 0; local
159 assert(NumBytes >= EncodedBytes &&
161 assert((NumBytes - EncodedBytes) % NOPBytes == 0 &&
163 emitNops((NumBytes - EncodedBytes) / NOPBytes);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp1314 unsigned EncodedBytes = 0;
1319 EncodedBytes = 16;
1339 assert(NumBytes >= EncodedBytes &&
1341 assert((NumBytes - EncodedBytes) % 4 == 0 &&
1343 for (unsigned i = EncodedBytes; i < NumBytes; i += 4)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1023 unsigned EncodedBytes = 0; local
1049 EncodedBytes = 13;
1051 EncodedBytes = 12;
1064 assert(NumBytes >= EncodedBytes &&
1067 emitX86Nops(*OutStreamer, NumBytes - EncodedBytes, Subtarget);

Completed in 88 milliseconds