Lines Matching refs:DL

37                                   const DataLayout &DL, char Prefix) {  in getNameWithPrefixImpl()  argument
49 if (DL.doNotMangleLeadingQuestionMark() && Name[0] == '?') in getNameWithPrefixImpl()
53 OS << DL.getPrivateGlobalPrefix(); in getNameWithPrefixImpl()
55 OS << DL.getLinkerPrivateGlobalPrefix(); in getNameWithPrefixImpl()
65 const DataLayout &DL, in getNameWithPrefixImpl() argument
67 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefixImpl()
68 return getNameWithPrefixImpl(OS, GVName, PrefixTy, DL, Prefix); in getNameWithPrefixImpl()
72 const DataLayout &DL) { in getNameWithPrefix() argument
73 return getNameWithPrefixImpl(OS, GVName, DL, Default); in getNameWithPrefix()
77 const Twine &GVName, const DataLayout &DL) { in getNameWithPrefix() argument
79 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix()
80 return getNameWithPrefixImpl(OS, GVName, Default, DL, Prefix); in getNameWithPrefix()
97 const DataLayout &DL) { in addByteCountSuffix() argument
101 const unsigned PtrSize = DL.getPointerSize(); in addByteCountSuffix()
111 A.getPassPointeeByValueCopySize(DL) : in addByteCountSuffix()
112 DL.getTypeAllocSize(A.getType()); in addByteCountSuffix()
132 const DataLayout &DL = GV->getDataLayout(); in getNameWithPrefix() local
141 getNameWithPrefixImpl(OS, "__unnamed_" + Twine(ID), DL, PrefixTy); in getNameWithPrefix()
146 char Prefix = DL.getGlobalPrefix(); in getNameWithPrefix()
155 (DL.doNotMangleLeadingQuestionMark() && Name.starts_with("?"))) in getNameWithPrefix()
160 if (!DL.hasMicrosoftFastStdCallMangling() && in getNameWithPrefix()
170 getNameWithPrefixImpl(OS, Name, PrefixTy, DL, Prefix); in getNameWithPrefix()
185 addByteCountSuffix(OS, MSFunc, DL); in getNameWithPrefix()