Searched refs:getSizeOf (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | Archive.cpp | 104 if (Size < getSizeOf()) { in ArchiveMemberHeader() 139 if (RawHeaderPtr + getSizeOf() >= Parent->getData().end()) { in BigArchiveMemberHeader() 146 if (Size < getSizeOf()) { in BigArchiveMemberHeader() 332 if (getSizeOf() + NameLength > Size) { in getName() 340 return StringRef(reinterpret_cast<const char *>(ArMemHdr) + getSizeOf(), in getName() 427 uint64_t Size = getSizeOf(); in getNextChildLoc() 495 uint64_t Size = Header->getSizeOf(); in Child() 514 StartOfFile = Header->getSizeOf(); in Child() 639 Header->getName(Header->getSizeOf() + RawSize); in getName()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonVectorCombine.cpp | 111 int getSizeOf(const Value *Val, SizeKind Kind = Store) const; 112 int getSizeOf(const Type *Ty, SizeKind Kind = Store) const; 761 assert(HVC.getSizeOf(ValTy, HVC.Alloc) % Alignment == 0); in createPredicatedLoad() 837 assert(HVC.getSizeOf(Val, HVC.Alloc) % Alignment == 0); in createPredicatedStore() 1505 VSpan.Blocks.emplace_back(AI.Inst, HVC.getSizeOf(AI.ValTy), in realignGroup() 1547 int Size = HVC.getSizeOf(Ty); in isSectorTy() 2239 auto HexagonVectorCombine::getSizeOf(const Value *Val, SizeKind Kind) const in getSizeOf() function in HexagonVectorCombine 2241 return getSizeOf(Val->getType(), Kind); in getSizeOf() 2244 auto HexagonVectorCombine::getSizeOf(const Type *Ty, SizeKind Kind) const in getSizeOf() function in HexagonVectorCombine 2314 int SrcLen = getSizeOf(Src); in insertb() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | Archive.h | 71 virtual uint64_t getSizeOf() const = 0; 87 uint64_t getSizeOf() const override { return sizeof(T); } in getSizeOf() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Constants.h | 1114 static Constant *getSizeOf(Type *Ty);
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Core.cpp | 1748 return wrap(ConstantExpr::getSizeOf(unwrap(Ty))); in LLVMSizeOf() 3801 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); in LLVMBuildMalloc() 3810 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); in LLVMBuildArrayMalloc()
|
H A D | IRBuilder.cpp | 1114 return CreateExactSDiv(Difference, ConstantExpr::getSizeOf(ElemTy), in CreatePtrDiff()
|
H A D | Constants.cpp | 2442 Constant *ConstantExpr::getSizeOf(Type* Ty) { in getSizeOf() function in ConstantExpr
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.cpp | 815 auto *ElemSizeOf = llvm::ConstantExpr::getSizeOf(ElemType); in emitAggregateType()
|