e70425
diff --git a/CONFIG/include/atlconf.h b/CONFIG/include/atlconf.h
e70425
index cdceda3..e6d71d3 100644
e70425
--- a/CONFIG/include/atlconf.h
e70425
+++ b/CONFIG/include/atlconf.h
e70425
@@ -16,9 +16,9 @@ enum OSTYPE {OSOther=0, OSLinux, OSSunOS, OSSunOS4, OSOSF1, OSIRIX, OSAIX,
e70425
                        ((OS_) == OSWin64) )
e70425
 
e70425
 enum ARCHFAM {AFOther=0, AFPPC, AFSPARC, AFALPHA, AFX86, AFIA64, AFMIPS,
e70425
-              AFARM, AFS390};
e70425
+              AFARM, AFS390, AFAARCH64};
e70425
 
e70425
-#define NMACH 47
e70425
+#define NMACH 48
e70425
 static char *machnam[NMACH] =
e70425
    {"UNKNOWN", "POWER3", "POWER4", "POWER5", "PPCG4", "PPCG5",
e70425
     "POWER6", "POWER7", "IBMz9", "IBMz10", "IBMz196",
e70425
@@ -28,7 +28,7 @@ static char *machnam[NMACH] =
e70425
     "Efficeon", "K7", "HAMMER", "AMD64K10h", "AMDDOZER", "UNKNOWNx86",
e70425
     "IA64Itan", "IA64Itan2",
e70425
     "USI", "USII", "USIII", "USIV", "UST2", "UnknownUS",
e70425
-    "MIPSR1xK", "MIPSICE9", "ARMv7"};
e70425
+    "MIPSR1xK", "MIPSICE9", "ARMv7", "AARCH64"};
e70425
 enum MACHTYPE {MACHOther, IbmPwr3, IbmPwr4, IbmPwr5, PPCG4, PPCG5,
e70425
                IbmPwr6, IbmPwr7,
e70425
                IbmZ9, IbmZ10, IbmZ196,  /* s390(x) in Linux */
e70425
@@ -41,7 +41,8 @@ enum MACHTYPE {MACHOther, IbmPwr3, IbmPwr4, IbmPwr5, PPCG4, PPCG5,
e70425
                SunUSI, SunUSII, SunUSIII, SunUSIV, SunUST2, SunUSX,
e70425
                MIPSR1xK, /* includes R10K, R12K, R14K, R16K */
e70425
                MIPSICE9,  /* SiCortex ICE9 -- like MIPS5K */
e70425
-               ARMv7      /* includes Cortex A8, A9 */
e70425
+               ARMv7,     /* includes Cortex A8, A9 */
e70425
+	       AARCH64
e70425
                };
e70425
 #define MachIsX86(mach_) \
e70425
    ( (mach_) >= x86x87 && (mach_) <= x86X )
e70425
@@ -62,6 +63,8 @@ enum MACHTYPE {MACHOther, IbmPwr3, IbmPwr4, IbmPwr5, PPCG4, PPCG5,
e70425
    ( (mach_) == ARMv7 )
e70425
 #define MachIsS390(mach_) \
e70425
    ( (mach_) >= IbmZ9 && (mach_) <= IbmZ196 )
e70425
+#define MachIsAARCH64(mach_) \
e70425
+   ( (mach_) == AARCH64 )
e70425
 
e70425
 
e70425
 static char *f2c_namestr[5] = {"UNKNOWN","Add_", "Add__", "NoChange", "UpCase"};
e70425
@@ -83,13 +86,13 @@ enum ISAEXT
e70425
    {ISA_None=0, ISA_VSX, ISA_AV, ISA_AVXMAC, ISA_AVXFMA4, ISA_AVX,
e70425
     ISA_SSE3, ISA_SSE2, ISA_SSE1, ISA_3DNow, ISA_NEON};
e70425
 
e70425
-#define NASMD 9
e70425
+#define NASMD 10
e70425
 enum ASMDIA
e70425
    {ASM_None=0, gas_x86_32, gas_x86_64, gas_sparc, gas_ppc, gas_parisc,
e70425
-    gas_mips, gas_arm, gas_s390};
e70425
+    gas_mips, gas_arm, gas_s390, gas_aarch64};
e70425
 static char *ASMNAM[NASMD] =
e70425
    {"",     "GAS_x8632", "GAS_x8664", "GAS_SPARC", "GAS_PPC", "GAS_PARISC",
e70425
-    "GAS_MIPS", "GAS_ARM", "GAS_S390"};
e70425
+    "GAS_MIPS", "GAS_ARM", "GAS_S390", "GAS_AARCH64"};
e70425
 
e70425
 /*
e70425
  * Used for archinfo probes (can pack in bitfield)
e70425
diff --git a/CONFIG/src/Makefile b/CONFIG/src/Makefile
e70425
index 8eb38f7..afad1bc 100644
e70425
--- a/CONFIG/src/Makefile
e70425
+++ b/CONFIG/src/Makefile
e70425
@@ -260,6 +260,11 @@ IRun_BINDP :
e70425
                 redir=config0.out
e70425
 	- cat config0.out
e70425
 
e70425
+IRun_GAS_AARCH64 :
e70425
+	$(CC) $(CCFLAGS) -o xprobe_gas_aarch64 $(SRCdir)/backend/probe_this_asm.c $(SRCdir)/backend/probe_gas_aarch64.S
e70425
+	$(MAKE) $(atlrun) atldir=$(mydir) exe=xprobe_gas_aarch64 args="$(args)" \
e70425
+                redir=config0.out
e70425
+	- cat config0.out
e70425
 IRun_GAS_S390 :
e70425
 	$(CC) $(CCFLAGS) -o xprobe_gas_s390 $(SRCdir)/backend/probe_this_asm.c $(SRCdir)/backend/probe_gas_s390.S
e70425
 	$(MAKE) $(atlrun) atldir=$(mydir) exe=xprobe_gas_s390 args="$(args)" \
e70425
diff --git a/CONFIG/src/SpewMakeInc.c b/CONFIG/src/SpewMakeInc.c
e70425
index 65d68a1..f5eb467 100644
e70425
--- a/CONFIG/src/SpewMakeInc.c
e70425
+++ b/CONFIG/src/SpewMakeInc.c
e70425
@@ -391,6 +391,8 @@ char *GetPtrbitsFlag(enum OSTYPE OS, enum MACHTYPE arch, int ptrbits,
e70425
 
e70425
    if (MachIsIA64(arch))
e70425
       return(sp);
e70425
+   if (MachIsAARCH64(arch))
e70425
+      return(sp);
e70425
    if (MachIsMIPS(arch))
e70425
       return((ptrbits == 64) ? "-mabi=64" : "-mabi=n32");
e70425
    if (MachIsS390(arch))
e70425
diff --git a/CONFIG/src/atlcomp.txt b/CONFIG/src/atlcomp.txt
e70425
index 5bf32d9..5e0c538 100644
e70425
--- a/CONFIG/src/atlcomp.txt
e70425
+++ b/CONFIG/src/atlcomp.txt
e70425
@@ -263,6 +263,17 @@ MACH=ARMv7 OS=ALL LVL=1000 COMPS=dmc,dkc
e70425
 MACH=ARMv7 OS=ALL LVL=1000 COMPS=f77
e70425
    'gfortran' '-mcpu=cortex-a8 -mfpu=vfpv3 -mfloat-abi=softfp -O'
e70425
 #
e70425
+# AArch64 defaults
e70425
+#
e70425
+MACH=AARCH64 OS=ALL LVL=1000 COMPS=xcc
e70425
+   'gcc' '-O2'
e70425
+MACH=AARCH64 OS=ALL LVL=1000 COMPS=smc,skc,gcc,icc
e70425
+   'gcc' '-O2'
e70425
+MACH=AARCH64 OS=ALL LVL=1000 COMPS=dmc,dkc
e70425
+   'gcc' '-O2'
e70425
+MACH=AARCH64 OS=ALL LVL=1000 COMPS=f77
e70425
+   'gfortran' '-O'
e70425
+#
e70425
 # Generic defaults
e70425
 #
e70425
 MACH=ALL OS=ALL LVL=5 COMPS=icc,smc,dmc,skc,dkc,xcc,gcc
e70425
diff --git a/CONFIG/src/atlconf_misc.c b/CONFIG/src/atlconf_misc.c
e70425
index b669e8e..f7af4a8 100644
e70425
--- a/CONFIG/src/atlconf_misc.c
e70425
+++ b/CONFIG/src/atlconf_misc.c
e70425
@@ -481,6 +481,7 @@ enum ARCHFAM ProbeArchFam(char *targ)
e70425
       else if (strstr(res, "ia64")) fam = AFIA64;
e70425
       else if (strstr(res, "mips")) fam = AFMIPS;
e70425
       else if (strstr(res, "arm")) fam = AFARM;
e70425
+      else if (strstr(res, "aarch64")) fam = AFAARCH64;
e70425
       else if (strstr(res, "s390")) fam = AFS390;
e70425
       else if ( strstr(res, "i686") || strstr(res, "i586") ||
e70425
                 strstr(res, "i486") || strstr(res, "i386") ||
e70425
@@ -506,6 +507,7 @@ enum ARCHFAM ProbeArchFam(char *targ)
e70425
                    strstr(res, "x86_64") ) fam = AFX86;
e70425
          else if (strstr(res, "mips")) fam = AFMIPS;
e70425
          else if (strstr(res, "arm")) fam = AFARM;
e70425
+	 else if (strstr(res, "aarch64")) fam = AFAARCH64;
e70425
          else if (strstr(res, "s390")) fam = AFS390;
e70425
          free(res);
e70425
       }
e70425
diff --git a/CONFIG/src/backend/Make.ext b/CONFIG/src/backend/Make.ext
e70425
index 9f236f6..918a053 100644
e70425
--- a/CONFIG/src/backend/Make.ext
e70425
+++ b/CONFIG/src/backend/Make.ext
e70425
@@ -57,6 +57,8 @@ probe_gas_arm.S : $(basf)
e70425
 	$(extC) -b $(basf) -o probe_gas_arm.S rout=probe_gas_arm.S
e70425
 probe_gas_s390.S : $(basf)
e70425
 	$(extC) -b $(basf) -o probe_gas_s390.S rout=probe_gas_s390.S
e70425
+probe_gas_aarch64.S : $(basf)
e70425
+	$(extC) -b $(basf) -o probe_gas_aarch64.S rout=probe_gas_aarch64.S
e70425
 probe_AVXMAC.S : $(basf)
e70425
 	$(extC) -b $(basf) -o probe_AVXMAC.S rout=probe_AVXMAC.S
e70425
 probe_AVXFMA4.S : $(basf)
e70425
diff --git a/CONFIG/src/backend/archinfo_linux.c b/CONFIG/src/backend/archinfo_linux.c
e70425
index d3d3fd8..4c419a3 100644
e70425
--- a/CONFIG/src/backend/archinfo_linux.c
e70425
+++ b/CONFIG/src/backend/archinfo_linux.c
e70425
@@ -248,6 +248,14 @@ enum MACHTYPE ProbeArch()
e70425
          free(res);
e70425
       }
e70425
       break;
e70425
+   case AFAARCH64:
e70425
+      res = atlsys_1L(NULL, "fgrep 'Processor' /proc/cpuinfo", 0, 0);
e70425
+      if (res)
e70425
+      {
e70425
+         if (strstr(res, "AArch64")) mach = AARCH64;
e70425
+         free(res);
e70425
+      }
e70425
+      break;
e70425
    default:
e70425
 #if 0
e70425
       if (!CmndOneLine(NULL, "fgrep 'cpu family' /proc/cpuinfo", res))
e70425
diff --git a/CONFIG/src/backend/probe_gas_aarch64.S b/CONFIG/src/backend/probe_gas_aarch64.S
e70425
new file mode 100644
e70425
index 0000000..d4c3d68
e70425
--- /dev/null
e70425
+++ b/CONFIG/src/backend/probe_gas_aarch64.S
e70425
@@ -0,0 +1,14 @@
e70425
+#define ATL_GAS_AARCH64
e70425
+#include "atlas_asm.h"
e70425
+#
e70425
+# Linux AArch64 assembler for:
e70425
+# int asm_probe(int i)
e70425
+# RETURNS: i*3
e70425
+#
e70425
+.text
e70425
+.globl  ATL_asmdecor(asm_probe)
e70425
+.type   ATL_asmdecor(asm_probe), %function
e70425
+ATL_asmdecor(asm_probe):
e70425
+        add     w0, w0, w0, LSL #1
e70425
+        ret
e70425
+.size ATL_asmdecor(asm_probe),.-ATL_asmdecor(asm_probe)
e70425
diff --git a/CONFIG/src/probe_comp.c b/CONFIG/src/probe_comp.c
e70425
index 48f518d..3d5aa3b 100644
e70425
--- a/CONFIG/src/probe_comp.c
e70425
+++ b/CONFIG/src/probe_comp.c
e70425
@@ -578,7 +578,7 @@ char *GetPtrbitsFlag(enum OSTYPE OS, enum MACHTYPE arch, int ptrbits,
e70425
    char *sp = "";
e70425
    int i, j, k;
e70425
 
e70425
-   if (MachIsIA64(arch))
e70425
+   if (MachIsIA64(arch) || MachIsAARCH64(arch))
e70425
       return(sp);
e70425
    if (MachIsMIPS(arch))
e70425
       return((ptrbits == 64) ? "-mabi=64" : "-mabi=n32");
e70425
diff --git a/include/atlas_genparse.h b/include/atlas_genparse.h
e70425
index 1955687..909a38e 100644
e70425
--- a/include/atlas_genparse.h
e70425
+++ b/include/atlas_genparse.h
e70425
@@ -6,13 +6,13 @@
e70425
 #include <assert.h>
e70425
 #include <string.h>
e70425
 #include <ctype.h>
e70425
-#define NASMD 9
e70425
+#define NASMD 10
e70425
 enum ASMDIA
e70425
    {ASM_None=0, gas_x86_32, gas_x86_64, gas_sparc, gas_ppc, gas_parisc,
e70425
-    gas_mips, gas_arm, gas_s390};
e70425
+    gas_mips, gas_arm, gas_s390, gas_aarch64};
e70425
 static char *ASMNAM[NASMD] =
e70425
    {"",     "GAS_x8632", "GAS_x8664", "GAS_SPARC", "GAS_PPC", "GAS_PARISC",
e70425
-    "GAS_MIPS", "GAS_ARM", "GAS_S390"};
e70425
+    "GAS_MIPS", "GAS_ARM", "GAS_S390", "GAS_AARCH64"};
e70425
 /*
e70425
  * Basic data structure for forming queues with some minimal info
e70425
  */