Lines Matching defs:IRP

2248   AAICVTracker(const IRPosition &IRP, Attributor &A) : Base(IRP) {}
2256 /// Create an abstract attribute biew for the position \p IRP.
2257 static AAICVTracker &createForPosition(const IRPosition &IRP, Attributor &A);
2291 AAICVTrackerFunction(const IRPosition &IRP, Attributor &A)
2292 : AAICVTracker(IRP, A) {}
2485 AAICVTrackerFunctionReturned(const IRPosition &IRP, Attributor &A)
2486 : AAICVTracker(IRP, A) {}
2555 AAICVTrackerCallSite(const IRPosition &IRP, Attributor &A)
2556 : AAICVTracker(IRP, A) {}
2625 AAICVTrackerCallSiteReturned(const IRPosition &IRP, Attributor &A)
2626 : AAICVTracker(IRP, A) {}
2690 AAExecutionDomainFunction(const IRPosition &IRP, Attributor &A)
2691 : AAExecutionDomain(IRP, A) {}
3376 AAHeapToShared(const IRPosition &IRP, Attributor &A) : Base(IRP) {}
3378 /// Create an abstract attribute view for the position \p IRP.
3379 static AAHeapToShared &createForPosition(const IRPosition &IRP,
3406 AAHeapToSharedFunction(const IRPosition &IRP, Attributor &A)
3407 : AAHeapToShared(IRP, A) {}
3603 AAKernelInfo(const IRPosition &IRP, Attributor &A) : Base(IRP) {}
3639 /// Create an abstract attribute biew for the position \p IRP.
3640 static AAKernelInfo &createForPosition(const IRPosition &IRP, Attributor &A);
3659 AAKernelInfoFunction(const IRPosition &IRP, Attributor &A)
3660 : AAKernelInfo(IRP, A) {}
4867 AAKernelInfoCallSite(const IRPosition &IRP, Attributor &A)
4868 : AAKernelInfo(IRP, A) {}
5168 AAFoldRuntimeCall(const IRPosition &IRP, Attributor &A) : Base(IRP) {}
5173 /// Create an abstract attribute biew for the position \p IRP.
5174 static AAFoldRuntimeCall &createForPosition(const IRPosition &IRP,
5193 AAFoldRuntimeCallCallSiteReturned(const IRPosition &IRP, Attributor &A)
5194 : AAFoldRuntimeCall(IRP, A) {}
5231 [&](const IRPosition &IRP, const AbstractAttribute *AA,
5604 AAICVTracker &AAICVTracker::createForPosition(const IRPosition &IRP,
5607 switch (IRP.getPositionKind()) {
5614 AA = new (A.Allocator) AAICVTrackerFunctionReturned(IRP, A);
5617 AA = new (A.Allocator) AAICVTrackerCallSiteReturned(IRP, A);
5620 AA = new (A.Allocator) AAICVTrackerCallSite(IRP, A);
5623 AA = new (A.Allocator) AAICVTrackerFunction(IRP, A);
5630 AAExecutionDomain &AAExecutionDomain::createForPosition(const IRPosition &IRP,
5633 switch (IRP.getPositionKind()) {
5644 AA = new (A.Allocator) AAExecutionDomainFunction(IRP, A);
5651 AAHeapToShared &AAHeapToShared::createForPosition(const IRPosition &IRP,
5654 switch (IRP.getPositionKind()) {
5665 AA = new (A.Allocator) AAHeapToSharedFunction(IRP, A);
5672 AAKernelInfo &AAKernelInfo::createForPosition(const IRPosition &IRP,
5675 switch (IRP.getPositionKind()) {
5684 AA = new (A.Allocator) AAKernelInfoCallSite(IRP, A);
5687 AA = new (A.Allocator) AAKernelInfoFunction(IRP, A);
5694 AAFoldRuntimeCall &AAFoldRuntimeCall::createForPosition(const IRPosition &IRP,
5697 switch (IRP.getPositionKind()) {
5707 AA = new (A.Allocator) AAFoldRuntimeCallCallSiteReturned(IRP, A);