Searched refs:OffsetSize (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugPubTable.cpp | 48 const unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(NewSet.Format); in extract() local 51 NewSet.Offset = SetData.getRelocatedValue(C, OffsetSize); in extract() 52 NewSet.Size = SetData.getUnsigned(C, OffsetSize); in extract() 66 uint64_t DieRef = SetData.getUnsigned(C, OffsetSize); in extract() 89 SetOffset, C.tell() - OffsetSize, Offset - OffsetSize)); in extract()
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 494 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(context.getDwarfFormat()); in Emit() local 514 MCOS->emitAbsoluteSymbolDiff(ProEndSym, ProStartSym, OffsetSize); in Emit() 831 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(context.getDwarfFormat()); in EmitGenDwarfAranges() local 835 int Length = UnitLengthBytes + 2 + OffsetSize + 1 + 1; in EmitGenDwarfAranges() 858 MCOS->emitIntValue(Length - UnitLengthBytes, OffsetSize); in EmitGenDwarfAranges() 864 MCOS->emitSymbolValue(InfoSectionSymbol, OffsetSize, in EmitGenDwarfAranges() 867 MCOS->emitIntValue(0, OffsetSize); in EmitGenDwarfAranges() 918 unsigned OffsetSize = dwarf::getDwarfOffsetByteSize(context.getDwarfFormat()); in EmitGenDwarfInfo() local 928 emitAbsValue(*MCOS, Length, OffsetSize); in EmitGenDwarfInfo() 944 MCOS->emitSymbolValue(AbbrevSectionSymbol, OffsetSize, in EmitGenDwarfInfo() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | ArchiveWriter.cpp | 358 uint64_t NumSyms, uint64_t OffsetSize, in computeSymbolTableSize() argument 361 assert((OffsetSize == 4 || OffsetSize == 8) && "Unsupported OffsetSize"); in computeSymbolTableSize() 362 uint64_t Size = OffsetSize; // Number of entries in computeSymbolTableSize() 364 Size += NumSyms * OffsetSize * 2; // Table in computeSymbolTableSize() 366 Size += NumSyms * OffsetSize; // Table in computeSymbolTableSize() 368 Size += OffsetSize; // byte count in computeSymbolTableSize() 414 uint64_t OffsetSize = is64BitKind(Kind) ? 8 : 4; in writeSymbolTable() local 416 uint64_t Size = computeSymbolTableSize(Kind, NumSyms, OffsetSize, StringTable, &Pad); in writeSymbolTable() 423 printNBits(Out, Kind, NumSyms * 2 * OffsetSize); in writeSymbolTable()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | StackProtector.cpp | 216 TypeSize OffsetSize = TypeSize::Fixed(Offset.getLimitedValue()); in HasAddressTaken() local 217 if (!TypeSize::isKnownGT(AllocSize, OffsetSize)) in HasAddressTaken() 223 TypeSize::Fixed(AllocSize.getKnownMinValue()) - OffsetSize; in HasAddressTaken()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86AsmBackend.cpp | 1165 unsigned OffsetSize; ///< Offset of a "push" instruction. member in __anone72c60860411::DarwinX86AsmBackend 1308 OffsetSize = Is64Bit ? 8 : 4; in DarwinX86AsmBackend() 1408 StackAdjust += OffsetSize; in generateCompactUnwindEncoding() 1425 if (SavedRegIdx != 0 && MinAbsOffset != 3 * (int)OffsetSize) in generateCompactUnwindEncoding()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 4121 unsigned OffsetSize = AMDGPU::getNumFlatOffsetBits(getSTI()); in validateFlatOffset() local 4124 if (!isIntN(OffsetSize, Op.getImm()) || (!AllowNegative && Op.getImm() < 0)) { in validateFlatOffset() 4127 (AllowNegative ? Twine(OffsetSize) + "-bit signed offset" in validateFlatOffset() 4128 : Twine(OffsetSize - 1) + "-bit unsigned offset")); in validateFlatOffset()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | SROA.cpp | 1697 unsigned OffsetSize = DL.getIndexTypeSizeInBits(BasePtr->getType()); in getNaturalGEPWithType() local 1709 Indices.push_back(IRB.getIntN(OffsetSize, 0)); in getNaturalGEPWithType()
|