Skip to content

Commit 1d21a8d

Browse files
luyahangengjiawen
authored andcommitted
build: add riscv64 configure
v8 had been add riscv64 backend, so i open this pr to add riscv64 configure. Refs: #37856 PR-URL: #37980 Fixes: #37856 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
1 parent 8d9d823 commit 1d21a8d

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',
4848
'android', 'aix', 'cloudabi')
4949
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
50-
'ppc64', 'x32','x64', 'x86', 'x86_64', 's390x')
50+
'ppc64', 'x32','x64', 'x86', 'x86_64', 's390x', 'riscv64')
5151
valid_arm_float_abi = ('soft', 'softfp', 'hard')
5252
valid_arm_fpu = ('vfp', 'vfpv3', 'vfpv3-d16', 'neon')
5353
valid_mips_arch = ('loongson', 'r1', 'r2', 'r6', 'rx')

tools/v8_gypfiles/toolchain.gypi

+7
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,13 @@
273273
}],
274274
],
275275
}],
276+
['v8_target_arch=="riscv64"', {
277+
'defines': [
278+
'V8_TARGET_ARCH_RISCV64',
279+
'__riscv_xlen=64',
280+
'CAN_USE_FPU_INSTRUCTIONS'
281+
],
282+
}],
276283
['v8_target_arch=="s390x"', {
277284
'defines': [
278285
'V8_TARGET_ARCH_S390',

tools/v8_gypfiles/v8.gyp

+16-1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,11 @@
274274
'<(V8_ROOT)/src/builtins/mips/builtins-mips.cc',
275275
],
276276
}],
277+
['v8_target_arch=="riscv64" or v8_target_arch=="riscv64"', {
278+
'sources': [
279+
'<(V8_ROOT)/src/builtins/riscv64/builtins-riscv64.cc',
280+
],
281+
}],
277282
['v8_target_arch=="mips64" or v8_target_arch=="mips64el"', {
278283
'sources': [
279284
'<(V8_ROOT)/src/builtins/mips64/builtins-mips64.cc',
@@ -686,6 +691,11 @@
686691
'<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "\\"v8_base_without_compiler.*?v8_current_cpu == \\"mips\\".*?sources \+= ")',
687692
],
688693
}],
694+
['v8_target_arch=="riscv64"', {
695+
'sources': [ ### gcmole(arch:riscv64) ###
696+
'<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "\\"v8_base_without_compiler.*?v8_current_cpu == \\"riscv64.*?sources \+= ")',
697+
],
698+
}],
689699
['v8_target_arch=="mips64" or v8_target_arch=="mips64el"', {
690700
'sources': [ ### gcmole(arch:mips64el) ###
691701
'<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "\\"v8_base_without_compiler.*?v8_current_cpu == \\"mips64\\".*?sources \+= ")',
@@ -764,7 +774,7 @@
764774
}],
765775
# Platforms that don't have Compare-And-Swap (CAS) support need to link atomic library
766776
# to implement atomic memory access
767-
['v8_current_cpu in ["mips", "mipsel", "mips64", "mips64el", "ppc", "arm"]', {
777+
['v8_current_cpu in ["mips", "mipsel", "mips64", "mips64el", "ppc", "arm", "riscv64"]', {
768778
'link_settings': {
769779
'libraries': ['-latomic', ],
770780
},
@@ -1410,6 +1420,11 @@
14101420
'<(V8_ROOT)/src/heap/base/asm/mips64/push_registers_asm.cc',
14111421
],
14121422
}],
1423+
['_toolset == "host" and host_arch == "riscv64" or _toolset == "target" and target_arch=="riscv64"', {
1424+
'sources': [
1425+
'<(V8_ROOT)/src/heap/base/asm/riscv64/push_registers_asm.cc',
1426+
],
1427+
}],
14131428
]
14141429
}],
14151430
['OS=="win"', {

0 commit comments

Comments
 (0)