TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
//===-- TargetParser - Parser for target features ---------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements a target parser to recognise hardware features such as
|
|
|
|
// FPU/CPU/ARCH names as well as specific support such as HDIV, etc.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/ARMBuildAttributes.h"
|
|
|
|
#include "llvm/Support/TargetParser.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2015-05-22 20:43:30 +00:00
|
|
|
#include <cctype>
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2015-06-05 13:29:24 +00:00
|
|
|
// List of canonical FPU names (use getFPUSynonym) and which architectural
|
|
|
|
// features they correspond to (use getFPUFeatures).
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
// FIXME: TableGen this.
|
2015-06-29 09:32:29 +00:00
|
|
|
// The entries must appear in the order listed in ARM::FPUKind for correct indexing
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
struct {
|
|
|
|
const char * Name;
|
|
|
|
ARM::FPUKind ID;
|
2015-06-29 09:32:29 +00:00
|
|
|
ARM::FPUVersion FPUVersion;
|
2015-06-05 13:29:24 +00:00
|
|
|
ARM::NeonSupportLevel NeonSupport;
|
|
|
|
ARM::FPURestriction Restriction;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
} FPUNames[] = {
|
2015-06-29 09:32:29 +00:00
|
|
|
{ "invalid", ARM::FK_INVALID, ARM::FV_NONE, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "none", ARM::FK_NONE, ARM::FV_NONE, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "vfp", ARM::FK_VFP, ARM::FV_VFPV2, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "vfpv2", ARM::FK_VFPV2, ARM::FV_VFPV2, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "vfpv3", ARM::FK_VFPV3, ARM::FV_VFPV3, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "vfpv3-fp16", ARM::FK_VFPV3_FP16, ARM::FV_VFPV3_FP16, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "vfpv3-d16", ARM::FK_VFPV3_D16, ARM::FV_VFPV3, ARM::NS_None, ARM::FR_D16},
|
|
|
|
{ "vfpv3-d16-fp16", ARM::FK_VFPV3_D16_FP16, ARM::FV_VFPV3_FP16, ARM::NS_None, ARM::FR_D16},
|
|
|
|
{ "vfpv3xd", ARM::FK_VFPV3XD, ARM::FV_VFPV3, ARM::NS_None, ARM::FR_SP_D16},
|
|
|
|
{ "vfpv3xd-fp16", ARM::FK_VFPV3XD_FP16, ARM::FV_VFPV3_FP16, ARM::NS_None, ARM::FR_SP_D16},
|
|
|
|
{ "vfpv4", ARM::FK_VFPV4, ARM::FV_VFPV4, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "vfpv4-d16", ARM::FK_VFPV4_D16, ARM::FV_VFPV4, ARM::NS_None, ARM::FR_D16},
|
|
|
|
{ "fpv4-sp-d16", ARM::FK_FPV4_SP_D16, ARM::FV_VFPV4, ARM::NS_None, ARM::FR_SP_D16},
|
|
|
|
{ "fpv5-d16", ARM::FK_FPV5_D16, ARM::FV_VFPV5, ARM::NS_None, ARM::FR_D16},
|
|
|
|
{ "fpv5-sp-d16", ARM::FK_FPV5_SP_D16, ARM::FV_VFPV5, ARM::NS_None, ARM::FR_SP_D16},
|
|
|
|
{ "fp-armv8", ARM::FK_FP_ARMV8, ARM::FV_VFPV5, ARM::NS_None, ARM::FR_None},
|
|
|
|
{ "neon", ARM::FK_NEON, ARM::FV_VFPV3, ARM::NS_Neon, ARM::FR_None},
|
|
|
|
{ "neon-fp16", ARM::FK_NEON_FP16, ARM::FV_VFPV3_FP16, ARM::NS_Neon, ARM::FR_None},
|
|
|
|
{ "neon-vfpv4", ARM::FK_NEON_VFPV4, ARM::FV_VFPV4, ARM::NS_Neon, ARM::FR_None},
|
|
|
|
{ "neon-fp-armv8", ARM::FK_NEON_FP_ARMV8, ARM::FV_VFPV5, ARM::NS_Neon, ARM::FR_None},
|
2015-06-05 13:29:24 +00:00
|
|
|
{ "crypto-neon-fp-armv8",
|
2015-06-29 09:32:29 +00:00
|
|
|
ARM::FK_CRYPTO_NEON_FP_ARMV8, ARM::FV_VFPV5, ARM::NS_Crypto, ARM::FR_None},
|
|
|
|
{ "softvfp", ARM::FK_SOFTVFP, ARM::FV_NONE, ARM::NS_None, ARM::FR_None},
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
};
|
2015-06-05 13:29:24 +00:00
|
|
|
|
2015-05-27 18:15:37 +00:00
|
|
|
// List of canonical arch names (use getArchSynonym).
|
|
|
|
// This table also provides the build attribute fields for CPU arch
|
|
|
|
// and Arch ID, according to the Addenda to the ARM ABI, chapters
|
|
|
|
// 2.4 and 2.3.5.2 respectively.
|
2015-05-28 15:05:18 +00:00
|
|
|
// FIXME: SubArch values were simplified to fit into the expectations
|
|
|
|
// of the triples and are not conforming with their official names.
|
|
|
|
// Check to see if the expectation should be changed.
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
// FIXME: TableGen this.
|
|
|
|
struct {
|
|
|
|
const char *Name;
|
|
|
|
ARM::ArchKind ID;
|
2015-05-27 18:15:37 +00:00
|
|
|
const char *CPUAttr; // CPU class in build attributes.
|
2015-05-28 15:05:18 +00:00
|
|
|
const char *SubArch; // Sub-Arch name.
|
2015-05-27 18:15:37 +00:00
|
|
|
ARMBuildAttrs::CPUArch ArchAttr; // Arch ID in build attributes.
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
} ARCHNames[] = {
|
2015-05-28 15:05:18 +00:00
|
|
|
{ "invalid", ARM::AK_INVALID, nullptr, nullptr, ARMBuildAttrs::CPUArch::Pre_v4 },
|
|
|
|
{ "armv2", ARM::AK_ARMV2, "2", "v2", ARMBuildAttrs::CPUArch::Pre_v4 },
|
|
|
|
{ "armv2a", ARM::AK_ARMV2A, "2A", "v2a", ARMBuildAttrs::CPUArch::Pre_v4 },
|
|
|
|
{ "armv3", ARM::AK_ARMV3, "3", "v3", ARMBuildAttrs::CPUArch::Pre_v4 },
|
|
|
|
{ "armv3m", ARM::AK_ARMV3M, "3M", "v3m", ARMBuildAttrs::CPUArch::Pre_v4 },
|
|
|
|
{ "armv4", ARM::AK_ARMV4, "4", "v4", ARMBuildAttrs::CPUArch::v4 },
|
|
|
|
{ "armv4t", ARM::AK_ARMV4T, "4T", "v4t", ARMBuildAttrs::CPUArch::v4T },
|
|
|
|
{ "armv5t", ARM::AK_ARMV5T, "5T", "v5", ARMBuildAttrs::CPUArch::v5T },
|
|
|
|
{ "armv5te", ARM::AK_ARMV5TE, "5TE", "v5e", ARMBuildAttrs::CPUArch::v5TE },
|
|
|
|
{ "armv5tej", ARM::AK_ARMV5TEJ, "5TEJ", "v5e", ARMBuildAttrs::CPUArch::v5TEJ },
|
|
|
|
{ "armv6", ARM::AK_ARMV6, "6", "v6", ARMBuildAttrs::CPUArch::v6 },
|
|
|
|
{ "armv6k", ARM::AK_ARMV6K, "6K", "v6k", ARMBuildAttrs::CPUArch::v6K },
|
|
|
|
{ "armv6t2", ARM::AK_ARMV6T2, "6T2", "v6t2", ARMBuildAttrs::CPUArch::v6T2 },
|
|
|
|
{ "armv6z", ARM::AK_ARMV6Z, "6Z", "v6z", ARMBuildAttrs::CPUArch::v6KZ },
|
|
|
|
{ "armv6zk", ARM::AK_ARMV6ZK, "6ZK", "v6zk", ARMBuildAttrs::CPUArch::v6KZ },
|
|
|
|
{ "armv6-m", ARM::AK_ARMV6M, "6-M", "v6m", ARMBuildAttrs::CPUArch::v6_M },
|
|
|
|
{ "armv6s-m", ARM::AK_ARMV6SM, "6S-M", "v6sm", ARMBuildAttrs::CPUArch::v6S_M },
|
|
|
|
{ "armv7-a", ARM::AK_ARMV7A, "7-A", "v7", ARMBuildAttrs::CPUArch::v7 },
|
|
|
|
{ "armv7-r", ARM::AK_ARMV7R, "7-R", "v7r", ARMBuildAttrs::CPUArch::v7 },
|
|
|
|
{ "armv7-m", ARM::AK_ARMV7M, "7-M", "v7m", ARMBuildAttrs::CPUArch::v7 },
|
|
|
|
{ "armv7e-m", ARM::AK_ARMV7EM, "7E-M", "v7em", ARMBuildAttrs::CPUArch::v7E_M },
|
|
|
|
{ "armv8-a", ARM::AK_ARMV8A, "8-A", "v8", ARMBuildAttrs::CPUArch::v8 },
|
|
|
|
{ "armv8.1-a", ARM::AK_ARMV8_1A, "8.1-A", "v8.1a", ARMBuildAttrs::CPUArch::v8 },
|
2015-05-20 15:05:07 +00:00
|
|
|
// Non-standard Arch names.
|
2015-05-28 15:05:18 +00:00
|
|
|
{ "iwmmxt", ARM::AK_IWMMXT, "iwmmxt", "", ARMBuildAttrs::CPUArch::v5TE },
|
|
|
|
{ "iwmmxt2", ARM::AK_IWMMXT2, "iwmmxt2", "", ARMBuildAttrs::CPUArch::v5TE },
|
|
|
|
{ "xscale", ARM::AK_XSCALE, "xscale", "", ARMBuildAttrs::CPUArch::v5TE },
|
|
|
|
{ "armv5", ARM::AK_ARMV5, "5T", "v5", ARMBuildAttrs::CPUArch::v5T },
|
|
|
|
{ "armv5e", ARM::AK_ARMV5E, "5TE", "v5e", ARMBuildAttrs::CPUArch::v5TE },
|
|
|
|
{ "armv6j", ARM::AK_ARMV6J, "6J", "v6", ARMBuildAttrs::CPUArch::v6 },
|
|
|
|
{ "armv6hl", ARM::AK_ARMV6HL, "6-M", "v6hl", ARMBuildAttrs::CPUArch::v6_M },
|
|
|
|
{ "armv7", ARM::AK_ARMV7, "7", "v7", ARMBuildAttrs::CPUArch::v7 },
|
|
|
|
{ "armv7l", ARM::AK_ARMV7L, "7-L", "v7l", ARMBuildAttrs::CPUArch::v7 },
|
|
|
|
{ "armv7hl", ARM::AK_ARMV7HL, "7-L", "v7hl", ARMBuildAttrs::CPUArch::v7 },
|
|
|
|
{ "armv7s", ARM::AK_ARMV7S, "7-S", "v7s", ARMBuildAttrs::CPUArch::v7 }
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
};
|
2015-05-28 08:59:03 +00:00
|
|
|
// List of Arch Extension names.
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
// FIXME: TableGen this.
|
|
|
|
struct {
|
|
|
|
const char *Name;
|
|
|
|
ARM::ArchExtKind ID;
|
|
|
|
} ARCHExtNames[] = {
|
2015-05-12 10:33:58 +00:00
|
|
|
{ "invalid", ARM::AEK_INVALID },
|
|
|
|
{ "crc", ARM::AEK_CRC },
|
|
|
|
{ "crypto", ARM::AEK_CRYPTO },
|
|
|
|
{ "fp", ARM::AEK_FP },
|
|
|
|
{ "idiv", ARM::AEK_HWDIV },
|
|
|
|
{ "mp", ARM::AEK_MP },
|
2015-05-30 10:30:02 +00:00
|
|
|
{ "simd", ARM::AEK_SIMD },
|
2015-05-12 10:33:58 +00:00
|
|
|
{ "sec", ARM::AEK_SEC },
|
2015-05-30 10:30:02 +00:00
|
|
|
{ "virt", ARM::AEK_VIRT },
|
|
|
|
{ "os", ARM::AEK_OS },
|
|
|
|
{ "iwmmxt", ARM::AEK_IWMMXT },
|
|
|
|
{ "iwmmxt2", ARM::AEK_IWMMXT2 },
|
|
|
|
{ "maverick", ARM::AEK_MAVERICK },
|
|
|
|
{ "xscale", ARM::AEK_XSCALE }
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
};
|
2015-05-20 15:05:07 +00:00
|
|
|
// List of CPU names and their arches.
|
|
|
|
// The same CPU can have multiple arches and can be default on multiple arches.
|
|
|
|
// When finding the Arch for a CPU, first-found prevails. Sort them accordingly.
|
2015-05-28 12:10:37 +00:00
|
|
|
// When this becomes table-generated, we'd probably need two tables.
|
2015-05-20 15:05:07 +00:00
|
|
|
// FIXME: TableGen this.
|
|
|
|
struct {
|
|
|
|
const char *Name;
|
|
|
|
ARM::ArchKind ArchID;
|
|
|
|
bool Default;
|
|
|
|
} CPUNames[] = {
|
|
|
|
{ "arm2", ARM::AK_ARMV2, true },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "arm3", ARM::AK_ARMV2A, true },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "arm6", ARM::AK_ARMV3, true },
|
|
|
|
{ "arm7m", ARM::AK_ARMV3M, true },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "arm8", ARM::AK_ARMV4, false },
|
|
|
|
{ "arm810", ARM::AK_ARMV4, false },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "strongarm", ARM::AK_ARMV4, true },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "strongarm110", ARM::AK_ARMV4, false },
|
|
|
|
{ "strongarm1100", ARM::AK_ARMV4, false },
|
|
|
|
{ "strongarm1110", ARM::AK_ARMV4, false },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "arm7tdmi", ARM::AK_ARMV4T, true },
|
|
|
|
{ "arm7tdmi-s", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm710t", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm720t", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm9", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm9tdmi", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm920", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm920t", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm922t", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm9312", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm940t", ARM::AK_ARMV4T, false },
|
|
|
|
{ "ep9312", ARM::AK_ARMV4T, false },
|
|
|
|
{ "arm10tdmi", ARM::AK_ARMV5T, true },
|
|
|
|
{ "arm1020t", ARM::AK_ARMV5T, false },
|
|
|
|
{ "arm9e", ARM::AK_ARMV5TE, false },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "arm946e-s", ARM::AK_ARMV5TE, false },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "arm966e-s", ARM::AK_ARMV5TE, false },
|
|
|
|
{ "arm968e-s", ARM::AK_ARMV5TE, false },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "arm10e", ARM::AK_ARMV5TE, false },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "arm1020e", ARM::AK_ARMV5TE, false },
|
|
|
|
{ "arm1022e", ARM::AK_ARMV5TE, true },
|
|
|
|
{ "iwmmxt", ARM::AK_ARMV5TE, false },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "xscale", ARM::AK_ARMV5TE, false },
|
|
|
|
{ "arm926ej-s", ARM::AK_ARMV5TEJ, true },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "arm1136jf-s", ARM::AK_ARMV6, true },
|
|
|
|
{ "arm1176j-s", ARM::AK_ARMV6K, false },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "arm1176jz-s", ARM::AK_ARMV6K, false },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "mpcore", ARM::AK_ARMV6K, false },
|
|
|
|
{ "mpcorenovfp", ARM::AK_ARMV6K, false },
|
|
|
|
{ "arm1176jzf-s", ARM::AK_ARMV6K, true },
|
|
|
|
{ "arm1176jzf-s", ARM::AK_ARMV6Z, true },
|
|
|
|
{ "arm1176jzf-s", ARM::AK_ARMV6ZK, true },
|
|
|
|
{ "arm1156t2-s", ARM::AK_ARMV6T2, true },
|
|
|
|
{ "arm1156t2f-s", ARM::AK_ARMV6T2, false },
|
|
|
|
{ "cortex-m0", ARM::AK_ARMV6M, true },
|
|
|
|
{ "cortex-m0plus", ARM::AK_ARMV6M, false },
|
|
|
|
{ "cortex-m1", ARM::AK_ARMV6M, false },
|
|
|
|
{ "sc000", ARM::AK_ARMV6M, false },
|
|
|
|
{ "cortex-a5", ARM::AK_ARMV7A, false },
|
|
|
|
{ "cortex-a7", ARM::AK_ARMV7A, false },
|
|
|
|
{ "cortex-a8", ARM::AK_ARMV7A, true },
|
|
|
|
{ "cortex-a9", ARM::AK_ARMV7A, false },
|
|
|
|
{ "cortex-a12", ARM::AK_ARMV7A, false },
|
|
|
|
{ "cortex-a15", ARM::AK_ARMV7A, false },
|
|
|
|
{ "cortex-a17", ARM::AK_ARMV7A, false },
|
|
|
|
{ "krait", ARM::AK_ARMV7A, false },
|
|
|
|
{ "cortex-r4", ARM::AK_ARMV7R, true },
|
|
|
|
{ "cortex-r4f", ARM::AK_ARMV7R, false },
|
|
|
|
{ "cortex-r5", ARM::AK_ARMV7R, false },
|
|
|
|
{ "cortex-r7", ARM::AK_ARMV7R, false },
|
|
|
|
{ "sc300", ARM::AK_ARMV7M, false },
|
|
|
|
{ "cortex-m3", ARM::AK_ARMV7M, true },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "cortex-m4", ARM::AK_ARMV7EM, true },
|
|
|
|
{ "cortex-m7", ARM::AK_ARMV7EM, false },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "cortex-a53", ARM::AK_ARMV8A, true },
|
|
|
|
{ "cortex-a57", ARM::AK_ARMV8A, false },
|
|
|
|
{ "cortex-a72", ARM::AK_ARMV8A, false },
|
|
|
|
{ "cyclone", ARM::AK_ARMV8A, false },
|
|
|
|
{ "generic", ARM::AK_ARMV8_1A, true },
|
|
|
|
// Non-standard Arch names.
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "iwmmxt", ARM::AK_IWMMXT, true },
|
|
|
|
{ "xscale", ARM::AK_XSCALE, true },
|
|
|
|
{ "arm10tdmi", ARM::AK_ARMV5, true },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "arm1022e", ARM::AK_ARMV5E, true },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "arm1136j-s", ARM::AK_ARMV6J, true },
|
|
|
|
{ "arm1136jz-s", ARM::AK_ARMV6J, false },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "cortex-m0", ARM::AK_ARMV6SM, true },
|
2015-05-21 13:52:20 +00:00
|
|
|
{ "arm1176jzf-s", ARM::AK_ARMV6HL, true },
|
2015-05-28 12:10:37 +00:00
|
|
|
{ "cortex-a8", ARM::AK_ARMV7, true },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "cortex-a8", ARM::AK_ARMV7L, true },
|
2015-05-21 13:52:20 +00:00
|
|
|
{ "cortex-a8", ARM::AK_ARMV7HL, true },
|
2015-05-20 15:05:07 +00:00
|
|
|
{ "cortex-m4", ARM::AK_ARMV7EM, true },
|
|
|
|
{ "swift", ARM::AK_ARMV7S, true },
|
|
|
|
// Invalid CPU
|
|
|
|
{ "invalid", ARM::AK_INVALID, true }
|
|
|
|
};
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// ======================================================= //
|
|
|
|
// Information by ID
|
|
|
|
// ======================================================= //
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
const char *ARMTargetParser::getFPUName(unsigned FPUKind) {
|
|
|
|
if (FPUKind >= ARM::FK_LAST)
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
return nullptr;
|
2015-05-20 15:05:07 +00:00
|
|
|
return FPUNames[FPUKind].Name;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
2015-06-05 13:29:24 +00:00
|
|
|
unsigned ARMTargetParser::getFPUVersion(unsigned FPUKind) {
|
|
|
|
if (FPUKind >= ARM::FK_LAST)
|
|
|
|
return 0;
|
|
|
|
return FPUNames[FPUKind].FPUVersion;
|
|
|
|
}
|
|
|
|
|
2015-06-05 14:33:02 +00:00
|
|
|
unsigned ARMTargetParser::getFPUNeonSupportLevel(unsigned FPUKind) {
|
2015-06-05 13:29:24 +00:00
|
|
|
if (FPUKind >= ARM::FK_LAST)
|
|
|
|
return 0;
|
|
|
|
return FPUNames[FPUKind].NeonSupport;
|
|
|
|
}
|
|
|
|
|
2015-06-05 14:33:02 +00:00
|
|
|
unsigned ARMTargetParser::getFPURestriction(unsigned FPUKind) {
|
2015-06-05 13:29:24 +00:00
|
|
|
if (FPUKind >= ARM::FK_LAST)
|
|
|
|
return 0;
|
|
|
|
return FPUNames[FPUKind].Restriction;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ARMTargetParser::getFPUFeatures(unsigned FPUKind,
|
|
|
|
std::vector<const char *> &Features) {
|
|
|
|
|
|
|
|
if (FPUKind >= ARM::FK_LAST || FPUKind == ARM::FK_INVALID)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// fp-only-sp and d16 subtarget features are independent of each other, so we
|
|
|
|
// must enable/disable both.
|
|
|
|
switch (FPUNames[FPUKind].Restriction) {
|
|
|
|
case ARM::FR_SP_D16:
|
|
|
|
Features.push_back("+fp-only-sp");
|
|
|
|
Features.push_back("+d16");
|
|
|
|
break;
|
|
|
|
case ARM::FR_D16:
|
|
|
|
Features.push_back("-fp-only-sp");
|
|
|
|
Features.push_back("+d16");
|
|
|
|
break;
|
|
|
|
case ARM::FR_None:
|
|
|
|
Features.push_back("-fp-only-sp");
|
|
|
|
Features.push_back("-d16");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FPU version subtarget features are inclusive of lower-numbered ones, so
|
|
|
|
// enable the one corresponding to this version and disable all that are
|
2015-06-12 09:38:51 +00:00
|
|
|
// higher. We also have to make sure to disable fp16 when vfp4 is disabled,
|
|
|
|
// as +vfp4 implies +fp16 but -vfp4 does not imply -fp16.
|
2015-06-05 13:29:24 +00:00
|
|
|
switch (FPUNames[FPUKind].FPUVersion) {
|
2015-06-29 09:32:29 +00:00
|
|
|
case ARM::FV_VFPV5:
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("+fp-armv8");
|
|
|
|
break;
|
2015-06-29 09:32:29 +00:00
|
|
|
case ARM::FV_VFPV4:
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("+vfp4");
|
|
|
|
Features.push_back("-fp-armv8");
|
|
|
|
break;
|
2015-06-29 09:32:29 +00:00
|
|
|
case ARM::FV_VFPV3_FP16:
|
|
|
|
Features.push_back("+vfp3");
|
|
|
|
Features.push_back("+fp16");
|
|
|
|
Features.push_back("-vfp4");
|
|
|
|
Features.push_back("-fp-armv8");
|
|
|
|
break;
|
|
|
|
case ARM::FV_VFPV3:
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("+vfp3");
|
2015-06-12 09:38:51 +00:00
|
|
|
Features.push_back("-fp16");
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("-vfp4");
|
|
|
|
Features.push_back("-fp-armv8");
|
|
|
|
break;
|
2015-06-29 09:32:29 +00:00
|
|
|
case ARM::FV_VFPV2:
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("+vfp2");
|
|
|
|
Features.push_back("-vfp3");
|
2015-06-12 09:38:51 +00:00
|
|
|
Features.push_back("-fp16");
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("-vfp4");
|
|
|
|
Features.push_back("-fp-armv8");
|
|
|
|
break;
|
2015-06-29 09:32:29 +00:00
|
|
|
case ARM::FV_NONE:
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("-vfp2");
|
|
|
|
Features.push_back("-vfp3");
|
2015-06-12 09:38:51 +00:00
|
|
|
Features.push_back("-fp16");
|
2015-06-05 13:29:24 +00:00
|
|
|
Features.push_back("-vfp4");
|
|
|
|
Features.push_back("-fp-armv8");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// crypto includes neon, so we handle this similarly to FPU version.
|
|
|
|
switch (FPUNames[FPUKind].NeonSupport) {
|
|
|
|
case ARM::NS_Crypto:
|
|
|
|
Features.push_back("+crypto");
|
|
|
|
break;
|
|
|
|
case ARM::NS_Neon:
|
|
|
|
Features.push_back("+neon");
|
|
|
|
Features.push_back("-crypto");
|
|
|
|
break;
|
|
|
|
case ARM::NS_None:
|
|
|
|
Features.push_back("-neon");
|
|
|
|
Features.push_back("-crypto");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
const char *ARMTargetParser::getArchName(unsigned ArchKind) {
|
|
|
|
if (ArchKind >= ARM::AK_LAST)
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
return nullptr;
|
2015-05-20 15:05:07 +00:00
|
|
|
return ARCHNames[ArchKind].Name;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-27 18:15:37 +00:00
|
|
|
const char *ARMTargetParser::getCPUAttr(unsigned ArchKind) {
|
2015-05-20 15:05:07 +00:00
|
|
|
if (ArchKind >= ARM::AK_LAST)
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
return nullptr;
|
2015-05-27 18:15:37 +00:00
|
|
|
return ARCHNames[ArchKind].CPUAttr;
|
2015-05-20 15:05:07 +00:00
|
|
|
}
|
|
|
|
|
2015-05-28 15:05:18 +00:00
|
|
|
const char *ARMTargetParser::getSubArch(unsigned ArchKind) {
|
|
|
|
if (ArchKind >= ARM::AK_LAST)
|
|
|
|
return nullptr;
|
|
|
|
return ARCHNames[ArchKind].SubArch;
|
|
|
|
}
|
|
|
|
|
2015-05-27 18:15:37 +00:00
|
|
|
unsigned ARMTargetParser::getArchAttr(unsigned ArchKind) {
|
2015-05-20 15:05:07 +00:00
|
|
|
if (ArchKind >= ARM::AK_LAST)
|
|
|
|
return ARMBuildAttrs::CPUArch::Pre_v4;
|
2015-05-27 18:15:37 +00:00
|
|
|
return ARCHNames[ArchKind].ArchAttr;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
const char *ARMTargetParser::getArchExtName(unsigned ArchExtKind) {
|
|
|
|
if (ArchExtKind >= ARM::AEK_LAST)
|
|
|
|
return nullptr;
|
|
|
|
return ARCHExtNames[ArchExtKind].Name;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
const char *ARMTargetParser::getDefaultCPU(StringRef Arch) {
|
|
|
|
unsigned AK = parseArch(Arch);
|
|
|
|
if (AK == ARM::AK_INVALID)
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
return nullptr;
|
2015-05-20 15:05:07 +00:00
|
|
|
|
|
|
|
// Look for multiple AKs to find the default for pair AK+Name.
|
|
|
|
for (const auto CPU : CPUNames) {
|
|
|
|
if (CPU.ArchID == AK && CPU.Default)
|
|
|
|
return CPU.Name;
|
|
|
|
}
|
|
|
|
return nullptr;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ======================================================= //
|
|
|
|
// Parsers
|
|
|
|
// ======================================================= //
|
|
|
|
|
|
|
|
StringRef ARMTargetParser::getFPUSynonym(StringRef FPU) {
|
|
|
|
return StringSwitch<StringRef>(FPU)
|
|
|
|
.Cases("fpa", "fpe2", "fpe3", "maverick", "invalid") // Unsupported
|
|
|
|
.Case("vfp2", "vfpv2")
|
|
|
|
.Case("vfp3", "vfpv3")
|
|
|
|
.Case("vfp4", "vfpv4")
|
|
|
|
.Case("vfp3-d16", "vfpv3-d16")
|
|
|
|
.Case("vfp4-d16", "vfpv4-d16")
|
2015-06-05 13:31:19 +00:00
|
|
|
.Cases("fp4-sp-d16", "vfpv4-sp-d16", "fpv4-sp-d16")
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
.Cases("fp4-dp-d16", "fpv4-dp-d16", "vfpv4-d16")
|
2015-06-05 13:31:19 +00:00
|
|
|
.Case("fp5-sp-d16", "fpv5-sp-d16")
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
.Cases("fp5-dp-d16", "fpv5-dp-d16", "fpv5-d16")
|
|
|
|
// FIXME: Clang uses it, but it's bogus, since neon defaults to vfpv3.
|
|
|
|
.Case("neon-vfpv3", "neon")
|
|
|
|
.Default(FPU);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef ARMTargetParser::getArchSynonym(StringRef Arch) {
|
|
|
|
return StringSwitch<StringRef>(Arch)
|
2015-06-04 21:26:58 +00:00
|
|
|
.Case("v6sm", "v6s-m")
|
|
|
|
.Case("v6m", "v6-m")
|
|
|
|
.Case("v7a", "v7-a")
|
|
|
|
.Case("v7r", "v7-r")
|
|
|
|
.Case("v7m", "v7-m")
|
|
|
|
.Case("v7em", "v7e-m")
|
2015-06-05 12:39:28 +00:00
|
|
|
.Cases("v8", "v8a", "aarch64", "arm64", "v8-a")
|
2015-06-04 21:26:58 +00:00
|
|
|
.Case("v8.1a", "v8.1-a")
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
.Default(Arch);
|
|
|
|
}
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
// MArch is expected to be of the form (arm|thumb)?(eb)?(v.+)?(eb)?, but
|
|
|
|
// (iwmmxt|xscale)(eb)? is also permitted. If the former, return
|
2015-05-22 20:43:30 +00:00
|
|
|
// "v.+", if the latter, return unmodified string, minus 'eb'.
|
|
|
|
// If invalid, return empty string.
|
2015-05-20 15:05:07 +00:00
|
|
|
StringRef ARMTargetParser::getCanonicalArchName(StringRef Arch) {
|
|
|
|
size_t offset = StringRef::npos;
|
|
|
|
StringRef A = Arch;
|
2015-05-21 13:52:20 +00:00
|
|
|
StringRef Error = "";
|
2015-05-20 15:05:07 +00:00
|
|
|
|
|
|
|
// Begins with "arm" / "thumb", move past it.
|
2015-05-22 20:43:30 +00:00
|
|
|
if (A.startswith("arm64"))
|
|
|
|
offset = 5;
|
|
|
|
else if (A.startswith("arm"))
|
2015-05-20 15:05:07 +00:00
|
|
|
offset = 3;
|
|
|
|
else if (A.startswith("thumb"))
|
|
|
|
offset = 5;
|
2015-05-21 13:52:20 +00:00
|
|
|
else if (A.startswith("aarch64")) {
|
|
|
|
offset = 7;
|
|
|
|
// AArch64 uses "_be", not "eb" suffix.
|
|
|
|
if (A.find("eb") != StringRef::npos)
|
|
|
|
return Error;
|
|
|
|
if (A.substr(offset,3) == "_be")
|
|
|
|
offset += 3;
|
|
|
|
}
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
// Ex. "armebv7", move past the "eb".
|
|
|
|
if (offset != StringRef::npos && A.substr(offset, 2) == "eb")
|
|
|
|
offset += 2;
|
|
|
|
// Or, if it ends with eb ("armv7eb"), chop it off.
|
|
|
|
else if (A.endswith("eb"))
|
|
|
|
A = A.substr(0, A.size() - 2);
|
2015-05-22 20:43:30 +00:00
|
|
|
// Trim the head
|
|
|
|
if (offset != StringRef::npos)
|
2015-05-20 15:05:07 +00:00
|
|
|
A = A.substr(offset);
|
|
|
|
|
2015-05-22 20:43:30 +00:00
|
|
|
// Empty string means offset reached the end, which means it's valid.
|
2015-05-20 15:05:07 +00:00
|
|
|
if (A.empty())
|
|
|
|
return Arch;
|
|
|
|
|
2015-05-22 20:43:30 +00:00
|
|
|
// Only match non-marketing names
|
|
|
|
if (offset != StringRef::npos) {
|
|
|
|
// Must start with 'vN'.
|
|
|
|
if (A[0] != 'v' || !std::isdigit(A[1]))
|
|
|
|
return Error;
|
|
|
|
// Can't have an extra 'eb'.
|
|
|
|
if (A.find("eb") != StringRef::npos)
|
|
|
|
return Error;
|
|
|
|
}
|
2015-05-20 15:05:07 +00:00
|
|
|
|
2015-05-22 20:43:30 +00:00
|
|
|
// Arch will either be a 'v' name (v7a) or a marketing name (xscale).
|
2015-05-20 15:05:07 +00:00
|
|
|
return A;
|
|
|
|
}
|
|
|
|
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
unsigned ARMTargetParser::parseFPU(StringRef FPU) {
|
|
|
|
StringRef Syn = getFPUSynonym(FPU);
|
|
|
|
for (const auto F : FPUNames) {
|
|
|
|
if (Syn == F.Name)
|
|
|
|
return F.ID;
|
|
|
|
}
|
2015-05-12 10:33:58 +00:00
|
|
|
return ARM::FK_INVALID;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
// Allows partial match, ex. "v7a" matches "armv7a".
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
unsigned ARMTargetParser::parseArch(StringRef Arch) {
|
2015-06-04 21:26:58 +00:00
|
|
|
Arch = getCanonicalArchName(Arch);
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
StringRef Syn = getArchSynonym(Arch);
|
|
|
|
for (const auto A : ARCHNames) {
|
2015-05-20 15:05:07 +00:00
|
|
|
if (StringRef(A.Name).endswith(Syn))
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
return A.ID;
|
|
|
|
}
|
2015-05-12 10:33:58 +00:00
|
|
|
return ARM::AK_INVALID;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned ARMTargetParser::parseArchExt(StringRef ArchExt) {
|
|
|
|
for (const auto A : ARCHExtNames) {
|
|
|
|
if (ArchExt == A.Name)
|
|
|
|
return A.ID;
|
|
|
|
}
|
2015-05-12 10:33:58 +00:00
|
|
|
return ARM::AEK_INVALID;
|
TargetParser: FPU/ARCH/EXT parsing refactory - NFC
This new class in a global context contain arch-specific knowledge in order
to provide LLVM libraries, tools and projects with the ability to understand
the architectures. For now, only FPU, ARCH and ARCH extensions on ARM are
supported.
Current behaviour it to parse from free-text to enum values and back, so that
all users can share the same parser and codes. This simplifies a lot both the
ASM/Obj streamers in the back-end (where this came from), and the front-end
parsers for command line arguments (where this is going to be used next).
The previous implementation, using .def/.h includes is deprecated due to its
inflexibility to be built without the backend support and for being too
cumbersome. As more architectures join this scheme, and as more features of
such architectures are added (such as hardware features, type sizes, etc) into
a full blown TargetDescription class, having a set of classes is the most
sane implementation.
The ultimate goal of this refactor both LLVM's and Clang's target description
classes into one unique interface, so that we can de-duplicate and standardise
the descriptions, as well as make it available for other front-ends, tools,
etc.
The FPU parsing for command line options in Clang has been converted to use
this new library and a number of aliases were added for compatibility:
* A bogus neon-vfpv3 alias (neon defaults to vfp3)
* armv5/v6
* {fp4/fp5}-{sp/dp}-d16
Next steps:
* Port Clang's ARCH/EXT parsing to use this library.
* Create a TableGen back-end to generate this information.
* Run this TableGen process regardless of which back-ends are built.
* Expose more information and rename it to TargetDescription.
* Continue re-factoring Clang to use as much of it as possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236900 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 21:04:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 15:05:07 +00:00
|
|
|
unsigned ARMTargetParser::parseCPUArch(StringRef CPU) {
|
|
|
|
for (const auto C : CPUNames) {
|
|
|
|
if (CPU == C.Name)
|
|
|
|
return C.ArchID;
|
|
|
|
}
|
|
|
|
return ARM::AK_INVALID;
|
|
|
|
}
|
|
|
|
|
2015-05-21 13:52:20 +00:00
|
|
|
// ARM, Thumb, AArch64
|
|
|
|
unsigned ARMTargetParser::parseArchISA(StringRef Arch) {
|
|
|
|
return StringSwitch<unsigned>(Arch)
|
|
|
|
.StartsWith("aarch64", ARM::IK_AARCH64)
|
|
|
|
.StartsWith("arm64", ARM::IK_AARCH64)
|
|
|
|
.StartsWith("thumb", ARM::IK_THUMB)
|
|
|
|
.StartsWith("arm", ARM::IK_ARM)
|
|
|
|
.Default(ARM::EK_INVALID);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Little/Big endian
|
|
|
|
unsigned ARMTargetParser::parseArchEndian(StringRef Arch) {
|
|
|
|
if (Arch.startswith("armeb") ||
|
|
|
|
Arch.startswith("thumbeb") ||
|
|
|
|
Arch.startswith("aarch64_be"))
|
|
|
|
return ARM::EK_BIG;
|
|
|
|
|
|
|
|
if (Arch.startswith("arm") || Arch.startswith("thumb")) {
|
|
|
|
if (Arch.endswith("eb"))
|
|
|
|
return ARM::EK_BIG;
|
|
|
|
else
|
|
|
|
return ARM::EK_LITTLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Arch.startswith("aarch64"))
|
|
|
|
return ARM::EK_LITTLE;
|
|
|
|
|
|
|
|
return ARM::EK_INVALID;
|
|
|
|
}
|
|
|
|
|
2015-05-22 18:17:55 +00:00
|
|
|
// Profile A/R/M
|
|
|
|
unsigned ARMTargetParser::parseArchProfile(StringRef Arch) {
|
|
|
|
Arch = getCanonicalArchName(Arch);
|
|
|
|
switch(parseArch(Arch)) {
|
|
|
|
case ARM::AK_ARMV6M:
|
|
|
|
case ARM::AK_ARMV7M:
|
|
|
|
case ARM::AK_ARMV6SM:
|
|
|
|
case ARM::AK_ARMV7EM:
|
|
|
|
return ARM::PK_M;
|
|
|
|
case ARM::AK_ARMV7R:
|
|
|
|
return ARM::PK_R;
|
|
|
|
case ARM::AK_ARMV7:
|
|
|
|
case ARM::AK_ARMV7A:
|
|
|
|
case ARM::AK_ARMV8A:
|
|
|
|
case ARM::AK_ARMV8_1A:
|
|
|
|
return ARM::PK_A;
|
|
|
|
}
|
|
|
|
return ARM::PK_INVALID;
|
|
|
|
}
|
|
|
|
|
2015-05-22 20:43:30 +00:00
|
|
|
// Version number (ex. v7 = 7).
|
2015-05-22 18:17:55 +00:00
|
|
|
unsigned ARMTargetParser::parseArchVersion(StringRef Arch) {
|
|
|
|
Arch = getCanonicalArchName(Arch);
|
|
|
|
switch(parseArch(Arch)) {
|
|
|
|
case ARM::AK_ARMV2:
|
|
|
|
case ARM::AK_ARMV2A:
|
|
|
|
return 2;
|
|
|
|
case ARM::AK_ARMV3:
|
|
|
|
case ARM::AK_ARMV3M:
|
|
|
|
return 3;
|
|
|
|
case ARM::AK_ARMV4:
|
|
|
|
case ARM::AK_ARMV4T:
|
|
|
|
return 4;
|
|
|
|
case ARM::AK_ARMV5:
|
|
|
|
case ARM::AK_ARMV5T:
|
|
|
|
case ARM::AK_ARMV5TE:
|
|
|
|
case ARM::AK_IWMMXT:
|
|
|
|
case ARM::AK_IWMMXT2:
|
|
|
|
case ARM::AK_XSCALE:
|
|
|
|
case ARM::AK_ARMV5E:
|
|
|
|
case ARM::AK_ARMV5TEJ:
|
|
|
|
return 5;
|
|
|
|
case ARM::AK_ARMV6:
|
|
|
|
case ARM::AK_ARMV6J:
|
|
|
|
case ARM::AK_ARMV6K:
|
|
|
|
case ARM::AK_ARMV6T2:
|
|
|
|
case ARM::AK_ARMV6Z:
|
|
|
|
case ARM::AK_ARMV6ZK:
|
|
|
|
case ARM::AK_ARMV6M:
|
|
|
|
case ARM::AK_ARMV6SM:
|
|
|
|
case ARM::AK_ARMV6HL:
|
|
|
|
return 6;
|
|
|
|
case ARM::AK_ARMV7:
|
|
|
|
case ARM::AK_ARMV7A:
|
|
|
|
case ARM::AK_ARMV7R:
|
|
|
|
case ARM::AK_ARMV7M:
|
|
|
|
case ARM::AK_ARMV7L:
|
|
|
|
case ARM::AK_ARMV7HL:
|
|
|
|
case ARM::AK_ARMV7S:
|
|
|
|
case ARM::AK_ARMV7EM:
|
|
|
|
return 7;
|
|
|
|
case ARM::AK_ARMV8A:
|
|
|
|
case ARM::AK_ARMV8_1A:
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|