Home | History | Annotate | Download | only in Support

Lines Matching refs:ArchType

20 const char *Triple::getArchTypeName(ArchType Kind) {
71 llvm_unreachable("Invalid ArchType!");
74 const char *Triple::getArchTypePrefix(ArchType Kind) {
224 static Triple::ArchType parseBPFArch(StringRef ArchName) {
239 Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
240 Triple::ArchType BPFArch(parseBPFArch(Name));
241 return StringSwitch<Triple::ArchType>(Name)
291 static Triple::ArchType parseARMArch(StringRef ArchName) {
295 Triple::ArchType arch = Triple::UnknownArch;
349 static Triple::ArchType parseArch(StringRef ArchName) {
350 auto AT = StringSwitch<Triple::ArchType>(ArchName)
402 // ArchType result.
706 ArchType Arch = UnknownArch;
1055 void Triple::setArch(ArchType Kind) {
1115 static unsigned getArchPointerBitWidth(llvm::Triple::ArchType Arch) {