Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(558)

Side by Side Diff: src/arm/assembler-arm.cc

Issue 13996006: Unbreak ARM build. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 printf( 248 printf(
249 "ARMv7=%d VFP3=%d VFP32DREGS=%d SUDIV=%d UNALIGNED_ACCESSES=%d " 249 "ARMv7=%d VFP3=%d VFP32DREGS=%d SUDIV=%d UNALIGNED_ACCESSES=%d "
250 "MOVW_MOVT_IMMEDIATE_LOADS=%d", 250 "MOVW_MOVT_IMMEDIATE_LOADS=%d",
251 CpuFeatures::IsSupported(ARMv7), 251 CpuFeatures::IsSupported(ARMv7),
252 CpuFeatures::IsSupported(VFP3), 252 CpuFeatures::IsSupported(VFP3),
253 CpuFeatures::IsSupported(VFP32DREGS), 253 CpuFeatures::IsSupported(VFP32DREGS),
254 CpuFeatures::IsSupported(SUDIV), 254 CpuFeatures::IsSupported(SUDIV),
255 CpuFeatures::IsSupported(UNALIGNED_ACCESSES), 255 CpuFeatures::IsSupported(UNALIGNED_ACCESSES),
256 CpuFeatures::IsSupported(MOVW_MOVT_IMMEDIATE_LOADS)); 256 CpuFeatures::IsSupported(MOVW_MOVT_IMMEDIATE_LOADS));
257 #ifdef __arm__ 257 #ifdef __arm__
258 printf(" USE_EABI_HARDFLOAT=%d\n", OS::ArmUsingHardFloat()); 258 bool eabi_hardfloat = OS::ArmUsingHardFloat();
259 #elif USE_EABI_HARDFLOAT
260 bool eabi_hardfloat = true;
259 #else 261 #else
260 printf(" USE_EABI_HARDFLOAT=%d\n", USE_EABI_HARDFLOAT); 262 bool eabi_hardfloat = false;
261 #endif 263 #endif
264 printf(" USE_EABI_HARDFLOAT=%d\n", eabi_hardfloat);
262 } 265 }
263 266
264 267
265 // ----------------------------------------------------------------------------- 268 // -----------------------------------------------------------------------------
266 // Implementation of RelocInfo 269 // Implementation of RelocInfo
267 270
268 const int RelocInfo::kApplyMask = 0; 271 const int RelocInfo::kApplyMask = 0;
269 272
270 273
271 bool RelocInfo::IsCodedSpecially() { 274 bool RelocInfo::IsCodedSpecially() {
(...skipping 2808 matching lines...) Expand 10 before | Expand all | Expand 10 after
3080 3083
3081 // Since a constant pool was just emitted, move the check offset forward by 3084 // Since a constant pool was just emitted, move the check offset forward by
3082 // the standard interval. 3085 // the standard interval.
3083 next_buffer_check_ = pc_offset() + kCheckPoolInterval; 3086 next_buffer_check_ = pc_offset() + kCheckPoolInterval;
3084 } 3087 }
3085 3088
3086 3089
3087 } } // namespace v8::internal 3090 } } // namespace v8::internal
3088 3091
3089 #endif // V8_TARGET_ARCH_ARM 3092 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698