| /llvm-project-15.0.7/clang/test/OpenMP/ |
| H A D | cancellation_point_messages.cpp | 7 #pragma omp cancellation point // expected-error {{one of 'for', 'parallel', 'sections' or 'taskgro… in main() 11 #pragma omp cancellation point // expected-error {{one of 'for', 'parallel', 'sections' or 'taskgro… in main() 14 #pragma omp cancellation point unknown // expected-error {{one of 'for', 'parallel', 'secti… in main() 17 #pragma omp cancellation point unknown // expected-error {{one of 'for', 'parallel', 'secti… in main() 30 #pragma omp cancellation point taskgroup // expected-error {{region cannot be closely nested inside… in main() 36 #pragma omp cancellation point taskgroup // expected-error {{region cannot be closely nested inside… in main() 40 #pragma omp cancellation point for // expected-error {{region cannot be closely nested inside 'para… in main() 44 #pragma omp cancellation point sections // expected-error {{region cannot be closely nested inside … in main() 48 #pragma omp cancellation point parallel // expected-error {{region cannot be closely nested inside … in main() 53 #pragma omp cancellation point sections // expected-error {{orphaned 'omp cancellation point' direc… in main() [all …]
|
| H A D | cancellation_point_codegen.cpp | 16 #pragma omp cancellation point parallel in main() 23 #pragma omp cancellation point sections in main() 29 #pragma omp cancellation point sections in main() 32 #pragma omp cancellation point sections in main() 38 #pragma omp cancellation point for in main() 43 #pragma omp cancellation point taskgroup in main() 48 #pragma omp cancellation point taskgroup in main() 53 #pragma omp cancellation point sections in main() 60 #pragma omp cancellation point sections in main() 65 #pragma omp cancellation point sections in main() [all …]
|
| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | dosemantics11.f90 | 93 type point type 95 end type point 132 type point type 134 end type point 171 type point type 173 end type point 210 type point type 212 end type point 248 type point type 250 end type point [all …]
|
| H A D | resolve57.f90 | 68 type point type 70 end type point 72 type, extends(point) :: color_point 76 type(point), target :: c, d 77 class(point), pointer :: p_or_c 81 type is ( point ) 88 type is ( point ) 95 type is ( point ) 104 class(point), pointer :: func
|
| H A D | dosemantics05.f90 | 18 type point type 20 end type point 22 type, extends(point) :: color_point 26 type(point), target :: c 27 class(point), pointer :: p_or_c 74 type is ( point ) 82 type is ( point ) 90 type is ( point )
|
| /llvm-project-15.0.7/llvm/test/Transforms/DeadArgElim/ |
| H A D | 2008-01-16-VarargsParamAttrs.ll | 3 %struct.point = type { double, double } 4 …point] [ %struct.point { double 1.000000e+00, double 2.000000e+00 }, %struct.point { double 3.0000… 8 %pi = alloca %struct.point ; <%struct.point*> [#uses=0] 10 %"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0] 24 %"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0] 25 …%tmp = getelementptr [4 x %struct.point], [4 x %struct.point]* @pts, i32 0, i32 0 ; <%struct.poin… 26 …%tmp1 = call i32 (i32, ...) @va1(i32 1, %struct.point* byval(%struct.point) %tmp) nounwind ; <i3…
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | InsertionPointTests.cpp | 54 EXPECT_EQ(Point("a", Anchor::Above), Code.point("a")); in TEST() 60 EXPECT_EQ(Point("", Anchor::Above), Code.point("a")); in TEST() 70 EXPECT_EQ(Chain("a", "b"), Code.point("a")); in TEST() 71 EXPECT_EQ(Chain("b", "a"), Code.point("b")); in TEST() 72 EXPECT_EQ(Chain("no_match", "a"), Code.point("a")); in TEST() 83 Code.point("end")); in TEST() 131 Code.point("private")); in TEST() 136 Code.point("end")); in TEST() 141 Code.point("end")); in TEST() 202 Code.point("endIface")); in TEST() [all …]
|
| H A D | XRefsTests.cpp | 1018 auto Results = locateSymbolAt(AST, T.point()); in TEST() 1122 auto Results = locateSymbolAt(AST, T.point()); in TEST() 1172 auto Results = locateSymbolAt(AST, T.point()); in TEST() 1319 EXPECT_THAT(locateSymbolAt(AST, T.point("10")), in TEST() 1321 EXPECT_THAT(locateSymbolAt(AST, T.point("11")), in TEST() 1326 EXPECT_THAT(locateSymbolAt(AST, T.point("12")), in TEST() 1331 locateSymbolAt(AST, T.point("13")), in TEST() 1449 EXPECT_THAT(locateSymbolAt(AST, T.point()), in TEST() 1648 EXPECT_THAT(locateSymbolAt(AST, T.point()), in TEST() 1884 EXPECT_THAT(findType(AST, A.point()), in TEST() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/RISCV/ |
| H A D | RISCVSchedule.td | 53 def WriteFSqrt16 : SchedWrite; // 16-bit floating point sqrt 54 def WriteFSqrt32 : SchedWrite; // 32-bit floating point sqrt 55 def WriteFSqrt64 : SchedWrite; // 64-bit floating point sqrt 101 def WriteFLD16 : SchedWrite; // Floating point sp load 102 def WriteFLD32 : SchedWrite; // Floating point sp load 103 def WriteFLD64 : SchedWrite; // Floating point dp load 104 def WriteFST16 : SchedWrite; // Floating point sp store 105 def WriteFST32 : SchedWrite; // Floating point sp store 106 def WriteFST64 : SchedWrite; // Floating point dp store 145 def ReadFSqrt16 : SchedRead; // 16-bit floating point sqrt [all …]
|
| /llvm-project-15.0.7/mlir/include/mlir/Analysis/ |
| H A D | DataFlowFramework.h | 159 ProgramPoint(ParentTy point = nullptr) : ParentTy(point) {} in ParentTy() 208 const StateT *lookupState(PointT point) const { in lookupState() argument 232 StateT *getOrCreateState(PointT point); 242 ProgramPoint point); 289 AnalysisState(ProgramPoint point) : point(point) {} in AnalysisState() argument 320 ProgramPoint point; variable 385 virtual LogicalResult visit(ProgramPoint point) = 0; 411 StateT *getOrCreate(PointT point) { in getOrCreate() argument 412 return solver.getOrCreateState<StateT>(point); in getOrCreate() 420 StateT *state = getOrCreate<StateT>(point); in getOrCreateFor() [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/InstCombine/ |
| H A D | 2006-12-08-Phi-ICmp-Op-Fold.ll | 6 %struct.point = type { i32, i32 } 10 %p1_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 11 %p2_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 12 %p3_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 13 %"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0] 14 %tmp = bitcast %struct.point* %p1_addr to { i64 }* ; <{ i64 }*> [#uses=1] 17 %tmp1 = bitcast %struct.point* %p2_addr to { i64 }* ; <{ i64 }*> [#uses=1] 20 %tmp3 = bitcast %struct.point* %p3_addr to { i64 }* ; <{ i64 }*> [#uses=1] 24 %tmp5 = bitcast %struct.point* %p1_addr to { i64 }* ; <{ i64 }*> [#uses=1] 27 %tmp7 = bitcast %struct.point* %p2_addr to { i64 }* ; <{ i64 }*> [#uses=1] [all …]
|
| H A D | 2006-12-08-Select-ICmp.ll | 7 %struct.point = type { i32, i32 } 11 %p1_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 12 %p2_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 13 %p3_addr = alloca %struct.point ; <%struct.point*> [#uses=2] 14 %tmp = bitcast %struct.point* %p1_addr to { i64 }* ; <{ i64 }*> [#uses=1] 17 %tmp1 = bitcast %struct.point* %p2_addr to { i64 }* ; <{ i64 }*> [#uses=1] 20 %tmp3 = bitcast %struct.point* %p3_addr to { i64 }* ; <{ i64 }*> [#uses=1] 24 %tmp5 = bitcast %struct.point* %p1_addr to { i64 }* ; <{ i64 }*> [#uses=1] 27 %tmp7 = bitcast %struct.point* %p2_addr to { i64 }* ; <{ i64 }*> [#uses=1] 30 %tmp10 = bitcast %struct.point* %p3_addr to { i64 }* ; <{ i64 }*> [#uses=1]
|
| /llvm-project-15.0.7/mlir/lib/Analysis/ |
| H A D | DataFlowFramework.cpp | 75 ProgramPoint point; in initializeAndRun() local 81 std::tie(point, analysis) = worklist.front(); in initializeAndRun() 85 << "' on: " << point << "\n"); in initializeAndRun() 86 if (failed(analysis->visit(point))) in initializeAndRun() 101 << " of " << state->point << "\n" in propagateIfChanged() 111 ProgramPoint point) { in addDependency() argument 112 auto inserted = state->dependents.insert({point, analysis}); in addDependency() 117 << " of " << state->point << "\nand " << analysis->debugName in addDependency() 118 << " on " << point << "\n"; in addDependency() 131 void DataFlowAnalysis::addDependency(AnalysisState *state, ProgramPoint point) { in addDependency() argument [all …]
|
| /llvm-project-15.0.7/llvm/test/MC/Disassembler/Hexagon/ |
| H A D | xtype_fp.txt | 4 # Floating point addition 8 # Classify floating-point value 14 # Compare floating-point value 38 # Convert integer to floating-point value 56 # Convert floating-point value to integer 98 # Floating point fused multiply-add 118 # Create floating-point constant 128 # Floating point maximum 132 # Floating point minimum 136 # Floating point multiply [all …]
|
| /llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/ |
| H A D | DenseAnalysis.cpp | 35 LogicalResult AbstractDenseDataFlowAnalysis::visit(ProgramPoint point) { in visit() argument 36 if (auto *op = point.dyn_cast<Operation *>()) in visit() 38 else if (auto *block = point.dyn_cast<Block *>()) in visit() 142 ProgramPoint point, RegionBranchOpInterface branch, in visitRegionBranchOperation() argument 145 const auto *predecessors = getOrCreateFor<PredecessorState>(point, point); in visitRegionBranchOperation() 154 before = getLatticeFor(point, prev); in visitRegionBranchOperation() 156 before = getLatticeFor(point, op->getBlock()); in visitRegionBranchOperation() 160 before = getLatticeFor(point, op); in visitRegionBranchOperation() 168 ProgramPoint point) { in getLatticeFor() argument 169 AbstractDenseLattice *state = getLattice(point); in getLatticeFor()
|
| H A D | SparseAnalysis.cpp | 22 for (Operation *user : point.get<Value>().getUsers()) in onUpdate() 68 LogicalResult AbstractSparseDataFlowAnalysis::visit(ProgramPoint point) { in visit() argument 69 if (Operation *op = point.dyn_cast<Operation *>()) in visit() 71 else if (Block *block = point.dyn_cast<Block *>()) in visit() 224 ProgramPoint point, RegionBranchOpInterface branch, in visitRegionSuccessors() argument 227 const auto *predecessors = getOrCreateFor<PredecessorState>(point, point); in visitRegionSuccessors() 255 if (auto *op = point.dyn_cast<Operation *>()) { in visitRegionSuccessors() 266 Region *region = point.get<Block *>()->getParent(); in visitRegionSuccessors() 276 join(std::get<1>(it), *getLatticeElementFor(point, std::get<0>(it))); in visitRegionSuccessors() 281 AbstractSparseDataFlowAnalysis::getLatticeElementFor(ProgramPoint point, in getLatticeElementFor() argument [all …]
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | AnnotationsTest.cpp | 30 EXPECT_EQ(llvm::Annotations("^ab").point(), 0u); in TEST() 31 EXPECT_EQ(llvm::Annotations("a^b").point(), 1u); in TEST() 32 EXPECT_EQ(llvm::Annotations("ab^").point(), 2u); in TEST() 73 EXPECT_EQ(llvm::Annotations("a$foo^b").point("foo"), 1u); in TEST() 77 EXPECT_EQ(llvm::Annotations("a$^b").point(""), 1u); in TEST() 84 EXPECT_EQ(Annotated.point("p2"), 4u); in TEST() 91 EXPECT_DEATH(llvm::Annotations("ab[[c]]def").point(), in TEST() 93 EXPECT_DEATH(llvm::Annotations("a^b^cdef").point(), in TEST() 101 EXPECT_DEATH(llvm::Annotations("$foo^a$foo^a").point("foo"), in TEST()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86Schedule.td | 23 // integer unit to the floating point unit. 218 // Floating point. This covers both scalar and vector operations. 244 defm WriteFAdd : X86SchedWritePair<ReadAfterVecLd>; // Floating point add/sub. 245 defm WriteFAddX : X86SchedWritePair<ReadAfterVecXLd>; // Floating point add/sub (XMM). 246 defm WriteFAddY : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (YMM). 247 defm WriteFAddZ : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (ZMM). 252 defm WriteFCmp : X86SchedWritePair<ReadAfterVecLd>; // Floating point compare. 270 defm WriteFDiv : X86SchedWritePair<ReadAfterVecLd>; // Floating point division. 278 defm WriteFSqrt : X86SchedWritePair<ReadAfterVecLd>; // Floating point square root. 303 defm WriteFSign : X86SchedWritePair<ReadAfterVecLd>; // Floating point fabs/fchs. [all …]
|
| /llvm-project-15.0.7/lldb/test/API/benchmarks/expression/ |
| H A D | main.cpp | 16 Point point; member in Data 19 point(0, 0) in Data() 28 ptr[i]->point.x = i; in main() 29 ptr[i]->point.y = i+1; in main() 39 printf("data[%d] = %d (%d, %d)\n", j, ptr[j]->id, ptr[j]->point.x, ptr[j]->point.y); in main()
|
| /llvm-project-15.0.7/mlir/test/Transforms/ |
| H A D | loop-fusion-slice-computation.mlir | 10 …// expected-remark@-1 {{Incorrect slice ( src loop: 1, dst loop: 0, depth: 1 : insert point: (1, 1… 14 …// expected-remark@-1 {{slice ( src loop: 0, dst loop: 1, depth: 1 : insert point: (1, 0) loop bou… 27 …// expected-remark@-1 {{slice ( src loop: 1, dst loop: 0, depth: 1 : insert point: (1, 1) loop bou… 31 …// expected-remark@-1 {{Incorrect slice ( src loop: 0, dst loop: 1, depth: 1 : insert point: (1, 0… 47 …// expected-remark@-1 {{Incorrect slice ( src loop: 1, dst loop: 0, depth: 1 : insert point: (1, 2… 52 …// expected-remark@-1 {{slice ( src loop: 0, dst loop: 1, depth: 1 : insert point: (1, 0) loop bou… 68 …// expected-remark@-1 {{Incorrect slice ( src loop: 1, dst loop: 0, depth: 1 : insert point: (1, 1… 75 …// expected-remark@-1 {{slice ( src loop: 0, dst loop: 1, depth: 1 : insert point: (1, 0) loop bou… 102 …// expected-remark@-1 {{slice ( src loop: 0, dst loop: 1, depth: 1 : insert point: (1, 0) loop bou… 130 …// expected-remark@-1 {{slice ( src loop: 0, dst loop: 1, depth: 1 : insert point: (1, 0) loop bou… [all …]
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | attr-swift_name.m | 97 struct Point3D rotatePoint3D(Point3D point, float radians) SWIFT_NAME("Point3D.rotate(self:radians:… 98 struct Point3D badRotatePoint3D(Point3D point, float radians) SWIFT_NAME("Point3D.rotate(radians:)"… 103 float Point3DGetMagnitude(Point3D point) SWIFT_NAME("getter:Point3D.magnitude(self:)"); 107 float Point3DGetRadius(Point3D point) SWIFT_NAME("getter:Point3D.radius(self:)"); 108 void Point3DSetRadius(Point3D point, float radius) SWIFT_NAME("setter:Point3D.radius(self:newValue:… 110 float Point3DPreGetRadius(Point3D point) SWIFT_NAME("getter:Point3D.preRadius(self:)"); 147 void setCurrentPoint3D(Point3D point) SWIFT_NAME("setter:currentPoint3D(newValue:)"); 151 void setLastPoint3D(Point3D point) SWIFT_NAME("setter:lastPoint3D(newValue:)"); 154 void setZeroPoint(Point3D point) SWIFT_NAME("setter:Point3D.zero(newValue:)"); 164 Point3D badGetter2(Point3D point) SWIFT_NAME("getter:bad2(_:))"); [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/xray/ |
| H A D | xray_trampoline_arm.S | 9 @ Word-aligned function entry point 15 @ Assume that "q" part of the floating-point registers is not used 22 @ Save floating-point parameters of the instrumented function 36 @ Restore floating-point parameters of the instrumented function 40 @ Word-aligned function entry point 53 @ Save the floating-point return value of the instrumented function 68 @ Restore the floating-point return value of the instrumented function 72 @ Word-aligned function entry point 78 @ Assume that "q" part of the floating-point registers is not used 85 @ Save floating-point parameters of the instrumented function [all …]
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | Quantization.md | 5 narrow scope of techniques in use to enable conversion of floating-point 20 express fixed point and affine transformations via uniformly spaced point on the 29 ### Fixed point values 102 ### Converting between real and fixed point or affine 110 floating point format, frequently 147 #### Affine to fixed point 149 When the affine and fixed point scales are the same, subtract the zero point 150 from the affine value to get the equivalent fixed point value. 158 #### Fixed point to affine 160 When the affine and fixed point scales are the same, add the zero point to the [all …]
|
| /llvm-project-15.0.7/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/ |
| H A D | p2.cpp | 4 void point(int = 3, int = 4); 7 point(1,2); in test_point() 8 point(1); in test_point() 9 point(); in test_point()
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | designated-initializers.c | 25 struct point { struct 30 struct point p1 = { argument 36 struct point p2 = { 40 struct point array[10] = { 46 struct point array2[10] = { 52 struct point array3[10] = { 57 struct point top_left; 58 struct point bottom_right; 88 struct point offset;
|