| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | StackMapParser.h | 122 unsigned getSizeInBytes() const { in getSizeInBytes() function 181 unsigned getSizeInBytes() const { in getSizeInBytes() function 282 unsigned getSizeInBytes() const { in getSizeInBytes() function 289 return RecordAccessor(P + getSizeInBytes()); in next() 320 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapParser()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | StackMapPrinter.h | 67 OS << ", size: " << Loc.getSizeInBytes() << "\n"; in prettyPrintStackMap() 74 << LO.getSizeInBytes() << "-bytes) "; in prettyPrintStackMap()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineConstantPool.h | 46 virtual unsigned getSizeInBytes(const DataLayout &DL) const; 97 unsigned getSizeInBytes(const DataLayout &DL) const;
|
| H A D | MachineMemOperand.h | 237 return MemoryType.isValid() ? MemoryType.getSizeInBytes() : ~UINT64_C(0); in getSize()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MemoryOpRemark.cpp | 147 static Optional<uint64_t> getSizeInBytes(Optional<uint64_t> SizeInBits) { in getSizeInBytes() function 324 Optional<uint64_t> DISize = getSizeInBytes(DILV->getSizeInBits()); in visitVariable() 344 TySize ? getSizeInBytes(TySize->getFixedSize()) : None; in visitVariable()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CombinerHelper.cpp | 1124 Ty = LLT::scalar(Ty.getSizeInBytes()); in findGISelOptimalMemOpLowering() 1132 unsigned TySize = Ty.getSizeInBytes(); in findGISelOptimalMemOpLowering() 1141 unsigned NewTySize = NewTy.getSizeInBytes(); in findGISelOptimalMemOpLowering() 1282 unsigned TySize = Ty.getSizeInBytes(); in optimizeMemset() 1316 DstOff += Ty.getSizeInBytes(); in optimizeMemset() 1438 if (CopyTy.getSizeInBytes() > Size) in optimizeMemcpy() 1439 CurrOffset -= CopyTy.getSizeInBytes() - Size; in optimizeMemcpy() 1461 CurrOffset += CopyTy.getSizeInBytes(); in optimizeMemcpy() 1462 Size -= CopyTy.getSizeInBytes(); in optimizeMemcpy() 1551 CurrOffset += CopyTy.getSizeInBytes(); in optimizeMemmove() [all …]
|
| H A D | LegalityPredicates.cpp | 179 return !isPowerOf2_32(Query.MMODescrs[MMOIdx].MemoryTy.getSizeInBytes()); in memSizeInBytesNotPow2()
|
| H A D | CallLowering.cpp | 685 MemTy.getSizeInBytes(), VA.getLocMemOffset(), MPO, Flags); in handleAssignments()
|
| H A D | LegalizerHelper.cpp | 2893 unsigned MemStoreSizeInBits = 8 * MemTy.getSizeInBytes(); in lowerLoad() 3006 unsigned StoreSizeInBits = 8 * MemTy.getSizeInBytes(); in lowerStore() 3437 return std::max(Align(PowerOf2Ceil(Ty.getSizeInBytes())), MinAlign); in getStackTemporaryAlignment() 6655 unsigned EltBytes = EltTy.getSizeInBytes(); in lowerExtractInsertVectorElt() 6660 auto StackTemp = createStackTemporary(TypeSize::Fixed(VecTy.getSizeInBytes()), in lowerExtractInsertVectorElt()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | GlobalSplit.cpp | 87 ? SL->getSizeInBytes() in splitGlobal()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TypeMetadataUtils.cpp | 140 if (Offset >= SL->getSizeInBytes()) in getPointerAtOffset()
|
| H A D | MemoryBuiltins.cpp | 360 ElementSize = DL.getStructLayout(ST)->getSizeInBytes(); in computeArraySize()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineFunction.cpp | 1345 unsigned MachineConstantPoolValue::getSizeInBytes(const DataLayout &DL) const { in getSizeInBytes() function in MachineConstantPoolValue 1349 unsigned MachineConstantPoolEntry::getSizeInBytes(const DataLayout &DL) const { in getSizeInBytes() function in MachineConstantPoolEntry 1351 return Val.MachineCPVal->getSizeInBytes(DL); in getSizeInBytes() 1365 switch (getSizeInBytes(*DL)) { in getSectionKind()
|
| H A D | MachineVerifier.cpp | 1039 if (MMO.getSize() > ValTy.getSizeInBytes()) in verifyPreISelGenericInstruction() 1042 if (ValTy.getSizeInBytes() < MMO.getSize()) in verifyPreISelGenericInstruction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | LowLevelTypeImpl.h | 163 TypeSize getSizeInBytes() const { in getSizeInBytes() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DataLayout.h | 611 uint64_t getSizeInBytes() const { return StructSize; } in getSizeInBytes() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCExpr.h | 174 unsigned getSizeInBytes() const { in getSizeInBytes() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFISelDAGToDAG.cpp | 356 DL.getStructLayout(cast<StructType>(CS->getType()))->getSizeInBytes(); in getConstantFieldValue()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | SROA.cpp | 1522 if (StructOffset >= SL->getSizeInBytes()) in getNaturalGEPRecursively() 3722 if (Offset >= SL->getSizeInBytes()) in getTypePartition() 3725 if (EndOffset > SL->getSizeInBytes()) in getTypePartition() 3749 if (EndOffset < SL->getSizeInBytes()) { in getTypePartition() 3769 if (Size != SubSL->getSizeInBytes()) in getTypePartition()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCExpr.cpp | 49 auto SizeInBytes = cast<MCConstantExpr>(*this).getSizeInBytes(); in print()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64CallLowering.cpp | 290 unsigned MaxSize = MemTy.getSizeInBytes() * 8; in assignValueToAddress()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsConstantIslandPass.cpp | 555 unsigned Size = CPs[i].getSizeInBytes(TD); in doInitialPlacement()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 2083 Offset = NewOffset + CPE.getSizeInBytes(getDataLayout()); in emitConstantPool() 2792 assert(SizeSoFar == Layout->getSizeInBytes() && in emitGlobalConstantStruct()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstructionSelector.cpp | 1393 Align Alignment = Align(DstTy.getSizeInBytes()); in materializeFP()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMConstantIslandPass.cpp | 545 unsigned Size = CPs[i].getSizeInBytes(TD); in doInitialConstPlacement()
|