Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h558 CharUnits VarSize; variable
568 unsigned Order, llvm::Constant *Addr, CharUnits VarSize, in OffloadEntryInfoDeviceGlobalVar() argument
572 VarSize(VarSize), Linkage(Linkage) { in OffloadEntryInfoDeviceGlobalVar()
576 CharUnits getVarSize() const { return VarSize; } in getVarSize()
577 void setVarSize(CharUnits Size) { VarSize = Size; } in setVarSize()
593 CharUnits VarSize,
H A DCGCUDANV.cpp293 uint64_t VarSize = in makeRegisterGlobalsFn() local
301 llvm::ConstantInt::get(IntTy, VarSize), in makeRegisterGlobalsFn()
H A DCGOpenMPRuntime.cpp3725 CharUnits VarSize, in registerDeviceGlobalVarEntryInfo() argument
3737 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
3743 VarName, OffloadingEntriesNum, Addr, VarSize, Flags, Linkage); in registerDeviceGlobalVarEntryInfo()
8717 CharUnits VarSize; in registerTargetGlobalVariable() local
8724 VarSize = CGM.getContext().getTypeSizeInChars(VD->getType()); in registerTargetGlobalVariable()
8725 assert(!VarSize.isZero() && "Expected non-zero size of the variable"); in registerTargetGlobalVariable()
8727 VarSize = CharUnits::Zero(); in registerTargetGlobalVariable()
8753 VarSize = CGM.getPointerSize(); in registerTargetGlobalVariable()
8758 VarName, Addr, VarSize, Flags, Linkage); in registerTargetGlobalVariable()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DSROA.cpp4291 auto VarSize = Var->getSizeInBits(); in splitAlloca() local
4321 if (VarSize) { in splitAlloca()
4322 if (Size > *VarSize) in splitAlloca()
4323 Size = *VarSize; in splitAlloca()
4324 if (Size == 0 || Start + Size > *VarSize) in splitAlloca()
4329 if (!VarSize || *VarSize != Size) { in splitAlloca()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DVerifier.cpp4729 auto VarSize = V.getSizeInBits(); in verifyFragmentExpression() local
4730 if (!VarSize) in verifyFragmentExpression()
4735 AssertDI(FragSize + FragOffset <= *VarSize, in verifyFragmentExpression()
4737 AssertDI(FragSize != *VarSize, "fragment covers entire variable", Desc, &V); in verifyFragmentExpression()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5360 if (auto VarSize = Variable->getSizeInBits()) in visitIntrinsicCall() local
5361 BitsToDescribe = *VarSize; in visitIntrinsicCall()