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

/freebsd-11-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-11-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::__anon1484
[all...]
H A DDWARFAttribute.h28 uint32_t ByteSize = 0; member in struct:llvm::DWARFAttribute
/freebsd-11-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.cpp690 AttrValue.Offset += AttrValue.ByteSize;
696 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h79 DeclContext(unsigned Hash, uint32_t Line, uint32_t ByteSize, uint16_t Tag, argument
82 : QualifiedNameHash(Hash), Line(Line), ByteSize(ByteSize), Tag(Tag),
104 uint32_t ByteSize = 0; member in class:llvm::DeclContext
160 LHS->Line == RHS->Line && LHS->ByteSize == RHS->ByteSize &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp107 unsigned ByteSize = std::numeric_limits<uint32_t>::max(); local
118 ByteSize = dwarf::toUnsigned(DIE.find(dwarf::DW_AT_byte_size),
178 DeclContext Key(Hash, Line, ByteSize, Tag, NameRef, FileRef, Context);
185 new (Allocator) DeclContext(Hash, Line, ByteSize, Tag, NameRef, FileRef,
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp219 const unsigned ByteSize = 1U << i; local
220 const unsigned BitSize = ByteSize * 8;
221 std::string ByteSizeStr = utostr(ByteSize);
636 const unsigned ByteSize = 1U << Idx; local
637 const unsigned BitSize = ByteSize * 8;
651 const unsigned ByteSize = 1U << Idx; local
652 const unsigned BitSize = ByteSize * 8;
668 const unsigned ByteSize = 1U << Idx; local
669 const unsigned BitSize = ByteSize * 8;
682 const unsigned ByteSize local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp206 /// counting from the least significant byte) and ByteSize, which is the number
213 unsigned ByteSize) {
218 assert(ByteSize && "Must be accessing some piece");
219 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input");
220 assert(ByteSize != CSize && "Should not extract everything");
227 V = V.trunc(ByteSize*8);
239 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
248 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
254 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
262 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
212 ExtractConstantBytes(Constant *C, unsigned ByteStart, unsigned ByteSize) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp83 unsigned ByteSize = SizeInBits / SizeOfByte; local
84 emitUnsigned(ByteSize);
H A DCodeViewDebug.cpp1606 uint32_t ByteSize; local
1609 ByteSize = Ty->getSizeInBits() / 8;
1617 switch (ByteSize) {
1626 switch (ByteSize) {
1635 switch (ByteSize) {
1645 switch (ByteSize) {
1654 switch (ByteSize) {
1663 switch (ByteSize) {
1669 if (ByteSize == 1)
1673 if (ByteSize
[all...]
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h604 /// size, return the constant being splatted. The ByteSize field indicates
606 SDValue get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG);
H A DPPCISelLowering.cpp2162 /// the constant being splatted. The ByteSize field indicates the number of
2164 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { argument
2167 // If ByteSize of the splat is bigger than the element size of the
2172 if (EltSize < ByteSize) {
2173 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
2245 if (ValSizeInBytes < ByteSize) return SDValue();
2248 // of a repeated bit pattern of size ByteSize.
2249 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
2253 int MaskVal = SignExtend32(Value, ByteSize * 8);
13641 unsigned ByteSize local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp5981 APSInt ByteSize;
5982 if (!EvaluateInteger(E->getArg(0), ByteSize, Info))
5994 APInt ElemSizeAP(ByteSize.getBitWidth(), ElemSize.getQuantity());
5995 APInt::udivrem(ByteSize, ElemSizeAP, Size, Remainder);
5999 << ByteSize << APSInt(ElemSizeAP, true) << ElemType;
6003 if (ByteSize.getActiveBits() > ConstantArrayType::getMaxSizeBits(Info.Ctx)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp2947 unsigned ByteSize = PartSize / 8;
2954 MF.getMachineMemOperand(MMO, ByteOffset, ByteSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp10884 unsigned ByteSize = VT.getSizeInBits().getKnownMinSize() / 8; local
10885 EVT ByteVT = EVT::getVectorVT(Ctx, MVT::i8, { ByteSize, true });
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1984 unsigned ByteSize = VT.getStoreSize();
1989 int FrameIdx = MFI.CreateStackObject(ByteSize, StackAlign, false);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8895 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy); local
8897 int FrameIdx = MFI.CreateStackObject(ByteSize, StackAlign, false);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp18869 unsigned ByteSize = SrcVT.getSizeInBits() / 8;
18877 MachineMemOperand::MOLoad, ByteSize, ByteSize);
[all...]

Completed in 735 milliseconds