]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm-project / llvm / lib / Target / NVPTX / NVPTXTargetTransformInfo.cpp
1 //===-- NVPTXTargetTransformInfo.cpp - NVPTX specific TTI -----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include "NVPTXTargetTransformInfo.h"
10 #include "NVPTXUtilities.h"
11 #include "llvm/Analysis/LoopInfo.h"
12 #include "llvm/Analysis/TargetTransformInfo.h"
13 #include "llvm/Analysis/ValueTracking.h"
14 #include "llvm/CodeGen/BasicTTIImpl.h"
15 #include "llvm/CodeGen/CostTable.h"
16 #include "llvm/CodeGen/TargetLowering.h"
17 #include "llvm/Support/Debug.h"
18 using namespace llvm;
19
20 #define DEBUG_TYPE "NVPTXtti"
21
22 // Whether the given intrinsic reads threadIdx.x/y/z.
23 static bool readsThreadIndex(const IntrinsicInst *II) {
24   switch (II->getIntrinsicID()) {
25     default: return false;
26     case Intrinsic::nvvm_read_ptx_sreg_tid_x:
27     case Intrinsic::nvvm_read_ptx_sreg_tid_y:
28     case Intrinsic::nvvm_read_ptx_sreg_tid_z:
29       return true;
30   }
31 }
32
33 static bool readsLaneId(const IntrinsicInst *II) {
34   return II->getIntrinsicID() == Intrinsic::nvvm_read_ptx_sreg_laneid;
35 }
36
37 // Whether the given intrinsic is an atomic instruction in PTX.
38 static bool isNVVMAtomic(const IntrinsicInst *II) {
39   switch (II->getIntrinsicID()) {
40     default: return false;
41     case Intrinsic::nvvm_atomic_load_inc_32:
42     case Intrinsic::nvvm_atomic_load_dec_32:
43
44     case Intrinsic::nvvm_atomic_add_gen_f_cta:
45     case Intrinsic::nvvm_atomic_add_gen_f_sys:
46     case Intrinsic::nvvm_atomic_add_gen_i_cta:
47     case Intrinsic::nvvm_atomic_add_gen_i_sys:
48     case Intrinsic::nvvm_atomic_and_gen_i_cta:
49     case Intrinsic::nvvm_atomic_and_gen_i_sys:
50     case Intrinsic::nvvm_atomic_cas_gen_i_cta:
51     case Intrinsic::nvvm_atomic_cas_gen_i_sys:
52     case Intrinsic::nvvm_atomic_dec_gen_i_cta:
53     case Intrinsic::nvvm_atomic_dec_gen_i_sys:
54     case Intrinsic::nvvm_atomic_inc_gen_i_cta:
55     case Intrinsic::nvvm_atomic_inc_gen_i_sys:
56     case Intrinsic::nvvm_atomic_max_gen_i_cta:
57     case Intrinsic::nvvm_atomic_max_gen_i_sys:
58     case Intrinsic::nvvm_atomic_min_gen_i_cta:
59     case Intrinsic::nvvm_atomic_min_gen_i_sys:
60     case Intrinsic::nvvm_atomic_or_gen_i_cta:
61     case Intrinsic::nvvm_atomic_or_gen_i_sys:
62     case Intrinsic::nvvm_atomic_exch_gen_i_cta:
63     case Intrinsic::nvvm_atomic_exch_gen_i_sys:
64     case Intrinsic::nvvm_atomic_xor_gen_i_cta:
65     case Intrinsic::nvvm_atomic_xor_gen_i_sys:
66       return true;
67   }
68 }
69
70 bool NVPTXTTIImpl::isSourceOfDivergence(const Value *V) {
71   // Without inter-procedural analysis, we conservatively assume that arguments
72   // to __device__ functions are divergent.
73   if (const Argument *Arg = dyn_cast<Argument>(V))
74     return !isKernelFunction(*Arg->getParent());
75
76   if (const Instruction *I = dyn_cast<Instruction>(V)) {
77     // Without pointer analysis, we conservatively assume values loaded from
78     // generic or local address space are divergent.
79     if (const LoadInst *LI = dyn_cast<LoadInst>(I)) {
80       unsigned AS = LI->getPointerAddressSpace();
81       return AS == ADDRESS_SPACE_GENERIC || AS == ADDRESS_SPACE_LOCAL;
82     }
83     // Atomic instructions may cause divergence. Atomic instructions are
84     // executed sequentially across all threads in a warp. Therefore, an earlier
85     // executed thread may see different memory inputs than a later executed
86     // thread. For example, suppose *a = 0 initially.
87     //
88     //   atom.global.add.s32 d, [a], 1
89     //
90     // returns 0 for the first thread that enters the critical region, and 1 for
91     // the second thread.
92     if (I->isAtomic())
93       return true;
94     if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
95       // Instructions that read threadIdx are obviously divergent.
96       if (readsThreadIndex(II) || readsLaneId(II))
97         return true;
98       // Handle the NVPTX atomic instrinsics that cannot be represented as an
99       // atomic IR instruction.
100       if (isNVVMAtomic(II))
101         return true;
102     }
103     // Conservatively consider the return value of function calls as divergent.
104     // We could analyze callees with bodies more precisely using
105     // inter-procedural analysis.
106     if (isa<CallInst>(I))
107       return true;
108   }
109
110   return false;
111 }
112
113 int NVPTXTTIImpl::getArithmeticInstrCost(
114     unsigned Opcode, Type *Ty, TTI::OperandValueKind Opd1Info,
115     TTI::OperandValueKind Opd2Info, TTI::OperandValueProperties Opd1PropInfo,
116     TTI::OperandValueProperties Opd2PropInfo, ArrayRef<const Value *> Args) {
117   // Legalize the type.
118   std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty);
119
120   int ISD = TLI->InstructionOpcodeToISD(Opcode);
121
122   switch (ISD) {
123   default:
124     return BaseT::getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info,
125                                          Opd1PropInfo, Opd2PropInfo);
126   case ISD::ADD:
127   case ISD::MUL:
128   case ISD::XOR:
129   case ISD::OR:
130   case ISD::AND:
131     // The machine code (SASS) simulates an i64 with two i32. Therefore, we
132     // estimate that arithmetic operations on i64 are twice as expensive as
133     // those on types that can fit into one machine register.
134     if (LT.second.SimpleTy == MVT::i64)
135       return 2 * LT.first;
136     // Delegate other cases to the basic TTI.
137     return BaseT::getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info,
138                                          Opd1PropInfo, Opd2PropInfo);
139   }
140 }
141
142 void NVPTXTTIImpl::getUnrollingPreferences(Loop *L, ScalarEvolution &SE,
143                                            TTI::UnrollingPreferences &UP) {
144   BaseT::getUnrollingPreferences(L, SE, UP);
145
146   // Enable partial unrolling and runtime unrolling, but reduce the
147   // threshold.  This partially unrolls small loops which are often
148   // unrolled by the PTX to SASS compiler and unrolling earlier can be
149   // beneficial.
150   UP.Partial = UP.Runtime = true;
151   UP.PartialThreshold = UP.Threshold / 4;
152 }