| /freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsABIFlagsSection.cpp | 60 OS.emitIntValue(ABIFlagsSection.getVersionValue(), 2); // version in operator <<() 61 OS.emitIntValue(ABIFlagsSection.getISALevelValue(), 1); // isa_level in operator <<() 62 OS.emitIntValue(ABIFlagsSection.getISARevisionValue(), 1); // isa_rev in operator <<() 63 OS.emitIntValue(ABIFlagsSection.getGPRSizeValue(), 1); // gpr_size in operator <<() 64 OS.emitIntValue(ABIFlagsSection.getCPR1SizeValue(), 1); // cpr1_size in operator <<() 65 OS.emitIntValue(ABIFlagsSection.getCPR2SizeValue(), 1); // cpr2_size in operator <<() 66 OS.emitIntValue(ABIFlagsSection.getFpABIValue(), 1); // fp_abi in operator <<() 67 OS.emitIntValue(ABIFlagsSection.getISAExtensionValue(), 4); // isa_ext in operator <<() 68 OS.emitIntValue(ABIFlagsSection.getASESetValue(), 4); // ases in operator <<() 69 OS.emitIntValue(ABIFlagsSection.getFlags1Value(), 4); // flags1 in operator <<() [all …]
|
| H A D | MipsELFStreamer.cpp | 104 void MipsELFStreamer::emitIntValue(uint64_t Value, unsigned Size) { 105 MCELFStreamer::emitIntValue(Value, Size); in emitIntValue() function in MipsELFStreamer
|
| H A D | MipsELFStreamer.h | 59 void emitIntValue(uint64_t Value, unsigned Size) override;
|
| H A D | MipsTargetStreamer.cpp | 1031 OS.emitIntValue(GPRInfoSet ? GPRBitMask : 0, 4); // reg_mask in emitDirectiveEnd() 1032 OS.emitIntValue(GPRInfoSet ? GPROffset : 0, 4); // reg_offset in emitDirectiveEnd() 1034 OS.emitIntValue(FPRInfoSet ? FPRBitMask : 0, 4); // fpreg_mask in emitDirectiveEnd() 1035 OS.emitIntValue(FPRInfoSet ? FPROffset : 0, 4); // fpreg_offset in emitDirectiveEnd() 1037 OS.emitIntValue(FrameInfoSet ? FrameOffset : 0, 4); // frame_offset in emitDirectiveEnd() 1038 OS.emitIntValue(FrameInfoSet ? FrameReg : 0, 4); // frame_reg in emitDirectiveEnd() 1039 OS.emitIntValue(FrameInfoSet ? ReturnReg : 0, 4); // return_reg in emitDirectiveEnd()
|
| H A D | MipsOptionRecord.cpp | 51 Streamer->emitIntValue(ri_gp_value, 8); in EmitMipsOptionRecord()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64TargetStreamer.cpp | 91 OutStreamer.emitIntValue(4, 4); // data size for "GNU\0" in emitNoteSection() 92 OutStreamer.emitIntValue(DescSz, 4); // Elf_Prop array size in emitNoteSection() 93 OutStreamer.emitIntValue(ELF::NT_GNU_PROPERTY_TYPE_0, 4); in emitNoteSection() 98 OutStreamer.emitIntValue(ELF::GNU_PROPERTY_AARCH64_FEATURE_1_AND, 4); in emitInst() 99 OutStreamer.emitIntValue(4, 4); // data size in emitInst() 100 OutStreamer.emitIntValue(Flags, 4); // data in emitInst() 101 OutStreamer.emitIntValue(0, 4); // pad in emitInst() 106 OutStreamer.emitIntValue(ELF::GNU_PROPERTY_AARCH64_FEATURE_PAUTH, 4); in emitInst() 107 OutStreamer.emitIntValue(8 * 2, 4); // data size in emitInst() 108 OutStreamer.emitIntValue(PAuthABIPlatfor in emitInst() [all...] |
| /freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | CodeViewRecordIO.cpp | 137 Streamer->emitIntValue(TypeInd.getIndex(), sizeof(TypeInd.getIndex())); in mapInteger() 287 Streamer->emitIntValue(Value, 2); in emitEncodedSignedInteger() 291 Streamer->emitIntValue(LF_CHAR, 2); in emitEncodedSignedInteger() 293 Streamer->emitIntValue(Value, 1); in emitEncodedSignedInteger() 297 Streamer->emitIntValue(LF_SHORT, 2); in emitEncodedSignedInteger() 299 Streamer->emitIntValue(Value, 2); in emitEncodedSignedInteger() 303 Streamer->emitIntValue(LF_LONG, 2); in emitEncodedSignedInteger() 305 Streamer->emitIntValue(Value, 4); in emitEncodedSignedInteger() 308 Streamer->emitIntValue(LF_QUADWORD, 2); in emitEncodedSignedInteger() 310 Streamer->emitIntValue(Value, 4); // FIXME: Why not 8 (size of quadword)? in emitEncodedSignedInteger() [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFStreamer.cpp | 465 MS->emitIntValue(Range.start(), AddressSize); in emitDwarfDebugArangesTable() 466 MS->emitIntValue(Range.end() - Range.start(), AddressSize); in emitDwarfDebugArangesTable() 470 Asm->OutStreamer->emitIntValue(0, AddressSize); in emitDwarfDebugArangesTable() 471 Asm->OutStreamer->emitIntValue(0, AddressSize); in emitDwarfDebugArangesTable() 490 MS->emitIntValue(Range.start() - BaseAddress, AddressSize); in emitDwarfDebugRangesTableFragment() 491 MS->emitIntValue(Range.end() - BaseAddress, AddressSize); in emitDwarfDebugRangesTableFragment() 498 MS->emitIntValue(0, AddressSize); in emitDwarfDebugRangesTableFragment() 499 MS->emitIntValue(0, AddressSize); in emitDwarfDebugRangesTableFragment() 684 MS->emitIntValue(LocExpression.Range->LowPC - BaseAddress, AddressSize); in emitDwarfDebugLocTableFragment() 685 MS->emitIntValue(LocExpressio in emitDwarfDebugLocTableFragment() [all...] |
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinterDwarf.cpp | 99 OutStreamer->emitIntValue(Val, 1); in emitEncodingByte() 129 OutStreamer->emitIntValue(0, GetSizeOfEncodedValue(Encoding)); in emitTTypeReference() 163 OutStreamer->emitIntValue(S.Offset, getDwarfOffsetByteSize()); in emitDwarfStringOffset() 172 OutStreamer->emitIntValue(Value, getDwarfOffsetByteSize()); in emitDwarfLengthOrOffset() 199 OutStreamer->emitIntValue(Value, GetSizeOfEncodedValue(Encoding)); in emitCallSiteValue()
|
| H A D | DwarfStringPool.cpp | 126 Asm.OutStreamer->emitIntValue(Entry->getValue().Offset, size); in emit()
|
| H A D | DIE.cpp | 400 Asm->OutStreamer->emitIntValue(Integer, in emitValue() 650 AP->OutStreamer->emitIntValue(Entry->getOffset(), in emitValue() 668 AP->OutStreamer->emitIntValue(Addr, sizeOf(AP->getDwarfFormParams(), Form)); in emitValue()
|
| H A D | OcamlGCPrinter.cpp | 109 AP.OutStreamer->emitIntValue(0, IntPtrSize); in finishAssembly()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | StackMaps.cpp | 590 OS.emitIntValue(StackMapVersion, 1); // Version. in emitStackmapHeader() 591 OS.emitIntValue(0, 1); // Reserved. in emitStackmapHeader() 620 OS.emitIntValue(FR.second.StackSize, 8); in emitFunctionFrameRecords() 621 OS.emitIntValue(FR.second.RecordCount, 8); in emitFunctionFrameRecords() 633 OS.emitIntValue(ConstEntry.second, 8); in emitConstantPoolEntries() 678 OS.emitIntValue(UINT64_MAX, 8); // Invalid ID. in emitCallsiteEntries() 688 OS.emitIntValue(CSI.ID, 8); in emitCallsiteEntries() 696 OS.emitIntValue(Loc.Type, 1); in emitCallsiteEntries() 697 OS.emitIntValue(0, 1); // Reserved in emitCallsiteEntries() 713 OS.emitIntValue(0, 1); in emitCallsiteEntries() [all …]
|
| H A D | FaultMaps.cpp | 63 OS.emitIntValue(FaultMapVersion, 1); // Version. in serializeToFaultMapSection() 64 OS.emitIntValue(0, 1); // Reserved. in serializeToFaultMapSection()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600AsmPrinter.cpp | 92 OutStreamer->emitIntValue(S_NUM_GPRS(MaxGPR + 1) | in EmitProgramInfoR600() 99 OutStreamer->emitIntValue(alignTo(MFI->getLDSSize(), 4) >> 2, 4); in EmitProgramInfoR600()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCStreamer.h | 707 virtual void emitIntValue(uint64_t Value, unsigned Size); 708 virtual void emitIntValue(const APInt &Value); 714 emitIntValue(Value, Size); 717 void emitInt8(uint64_t Value) { emitIntValue(Value, 1); } 718 void emitInt16(uint64_t Value) { emitIntValue(Value, 2); } 719 void emitInt32(uint64_t Value) { emitIntValue(Value, 4); } 720 void emitInt64(uint64_t Value) { emitIntValue(Value, 8); } 726 emitIntValue(Value, Size);
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeViewRecordIO.h | 34 virtual void emitIntValue(uint64_t Value, unsigned Size) = 0; 103 Streamer->emitIntValue((int)Value, sizeof(T)); 149 Streamer->emitIntValue(Size, sizeof(Size));
|
| /freebsd-src/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 371 MCOS->emitIntValue(Offset, RefSize); in emitV2FileDirTables() 866 MCOS->emitIntValue(Length - UnitLengthBytes, OffsetSize); in EmitGenDwarfAranges() 875 MCOS->emitIntValue(0, OffsetSize); in EmitGenDwarfAranges() 901 MCOS->emitIntValue(0, AddrSize); 902 MCOS->emitIntValue(0, AddrSize); in EmitGenDwarfInfo() 956 MCOS->emitIntValue(0, OffsetSize); in EmitGenDwarfInfo() 972 MCOS->emitIntValue(0, OffsetSize); in EmitGenDwarfInfo() 1127 MCOS->emitIntValue(0, AddrSize); in emitGenDwarfRanges() 1132 MCOS->emitIntValue(0, AddrSize); 1133 MCOS->emitIntValue( [all...] |
| H A D | MCObjectStreamer.cpp | 109 return emitIntValue(*Diff, Size); 199 emitIntValue(AbsValue, Size); 446 OS.emitIntValue(dwarf::DW_LNS_extended_op, 1); in emitInstructionImpl() 448 OS.emitIntValue(dwarf::DW_LNE_set_address, 1); in emitInstructionImpl() 766 emitIntValue(Expr, NonZeroSize); in getOffsetAndDataFragment() 768 emitIntValue(0, Size - NonZeroSize); in getOffsetAndDataFragment()
|
| H A D | MCAsmStreamer.cpp | 250 void emitIntValue(uint64_t Value, unsigned Size) override; 1322 void MCAsmStreamer::emitIntValue(uint64_t Value, unsigned Size) { in emitValueImpl() 1377 emitIntValue(ValueToEmit, EmissionSize); 2615 emitIntValue(dwarf::DW_LNS_extended_op, 1); in emitDwarfAdvanceLineAddr() 2617 emitIntValue(dwarf::DW_LNE_set_address, 1); in emitDwarfAdvanceLineAddr() 2631 emitIntValue(dwarf::DW_LNS_extended_op, 1); in doFinalizationAtSectionEnd() 2633 emitIntValue(dwarf::DW_LNE_end_sequence, 1); in createAsmStreamer() 2639 emitIntValue(dwarf::DW_LNS_advance_line, 1); in createAsmStreamer() 2641 emitIntValue(dwarf::DW_LNS_copy, 1); in createAsmStreamer() 1307 void MCAsmStreamer::emitIntValue(uint64_t Value, unsigned Size) { emitIntValue() function in MCAsmStreamer
|
| H A D | MCStreamer.cpp | 133 void MCStreamer::emitIntValue(uint64_t Value, unsigned Size) { 143 void MCStreamer::emitIntValue(const APInt &Value) { in emitIntValue() 145 emitIntValue(Value.getLimitedValue(), Value.getBitWidth() / 8); in emitIntValue() 1033 emitIntValue(Length, dwarf::getDwarfOffsetByteSize(Context.getDwarfFormat())); in emitDwarfUnitLength() 134 void MCStreamer::emitIntValue(uint64_t Value, unsigned Size) { emitIntValue() function in MCStreamer 144 void MCStreamer::emitIntValue(APInt Value) { emitIntValue() function in MCStreamer
|
| /freebsd-src/contrib/llvm-project/llvm/lib/DWP/ |
| H A D | DWP.cpp | 425 Out.emitIntValue(NewOffset, 4); in writeStringsAndOffsets() 487 Out.emitIntValue((Field == AccessField::Offset in writeIndex() 522 Out.emitIntValue(IndexVersion, 4); // Version 523 Out.emitIntValue(Columns, 4); // Columns in buildDuplicateError() 524 Out.emitIntValue(IndexEntries.size(), 4); // Num Units in buildDuplicateError() 525 Out.emitIntValue(Buckets.size(), 4); // Num Buckets in buildDuplicateError() 529 Out.emitIntValue(I ? IndexEntries.begin()[I - 1].first : 0, 8); in buildDuplicateError() 533 Out.emitIntValue(I, 4); in handleSection() 538 Out.emitIntValue(getOnDiskSectionId(I), 4); in handleSection()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86AsmPrinter.cpp | 868 OutStreamer->emitIntValue(4, 4 /*size*/); // data size for "GNU\0" in emitStartOfAsmFile() 869 OutStreamer->emitIntValue(8 + WordSize, 4 /*size*/); // Elf_Prop size in emitStartOfAsmFile() 870 OutStreamer->emitIntValue(ELF::NT_GNU_PROPERTY_TYPE_0, 4 /*size*/); in emitStartOfAsmFile() 942 OutStreamer.emitIntValue(0, 4/*size*/); in emitNonLazySymbolPointer()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyTargetStreamer.cpp | 31 Streamer.emitIntValue(uint8_t(Type), 1); in emitValueType()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCAsmPrinter.cpp | 2038 OutStreamer->emitIntValue(0, 8 /* size */); in emitLinkage() 2224 OutStreamer->emitIntValue(0, 4/*size*/); in emitTracebackTable() 2225 OutStreamer->emitIntValue(0, 8/*size*/); in emitTracebackTable() 2351 OutStreamer->emitIntValue(0, PointerSize); in emitTracebackTable() 2352 OutStreamer->emitIntValue(0, PointerSize); in emitTracebackTable() 2899 OutStreamer->emitIntValue(0, PointerSize); 3295 OutStreamer->emitIntValue(0, GetSizeOfEncodedValue(Encoding));
|