OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AMDGPUSubtarget
(Results
1 - 25
of
26
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUSubtarget.h
1
//=====--
AMDGPUSubtarget
.h - Define Subtarget for AMDGPU -------*- C++ -*-===//
29
class
AMDGPUSubtarget
{
66
AMDGPUSubtarget
(const Triple &TT);
68
static const
AMDGPUSubtarget
&get(const MachineFunction &MF);
69
static const
AMDGPUSubtarget
&get(const TargetMachine &TM,
242
virtual ~
AMDGPUSubtarget
() {}
AMDGPUSubtarget.cpp
1
//===--
AMDGPUSubtarget
.cpp - AMDGPU Subtarget Information ----------------===//
14
#include "
AMDGPUSubtarget
.h"
39
#define
AMDGPUSubtarget
GCNSubtarget
43
#undef
AMDGPUSubtarget
118
if (Gen ==
AMDGPUSubtarget
::INVALID) {
119
Gen = TT.getOS() == Triple::AMDHSA ?
AMDGPUSubtarget
::SEA_ISLANDS
120
:
AMDGPUSubtarget
::SOUTHERN_ISLANDS;
124
assert(!hasFP64() || (getGeneration() >=
AMDGPUSubtarget
::SOUTHERN_ISLANDS));
165
HasFminFmaxLegacy = getGeneration() <
AMDGPUSubtarget
::VOLCANIC_ISLANDS;
177
AMDGPUSubtarget
::AMDGPUSubtarget(const Triple &TT)
[
all
...]
GCNSubtarget.h
18
#include "
AMDGPUSubtarget
.h"
39
public
AMDGPUSubtarget
{
41
using
AMDGPUSubtarget
::getMaxWavesPerEU;
317
return (getGeneration() <
AMDGPUSubtarget
::VOLCANIC_ISLANDS);
321
return (getGeneration() >
AMDGPUSubtarget
::SOUTHERN_ISLANDS);
359
return getGeneration() >=
AMDGPUSubtarget
::GFX9;
363
return getGeneration() >=
AMDGPUSubtarget
::GFX9;
456
return getGeneration() >=
AMDGPUSubtarget
::GFX9;
461
return getGeneration() >=
AMDGPUSubtarget
::GFX10;
487
return getGeneration() <
AMDGPUSubtarget
::GFX9
[
all
...]
AMDGPUMachineFunction.cpp
11
#include "
AMDGPUSubtarget
.h"
24
const
AMDGPUSubtarget
&ST =
AMDGPUSubtarget
::get(MF);
AMDGPULowerIntrinsics.cpp
10
#include "
AMDGPUSubtarget
.h"
139
const
AMDGPUSubtarget
&ST =
AMDGPUSubtarget
::get(TM, *Caller);
AMDGPUInstructionSelector.h
24
#define
AMDGPUSubtarget
GCNSubtarget
27
#undef
AMDGPUSubtarget
313
#define
AMDGPUSubtarget
GCNSubtarget
316
#undef
AMDGPUSubtarget
R600Subtarget.h
17
#include "
AMDGPUSubtarget
.h"
37
public
AMDGPUSubtarget
{
AMDGPUPromoteAlloca.cpp
172
const
AMDGPUSubtarget
&ST =
AMDGPUSubtarget
::get(TM, F);
204
const
AMDGPUSubtarget
&ST =
AMDGPUSubtarget
::get(TM, F);
291
const
AMDGPUSubtarget
&ST =
292
AMDGPUSubtarget
::get(TM, *Builder.GetInsertBlock()->getParent());
713
const
AMDGPUSubtarget
&ST =
AMDGPUSubtarget
::get(TM, F);
887
const
AMDGPUSubtarget
&ST =
AMDGPUSubtarget
::get(TM, ContainingFunction)
[
all
...]
R600AsmPrinter.cpp
71
if (STM.getGeneration() >=
AMDGPUSubtarget
::EVERGREEN) {
AMDGPUISelLowering.h
24
class
AMDGPUSubtarget
;
29
const
AMDGPUSubtarget
*Subtarget;
143
AMDGPUTargetLowering(const TargetMachine &TM, const
AMDGPUSubtarget
&STI);
R600ControlFlowFinalizer.cpp
109
if (ST->getGeneration() <=
AMDGPUSubtarget
::R700) {
122
assert(ST->getGeneration() >=
AMDGPUSubtarget
::EVERGREEN);
148
ST->getGeneration() >
AMDGPUSubtarget
::EVERGREEN &&
221
bool isEg = (ST->getGeneration() >=
AMDGPUSubtarget
::EVERGREEN);
SIInstrInfo.cpp
4269
ST.getGeneration() >=
AMDGPUSubtarget
::GFX10) {
4275
ST.getGeneration() >=
AMDGPUSubtarget
::GFX10) {
4281
ST.getGeneration() <
AMDGPUSubtarget
::GFX10) {
5615
assert(ST.getGeneration() <
AMDGPUSubtarget
::VOLCANIC_ISLANDS &&
6970
if (ST.getGeneration() >=
AMDGPUSubtarget
::GFX10) {
6979
if (ST.getGeneration() <=
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
6984
if (ST.getGeneration() ==
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
6997
if (ST.getGeneration() <=
AMDGPUSubtarget
::VOLCANIC_ISLANDS) {
7008
if (ST.getGeneration() >=
AMDGPUSubtarget
::VOLCANIC_ISLANDS &&
7009
ST.getGeneration() <=
AMDGPUSubtarget
::GFX9
[
all
...]
AMDGPUAsmPrinter.cpp
1102
if (STM.getGeneration() >=
AMDGPUSubtarget
::VOLCANIC_ISLANDS &&
1149
if (STM.getGeneration() <=
AMDGPUSubtarget
::SEA_ISLANDS ||
1205
if (STM.getGeneration() <
AMDGPUSubtarget
::SEA_ISLANDS) {
SIMachineFunctionInfo.cpp
131
if (ST.getGeneration() >=
AMDGPUSubtarget
::GFX9 &&
SIMemoryLegalizer.cpp
778
if (Generation <=
AMDGPUSubtarget
::SOUTHERN_ISLANDS)
780
if (Generation <
AMDGPUSubtarget
::GFX10)
AMDGPUInstructionSelector.cpp
40
#define
AMDGPUSubtarget
GCNSubtarget
43
#undef
AMDGPUSubtarget
1252
if (STI.getGeneration() >=
AMDGPUSubtarget
::GFX10) {
1272
if (STI.getGeneration() >=
AMDGPUSubtarget
::GFX10)
1630
if (STI.getGeneration() >=
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
4298
assert(STI.getGeneration() ==
AMDGPUSubtarget
::SEA_ISLANDS);
SIFrameLowering.cpp
273
if (ST.getGeneration() >=
AMDGPUSubtarget
::GFX10) {
302
assert(ST.getGeneration() <
AMDGPUSubtarget
::GFX9);
SIShrinkInstructions.cpp
711
ST.getGeneration() >=
AMDGPUSubtarget
::GFX10 &&
SIISelLowering.cpp
1329
if (Subtarget->getGeneration() ==
AMDGPUSubtarget
::SOUTHERN_ISLANDS) {
1333
} else if (Subtarget->getGeneration() ==
AMDGPUSubtarget
::SEA_ISLANDS) {
1338
} else if (Subtarget->getGeneration() >=
AMDGPUSubtarget
::VOLCANIC_ISLANDS) {
2401
if (Subtarget->getGeneration() ==
AMDGPUSubtarget
::SOUTHERN_ISLANDS &&
6279
Subtarget->getGeneration() >=
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
6444
if (Subtarget->getGeneration() >=
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
6448
if (Subtarget->getGeneration() >=
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
6452
if (Subtarget->getGeneration() <
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
6570
if (Subtarget->getGeneration() <
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
6827
if (Subtarget->getGeneration() >=
AMDGPUSubtarget
::GFX10)
[
all
...]
AMDGPUISelLowering.cpp
62
const
AMDGPUSubtarget
&STI)
1014
const
AMDGPUSubtarget
&ST =
AMDGPUSubtarget
::get(MF);
4190
const
AMDGPUSubtarget
&ST =
4191
AMDGPUSubtarget
::get(getTargetMachine(), MF.getFunction());
R600InstrInfo.cpp
1299
if (ST.getGeneration() <=
AMDGPUSubtarget
::R700)
AMDGPUISelDAGToDAG.cpp
2047
assert(Subtarget->getGeneration() ==
AMDGPUSubtarget
::SEA_ISLANDS);
2079
assert(Subtarget->getGeneration() ==
AMDGPUSubtarget
::SEA_ISLANDS);
AMDGPULegalizerInfo.cpp
836
} else if (ST.getGeneration() >=
AMDGPUSubtarget
::SEA_ISLANDS) {
3405
if (ST.getGeneration() <
AMDGPUSubtarget
::VOLCANIC_ISLANDS)
/src/external/apache2/llvm/lib/libLLVMAMDGPUCodeGen/
Makefile
54
AMDGPUSubtarget
.cpp \
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.cpp
1921
Subtarget->getGeneration() <=
AMDGPUSubtarget
::SEA_ISLANDS)
Completed in 80 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026