Lines Matching refs:DL

35                                   const DataLayout &DL, char Prefix) {  in getNameWithPrefixImpl()  argument
47 if (DL.doNotMangleLeadingQuestionMark() && Name[0] == '?') in getNameWithPrefixImpl()
51 OS << DL.getPrivateGlobalPrefix(); in getNameWithPrefixImpl()
53 OS << DL.getLinkerPrivateGlobalPrefix(); in getNameWithPrefixImpl()
63 const DataLayout &DL, in getNameWithPrefixImpl() argument
65 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefixImpl()
66 return getNameWithPrefixImpl(OS, GVName, PrefixTy, DL, Prefix); in getNameWithPrefixImpl()
70 const DataLayout &DL) { in getNameWithPrefix() argument
71 return getNameWithPrefixImpl(OS, GVName, DL, Default); in getNameWithPrefix()
75 const Twine &GVName, const DataLayout &DL) { in getNameWithPrefix() argument
77 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix()
78 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix); in getNameWithPrefix()
95 const DataLayout &DL) { in addByteCountSuffix() argument
99 const unsigned PtrSize = DL.getPointerSize(); in addByteCountSuffix()
109 A.getPassPointeeByValueCopySize(DL) : in addByteCountSuffix()
110 DL.getTypeAllocSize(A.getType()); in addByteCountSuffix()
129 const DataLayout &DL = GV->getParent()->getDataLayout(); in getNameWithPrefix() local
138 getNameWithPrefixImpl(OS, "__unnamed_" + Twine(ID), DL, PrefixTy); in getNameWithPrefix()
143 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix()
152 (DL.doNotMangleLeadingQuestionMark() && Name.startswith("?"))) in getNameWithPrefix()
157 if (!DL.hasMicrosoftFastStdCallMangling() && in getNameWithPrefix()
167 getNameWithPrefixImpl(OS, Name, PrefixTy, DL, Prefix); in getNameWithPrefix()
182 addByteCountSuffix(OS, MSFunc, DL); in getNameWithPrefix()