File: BuiltinTypes.cpp

package info (click to toggle)
intel-graphics-compiler2 2.28.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 792,744 kB
  • sloc: cpp: 5,761,745; ansic: 466,928; lisp: 312,143; python: 114,790; asm: 44,736; pascal: 10,930; sh: 8,033; perl: 7,914; ml: 3,625; awk: 3,523; yacc: 2,747; javascript: 2,667; lex: 1,898; f90: 1,028; cs: 573; xml: 474; makefile: 344; objc: 162
file content (433 lines) | stat: -rw-r--r-- 13,647 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/*========================== begin_copyright_notice ============================

Copyright (C) 2025 Intel Corporation

SPDX-License-Identifier: MIT

============================= end_copyright_notice ===========================*/

#include "common/BuiltinTypes.h"

#include "common/LLVMWarningsPush.hpp"
#include <llvm/ADT/SmallVector.h>
#include <llvm/ADT/StringRef.h>
#include <llvm/IR/Attributes.h>
#include <llvm/IR/Constants.h>
#include <llvm/IR/DerivedTypes.h>
#include <llvm/IR/Function.h>
#include <llvm/IR/IRBuilder.h>
#include <llvm/IR/Instructions.h>
#include <llvm/IR/Module.h>
#include <llvm/Support/Casting.h>
#include "llvmWrapper/IR/Type.h"
#include <llvm/Transforms/Utils/Cloning.h>
#include "common/LLVMWarningsPop.hpp"

#include "Compiler/CodeGenPublicEnums.h"
#include "Probe/Assertion.h"

using namespace llvm;

namespace IGC {
bool isTargetExtTy(const Type *Ty) {
#if LLVM_VERSION_MAJOR >= 16
  return Ty->isTargetExtTy();
#endif
  return false;
}

bool isImageBuiltinType(const Type *BuiltinTy) {
  if (BuiltinTy->isPointerTy() && !IGCLLVM::isPointerTy(BuiltinTy))
    BuiltinTy = IGCLLVM::getNonOpaquePtrEltTy(BuiltinTy);

  if (const StructType *StructTy = dyn_cast<StructType>(BuiltinTy); StructTy && StructTy->isOpaque()) {
    StringRef BuiltinName = StructTy->getName();
    SmallVector<StringRef, 3> Buffer;
    BuiltinName.split(Buffer, ".");
    if (Buffer.size() < 2)
      return false;
    bool IsOpenCLImage = Buffer[0].equals("opencl") && Buffer[1].startswith("image") && Buffer[1].endswith("_t");
    bool IsSPIRVImage =
        Buffer[0].equals("spirv") && (Buffer[1].startswith("Image") || Buffer[1].startswith("SampledImage"));

    if (IsOpenCLImage || IsSPIRVImage)
      return true;
  }
#if LLVM_VERSION_MAJOR >= 16
  else if (const TargetExtType *ExtTy = dyn_cast<TargetExtType>(BuiltinTy);
           ExtTy && (ExtTy->getName() == "spirv.Image" || ExtTy->getName() == "spirv.SampledImage")) {
    return true;
  }
#endif

  return false;
}

#if LLVM_VERSION_MAJOR >= 16
static bool isNonOpenCLBuiltinType(const Type *Ty) {
  const TargetExtType *TET = dyn_cast<TargetExtType>(Ty);
  if (!TET)
    return false;

  StringRef Name = TET->getTargetExtName();
  return Name.starts_with("spirv.CooperativeMatrixKHR") || Name.starts_with("spirv.JointMatrixINTEL");
}

static bool isOpenCLTargetExtType(const Type *Ty) { return isTargetExtTy(Ty) && !isNonOpenCLBuiltinType(Ty); }

static bool isStructWithOpenCLTargetExtTyInside(const Type *Ty) {
  const StructType *ST = dyn_cast<StructType>(Ty);
  if (!ST || ST->isOpaque())
    return false;

  for (Type *EltTy : ST->elements()) {
    if (isOpenCLTargetExtType(EltTy))
      return true;

    if (auto *NestedST = dyn_cast<StructType>(EltTy))
      if (isStructWithOpenCLTargetExtTyInside(NestedST))
        return true;
  }
  return false;
}

static bool checkIfNeedsRetyping(const Type *Ty) {
  return isOpenCLTargetExtType(Ty) || isStructWithOpenCLTargetExtTyInside(Ty);
}

static bool isAnyArgOpenCLTargetExtTy(const Function &F) {
  for (const Argument &A : F.args()) {
    const Type *ArgTy = A.getType();
    if (checkIfNeedsRetyping(ArgTy))
      return true;

    if (A.hasStructRetAttr() && checkIfNeedsRetyping(A.getParamStructRetType()))
      return true;

    if (A.hasByValAttr() && checkIfNeedsRetyping(A.getParamByValType()))
      return true;

    if (A.hasByRefAttr() && checkIfNeedsRetyping(A.getParamByRefType()))
      return true;
  }

  return false;
}

namespace {
class OpenCLTargetExtTypeMapper : public ValueMapTypeRemapper {
public:
  OpenCLTargetExtTypeMapper(Function &F, DenseMap<StructType *, StructType *> &TETtoRetypedStructs)
      : Fn(F), Ctx(F.getContext()), TETtoRetypedStructs(TETtoRetypedStructs) {}

  Type *remapType(Type *SrcTy) override {
    if (!SrcTy)
      return SrcTy;

    if (auto *FTy = dyn_cast<FunctionType>(SrcTy))
      return remapFunctionType(FTy);

    if (auto *TET = dyn_cast<TargetExtType>(SrcTy))
      return remapTargetExtType(TET);

    if (auto *ST = dyn_cast<StructType>(SrcTy))
      return remapStructType(ST);

    // Possibly no need to retype, otherwise new cases need to be added (above).
    return SrcTy;
  }

private:
  Function &Fn;
  LLVMContext &Ctx;
  DenseMap<StructType *, StructType *> &TETtoRetypedStructs;

  FunctionType *remapFunctionType(FunctionType *FTy) {
    SmallVector<Type *, 6> NewParamTys;
    NewParamTys.reserve(FTy->getNumParams());
    bool AnyChange = false;

    for (Type *ParamTy : FTy->params()) {
      Type *NewParamTy = remapType(ParamTy);
      if (NewParamTy != ParamTy)
        AnyChange = true;
      NewParamTys.push_back(NewParamTy);
    }

    Type *RetType = FTy->getReturnType();
    Type *NewRetTy = remapType(RetType);
    if (NewRetTy != RetType)
      AnyChange = true;

    if (!AnyChange) {
      return FTy;
    }
    return FunctionType::get(NewRetTy, NewParamTys, FTy->isVarArg());
  }

  Type *remapTargetExtType(TargetExtType *TET) {
    if (isNonOpenCLBuiltinType(TET))
      return TET;

    StringRef TyName = TET->getName();
    unsigned AS = ADDRESS_SPACE_PRIVATE;
    if (TyName.startswith("spirv.Image"))
      AS = ADDRESS_SPACE_GLOBAL;
    else if (TyName.startswith("spirv.Sampler"))
      AS = ADDRESS_SPACE_CONSTANT;

    return PointerType::get(Ctx, AS);
  }

  Type *remapStructType(StructType *StructTy) {
    if (!StructTy || StructTy->isOpaque()) {
      return StructTy;
    }

    // Scan first to avoid unnecessary retyping/cloning.
    if (!isStructWithOpenCLTargetExtTyInside(StructTy))
      return StructTy;

    return cloneStructRetyped(StructTy);
  }

  StructType *cloneStructRetyped(StructType *Old) {
    // Reuse mapping if already retyped.
    auto It = TETtoRetypedStructs.find(Old);
    if (It != TETtoRetypedStructs.end()) {
      return It->second;
    }

    std::string OrigName = Old->getName().str();
    Old->setName(OrigName + ".preretype");

    // Early insert placeholder to break cycles.
    StructType *NewST = StructType::create(Ctx, OrigName);
    TETtoRetypedStructs[Old] = NewST;

    SmallVector<Type *, 8> NewElems;
    NewElems.reserve(Old->getNumElements());
    bool AnyChange = false;
    for (Type *Elt : Old->elements()) {
      Type *NewElt = remapType(Elt);
      if (NewElt != Elt)
        AnyChange = true;
      NewElems.push_back(NewElt);
    }

    if (!AnyChange) {
      // No change, reuse original and discard temp.
      TETtoRetypedStructs[Old] = Old;
      return Old;
    }

    NewST->setBody(NewElems, Old->isPacked());
    return NewST;
  }
};
} // namespace

void retypeOpenCLTargetExtTyAsPointers(Module *M) {
  struct FunctionSignatureChange {
    FunctionType *NewFuncTy;
    AttributeList NewAttrs;
  };

  // Global mapping between TargetExtTy structs and their retyped variant (they are shared between functions).
  DenseMap<StructType *, StructType *> TETtoRetypedStructs;
  MapVector<Function *, FunctionSignatureChange> PendingSigChanges;

  // Remap bodies and collect function signature changes.
  for (Function &F : *M) {
    bool ArgsOrRetTypeNeedsRetyping = isAnyArgOpenCLTargetExtTy(F) || checkIfNeedsRetyping(F.getReturnType());

    // Need to process declarations that have TargetExtTy return/args, skip others.
    if (F.isDeclaration() && !ArgsOrRetTypeNeedsRetyping)
      continue;

    // Scan function to see if it uses TargetExtTy.
    bool UsesTargetExt = ArgsOrRetTypeNeedsRetyping;
    if (!UsesTargetExt && !F.isDeclaration()) {
      for (BasicBlock &BB : F) {
        for (Instruction &I : BB) {
          Type *Ty = I.getType();
          if (checkIfNeedsRetyping(Ty)) {
            UsesTargetExt = true;
            break;
          }
          // Also scan operand types (structs carrying TargetExt).
          for (Value *Op : I.operands()) {
            if (auto *OpTy = Op->getType(); checkIfNeedsRetyping(OpTy)) {
              UsesTargetExt = true;
              break;
            }
          }
          if (auto *GEP = dyn_cast<GetElementPtrInst>(&I)) {
            Type *SrcElemTy = GEP->getSourceElementType();
            if (checkIfNeedsRetyping(SrcElemTy)) {
              UsesTargetExt = true;
              break;
            }
          }
          if (auto *AI = dyn_cast<AllocaInst>(&I)) {
            Type *AllocatedTy = AI->getAllocatedType();
            if (checkIfNeedsRetyping(AllocatedTy)) {
              UsesTargetExt = true;
              break;
            }
          }

          if (UsesTargetExt)
            break;
        }
        if (UsesTargetExt)
          break;
      }
    }

    // If neither args/return/instructions use OpenCL TargetExtTy, skip.
    if (!UsesTargetExt)
      continue;

    OpenCLTargetExtTypeMapper Mapper(F, TETtoRetypedStructs);
    ValueToValueMapTy VM;

    // Handle constants of target extension types.
    for (BasicBlock &BB : F) {
      for (Instruction &I : BB) {
        for (Use &U : I.operands()) {
          if (Constant *C = dyn_cast<Constant>(U.get())) {
            Type *Ty = C->getType();
            if (checkIfNeedsRetyping(Ty)) {
              Type *NewTy = Mapper.remapType(Ty);
              if (NewTy != Ty) {
                VM[C] = Constant::getNullValue(NewTy);
              }
            }
          }
        }
      }
    }

    RemapFunction(F, VM, RF_IgnoreMissingLocals | RF_ReuseAndMutateDistinctMDs, &Mapper);

    // We only need to replace function whose signature changes.
    if (ArgsOrRetTypeNeedsRetyping) {
      // Remap function argument and return types.
      FunctionType *NewFTy = cast<FunctionType>(Mapper.remapType(F.getFunctionType()));

      // Remap types used in attributes.
      AttributeList OldAttrs = F.getAttributes();
      SmallVector<AttributeSet, 8> NewArgAttrs;
      NewArgAttrs.reserve(OldAttrs.getNumAttrSets());
      bool AttrsChanged = false;

      for (const Argument &Arg : F.args()) {
        AttributeSet Attrs = OldAttrs.getParamAttrs(Arg.getArgNo());
        if (Attrs.hasAttribute(llvm::Attribute::StructRet)) {
          Type *OldSRetTy = Arg.getParamStructRetType();
          Type *NewSRetTy = Mapper.remapType(OldSRetTy);
          if (NewSRetTy != OldSRetTy) {
            AttrBuilder AB(M->getContext(), Attrs);
            AB.removeAttribute(llvm::Attribute::StructRet);
            AB.addStructRetAttr(NewSRetTy);
            Attrs = AttributeSet::get(M->getContext(), AB);
            AttrsChanged = true;
          }
        }
        if (Attrs.hasAttribute(llvm::Attribute::ByVal)) {
          Type *OldByValTy = Arg.getParamByValType();
          Type *NewByValTy = Mapper.remapType(OldByValTy);
          if (NewByValTy != OldByValTy) {
            AttrBuilder AB(M->getContext(), Attrs);
            AB.removeAttribute(llvm::Attribute::ByVal);
            AB.addByValAttr(NewByValTy);
            Attrs = AttributeSet::get(M->getContext(), AB);
            AttrsChanged = true;
          }
        }
        if (Attrs.hasAttribute(llvm::Attribute::ByRef)) {
          Type *OldByRefTy = Arg.getParamByRefType();
          Type *NewByRefTy = Mapper.remapType(OldByRefTy);
          if (NewByRefTy != OldByRefTy) {
            AttrBuilder AB(M->getContext(), Attrs);
            AB.removeAttribute(llvm::Attribute::ByRef);
            AB.addByRefAttr(NewByRefTy);
            Attrs = AttributeSet::get(M->getContext(), AB);
            AttrsChanged = true;
          }
        }
        NewArgAttrs.push_back(Attrs);
      }

      AttributeList NewAttrs =
          AttrsChanged ? AttributeList::get(M->getContext(), OldAttrs.getFnAttrs(), OldAttrs.getRetAttrs(), NewArgAttrs)
                       : OldAttrs;

      PendingSigChanges.insert(std::make_pair(&F, FunctionSignatureChange{NewFTy, NewAttrs}));
    }
  }

  // Replace functions with changed signatures.
  for (auto &KV : PendingSigChanges) {
    Function *OldF = KV.first;
    FunctionSignatureChange Change = KV.second;

    // Preserve original name to restore after erasing OldF.
    std::string OldName = OldF->getName().str();

    // Create new function with same linkage & addr space (temporary unique name).
    Function *NewF = Function::Create(Change.NewFuncTy, OldF->getLinkage(), OldF->getAddressSpace(), OldName, M);

    // Set remapped attributes.
    NewF->setAttributes(Change.NewAttrs);

    // Copy calling convention, comdat.
    NewF->setCallingConv(OldF->getCallingConv());
    if (OldF->getComdat())
      NewF->setComdat(OldF->getComdat());

    // Transfer debug subprogram (if any).
    if (OldF->getSubprogram()) {
      NewF->setSubprogram(OldF->getSubprogram());
      OldF->setSubprogram(nullptr);
    }

    // Copy all function-level metadata (except dbg already handled via Subprogram).
    {
      SmallVector<std::pair<unsigned, MDNode *>, 8> MDs;
      OldF->getAllMetadata(MDs);
      unsigned DbgKind = M->getContext().getMDKindID("dbg");
      for (auto &MDPair : MDs) {
        if (MDPair.first == DbgKind)
          continue; // Avoid duplicating debug info.
        NewF->setMetadata(MDPair.first, MDPair.second);
      }
    }

    // Move body (for definitions).
    if (!OldF->isDeclaration()) {
      NewF->splice(NewF->begin(), OldF);
    }

    // Map arguments.
    auto OldIt = OldF->arg_begin();
    auto NewIt = NewF->arg_begin();
    for (; OldIt != OldF->arg_end(); ++OldIt, ++NewIt) {
      NewIt->takeName(&*OldIt);
      OldIt->replaceAllUsesWith(&*NewIt);
    }

    // Redirect users then remove old.
    OldF->replaceAllUsesWith(NewF);
    OldF->eraseFromParent();

    // Restore original name.
    if (NewF->getName() != OldName)
      NewF->setName(OldName);
  }
}

#endif // LLVM_VERSION_MAJOR >= 16

} // namespace IGC