OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ARMProcFamily
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/AArch64/
AArch64Subtarget.h
38
///
ARMProcFamily
- ARM processor family: Cortex-A53, Cortex-A57, and others.
39
ARMProcFamilyEnum
ARMProcFamily
;
/external/llvm/lib/Target/ARM/
ARMSubtarget.h
58
///
ARMProcFamily
- ARM processor family: Cortex-A8, Cortex-A9, and others.
59
ARMProcFamilyEnum
ARMProcFamily
;
320
bool isCortexA5() const { return
ARMProcFamily
== CortexA5; }
321
bool isCortexA7() const { return
ARMProcFamily
== CortexA7; }
322
bool isCortexA8() const { return
ARMProcFamily
== CortexA8; }
323
bool isCortexA9() const { return
ARMProcFamily
== CortexA9; }
324
bool isCortexA15() const { return
ARMProcFamily
== CortexA15; }
325
bool isSwift() const { return
ARMProcFamily
== Swift; }
328
bool isCortexR5() const { return
ARMProcFamily
== CortexR5; }
329
bool isKrait() const { return
ARMProcFamily
== Krait;
[
all
...]
Completed in 166 milliseconds