Lines Matching defs:aggName
1051 /// by \p aggregate. The global is named \p aggName and is created with
1062 llvm::StringRef aggName, mlir::StringAttr linkage) {
1065 fir::GlobalOp global = builder.getNamedGlobal(aggName);
1071 global = builder.createGlobal(loc, aggTy, aggName, linkage);
1100 /// by \p aggregate. The global is named \p aggName and is created with
1110 llvm::StringRef aggName, mlir::StringAttr linkage) {
1113 if (fir::GlobalOp global = builder.getNamedGlobal(aggName))
1116 return builder.createGlobal(loc, aggTy, aggName, linkage);
1129 std::string aggName =
1138 global = declareGlobalAggregateStore(converter, loc, aggregate, aggName,
1142 defineGlobalAggregateStore(converter, aggregate, aggName, linkage);
1159 builder.allocateLocal(loc, seqTy, aggName, "", std::nullopt, std::nullopt,
2372 std::string aggName = mangleGlobalAggregateStore(converter, aggregate);
2373 defineGlobalAggregateStore(converter, aggregate, aggName, linkage);