Home
last modified time | relevance | path

Searched refs:GVSize (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerModuleLDSPass.cpp1135 TypeSize GVSize = DL.getTypeAllocSize(GV.getValueType()); in superAlignLDSGlobals() local
1137 if (GVSize > 8) { in superAlignLDSGlobals()
1140 } else if (GVSize > 4) { in superAlignLDSGlobals()
1143 } else if (GVSize > 2) { in superAlignLDSGlobals()
1146 } else if (GVSize > 1) { in superAlignLDSGlobals()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp896 uint64_t GVSize = DL.getTypeAllocSize(C->getType()); in foldPatternedLoads()
897 if (!GVSize || 4096 < GVSize) in foldPatternedLoads() local
917 unsigned E = GVSize - DL.getTypeStoreSize(LoadTy); in foldPatternedLoads()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp106 size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy); in Create() local
108 alignTo(sizeof(GVMemoryBlock), TD.getPreferredAlign(GV)) + GVSize); in Create()
1329 size_t GVSize = (size_t)getDataLayout().getTypeAllocSize(ElTy); in emitGlobalVariable() local
1330 NumInitBytes += (unsigned)GVSize; in emitGlobalVariable()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp842 uint64_t GVSize = 1; in updateVariableDieMap() local
845 GVSize = *Size; in updateVariableDieMap()
848 VariableDieMap[Address] = {Address + GVSize, Die}; in updateVariableDieMap()