+ aarch64 cpu identifier

git-svn-id: trunk@29876 -
This commit is contained in:
Jonas Maebe 2015-02-23 22:50:38 +00:00
parent 6995474ea0
commit b5643f2a27
4 changed files with 10 additions and 5 deletions

View File

@ -188,7 +188,8 @@ const
{ 12 } 16 {'avr'}, { 12 } 16 {'avr'},
{ 13 } 32 {'mipsel'}, { 13 } 32 {'mipsel'},
{ 14 } 32 {'jvm'}, { 14 } 32 {'jvm'},
{ 15 } 16 {'i8086'} { 15 } 16 {'i8086'},
{ 16 } 64 {'aarch64'}
); );
CpuAluBitSize : array[tsystemcpu] of longint = CpuAluBitSize : array[tsystemcpu] of longint =
( (
@ -207,7 +208,8 @@ const
{ 12 } 8 {'avr'}, { 12 } 8 {'avr'},
{ 13 } 32 {'mipsel'}, { 13 } 32 {'mipsel'},
{ 14 } 64 {'jvm'}, { 14 } 64 {'jvm'},
{ 15 } 16 {'i8086'} { 15 } 16 {'i8086'},
{ 16 } 64 {'aarch64'}
); );
{$endif generic_cpu} {$endif generic_cpu}

View File

@ -49,7 +49,8 @@
cpu_avr, { 12 } cpu_avr, { 12 }
cpu_mipsel, { 13 } cpu_mipsel, { 13 }
cpu_jvm, { 14 } cpu_jvm, { 14 }
cpu_i8086 { 15 } cpu_i8086, { 15 }
cpu_aarch64 { 16 }
); );
tasmmode= (asmmode_none tasmmode= (asmmode_none

View File

@ -355,7 +355,8 @@ interface
cpu2str : array[TSystemCpu] of string[10] = cpu2str : array[TSystemCpu] of string[10] =
('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64', ('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
'mips','arm', 'powerpc64', 'avr', 'mipsel','jvm', 'i8086'); 'mips','arm', 'powerpc64', 'avr', 'mipsel','jvm', 'i8086',
'aarch64');
abiinfo : array[tabi] of tabiinfo = ( abiinfo : array[tabi] of tabiinfo = (
(name: 'DEFAULT'; supported: true), (name: 'DEFAULT'; supported: true),

View File

@ -76,7 +76,8 @@ const
{ 12 } 'avr', { 12 } 'avr',
{ 13 } 'mipsel', { 13 } 'mipsel',
{ 14 } 'jvm', { 14 } 'jvm',
{ 15 } 'i8086' { 15 } 'i8086',
{ 16 } 'aarch64'
); );
{ List of all supported system-cpu couples } { List of all supported system-cpu couples }