OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 ['v8_target_arch=="arm"', { | 151 ['v8_target_arch=="arm"', { |
152 # The following rules should be consistent with chromium's | 152 # The following rules should be consistent with chromium's |
153 # common.gypi and V8's runtime rule to ensure they all generat
e | 153 # common.gypi and V8's runtime rule to ensure they all generat
e |
154 # the same correct machine code. The following issue is about | 154 # the same correct machine code. The following issue is about |
155 # V8's runtime rule about vfpv3 and neon: | 155 # V8's runtime rule about vfpv3 and neon: |
156 # http://code.google.com/p/v8/issues/detail?id=914 | 156 # http://code.google.com/p/v8/issues/detail?id=914 |
157 'conditions': [ | 157 'conditions': [ |
158 ['armv7==1', { | 158 ['armv7==1', { |
159 # The ARM Architecture Manual mandates VFPv3 if NEON is | 159 # The ARM Architecture Manual mandates VFPv3 if NEON is |
160 # available. | 160 # available. |
161 # The current V8 doesn't use d16-d31, so for vfpv3-d16, we
can | 161 # The current V8 doesn't use d16-d31, so for vfpv3-d16, we
can // XXX |
162 # also enable vfp3 for the better performance. | 162 # also enable vfp3 for the better performance. |
163 'conditions': [ | 163 'conditions': [ |
164 ['arm_neon!=1 and arm_fpu!="vfpv3" and arm_fpu!="vfpv3-d
16"', { | 164 ['arm_neon!=1 and arm_fpu!="vfpv3" and arm_fpu!="vfpv3-d
16"', { |
165 'variables': { | 165 'variables': { |
166 'mksnapshot_flags': [ | 166 'mksnapshot_flags': [ |
167 '--noenable_vfp3', | 167 '--noenable_vfp3', |
168 ], | 168 ], |
169 }, | 169 }, |
170 }], | 170 }], |
171 ], | 171 ], |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 }], | 1007 }], |
1008 ], | 1008 ], |
1009 'dependencies': [ | 1009 'dependencies': [ |
1010 'v8' | 1010 'v8' |
1011 ], | 1011 ], |
1012 }, | 1012 }, |
1013 ], | 1013 ], |
1014 }], | 1014 }], |
1015 ], | 1015 ], |
1016 } | 1016 } |
OLD | NEW |