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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASourceFile.cpp33 DWORD ByteSize = 0; local
34 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr);
35 if (ByteSize == 0)
37 std::vector<BYTE> ChecksumBytes(ByteSize);
38 Result = SourceFile->get_checksum(ByteSize, &ByteSize, &ChecksumBytes[0]);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.h34 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize) argument
37 this->ByteSize.HasByteSize = ByteSize.hasValue();
38 if (this->ByteSize.HasByteSize)
39 this->ByteSize.ByteSize = *ByteSize;
46 /// The following field is used for ByteSize for non-implicit_const
51 /// ByteSize contains the fixed size in bytes for the Form in this
61 uint8_t ByteSize; member in struct:llvm::DWARFAbbreviationDeclaration::AttributeSpec::ByteSizeStorage
64 ByteSizeStorage ByteSize; member in union:llvm::DWARFAbbreviationDeclaration::AttributeSpec::__anon3195
[all...]
H A DDWARFAttribute.h28 uint32_t ByteSize = 0; member in struct:llvm::DWARFAttribute
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp72 Optional<uint8_t> ByteSize; local
99 if ((ByteSize = dwarf::getFixedFormByteSize(F, dwarf::FormParams()))) {
101 FixedAttributeSize->NumBytes += *ByteSize;
111 AttributeSpecs.push_back(AttributeSpec(A, F, ByteSize));
187 size_t ByteSize = NumBytes; local
189 ByteSize += NumAddrs * U.getAddressByteSize();
191 ByteSize += NumRefAddrs * U.getRefAddrByteSize();
193 ByteSize += NumDwarfOffsets * U.getDwarfOffsetByteSize();
194 return ByteSize;
201 if (ByteSize
[all...]
H A DDWARFDie.cpp703 AttrValue.Offset += AttrValue.ByteSize;
709 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h80 DeclContext(unsigned Hash, uint32_t Line, uint32_t ByteSize, uint16_t Tag, argument
83 : QualifiedNameHash(Hash), Line(Line), ByteSize(ByteSize), Tag(Tag),
105 uint32_t ByteSize = 0; member in class:llvm::DeclContext
161 LHS->Line == RHS->Line && LHS->ByteSize == RHS->ByteSize &&
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp111 unsigned ByteSize = std::numeric_limits<uint32_t>::max(); local
122 ByteSize = dwarf::toUnsigned(DIE.find(dwarf::DW_AT_byte_size),
182 DeclContext Key(Hash, Line, ByteSize, Tag, NameRef, FileRef, Context);
189 new (Allocator) DeclContext(Hash, Line, ByteSize, Tag, NameRef, FileRef,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTable.cpp22 uint32_t PDBStringTable::getByteSize() const { return Header->ByteSize; }
92 std::tie(SectionReader, Reader) = Reader.split(Header->ByteSize);
H A DPDBStringTableBuilder.cpp158 H.ByteSize = Strings.calculateSerializedSize();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp233 const unsigned ByteSize = 1U << i; local
234 const unsigned BitSize = ByteSize * 8;
235 std::string ByteSizeStr = utostr(ByteSize);
684 const unsigned ByteSize = 1U << Idx; local
685 const unsigned BitSize = ByteSize * 8;
699 const unsigned ByteSize = 1U << Idx; local
700 const unsigned BitSize = ByteSize * 8;
716 const unsigned ByteSize = 1U << Idx; local
717 const unsigned BitSize = ByteSize * 8;
730 const unsigned ByteSize local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp208 /// counting from the least significant byte) and ByteSize, which is the number
215 unsigned ByteSize) {
220 assert(ByteSize && "Must be accessing some piece");
221 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input");
222 assert(ByteSize != CSize && "Should not extract everything");
229 V = V.trunc(ByteSize*8);
241 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
250 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
256 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
264 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
214 ExtractConstantBytes(Constant *C, unsigned ByteStart, unsigned ByteSize) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DRawTypes.h315 support::ulittle32_t ByteSize; // Number of bytes of names buffer. member in struct:llvm::PDBStringTableHeader
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp83 unsigned ByteSize = SizeInBits / SizeOfByte; local
84 emitUnsigned(ByteSize);
H A DCodeViewDebug.cpp1632 uint32_t ByteSize; local
1635 ByteSize = Ty->getSizeInBits() / 8;
1643 switch (ByteSize) {
1652 switch (ByteSize) {
1661 switch (ByteSize) {
1671 switch (ByteSize) {
1680 switch (ByteSize) {
1689 switch (ByteSize) {
1695 if (ByteSize == 1)
1699 if (ByteSize
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h626 /// size, return the constant being splatted. The ByteSize field indicates
628 SDValue get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG);
H A DPPCISelLowering.cpp2261 /// the constant being splatted. The ByteSize field indicates the number of
2263 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { argument
2266 // If ByteSize of the splat is bigger than the element size of the
2271 if (EltSize < ByteSize) {
2272 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
2344 if (ValSizeInBytes < ByteSize) return SDValue();
2347 // of a repeated bit pattern of size ByteSize.
2348 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
2352 int MaskVal = SignExtend32(Value, ByteSize * 8);
14527 unsigned ByteSize local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp6290 APSInt ByteSize;
6291 if (!EvaluateInteger(E->getArg(0), ByteSize, Info))
6303 APInt ElemSizeAP(ByteSize.getBitWidth(), ElemSize.getQuantity());
6304 APInt::udivrem(ByteSize, ElemSizeAP, Size, Remainder);
6308 << ByteSize << APSInt(ElemSizeAP, true) << ElemType;
6312 if (ByteSize.getActiveBits() > ConstantArrayType::getMaxSizeBits(Info.Ctx)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp3231 unsigned ByteSize = PartSize / 8;
3238 MF.getMachineMemOperand(MMO, ByteOffset, ByteSize);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp11772 unsigned ByteSize = VT.getSizeInBits().getKnownMinSize() / 8; local
11773 EVT ByteVT = EVT::getVectorVT(Ctx, MVT::i8, { ByteSize, true });
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9198 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy); local
9200 int FrameIdx = MFI.CreateStackObject(ByteSize, StackAlign, false);

Completed in 434 milliseconds