Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h2071 int64_t VarSize; variable
2081 int64_t VarSize, in OffloadEntryInfoDeviceGlobalVar() argument
2085 VarSize(VarSize), Linkage(Linkage) { in OffloadEntryInfoDeviceGlobalVar()
2089 int64_t getVarSize() const { return VarSize; } in getVarSize()
2090 void setVarSize(int64_t Size) { VarSize = Size; } in setVarSize()
2106 int64_t VarSize,
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCUDANV.cpp611 uint64_t VarSize = in makeRegisterGlobalsFn() local
633 llvm::ConstantInt::get(VarSizeTy, VarSize), in makeRegisterGlobalsFn()
644 llvm::ConstantInt::get(VarSizeTy, VarSize), in makeRegisterGlobalsFn()
1139 uint64_t VarSize = in createOffloadingEntries() local
1143 I.Var, getDeviceSideName(I.D), VarSize, in createOffloadingEntries()
1148 OMPBuilder.emitOffloadingEntry(I.Var, getDeviceSideName(I.D), VarSize, in createOffloadingEntries()
1152 OMPBuilder.emitOffloadingEntry(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 DCGOpenMPRuntime.cpp10363 int64_t VarSize; in registerTargetGlobalVariable() local
10372 VarSize = in registerTargetGlobalVariable()
10374 assert(VarSize != 0 && "Expected non-zero size of the variable"); in registerTargetGlobalVariable()
10376 VarSize = 0; in registerTargetGlobalVariable()
10414 VarSize = CGM.getPointerSize().getQuantity(); in registerTargetGlobalVariable()
10419 VarName, Addr, VarSize, Flags, Linkage); in registerTargetGlobalVariable()
H A DCodeGenModule.cpp4910 CharUnits VarSize = getContext().getTypeSizeInChars(ASTTy) + in EmitGlobalVarDefinition() local
4914 assert(VarSize == CstSize && "Emitted constant has unexpected size"); in EmitGlobalVarDefinition()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DSROA.cpp174 if (auto VarSize = DbgAssign->getVariable()->getSizeInBits()) in migrateDebugInfo() local
175 return *VarSize; in migrateDebugInfo()
4910 auto VarSize = DbgDeclare->getVariable()->getSizeInBits(); in splitAlloca() local
4911 if (VarSize) { in splitAlloca()
4912 if (Size > *VarSize) in splitAlloca()
4913 Size = *VarSize; in splitAlloca()
4914 if (Size == 0 || Start + Size > *VarSize) in splitAlloca()
4919 if (!VarSize || *VarSize != Size) { in splitAlloca()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp405 uint64_t VarSize) { in transferSRADebugInfo() argument
441 else if (FragmentSizeInBits < VarSize) { in transferSRADebugInfo()
513 uint64_t VarSize = DL.getTypeSizeInBits(GV->getValueType()); in SRAGlobal() local
537 VarSize); in SRAGlobal()
/openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp5100 StringRef VarName, Constant *Addr, int64_t VarSize, in registerDeviceGlobalVarEntryInfo() argument
5109 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
5114 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
5123 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
5129 Addr, VarSize, Flags, Linkage); in registerDeviceGlobalVarEntryInfo()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DVerifier.cpp6171 auto VarSize = V.getSizeInBits(); in verifyFragmentExpression() local
6172 if (!VarSize) in verifyFragmentExpression()
6177 CheckDI(FragSize + FragOffset <= *VarSize, in verifyFragmentExpression()
6179 CheckDI(FragSize != *VarSize, "fragment covers entire variable", Desc, &V); in verifyFragmentExpression()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1475 if (auto VarSize = Var->getSizeInBits()) in handleDebugValue() local
1476 BitsToDescribe = *VarSize; in handleDebugValue()