Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp894 uint64_t GVSize = DL.getTypeAllocSize(C->getType()); in foldPatternedLoads() local
895 if (!GVSize || 4096 < GVSize) in foldPatternedLoads()
915 unsigned E = GVSize - DL.getTypeStoreSize(LoadTy); in foldPatternedLoads()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerModuleLDSPass.cpp1345 TypeSize GVSize = DL.getTypeAllocSize(GV.getValueType()); in superAlignLDSGlobals() local
1347 if (GVSize > 8) { in superAlignLDSGlobals()
1350 } else if (GVSize > 4) { in superAlignLDSGlobals()
1353 } else if (GVSize > 2) { in superAlignLDSGlobals()
1356 } else if (GVSize > 1) { in superAlignLDSGlobals()
/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()
1331 size_t GVSize = (size_t)getDataLayout().getTypeAllocSize(ElTy); in emitGlobalVariable() local
1332 NumInitBytes += (unsigned)GVSize; in emitGlobalVariable()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp819 uint64_t GVSize = 1; in updateVariableDieMap() local
822 GVSize = *Size; in updateVariableDieMap()
825 VariableDieMap[Address] = {Address + GVSize, Die}; in updateVariableDieMap()