| /llvm-project-15.0.7/mlir/lib/Tools/PDLL/AST/ |
| H A D | TypeDetail.h | 86 std::make_pair(alloc.copyInto(key.first), key.second)); 117 key.second, [&](StringRef name) { return alloc.copyInto(name); })); 119 std::make_pair(alloc.copyInto(key.first), 120 alloc.copyInto(llvm::makeArrayRef(names))));
|
| /llvm-project-15.0.7/mlir/lib/IR/ |
| H A D | IntegerSetDetail.h | 49 res->constraints = allocator.copyInto(std::get<2>(key)); in construct() 50 res->eqFlags = allocator.copyInto(std::get<3>(key)); in construct()
|
| H A D | TypeDetail.h | 79 auto typesList = allocator.copyInto(ArrayRef<Type>(types)); in construct()
|
| H A D | ExtensibleDialect.cpp | 116 DynamicTypeStorage(key.first, alloc.copyInto(key.second)); in construct() 233 DynamicAttrStorage(key.first, alloc.copyInto(key.second)); in construct()
|
| H A D | AttributeDetail.h | 343 StringAttrStorage(allocator.copyInto(key.first), key.second); in construct()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/ |
| H A D | TypeDetail.h | 136 return Key(allocator.copyInto(name), opaque); in copyIntoAllocator() 137 return Key(allocator.copyInto(types), packed); in copyIntoAllocator() 247 ArrayRef<Type> typesInAllocator = allocator.copyInto(body); in mutate() 344 allocator.copyInto(std::get<1>(key)), in construct()
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/GPU/IR/ |
| H A D | GPUDialect.h | 64 ArrayRef<int64_t> shape = allocator.copyInto(std::get<0>(key)); in construct() 65 StringRef operand = allocator.copyInto(std::get<2>(key)); in construct()
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/Test/ |
| H A D | TestTypes.h | 39 return FieldInfo{alloc.copyInto(name), type}; in allocateInto() 112 TestRecursiveTypeStorage(allocator.copyInto(key));
|
| /llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/ |
| H A D | SPIRVTypes.cpp | 846 StringRef identifier = allocator.copyInto(keyIdentifier); in construct() 859 typesList = allocator.copyInto(keyTypes).data(); in construct() 868 offsetInfoList = allocator.copyInto(keyOffsetInfo).data(); in construct() 876 memberDecorationList = allocator.copyInto(keyMemberDecorations).data(); in construct() 934 allocator.copyInto(structMemberTypes).data()); in mutate() 940 offsetInfo = allocator.copyInto(structOffsetInfo).data(); in mutate() 946 allocator.copyInto(structMemberDecorationInfo).data(); in mutate()
|
| /llvm-project-15.0.7/mlir/include/mlir/Support/ |
| H A D | StorageUniquer.h | 98 ArrayRef<T> copyInto(ArrayRef<T> elements) { in copyInto() function 108 StringRef copyInto(StringRef str) { in copyInto() function
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Quant/IR/ |
| H A D | TypeDetail.h | 234 ArrayRef<double> scales = allocator.copyInto(key.scales); in construct() 235 ArrayRef<int64_t> zeroPoints = allocator.copyInto(key.zeroPoints); in construct()
|
| /llvm-project-15.0.7/mlir/lib/Conversion/PDLToPDLInterp/ |
| H A D | Predicate.h | 462 return Base::construct(alloc, KeyTy{alloc.copyInto(std::get<0>(key)), in construct() 463 alloc.copyInto(std::get<1>(key))}); in construct()
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | AttrTypeBase.td | 347 let allocator = [{$_dst = $_allocator.copyInto($_self);}]; 361 let allocator = [{$_dst = $_allocator.copyInto($_self);}]; 378 $_dst = $_allocator.copyInto(ArrayRef<}] # arrayOf # [{>(tmpFields));
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGCall.h | 254 void copyInto(CodeGenFunction &CGF, Address A) const;
|
| H A D | CGCall.cpp | 4337 void CallArg::copyInto(CodeGenFunction &CGF, Address Addr) const { in copyInto() function in CallArg 4858 I->copyInto(*this, Addr); in EmitCall() 4870 I->copyInto(*this, Addr); in EmitCall() 4884 I->copyInto(*this, Addr); in EmitCall() 4953 I->copyInto(*this, AI); in EmitCall() 5023 I->copyInto(*this, Src); in EmitCall()
|
| H A D | CodeGenFunction.h | 1031 copyInto(SavedTempAddresses, CGF.LocalDeclMap); 1039 copyInto(SavedLocals, CGF.LocalDeclMap); 1047 static void copyInto(const DeclMapTy &Src, DeclMapTy &Dest) {
|
| /llvm-project-15.0.7/mlir/lib/Dialect/DLTI/ |
| H A D | DLTI.cpp | 124 DataLayoutSpecStorage(allocator.copyInto(key)); in construct()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | TemplateBase.h | 694 void copyInto(const TemplateArgumentLoc *ArgArray,
|
| H A D | ExprCXX.h | 3070 getTrailingASTTemplateKWAndArgsInfo()->copyInto(getTemplateArgs(), List); in copyTemplateArgumentsInto() 3302 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->copyInto( in copyTemplateArgumentsInto() 3754 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->copyInto( in copyTemplateArgumentsInto()
|
| H A D | Expr.h | 1382 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->copyInto( in copyTemplateArgumentsInto() 3314 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->copyInto( in copyTemplateArgumentsInto()
|
| /llvm-project-15.0.7/mlir/unittests/Interfaces/ |
| H A D | DataLayoutInterfacesTest.cpp | 40 DataLayoutSpecStorage(allocator.copyInto(key)); in construct()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch7/mlir/ |
| H A D | Dialect.cpp | 524 llvm::ArrayRef<mlir::Type> elementTypes = allocator.copyInto(key); in construct()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 688 void ASTTemplateKWAndArgsInfo::copyInto(const TemplateArgumentLoc *ArgArray, in copyInto() function in ASTTemplateKWAndArgsInfo
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | AttributesAndTypes.md | 232 `dims = allocator.copyInto(dims)`. 238 let allocator = "$_dst = $_allocator.copyInto($_self);"; 996 RecursiveTypeStorage(allocator.copyInto(key));
|
| /llvm-project-15.0.7/mlir/docs/Tutorials/Toy/ |
| H A D | Ch-7.md | 128 llvm::ArrayRef<mlir::Type> elementTypes = allocator.copyInto(key);
|