Home
last modified time | relevance | path

Searched refs:ByteSize (Results 1 – 20 of 20) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp102 std::optional<uint8_t> ByteSize; in extract() local
129 if ((ByteSize = dwarf::getFixedFormByteSize(F, dwarf::FormParams()))) { in extract()
131 FixedAttributeSize->NumBytes += *ByteSize; in extract()
141 AttributeSpecs.push_back(AttributeSpec(A, F, ByteSize)); in extract()
223 size_t ByteSize = NumBytes; in getByteSize() local
225 ByteSize += NumAddrs * U.getAddressByteSize(); in getByteSize()
227 ByteSize += NumRefAddrs * U.getRefAddrByteSize(); in getByteSize()
229 ByteSize += NumDwarfOffsets * U.getDwarfOffsetByteSize(); in getByteSize()
230 return ByteSize; in getByteSize()
237 if (ByteSize.HasByteSize) in getByteSize()
[all …]
H A DDWARFDie.cpp693 AttrValue.Offset += AttrValue.ByteSize; in updateForIndex()
705 AttrValue.ByteSize = ParseOffset - AttrValue.Offset; in updateForIndex()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.h35 std::optional<uint8_t> ByteSize) in AttributeSpec()
38 this->ByteSize.HasByteSize = ByteSize.has_value(); in AttributeSpec()
39 if (this->ByteSize.HasByteSize) in AttributeSpec()
40 this->ByteSize.ByteSize = *ByteSize; in AttributeSpec()
69 uint8_t ByteSize; member
72 ByteSizeStorage ByteSize; member
H A DDWARFAttribute.h28 uint32_t ByteSize = 0; member
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASourceFile.cpp33 DWORD ByteSize = 0; in getChecksum() local
34 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr); in getChecksum()
35 if (ByteSize == 0) in getChecksum()
37 std::vector<BYTE> ChecksumBytes(ByteSize); in getChecksum()
38 Result = SourceFile->get_checksum(ByteSize, &ByteSize, &ChecksumBytes[0]); in getChecksum()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.h86 DeclContext(unsigned Hash, uint32_t Line, uint32_t ByteSize, uint16_t Tag,
89 : QualifiedNameHash(Hash), Line(Line), ByteSize(ByteSize), Tag(Tag), in QualifiedNameHash()
114 uint32_t ByteSize = 0; variable
182 LHS->Line == RHS->Line && LHS->ByteSize == RHS->ByteSize && in isEqual()
/freebsd-src/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.cpp108 unsigned ByteSize = std::numeric_limits<uint32_t>::max(); in getChildDeclContext() local
119 ByteSize = dwarf::toUnsigned(DIE.find(dwarf::DW_AT_byte_size), in getChildDeclContext()
164 DeclContext Key(Hash, Line, ByteSize, Tag, NameRef, FileRef, Context); in getChildDeclContext()
171 new (Allocator) DeclContext(Hash, Line, ByteSize, Tag, NameRef, FileRef, in getChildDeclContext()
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp216 const unsigned ByteSize = 1U << i; in initialize()
217 const unsigned BitSize = ByteSize * 8; in initialize() local
218 std::string ByteSizeStr = utostr(ByteSize); in initialize()
734 const unsigned ByteSize = 1U << Idx; in instrumentAtomic()
735 const unsigned BitSize = ByteSize * 8; in instrumentAtomic() local
751 const unsigned ByteSize = 1U << Idx; in instrumentAtomic()
752 const unsigned BitSize = ByteSize * 8; in instrumentAtomic() local
766 const unsigned ByteSize = 1U << Idx; in instrumentAtomic()
767 const unsigned BitSize = ByteSize * 8; in instrumentAtomic() local
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTable.cpp21 uint32_t PDBStringTable::getByteSize() const { return Header->ByteSize; } in getByteSize()
91 std::tie(SectionReader, Reader) = Reader.split(Header->ByteSize); in reload()
H A DPDBStringTableBuilder.cpp160 H.ByteSize = Strings.calculateSerializedSize(); in writeHeader()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCtorDtorLowering.cpp116 auto *ByteSize = IRB.CreateSub(EndPtr, BeginPtr); in createInitOrFiniCalls() local
117 auto *Size = IRB.CreateAShr(ByteSize, ConstantInt::get(Int64Ty, 3)); in createInitOrFiniCalls()
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp133 ExtractConstantBytes(Constant * C,unsigned ByteStart,unsigned ByteSize) ExtractConstantBytes() argument
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DRawTypes.h315 support::ulittle32_t ByteSize; // Number of bytes of names buffer. member
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp84 unsigned ByteSize = SizeInBits / SizeOfByte; in addOpPiece()
85 emitUnsigned(ByteSize); in addOpPiece()
83 unsigned ByteSize = SizeInBits / SizeOfByte; addOpPiece() local
H A DCodeViewDebug.cpp1807 uint32_t ByteSize; in lowerTypeBasic() local
1810 ByteSize = Ty->getSizeInBits() / 8; in lowerTypeBasic()
1818 switch (ByteSize) { in lowerTypeBasic()
1829 switch (ByteSize) { in lowerTypeBasic()
1838 switch (ByteSize) { in lowerTypeBasic()
1848 switch (ByteSize) { in lowerTypeBasic()
1857 switch (ByteSize) { in lowerTypeBasic()
1866 switch (ByteSize) { in lowerTypeBasic()
1873 if (ByteSize == 1) in lowerTypeBasic()
1877 if (ByteSize == 1) in lowerTypeBasic()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h695 /// size, return the constant being splatted. The ByteSize field indicates
697 SDValue get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG);
H A DPPCISelLowering.cpp2529 /// the constant being splatted. The ByteSize field indicates the number of in get_VSPLTI_elt()
2531 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { in get_VSPLTI_elt()
2534 // If ByteSize of the splat is bigger than the element size of the in get_VSPLTI_elt()
2539 if (EltSize < ByteSize) { in get_VSPLTI_elt()
2540 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval. in get_VSPLTI_elt()
2612 if (ValSizeInBytes < ByteSize) return SDValue(); in get_VSPLTI_elt()
2615 // of a repeated bit pattern of size ByteSize. in get_VSPLTI_elt()
2616 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8)) in get_VSPLTI_elt()
2620 int MaskVal = SignExtend32(Value, ByteSize * 8); in get_VSPLTI_elt()
15390 unsigned ByteSize in combineVectorShuffle()
2526 get_VSPLTI_elt(SDNode * N,unsigned ByteSize,SelectionDAG & DAG) get_VSPLTI_elt() argument
15177 unsigned ByteSize = Op1VT.getScalarSizeInBits() / 8; combineStoreFPToInt() local
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp6842 APSInt ByteSize; in CheckDeleteKind()
6843 if (!EvaluateInteger(E->getArg(0), ByteSize, Info)) in CheckDeleteKind()
6855 APInt ElemSizeAP(ByteSize.getBitWidth(), ElemSize.getQuantity()); in CheckDeleteKind()
6856 APInt::udivrem(ByteSize, ElemSizeAP, Size, Remainder); in CheckDeleteKind()
6860 << ByteSize << APSInt(ElemSizeAP, true) << ElemType; in CheckDeleteKind()
6864 if (!Info.CheckArraySize(E->getBeginLoc(), ByteSize.getActiveBits(), in CheckDeleteKind()
6781 APSInt ByteSize; HandleOperatorNewCall() local
/freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9951 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy); in LowerFSINCOS()
9953 int FrameIdx = MFI.CreateStackObject(ByteSize, StackAlign, false); in LowerFSINCOS()
9934 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy); LowerFSINCOS() local
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp20979 unsigned ByteSize = VT.getSizeInBits().getKnownMinValue() / 8; in performUzpCombine()
20981 EVT::getVectorVT(Ctx, MVT::i8, ElementCount::getScalable(ByteSize)); in performUzpCombine()
19760 unsigned ByteSize = VT.getSizeInBits().getKnownMinValue() / 8; LowerSVEIntrinsicEXT() local
[all...]