/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | StackMapParser.h | 121 unsigned getSizeInBytes() const { 180 unsigned getSizeInBytes() const { 281 unsigned getSizeInBytes() const { 288 return RecordAccessor(P + getSizeInBytes()); in next() 319 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapParser() 122 unsigned getSizeInBytes() const { getSizeInBytes() function 181 unsigned getSizeInBytes() const { getSizeInBytes() function 282 unsigned getSizeInBytes() const { getSizeInBytes() function
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | GlobalSplit.cpp | 89 if (SrcInRange.getLower().uge(SL->getSizeInBytes())) in splitGlobal() 96 ? SL->getSizeInBytes() in splitGlobal() 123 ? SL->getSizeInBytes() in splitGlobal()
|
/freebsd/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/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 | 241 ? LocationSize::precise(MemoryType.getSizeInBytes()) in getSize()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalityPredicates.cpp | 189 Query.MMODescrs[MMOIdx].MemoryTy.getSizeInBytes()); in memSizeInBytesNotPow2() 197 !llvm::has_single_bit<uint32_t>(MemTy.getSizeInBytes()); in memSizeNotByteSizePow2()
|
H A D | LoadStoreOpt.cpp | 430 << NV("OrigWidth", SmallTy.getSizeInBytes()) in doSingleStoreMerge() 432 << NV("NewWidth", WideValueTy.getSizeInBytes()) << " bytes"; in doSingleStoreMerge() 549 BIO.getOffset() < static_cast<int64_t>(ValueTy.getSizeInBytes())) in addStoreToCandidate() 575 static_cast<int64_t>(ValueTy.getSizeInBytes())) != BIO.getOffset()) in addStoreToCandidate() 580 C.CurrentLowestOffset = C.CurrentLowestOffset - ValueTy.getSizeInBytes(); in addStoreToCandidate()
|
H A D | LegalizerHelper.cpp | 734 uint64_t MemSize = MemType.getSizeInBytes(); in getOutlineAtomicLibcall() 935 TypeSize StateSize = StateTy.getSizeInBytes(); in createGetStateLibcall() 975 TypeSize StateSize = StateTy.getSizeInBytes(); in createSetStateLibcall() 3479 unsigned MemStoreSizeInBits = 8 * MemTy.getSizeInBytes(); in lowerLoad() 3621 unsigned StoreSizeInBits = 8 * MemTy.getSizeInBytes(); in lowerStore() 4124 return std::max(Align(PowerOf2Ceil(Ty.getSizeInBytes())), MinAlign); in getStackTemporaryAlignment() 7561 unsigned EltBytes = EltTy.getSizeInBytes(); in lowerExtractInsertVectorElt() 7567 TypeSize::getFixed(VecTy.getSizeInBytes()), VecAlign, PtrInfo); in lowerExtractInsertVectorElt() 7648 createStackTemporary(TypeSize::getFixed(VecTy.getSizeInBytes()), VecAlign, in lowerVECTOR_COMPRESS() 8680 while (Op.getDstAlign() < Ty.getSizeInBytes() && in findGISelOptimalMemOpLowering() [all …]
|
H A D | CallLowering.cpp | 886 ? PointerTy.getSizeInBytes() in handleAssignments() 887 : MemTy.getSizeInBytes(), in handleAssignments()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | MemoryOpRemark.cpp | 150 getSizeInBytes(std::optional<uint64_t> SizeInBits) { in getSizeInBytes() function 326 std::optional<uint64_t> DISize = getSizeInBytes(DILV->getSizeInBits()); in visitVariable()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineFunction.cpp | 1376 unsigned MachineConstantPoolValue::getSizeInBytes(const DataLayout &DL) const { in getSizeInBytes() function in MachineConstantPoolValue 1380 unsigned MachineConstantPoolEntry::getSizeInBytes(const DataLayout &DL) const { in getSizeInBytes() function in MachineConstantPoolEntry 1382 return Val.MachineCPVal->getSizeInBytes(DL); in getSizeInBytes() 1396 switch (getSizeInBytes(*DL)) { in getSectionKind()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64PostLegalizerLowering.cpp | 426 std::min<uint64_t>(VecTy.getSizeInBytes().getKnownMinValue(), 16)); in applyNonConstInsert() 427 int FrameIdx = MF.getFrameInfo().CreateStackObject(VecTy.getSizeInBytes(), in applyNonConstInsert() 441 auto EltSize = Builder.buildConstant(IdxTy, EltTy.getSizeInBytes()); in applyNonConstInsert() 1113 if (!LowestVal || LowestVal->Value.getZExtValue() != DstTy.getSizeInBytes()) in matchUnmergeExtToUnmerge()
|
H A D | AArch64PostLegalizerCombiner.cpp | 668 (Last.Offset + static_cast<int64_t>(Last.StoredType.getSizeInBytes()) != in optimizeConsecutiveMemOpAddressing()
|
H A D | AArch64InstructionSelector.cpp | 3309 if (BytesLoaded < 4 && SrcTy.getSizeInBytes() == BytesLoaded) in select() 5503 unsigned MemSize = Ld.getMMO().getMemoryType().getSizeInBytes(); in selectIndexedLoad() 5505 if (MemSize < MRI.getType(Dst).getSizeInBytes()) in selectIndexedLoad() 5562 Opc = FPROpcodes[Log2_32(ValTy.getSizeInBytes())]; in selectIndexedStore() 5564 Opc = GPROpcodes[Log2_32(ValTy.getSizeInBytes())]; in selectIndexedStore() 5574 Opc = FPROpcodes[Log2_32(ValTy.getSizeInBytes())]; in selectIndexedStore() 5576 Opc = GPROpcodes[Log2_32(ValTy.getSizeInBytes())]; in selectIndexedStore()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TypeMetadataUtils.cpp | 158 if (Offset >= SL->getSizeInBytes()) in getPointerAtOffset()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/ |
H A D | RISCVCallLowering.cpp | 143 MemTy.getSizeInBytes(), VAHi.getLocMemOffset(), MPO, Arg.Flags[0]); in assignCustomValue() 268 MemTy.getSizeInBytes(), VAHi.getLocMemOffset(), MPO, Arg.Flags[0]); in assignCustomValue()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGenTypes/ |
H A D | LowLevelType.h | 203 constexpr TypeSize getSizeInBytes() const { in getSizeInBytes() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DataLayout.h | 629 TypeSize getSizeInBytes() const { return StructSize; } in getSizeInBytes() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCExpr.h | 170 unsigned getSizeInBytes() const { in getSizeInBytes() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
H A D | BPFISelDAGToDAG.cpp | 356 DL.getStructLayout(cast<StructType>(CS->getType()))->getSizeInBytes(); in getConstantFieldValue()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCExpr.cpp | 47 auto SizeInBytes = cast<MCConstantExpr>(*this).getSizeInBytes(); in print()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DataLayout.cpp | 985 if (IntOffset >= SL->getSizeInBytes()) in getGEPIndexForOffset()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYConstantIslandPass.cpp | 397 unsigned Size = CPs[I].getSizeInBytes(TD); in doInitialPlacement()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | SROA.cpp | 4227 if (Offset >= SL->getSizeInBytes()) in getTypePartition() 4230 if (EndOffset > SL->getSizeInBytes()) in getTypePartition() 4254 if (EndOffset < SL->getSizeInBytes()) { in getTypePartition() 4274 if (Size != SubSL->getSizeInBytes()) in getTypePartition()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsConstantIslandPass.cpp | 555 unsigned Size = CPs[i].getSizeInBytes(TD); in doInitialPlacement()
|