Home
last modified time | relevance | path

Searched defs:exprs (Results 1 – 25 of 31) sorted by relevance

12

/llvm-project/mlir/include/mlir/IR/
H A DAffineExpr.h329 void bindDims(MLIRContext *ctx, AffineExprTy &e, AffineExprTy2 &...exprs) { in bindDims()
338 void bindSymbols(MLIRContext *ctx, AffineExprTy &e, AffineExprTy2 &...exprs) { in bindSymbols()
348 void bindDims(MLIRContext *ctx, AffineExprTy &...exprs) { in bindDims()
353 void bindDimsList(MLIRContext *ctx, MutableArrayRef<AffineExprTy> exprs) { in bindDimsList()
362 void bindSymbols(MLIRContext *ctx, AffineExprTy &...exprs) { in bindSymbols()
367 void bindSymbolsList(MLIRContext *ctx, MutableArrayRef<AffineExprTy> exprs) { in bindSymbolsList()
H A DAffineMap.h295 auto exprs = llvm::to_vector<4>(getResults()); dropResults() local
308 auto exprs = llvm::to_vector<4>(getResults()); insertResult() local
673 for (const auto &exprs : exprsList) { getMaxDimAndSymbol() local
[all...]
/llvm-project/mlir/lib/IR/
H A DAffineMap.cpp292 for (const auto &exprs : exprsList) inferFromExprList() local
447 SmallVector<AffineExpr, 4> exprs; partialConstantFold() local
535 auto exprs = llvm::to_vector<4>(getResults()); dropResults() local
560 SmallVector<AffineExpr, 8> exprs; compose() local
569 SmallVector<AffineExpr, 4> exprs; compose() local
619 SmallVector<AffineExpr, 4> exprs; getSubMap() local
738 SmallVector<AffineExpr, 8> exprs; simplifyAffineMap() local
759 SmallVector<AffineExpr, 4> exprs(map.getNumDims()); inversePermutation() local
784 SmallVector<AffineExpr, 4> exprs(map.getNumInputs(), zero); inverseAndBroadcastProjectedPermutation() local
[all...]
H A DBuiltinTypes.cpp917 makeCanonicalStridedLayoutExpr(ArrayRef<int64_t> sizes,ArrayRef<AffineExpr> exprs,MLIRContext * context) makeCanonicalStridedLayoutExpr() argument
950 SmallVector<AffineExpr, 4> exprs; makeCanonicalStridedLayoutExpr() local
/llvm-project/mlir/lib/Dialect/Utils/
H A DReshapeOpsUtils.cpp149 for (const auto &exprs : exprArrays) { in getMaxPosOfType() local
173 for (const auto &exprs : reassociationExprs) { in convertReassociationMapsToIndices() local
190 for (const auto &exprs : reassociation) { in getSymbolLessAffineMaps() local
/llvm-project/bolt/test/
H A Dlink_fdata.py51 exprs = [] variable
/llvm-project/mlir/lib/Dialect/Linalg/Transforms/
H A DSplitReduction.cpp80 SmallVector<AffineExpr> exprs; in splitReduction() local
182 SmallVector<AffineExpr> exprs; in splitReduction() local
H A DDataLayoutPropagation.cpp76 SmallVector<AffineExpr> exprs(indexingMap.getResults()); in getPackingInfoFromOperand() local
163 ArrayRef<AffineExpr> exprs) { in computeOuterDims() argument
234 SmallVector<AffineExpr> exprs(origIndexingMa in getOrCreatePackedViewOfOperand() local
[all...]
H A DDropUnitDims.cpp349 ArrayRef<AffineExpr> exprs = indexingMap.getResults(); dropUnitExtentFromOperandMetadata() local
H A DConvertConv2DToImg2Col.cpp240 SmallVector<AffineExpr> exprs = llvm::to_vector<4>( in rewriteInIm2Col() local
/llvm-project/mlir/lib/AsmParser/
H A DAffineParser.cpp564 SmallVector<AffineExpr, 4> exprs; in parseAffineMapOfSSAIds() local
599 SmallVector<AffineExpr, 4> exprs; in parseAffineMapRange() local
/llvm-project/lldb/source/Symbol/
H A DPostfixExpression.cpp91 llvm::SmallVector<llvm::StringRef, 4> exprs; in ParseFPOProgram() local
/llvm-project/mlir/lib/CAPI/IR/
H A DAffineMap.cpp49 SmallVector<AffineExpr, 4> exprs; in mlirAffineMapGet() local
/llvm-project/mlir/lib/Analysis/
H A DFlatLinearValueConstraints.cpp136 getFlattenedAffineExprs(ArrayRef<AffineExpr> exprs, unsigned numDims, in getFlattenedAffineExprs() argument
420 SmallVectorImpl<AffineExpr> &exprs) { in detectAsFloorDiv() argument
872 SmallVector<AffineExpr, 8> exprs; getAsIntegerSet() local
[all...]
/llvm-project/mlir/lib/Conversion/TosaToTensor/
H A DTosaToTensor.cpp161 SmallVector<AffineExpr, 2> exprs; in createReassociationMapForCollapse() local
/llvm-project/mlir/lib/Dialect/Vector/Transforms/
H A DLowerVectorTransfer.cpp274 SmallVector<AffineExpr> exprs; matchAndRewriteMaskableOp() local
H A DVectorTransforms.cpp152 SmallVector<AffineExpr> exprs; in matchAndRewrite() local
/llvm-project/clang/lib/AST/
H A DStmt.cpp851 GCCAsmStmt(const ASTContext & C,SourceLocation asmloc,bool issimple,bool isvolatile,unsigned numoutputs,unsigned numinputs,IdentifierInfo ** names,StringLiteral ** constraints,Expr ** exprs,StringLiteral * asmstr,unsigned numclobbers,StringLiteral ** clobbers,unsigned numlabels,SourceLocation rparenloc) GCCAsmStmt() argument
878 MSAsmStmt(const ASTContext & C,SourceLocation asmloc,SourceLocation lbraceloc,bool issimple,bool isvolatile,ArrayRef<Token> asmtoks,unsigned numoutputs,unsigned numinputs,ArrayRef<StringRef> constraints,ArrayRef<Expr * > exprs,StringRef asmstr,ArrayRef<StringRef> clobbers,SourceLocation endloc) MSAsmStmt() argument
894 initialize(const ASTContext & C,StringRef asmstr,ArrayRef<Token> asmtoks,ArrayRef<StringRef> constraints,ArrayRef<Expr * > exprs,ArrayRef<StringRef> clobbers) initialize() argument
[all...]
/llvm-project/clang/lib/ARCMigrate/
H A DTransforms.cpp308 void trans::collectRemovables(Stmt *S, ExprSet &exprs) { in collectRemovables()
/llvm-project/mlir/lib/Bindings/Python/
H A DIRAffine.cpp717 __anon3254676e1d02(intptr_t dimCount, intptr_t symbolCount, py::list exprs, DefaultingPyMlirContext context) populateIRAffine() argument
883 __anon3254676e3402(intptr_t numDims, intptr_t numSymbols, py::list exprs, std::vector<bool> eqFlags, DefaultingPyMlirContext context) populateIRAffine() argument
/llvm-project/mlir/lib/Dialect/Linalg/IR/
H A DLinalgInterfaces.cpp610 getConstantsFromExprList(const SmallVector<AffineExpr,2> & exprs) getConstantsFromExprList() argument
/llvm-project/mlir/lib/Dialect/SparseTensor/Transforms/
H A DSparsification.cpp209 const auto exprs = map.getResults(); in getNumNonTrivialIdxExpOnSparseLvls() local
/llvm-project/mlir/test/CAPI/
H A Dir.c1652 MlirAffineExpr exprs[] = {affineDimExpr, affineSymbolExpr}; in affineMapFromExprs() local
/llvm-project/lldb/tools/lldb-dap/
H A Dlldb-dap.cpp1210 std::array<std::tuple<ReplMode, std::string, uint64_t>, 2> exprs = { request_completions() local
/llvm-project/mlir/lib/Dialect/Affine/IR/
H A DAffineOps.cpp1169 SmallVector<AffineExpr> exprs; composeMultiResultAffineMap() local
3723 SmallVector<AffineExpr> exprs; build() local

12