Revision: 14291
Author: [email protected]
Date: Tue Apr 16 08:17:27 2013
Log: Fix ARM specific GYP variables
Review URL: https://codereview.chromium.org/14208011
http://code.google.com/p/v8/source/detail?r=14291
Modified:
/branches/bleeding_edge/Makefile
/branches/bleeding_edge/build/common.gypi
/branches/bleeding_edge/src/arm/constants-arm.h
=======================================
--- /branches/bleeding_edge/Makefile Tue Apr 16 07:39:48 2013
+++ /branches/bleeding_edge/Makefile Tue Apr 16 08:17:27 2013
@@ -179,8 +179,6 @@
# When using the simulator, this flag is implied.
ifeq ($(armtest), on)
GYPFLAGS += -Darm_test=on
-else
- GYPFLAGS += -Darm_test=off
endif
# ----------------- available targets: --------------------
=======================================
--- /branches/bleeding_edge/build/common.gypi Tue Apr 16 07:39:48 2013
+++ /branches/bleeding_edge/build/common.gypi Tue Apr 16 08:17:27 2013
@@ -44,30 +44,17 @@
# access is allowed for all CPUs.
'v8_can_use_unaligned_accesses%': 'default',
- # Setting 'v8_can_use_vfp2_instructions' to 'true' will enable use of
ARM VFP
- # instructions in the V8 generated code. VFP instructions will be
enabled
- # both for the snapshot and for the ARM target. Leaving the default
value
- # of 'false' will avoid VFP instructions in the snapshot and use CPU
feature
- # probing when running on the target.
- 'v8_can_use_vfp2_instructions%': 'false',
- 'v8_can_use_vfp3_instructions%': 'false',
-
# Setting 'v8_can_use_vfp32dregs' to 'true' will cause V8 to use the
VFP
# registers d16-d31 in the generated code, both in the snapshot and
for the
# ARM target. Leaving the default value of 'false' will avoid the use
of
# these registers in the snapshot and use CPU feature probing when
running
# on the target.
'v8_can_use_vfp32dregs%': 'false',
+ 'arm_test%': 'off',
# Similar to vfp but on MIPS.
'v8_can_use_fpu_instructions%': 'true',
- # Setting v8_use_arm_eabi_hardfloat to true will turn on V8 support
for ARM
- # EABI calling convention where double arguments are passed in VFP
- # registers. Note that the GCC flag '-mfloat-abi=hard' should be used
as
- # well when compiling for the ARM target.
- 'v8_use_arm_eabi_hardfloat%': 'false',
-
# Similar to the ARM hard float ABI but on MIPS.
'v8_use_mips_abi_hardfloat%': 'true',
=======================================
--- /branches/bleeding_edge/src/arm/constants-arm.h Tue Apr 16 07:39:48 2013
+++ /branches/bleeding_edge/src/arm/constants-arm.h Tue Apr 16 08:17:27 2013
@@ -44,8 +44,10 @@
defined(__ARM_ARCH_7R__) || \
defined(__ARM_ARCH_7__)
# define CAN_USE_ARMV7_INSTRUCTIONS 1
+#ifndef CAN_USE_VFP3_INSTRUCTIONS
# define CAN_USE_VFP3_INSTRUCTIONS
#endif
+#endif
#if defined(__ARM_ARCH_6__) || \
defined(__ARM_ARCH_6J__) || \
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.