OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FPUKind
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Support/
TargetParser.h
34
enum
FPUKind
{
107
StringRef getFPUName(unsigned
FPUKind
);
108
unsigned getFPUVersion(unsigned
FPUKind
);
109
unsigned getFPUNeonSupportLevel(unsigned
FPUKind
);
110
unsigned getFPURestriction(unsigned
FPUKind
);
113
bool getFPUFeatures(unsigned
FPUKind
, std::vector<const char *> &Features);
/external/llvm/lib/Support/
TargetParser.cpp
30
// The entries must appear in the order listed in ARM::
FPUKind
for correct indexing
34
ARM::
FPUKind
ID;
135
StringRef llvm::ARM::getFPUName(unsigned
FPUKind
) {
136
if (
FPUKind
>= ARM::FK_LAST)
138
return FPUNames[
FPUKind
].getName();
141
unsigned llvm::ARM::getFPUVersion(unsigned
FPUKind
) {
142
if (
FPUKind
>= ARM::FK_LAST)
144
return FPUNames[
FPUKind
].FPUVersion;
147
unsigned llvm::ARM::getFPUNeonSupportLevel(unsigned
FPUKind
) {
148
if (
FPUKind
>= ARM::FK_LAST
[
all
...]
/external/clang/lib/Basic/
Targets.cpp
[
all
...]
Completed in 226 milliseconds