Home
last modified time | relevance | path

Searched refs:VarSize (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDANV.cpp604 uint64_t VarSize = in makeRegisterGlobalsFn() local
626 llvm::ConstantInt::get(VarSizeTy, VarSize), in makeRegisterGlobalsFn()
637 llvm::ConstantInt::get(VarSizeTy, VarSize), in makeRegisterGlobalsFn()
1127 uint64_t VarSize = in createOffloadingEntries() local
1141 M, I.Var, getDeviceSideName(I.D), VarSize, in createOffloadingEntries()
1148 M, I.Var, getDeviceSideName(I.D), VarSize, in createOffloadingEntries()
1153 M, I.Var, getDeviceSideName(I.D), VarSize, in createOffloadingEntries()
H A DCGDecl.cpp362 CharUnits VarSize = CGM.getContext().getTypeSizeInChars(D.getType()) + in AddInitializerToStaticVarDecl() local
366 assert(VarSize == CstSize && "Emitted constant has unexpected size"); in AddInitializerToStaticVarDecl()
H A DCodeGenModule.cpp5359 CharUnits VarSize = getContext().getTypeSizeInChars(ASTTy) + in EmitGlobalVarDefinition() local
5363 assert(VarSize == CstSize && "Emitted constant has unexpected size"); in EmitGlobalVarDefinition()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h357 int64_t VarSize; variable
368 int64_t VarSize, in OffloadEntryInfoDeviceGlobalVar() argument
373 VarSize(VarSize), Linkage(Linkage), VarName(VarName) { in OffloadEntryInfoDeviceGlobalVar()
377 int64_t getVarSize() const { return VarSize; } in getVarSize()
379 void setVarSize(int64_t Size) { VarSize = Size; } in setVarSize()
395 int64_t VarSize,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp431 uint64_t VarSize) { in transferSRADebugInfo() argument
482 if (FragmentSizeInBits < VarSize) { in transferSRADebugInfo()
556 uint64_t VarSize = DL.getTypeSizeInBits(GV->getValueType()); in SRAGlobal() local
578 DL.getTypeAllocSizeInBits(Ty), VarSize); in SRAGlobal()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp6734 int64_t VarSize; in registerTargetGlobalVariable() local
6746 VarSize = divideCeil( in registerTargetGlobalVariable()
6749 VarSize = 0; in registerTargetGlobalVariable()
6789 VarSize = M.getDataLayout().getPointerSize(); in registerTargetGlobalVariable()
6793 OffloadInfoManager.registerDeviceGlobalVarEntryInfo(VarName, Addr, VarSize, in registerTargetGlobalVariable()
6994 StringRef VarName, Constant *Addr, int64_t VarSize, in registerDeviceGlobalVarEntryInfo() argument
7003 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
7008 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
7017 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
7024 Addr, VarSize, Flags, Linkage, in registerDeviceGlobalVarEntryInfo()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp5100 auto VarSize = DbgVariable->getVariable()->getSizeInBits(); in splitAlloca() local
5101 if (VarSize) { in splitAlloca()
5102 if (Size > *VarSize) in splitAlloca()
5103 Size = *VarSize; in splitAlloca()
5104 if (Size == 0 || Start + Size > *VarSize) in splitAlloca()
5109 if (!VarSize || *VarSize != Size) { in splitAlloca()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp6518 auto VarSize = V.getSizeInBits(); in verifyFragmentExpression() local
6519 if (!VarSize) in verifyFragmentExpression()
6524 CheckDI(FragSize + FragOffset <= *VarSize, in verifyFragmentExpression()
6526 CheckDI(FragSize != *VarSize, "fragment covers entire variable", Desc, &V); in verifyFragmentExpression()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1646 if (auto VarSize = Var->getSizeInBits()) in handleDebugValue() local
1647 BitsToDescribe = *VarSize; in handleDebugValue()