OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ptx32
(Results
1 - 25
of
32
) sorted by null
1
2
/external/llvm/test/CodeGen/PTX/
options.ll
1
; RUN: llc < %s -march=
ptx32
-mattr=ptx20 | grep ".version 2.0"
2
; RUN: llc < %s -march=
ptx32
-mattr=ptx21 | grep ".version 2.1"
3
; RUN: llc < %s -march=
ptx32
-mattr=ptx22 | grep ".version 2.2"
4
; RUN: llc < %s -march=
ptx32
-mattr=ptx23 | grep ".version 2.3"
5
; RUN: llc < %s -march=
ptx32
-mattr=sm10 | grep ".target sm_10"
6
; RUN: llc < %s -march=
ptx32
-mattr=sm13 | grep ".target sm_13"
7
; RUN: llc < %s -march=
ptx32
-mattr=sm20 | grep ".target sm_20"
8
; RUN: llc < %s -march=
ptx32
-mattr=ptx23 | grep ".address_size 32"
ret.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
exit.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
mad-disabling.ll
1
; RUN: llc < %s -march=
ptx32
-mattr=+ptx20,+sm20 | grep "mad"
2
; RUN: llc < %s -march=
ptx32
-mattr=+ptx20,+sm20,+no-fma | grep -v "mad"
fneg.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
parameter-order.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
bra.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
fdiv-sm10.ll
1
; RUN: llc < %s -march=
ptx32
-mattr=+sm10 | FileCheck %s
fdiv-sm13.ll
1
; RUN: llc < %s -march=
ptx32
-mattr=+sm13 | FileCheck %s
mad.ll
1
; RUN: llc < %s -march=
ptx32
-mattr=+sm13 | FileCheck %s
shl.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
aggregates.ll
1
; RUN: llc < %s -march=
ptx32
-mattr=sm20 | FileCheck %s
bitwise.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
mul.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
selp.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
mov.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
shr.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
llvm-intrinsic.ll
1
; RUN: llc < %s -march=
ptx32
-mattr=+ptx20 | FileCheck %s
add.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
sub.ll
1
; RUN: llc < %s -march=
ptx32
| FileCheck %s
/external/clang/test/CodeGen/
ptx-cc.c
1
// RUN: %clang_cc1 -triple
ptx32
-unknown-unknown -O3 -S -o %t %s -emit-llvm
builtins-ptx.c
1
// RUN: %clang_cc1 -triple
ptx32
-unknown-unknown -emit-llvm -o %t %s
/external/llvm/lib/Target/PTX/TargetInfo/
PTXTargetInfo.cpp
21
RegisterTarget<Triple::
ptx32
> X32(ThePTX32Target, "
ptx32
",
/external/llvm/lib/Support/
Triple.cpp
44
case
ptx32
: return "
ptx32
";
78
case
ptx32
: return "ptx";
171
if (Name == "
ptx32
")
172
return
ptx32
;
213
if (Str == "
ptx32
")
214
return Triple::
ptx32
;
248
if (Str == "
ptx32
")
249
return "
ptx32
";
301
else if (ArchName == "
ptx32
")
[
all
...]
/external/llvm/include/llvm/ADT/
Triple.h
67
ptx32
, // PTX: ptx (32-bit)
enumerator in enum:llvm::Triple::ArchType
Completed in 127 milliseconds
1
2