Home
last modified time | relevance | path

Searched refs:create (Results 1 – 25 of 2109) sorted by relevance

12345678910>>...85

/llvm-project-15.0.7/mlir/lib/Conversion/ComplexToStandard/
H A DComplexToStandard.cpp586 lhsReal = b.create<arith::SelectOp>( in matchAndRewrite()
591 lhsImag = b.create<arith::SelectOp>( in matchAndRewrite()
596 rhsReal = b.create<arith::SelectOp>( in matchAndRewrite()
601 rhsImag = b.create<arith::SelectOp>( in matchAndRewrite()
617 rhsReal = b.create<arith::SelectOp>( in matchAndRewrite()
622 rhsImag = b.create<arith::SelectOp>( in matchAndRewrite()
627 lhsReal = b.create<arith::SelectOp>( in matchAndRewrite()
686 real = b.create<arith::SelectOp>( in matchAndRewrite()
694 imag = b.create<arith::SelectOp>( in matchAndRewrite()
794 b.create<arith::DivFOp>( in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/TosaToArith/
H A DTosaToArith.cpp55 return rewriter.create<arith::ConstantOp>( in getConstantValue()
86 rewriter.create<arith::ExtSIOp>(loc, i64Ty, multiplier32); in matchAndRewrite()
88 rewriter.create<arith::MulIOp>(loc, value64, multiplier64); in matchAndRewrite()
93 round = rewriter.create<arith::ShRUIOp>(loc, round, one64); in matchAndRewrite()
101 Value positive = rewriter.create<arith::CmpIOp>( in matchAndRewrite()
106 Value valid = rewriter.create<arith::CmpIOp>( in matchAndRewrite()
163 Value shiftOver32 = rewriter.create<arith::CmpIOp>( in matchAndRewrite()
165 Value roundHighBits = rewriter.create<arith::CmpIOp>( in matchAndRewrite()
181 Value valuePositive = rewriter.create<arith::CmpIOp>( in matchAndRewrite()
208 Value wasRounded = rewriter.create<arith::CmpIOp>( in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/TosaToLinalg/
H A DTosaToLinalg.cpp39 return rewriter.create<arith::ConstantOp>( in createConstFromIntAttribute()
56 auto zero = rewriter.create<arith::ConstantOp>( in createLinalgBodyCalculationForElementwiseOp()
179 auto min = rewriter.create<arith::ConstantIntOp>( in createLinalgBodyCalculationForElementwiseOp()
182 auto max = rewriter.create<arith::ConstantIntOp>( in createLinalgBodyCalculationForElementwiseOp()
269 auto one = rewriter.create<arith::ConstantOp>( in createLinalgBodyCalculationForElementwiseOp()
379 auto min = rewriter.create<arith::ConstantOp>( in createLinalgBodyCalculationForElementwiseOp()
381 auto max = rewriter.create<arith::ConstantOp>( in createLinalgBodyCalculationForElementwiseOp()
424 auto n = rewriter.create<arith::ConstantOp>( in createLinalgBodyCalculationForElementwiseOp()
480 .create<UnrealizedConversionCastOp>( in createLinalgBodyCalculationForElementwiseOp()
642 operand = rewriter.create<tosa::ReshapeOp>( in elementwiseMatchAndRewriteHelper()
[all …]
H A DTosaToLinalgNamed.cpp81 auto one = rewriter.create<arith::ConstantOp>( in getConvOutputDim()
96 return builder.create<arith::SubIOp>(divide, one); in getConvOutputDim()
284 .create<linalg::Conv2DNhwcHwcfQOp>( in matchAndRewrite()
291 .create<linalg::GenericOp>( in matchAndRewrite()
313 .create<linalg::GenericOp>( in matchAndRewrite()
453 .create<linalg::GenericOp>( in matchAndRewrite()
480 .create<linalg::GenericOp>( in matchAndRewrite()
639 .create<linalg::GenericOp>( in matchAndRewrite()
660 .create<linalg::QuantizedMatmulOp>( in matchAndRewrite()
667 .create<linalg::GenericOp>( in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Math/Transforms/
H A DPolynomialApproximation.cpp160 return builder.create<vector::ShapeCastOp>( in handleMultidimensionalVectors()
187 return builder.create<arith::SelectOp>( in min()
194 return builder.create<arith::SelectOp>( in max()
394 p = builder.create<arith::MulFOp>(x, p); in matchAndRewrite()
538 p = builder.create<arith::MulFOp>(x, p); in matchAndRewrite()
635 e = builder.create<arith::SubFOp>( in logMatchAndRewrite()
678 builder.create<arith::SelectOp>( in logMatchAndRewrite()
752 x, builder.create<arith::DivFOp>( in matchAndRewrite()
994 expY = builder.create<arith::SelectOp>( in matchAndRewrite()
996 builder.create<arith::SelectOp>( in matchAndRewrite()
[all …]
H A DExpandPatterns.cpp30 Value one = rewriter.create<arith::ConstantOp>(loc, floatOne); in convertTanhOp()
31 Value two = rewriter.create<arith::ConstantOp>(loc, floatTwo); in convertTanhOp()
36 Value exp2x = rewriter.create<math::ExpOp>(loc, negDoubledX); in convertTanhOp()
38 Value divisor = rewriter.create<arith::AddFOp>(loc, one, exp2x); in convertTanhOp()
42 exp2x = rewriter.create<math::ExpOp>(loc, doubledX); in convertTanhOp()
43 dividend = rewriter.create<arith::SubFOp>(loc, exp2x, one); in convertTanhOp()
44 divisor = rewriter.create<arith::AddFOp>(loc, exp2x, one); in convertTanhOp()
67 auto leadingZeros = rewriter.create<arith::ConstantOp>( in convertCtlzOp()
86 Value inputNotZero = rewriter.create<arith::CmpIOp>( in convertCtlzOp()
88 rewriter.create<scf::ConditionOp>(loc, inputNotZero, in convertCtlzOp()
[all …]
/llvm-project-15.0.7/flang/unittests/Optimizer/Builder/Runtime/
H A DTransformationalTest.cpp17 mlir::Value result = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
18 mlir::Value array = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
19 mlir::Value shift = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
20 mlir::Value dim = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
29 mlir::Value result = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
30 mlir::Value array = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
31 mlir::Value shift = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
41 mlir::Value array = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
42 mlir::Value shift = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
43 mlir::Value bound = firBuilder->create<fir::UndefOp>(loc, seqTy); in TEST_F()
[all …]
H A DCharacterTest.cpp18 mlir::Value result = firBuilder->create<fir::UndefOp>(loc, boxTy); in TEST_F()
19 mlir::Value string = firBuilder->create<fir::UndefOp>(loc, boxTy); in TEST_F()
36 mlir::Value lhsBuff = builder.create<fir::UndefOp>(loc, type); in checkCharCompare1()
37 mlir::Value lhsLen = builder.create<fir::UndefOp>(loc, i32Ty); in checkCharCompare1()
38 mlir::Value rhsBuff = builder.create<fir::UndefOp>(loc, type); in checkCharCompare1()
39 mlir::Value rhsLen = builder.create<fir::UndefOp>(loc, i32Ty); in checkCharCompare1()
76 mlir::Value lhsLen = builder.create<fir::UndefOp>(loc, i32Ty); in checkCharCompare2()
78 mlir::Value rhsLen = builder.create<fir::UndefOp>(loc, i32Ty); in checkCharCompare2()
104 mlir::Value back = builder.create<fir::UndefOp>(loc, i32Ty); in checkGenIndex()
167 mlir::Value back = builder.create<fir::UndefOp>(loc, i32Ty); in checkGenScan()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Async/Transforms/
H A DAsyncParallelFor.cpp418 b.create<scf::YieldOp>(loc); in createParallelComputeFunction()
434 b.create<func::ReturnOp>(ValueRange()); in createParallelComputeFunction()
569 b.create<func::ReturnOp>(ValueRange()); in createAsyncDispatchFunction()
616 b.create<scf::YieldOp>(); in doAsyncDispatch()
637 b.create<AwaitAllOp>(group); in doAsyncDispatch()
639 b.create<scf::YieldOp>(); in doAsyncDispatch()
701 b.create<scf::YieldOp>(); in doSequentialDispatch()
712 b.create<AwaitAllOp>(group); in doSequentialDispatch()
879 b.create<scf::YieldOp>(); in matchAndRewrite()
896 b.create<scf::YieldOp>(); in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/ShapeToStandard/
H A DShapeToStandard.cpp80 Value one = lb.create<arith::ConstantIndexOp>(1); in getBroadcastedDim()
89 lb.create<IfOp>( in getBroadcastedDim()
112 b.create<scf::YieldOp>(loc, dim); in getBroadcastedDim()
131 Value zero = lb.create<arith::ConstantIndexOp>(0); in matchAndRewrite()
274 auto reduceResult = lb.create<ForOp>( in matchAndRewrite()
290 b.create<IfOp>( in matchAndRewrite()
407 auto loop = rewriter.create<scf::ForOp>( in matchAndRewrite()
497 auto same = rewriter.create<IfOp>( in matchAndRewrite()
503 auto loop = b.create<scf::ForOp>( in matchAndRewrite()
520 b.create<scf::YieldOp>(loc, result); in matchAndRewrite()
[all …]
/llvm-project-15.0.7/flang/include/flang/Optimizer/Builder/
H A DFactory.h53 builder.template create<fir::StoreOp>(loc, load, dst); in genCharacterCopy()
78 auto in = builder.template create<fir::CoordinateOp>( in genCharacterCopy()
83 auto out = builder.template create<fir::CoordinateOp>( in genCharacterCopy()
91 builder.template create<fir::StoreOp>(loc, cast, out); in genCharacterCopy()
96 return builder.template create<mlir::arith::SubIOp>( in genCharacterCopy()
122 auto in = builder.template create<fir::CoordinateOp>( in genCharacterCopy()
127 auto out = builder.template create<fir::CoordinateOp>( in genCharacterCopy()
134 builder.template create<fir::StoreOp>(loc, cast, out); in genCharacterCopy()
136 auto space = builder.template create<fir::StringLitOp>( in genCharacterCopy()
139 auto out2 = builder.template create<fir::CoordinateOp>( in genCharacterCopy()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/GPU/Transforms/
H A DAllReduceLowering.cpp91 create<arith::SubIOp>(invocationIdx, laneId); in rewrite()
116 create<gpu::BarrierOp>(); in rewrite()
128 Value zero = create<arith::ConstantIndexOp>(0); in rewrite()
134 create<memref::StoreOp>(result, buffer, zero); in rewrite()
138 create<gpu::BarrierOp>(); in rewrite()
147 T create(Args... args) { in create() function
154 Value dim = create<T>(indexType, dimension); in getDimOp()
197 create<cf::BranchOp>(block, ValueRange()); in getFactory()
251 return create<T>(lhs.getType(), lhs, rhs); in getFactory()
288 create<cf::CondBranchOp>(condition, thenBlock, in createIf()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Arithmetic/Transforms/
H A DExpandOps.cpp20 return rewriter.create<arith::ConstantOp>( in createConst()
39 Value minusOne = rewriter.create<arith::SubIOp>(loc, a, one); in matchAndRewrite()
40 Value quotient = rewriter.create<arith::DivUIOp>(loc, minusOne, b); in matchAndRewrite()
41 Value plusOne = rewriter.create<arith::AddIOp>(loc, quotient, one); in matchAndRewrite()
66 Value xPlusA = rewriter.create<arith::AddIOp>(loc, x, a); in matchAndRewrite()
70 Value minusA = rewriter.create<arith::SubIOp>(loc, zero, a); in matchAndRewrite()
91 rewriter.create<arith::OrIOp>(loc, firstTerm, secondTerm); in matchAndRewrite()
118 Value xMinusA = rewriter.create<arith::SubIOp>(loc, x, a); in matchAndRewrite()
122 Value posRes = rewriter.create<arith::DivSIOp>(loc, a, b); in matchAndRewrite()
141 rewriter.create<arith::OrIOp>(loc, firstTerm, secondTerm); in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/Transforms/
H A DOptimizeForNVVM.cpp54 Value lhs = rewriter.create<LLVM::FPExtOp>(loc, f32Type, op.getLhs()); in matchAndRewrite()
55 Value rhs = rewriter.create<LLVM::FPExtOp>(loc, f32Type, op.getRhs()); in matchAndRewrite()
59 Value approx = rewriter.create<LLVM::FMulOp>(loc, lhs, rcp); in matchAndRewrite()
63 Value err = rewriter.create<LLVM::FMAOp>( in matchAndRewrite()
64 loc, approx, rewriter.create<LLVM::FNegOp>(loc, rhs), lhs); in matchAndRewrite()
65 Value refined = rewriter.create<LLVM::FMAOp>(loc, err, rcp, approx); in matchAndRewrite()
68 Value mask = rewriter.create<LLVM::ConstantOp>( in matchAndRewrite()
70 Value cast = rewriter.create<LLVM::BitcastOp>(loc, i32Type, approx); in matchAndRewrite()
71 Value exp = rewriter.create<LLVM::AndOp>(loc, i32Type, cast, mask); in matchAndRewrite()
72 Value zero = rewriter.create<LLVM::ConstantOp>( in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/LLVMCommon/
H A DMemRefBuilder.cpp101 return builder.create<LLVM::ConstantOp>( in createIndexAttrConstant()
107 return builder.create<LLVM::ExtractValueOp>( in offset()
115 value = builder.create<LLVM::InsertValueOp>( in setOffset()
129 return builder.create<LLVM::ExtractValueOp>( in size()
159 value = builder.create<LLVM::InsertValueOp>( in setSize()
172 return builder.create<LLVM::ExtractValueOp>( in stride()
180 value = builder.create<LLVM::InsertValueOp>( in setStride()
436 Value offsetGep = builder.create<LLVM::GEPOp>( in offset()
438 offsetGep = builder.create<LLVM::BitcastOp>( in offset()
452 Value offsetGep = builder.create<LLVM::GEPOp>( in setOffset()
[all …]
/llvm-project-15.0.7/flang/lib/Optimizer/Transforms/
H A DRewriteLoop.cpp77 auto cond = rewriter.create<mlir::arith::CmpIOp>( in matchAndRewrite()
96 rewriter.create<mlir::arith::AddIOp>(loc, iv, step); in matchAndRewrite()
116 auto comparison = rewriter.create<mlir::arith::CmpIOp>( in matchAndRewrite()
119 rewriter.create<mlir::cf::CondBranchOp>( in matchAndRewrite()
171 rewriter.create<mlir::cf::BranchOp>(loc, continueBlock, in matchAndRewrite()
193 rewriter.create<mlir::cf::CondBranchOp>( in matchAndRewrite()
272 auto compl0 = rewriter.create<mlir::arith::CmpIOp>( in matchAndRewrite()
274 auto compl1 = rewriter.create<mlir::arith::CmpIOp>( in matchAndRewrite()
276 auto compl2 = rewriter.create<mlir::arith::CmpIOp>( in matchAndRewrite()
278 auto compl3 = rewriter.create<mlir::arith::CmpIOp>( in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/unittests/TableGen/
H A DOpBuildGen.cpp38 cstI32(builder.create<test::TableGenConstant>(loc, i32Ty)), in OpBuildGenTest()
39 cstF32(builder.create<test::TableGenConstant>(loc, f32Ty)), in OpBuildGenTest()
80 op = builder.create<OpTy>(loc, TypeRange{i32Ty}, in testSingleVariadicInputInferredType()
85 op = builder.create<OpTy>(loc, ValueRange{*cstI32, *cstI32}); in testSingleVariadicInputInferredType()
118 op = builder.create<test::TableGenBuildOp0>(loc, TypeRange{i32Ty}, in TEST_F()
123 op = builder.create<test::TableGenBuildOp0>(loc, TypeRange{i32Ty}, in TEST_F()
147 op = builder.create<test::TableGenBuildOp1>(loc, TypeRange{i32Ty}, in TEST_F()
158 op = builder.create<test::TableGenBuildOp1>( in TEST_F()
182 op = builder.create<test::TableGenBuildOp1>( in TEST_F()
192 auto op = builder.create<test::TableGenBuildOp3>( in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/unittests/Support/
H A DGlobPatternTest.cpp18 Expected<GlobPattern> Pat1 = GlobPattern::create(""); in TEST_F()
25 Expected<GlobPattern> Pat1 = GlobPattern::create("ab*c*def"); in TEST_F()
35 Expected<GlobPattern> Pat1 = GlobPattern::create("a??c"); in TEST_F()
43 Expected<GlobPattern> Pat1 = GlobPattern::create("\\*"); in TEST_F()
49 Expected<GlobPattern> Pat2 = GlobPattern::create("a?\\?c"); in TEST_F()
100 Expected<GlobPattern> Pat1 = GlobPattern::create("[]a]x"); in TEST_F()
109 Expected<GlobPattern> Pat1 = GlobPattern::create("[*?^]"); in TEST_F()
119 Expected<GlobPattern> Pat1 = GlobPattern::create("["); in TEST_F()
123 Expected<GlobPattern> Pat2 = GlobPattern::create("[]"); in TEST_F()
138 Expected<GlobPattern> Pat1 = GlobPattern::create("*"); in TEST_F()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Vector/Transforms/
H A DVectorTransferSplitRewritePatterns.cpp212 Value affineMin = b.create<AffineMinOp>( in createSubViewIntersection()
221 auto copySrc = b.create<memref::SubViewOp>( in createSubViewIntersection()
223 auto copyDest = b.create<memref::SubViewOp>( in createSubViewIntersection()
253 return b.create<scf::IfOp>( in createFullPartialLinalgCopy()
308 return b.create<scf::IfOp>( in createFullPartialVectorTransferRead()
322 b.create<memref::StoreOp>( in createFullPartialVectorTransferRead()
324 b.create<vector::TypeCastOp>( in createFullPartialVectorTransferRead()
359 .create<scf::IfOp>( in getLocationToWriteFullVec()
399 auto notInBounds = b.create<arith::XOrIOp>( in createFullPartialLinalgCopy()
432 Value load = b.create<memref::LoadOp>( in createFullPartialVectorTransferWrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/MathToSPIRV/
H A DMathToSPIRV.cpp39 return builder.create<spirv::ConstantOp>(loc, type, in getScalarOrVectorI32Constant()
43 return builder.create<spirv::ConstantOp>(loc, type, in getScalarOrVectorI32Constant()
83 Value signMask = rewriter.create<spirv::ConstantOp>( in matchAndRewrite()
85 Value valueMask = rewriter.create<spirv::ConstantOp>( in matchAndRewrite()
107 Value value = rewriter.create<spirv::BitwiseAndOp>( in matchAndRewrite()
109 Value sign = rewriter.create<spirv::BitwiseAndOp>( in matchAndRewrite()
231 Value negate = rewriter.create<spirv::FNegateOp>(loc, pow); in matchAndRewrite()
253 half = rewriter.create<spirv::ConstantOp>( in matchAndRewrite()
258 half = rewriter.create<spirv::ConstantOp>( in matchAndRewrite()
262 auto abs = rewriter.create<spirv::GLFAbsOp>(loc, operand); in matchAndRewrite()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/GPUCommon/
H A DGPUToLLVMConversion.cpp70 LLVM::CallOp create(Location loc, OpBuilder &builder,
91 : rewriter.create<LLVM::MulOp>(loc, in getNumElements()
650 auto structPtr = builder.create<LLVM::AllocaOp>( in generateParamsArray()
652 auto arraySize = builder.create<LLVM::ConstantOp>( in generateParamsArray()
659 auto index = builder.create<LLVM::ConstantOp>( in generateParamsArray()
661 auto fieldPtr = builder.create<LLVM::GEPOp>( in generateParamsArray()
760 auto function = moduleGetFunctionCallBuilder.create( in matchAndRewrite()
774 launchKernelCallBuilder.create( in matchAndRewrite()
819 auto src = rewriter.create<LLVM::BitcastOp>( in matchAndRewrite()
821 auto dst = rewriter.create<LLVM::BitcastOp>( in matchAndRewrite()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCExpr.h527 return create(Add, LHS, RHS, Ctx); in createAdd()
532 return create(And, LHS, RHS, Ctx); in createAnd()
537 return create(Div, LHS, RHS, Ctx); in createDiv()
542 return create(EQ, LHS, RHS, Ctx); in createEQ()
547 return create(GT, LHS, RHS, Ctx); in createGT()
552 return create(GTE, LHS, RHS, Ctx); in createGTE()
562 return create(LOr, LHS, RHS, Ctx); in createLOr()
567 return create(LT, LHS, RHS, Ctx); in createLT()
572 return create(LTE, LHS, RHS, Ctx); in createLTE()
587 return create(NE, LHS, RHS, Ctx); in createNE()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Arithmetic/Utils/
H A DUtils.cpp70 return b.create<arith::IndexCastOp>(loc, targetType, value); in getValueOrCreateCastToIndexLike()
79 return b.create<arith::ExtSIOp>(loc, targetIntegerType, value); in getValueOrCreateCastToIndexLike()
80 return b.create<arith::TruncIOp>(loc, targetIntegerType, value); in getValueOrCreateCastToIndexLike()
93 return b.create<arith::AndIOp>(loc, lhs, rhs); in _and()
97 return b.create<arith::AddIOp>(loc, lhs, rhs); in add()
98 return b.create<arith::AddFOp>(loc, lhs, rhs); in add()
102 return b.create<arith::MulIOp>(loc, lhs, rhs); in mul()
103 return b.create<arith::MulFOp>(loc, lhs, rhs); in mul()
108 return b.create<arith::CmpFOp>(loc, arith::CmpFPredicate::OGT, lhs, rhs); in sgt()
113 return b.create<arith::CmpFOp>(loc, arith::CmpFPredicate::OLT, lhs, rhs); in slt()
[all …]
/llvm-project-15.0.7/clang/lib/Analysis/
H A DConstructionContext.cpp22 ConstructionContextLayer::create(BumpVectorContext &C, in create() function in ConstructionContextLayer
86 return create<ElidedTemporaryObjectConstructionContext>( in createMaterializedTemporaryFromLayers()
92 return create<SimpleTemporaryObjectConstructionContext>(C, BTE, MTE); in createMaterializedTemporaryFromLayers()
103 return create<SimpleTemporaryObjectConstructionContext>(C, BTE, in createBoundTemporaryFromLayers()
113 return create<CXX17ElidedCopyVariableConstructionContext>(C, DS, BTE); in createBoundTemporaryFromLayers()
123 return create<CXX17ElidedCopyReturnedValueConstructionContext>(C, RS, in createBoundTemporaryFromLayers()
162 return create<LambdaCaptureConstructionContext>(C, E, in createBoundTemporaryFromLayers()
180 return create<SimpleVariableConstructionContext>(C, DS); in createFromLayers()
185 return create<NewAllocatedObjectConstructionContext>(C, NE); in createFromLayers()
190 return create<SimpleReturnedValueConstructionContext>(C, RS); in createFromLayers()
[all …]
/llvm-project-15.0.7/llvm/unittests/Object/
H A DMinidumpTest.cpp19 return MinidumpFile::create( in create()
37 auto ExpectedFile = create(Data); in TEST()
227 auto ExpectedFile = create(Data); in TEST()
347 auto ExpectedFile = create(Data); in TEST()
447 auto ExpectedFile = create(Data); in TEST()
502 auto ExpectedFile = create(Data); in TEST()
587 auto ExpectedFile = create(Data); in TEST()
640 File = create(HeaderTooSmall); in TEST()
665 File = create(EntryTooBig); in TEST()
702 File = create(ThreeEntries); in TEST()
[all …]

12345678910>>...85