Searched refs:PadTo (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | LEB128.h | 24 unsigned PadTo = 0) { 34 if (More || Count < PadTo) 40 if (Count < PadTo) { 42 for (; Count < PadTo - 1; ++Count) 52 inline unsigned encodeSLEB128(int64_t Value, uint8_t *p, unsigned PadTo = 0) { 63 if (More || Count < PadTo) 69 if (Count < PadTo) { 71 for (; Count < PadTo - 1; ++Count) 81 unsigned PadTo = 0) { 87 if (Value != 0 || Count < PadTo) [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | ByteStreamer.h | 35 unsigned PadTo = 0) = 0; 54 unsigned PadTo) override { in emitULEB128() argument 56 AP.emitULEB128(DWord, nullptr, PadTo); in emitULEB128() 81 unsigned PadTo) override { in emitULEB128() argument 123 unsigned PadTo) override { in emitULEB128() argument 125 unsigned Length = encodeULEB128(DWord, OSE, PadTo); in emitULEB128()
|
H A D | AsmPrinter.cpp | 3054 unsigned PadTo) const { in emitULEB128() 3058 OutStreamer->emitULEB128IntValue(Value, PadTo); in emitULEB128()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ |
H A D | ConfigManager.cpp | 29 Common.PadTo != 0 || Common.ChangeSectionLMAValAll != 0) in getCOFFConfig() 51 Common.PadTo != 0 || Common.ChangeSectionLMAValAll != 0) in getMachOConfig() 71 Common.PadTo != 0 || Common.ChangeSectionLMAValAll != 0) in getWasmConfig() 99 Common.GapFill != 0 || Common.PadTo != 0 || in getXCOFFConfig()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCAssembler.cpp | 1112 unsigned PadTo = OldSize; in relaxLEB() local 1132 PadTo = std::max(PadTo, encodeULEB128(uint64_t(Value), Tmp)); in relaxLEB() 1143 encodeSLEB128(Value, OSE, PadTo); in relaxLEB() 1145 encodeULEB128(Value, OSE, PadTo); in relaxLEB()
|
H A D | MCStreamer.cpp | 161 unsigned MCStreamer::emitULEB128IntValue(uint64_t Value, unsigned PadTo) { in emitULEB128IntValue() argument 164 encodeULEB128(Value, OSE, PadTo); in emitULEB128IntValue()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/ |
H A D | CommonConfig.h | 211 uint64_t PadTo = 0; member
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObject.h | 364 const uint64_t PadTo; variable 374 : Writer(Obj, Out), GapFill(Config.GapFill), PadTo(Config.PadTo) {} in BinaryWriter()
|
H A D | ELFObject.cpp | 2742 TotalSize = PadTo > MinAddr ? PadTo - MinAddr : 0; in finalize()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | AsmPrinter.h | 666 unsigned PadTo = 0) const;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCStreamer.h | 735 unsigned emitULEB128IntValue(uint64_t Value, unsigned PadTo = 0);
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
H A D | ObjcopyOptions.cpp | 866 Config.PadTo = *Addr; in parseObjcopyOptions()
|