Home
last modified time | relevance | path

Searched refs:getMap (Results 1 – 25 of 34) sorted by relevance

12

/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.cpp690 auto OrigRegs = RegsObj.getMap(); in toString()
701 RegsObj.getMap()[Key] = I.second; in toString()
726 if (Registers.getMap().empty()) in toLegacyBlob()
730 for (auto I : Registers.getMap()) { in toLegacyBlob()
753 Registers = RegsObj.getMap(); in setFromString()
755 for (auto I : OrigRegs.getMap()) { in setFromString()
779 N.getMap(/*Convert=*/true); in refRegisters()
787 return Registers.getMap(); in getRegisters()
797 N.getMap(/*Convert=*/true); in refShaderFunctions()
805 return ShaderFunctions.getMap(); in getShaderFunctions()
[all …]
/llvm-project-15.0.7/llvm/unittests/BinaryFormat/
H A DMsgPackDocumentTest.cpp112 auto M = Doc.getRoot().getMap(); in TEST()
204 auto M = Doc.getRoot().getMap(/*Convert=*/true); in TEST()
244 auto M = Doc.getRoot().getMap(/*Convert=*/true); in TEST()
263 auto M = Doc.getRoot().getMap(/*Convert=*/true); in TEST()
283 auto M = Doc.getRoot().getMap(/*Convert=*/true); in TEST()
305 auto M = Doc.getRoot().getMap(); in TEST()
/llvm-project-15.0.7/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp189 auto &Map = Stack.back().Node.getMap(); in readFromBlob()
261 MPWriter.writeMapSize(Node.getMap().size()); in writeToBlob()
263 {Node, Node.getMap().begin(), DocNode::ArrayTy::iterator(), true}); in writeToBlob()
288 if (Stack.back().MapIt != Stack.back().Node.getMap().end()) in writeToBlob()
H A DMsgPackDocumentYAML.cpp159 static MapDocNode &getAsMap(DocNode &N) { return N.getMap(/*Convert=*/true); } in getAsMap()
212 IO.mapRequired(Key.str().c_str(), M.getMap()[KeyObj]); in inputOne()
216 for (auto I : M.getMap()) { in output()
H A DAMDGPUMetadataVerifier.cpp97 auto &ArgsMap = Node.getMap(); in verifyKernelArgs()
199 auto &KernelMap = Node.getMap(); in verifyKernel()
287 auto &RootMap = HSAMetadataRoot.getMap(); in verify()
/llvm-project-15.0.7/clang-tools-extra/clang-query/
H A DQuery.cpp225 for (auto BI = MI->getMap().begin(), BE = MI->getMap().end(); BI != BE; in run()
260 if (MI->getMap().empty()) in run()
/llvm-project-15.0.7/clang/lib/Tooling/Transformer/
H A DRewriteRule.cpp209 for (const auto &N : Nodes.getMap()) in matches()
334 Result.Nodes.getMap(); in rewriteDescendants()
433 auto &NodesMap = Result.Nodes.getMap(); in getRuleMatchLoc()
454 auto &NodesMap = Result.Nodes.getMap(); in findSelectedCase()
H A DStencil.cpp38 auto &NodesMap = Nodes.getMap(); in getNode()
308 auto &M = Match.Nodes.getMap(); in eval()
334 const BoundNodes::IDToNodeMap &NodeMap = match.Nodes.getMap(); in eval()
H A DRangeSelector.cpp56 auto &NodesMap = Nodes.getMap(); in getNode()
/llvm-project-15.0.7/clang/include/clang/Tooling/Transformer/
H A DMatchConsumer.h50 auto &Map = Result.Nodes.getMap(); in ifBound()
/llvm-project-15.0.7/mlir/lib/Dialect/SCF/Transforms/
H A DLoopSpecialization.cpp45 for (AffineExpr expr : minOp.getMap().getResults()) { in specializeParallelLoopForUnrolling()
81 for (AffineExpr expr : minOp.getMap().getResults()) { in specializeForLoopForUnrolling()
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h140 MapDocNode &getMap(bool Convert = false) {
376 return N.getMap(); in getMapNode()
/llvm-project-15.0.7/clang/include/clang/Analysis/FlowSensitive/
H A DMatchSwitch.h102 for (const auto &Element : Results[0].getMap()) { in Build()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DInterferenceCache.h86 VirtI.setMap(LIU.getMap()); in RegUnitInfo()
H A DLiveIntervalUnion.cpp148 LiveUnionI.setMap(LiveUnion->getMap()); in collectInterferingVRegs()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h82 const Map &getMap() const { return Segments; } in getMap() function
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.h111 return HSAMetadataDoc->getRoot().getMap(/*Convert=*/true)[Key]; in getRootMetadata()
/llvm-project-15.0.7/mlir/lib/Conversion/SCFToGPU/
H A DSCFToGPU.cpp323 for (const AffineExpr &result : minOp.getMap().getResults()) { in deriveStaticUpperBound()
453 loc, annotation.getMap().compose(lowerAndStep), in processParallelLoop()
/llvm-project-15.0.7/mlir/lib/Conversion/AffineToStandard/
H A DAffineToStandard.cpp103 lowerAffineMapMin(rewriter, op.getLoc(), op.getMap(), op.operands()); in matchAndRewrite()
119 lowerAffineMapMax(rewriter, op.getLoc(), op.getMap(), op.operands()); in matchAndRewrite()
/llvm-project-15.0.7/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp200 const auto &NodeMap = Result.Nodes.getMap(); in run()
/llvm-project-15.0.7/clang/unittests/AST/
H A DMatchVerifier.h172 BoundNodes::IDToNodeMap M = Result.Nodes.getMap(); in run()
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Utils/
H A DUtils.cpp581 AffineMap origLbMap = lb.getMap(); in normalizeAffineFor()
582 AffineMap origUbMap = ub.getMap(); in normalizeAffineFor()
627 lb.getMap().getNumDims()); in normalizeAffineFor()
643 AffineExpr origIVExpr = opBuilder.getAffineDimExpr(lb.getMap().getNumDims()); in normalizeAffineFor()
H A DLoopUtils.cpp575 AffineMap origLbMap = lb.getMap(); in setIntraTileBoundsParametric()
576 AffineMap origUbMap = ub.getMap(); in setIntraTileBoundsParametric()
673 AffineMap origUbMap = ub.getMap(); in setInterTileBoundsParametric()
822 AffineMap origUbMap = ub.getMap(); in constructTiledIndexSetHyperRect()
1722 AffineMap origUbMap = ub.getMap(); in coalesceLoops()
1747 origUbMap = ub.getMap(); in coalesceLoops()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/IR/
H A DAffineOps.h483 AffineMap getMap() { return map; } in getMap() function
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/IR/
H A DAffineOps.cpp524 AffineMap affineMap = getMap(); in verify()
2782 op.getMap().getNumDims() + op.getMap().getNumSymbols()) in verifyAffineMinMaxOp()
2792 unsigned numDims = op.getMap().getNumDims(); in printAffineMinMaxOp()
2833 auto foldedMap = op.getMap().partialConstantFold(operands, &results); in foldMinMaxOp()
2838 if (foldedMap == op.getMap()) in foldMinMaxOp()
3057 if (affineOp.getMap().getNumResults() != 1) in matchAndRewrite()
3059 rewriter.replaceOpWithNewOp<AffineApplyOp>(affineOp, affineOp.getMap(), in matchAndRewrite()

12