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