| OLD | NEW |
| 1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 24 matching lines...) Expand all Loading... |
| 35 #if defined(V8_TARGET_ARCH_ARM) | 35 #if defined(V8_TARGET_ARCH_ARM) |
| 36 | 36 |
| 37 #include "cpu.h" | 37 #include "cpu.h" |
| 38 #include "macro-assembler.h" | 38 #include "macro-assembler.h" |
| 39 #include "simulator.h" // for cache flushing. | 39 #include "simulator.h" // for cache flushing. |
| 40 | 40 |
| 41 namespace v8 { | 41 namespace v8 { |
| 42 namespace internal { | 42 namespace internal { |
| 43 | 43 |
| 44 void CPU::Setup() { | 44 void CPU::Setup() { |
| 45 Isolate::Current()->cpu_features()->Probe(); | 45 CpuFeatures* cpu_features = Isolate::Current()->cpu_features(); |
| 46 cpu_features->Probe(true); |
| 47 if (!cpu_features->IsSupported(VFP3) || Serializer::enabled()) { |
| 48 V8::DisableCrankshaft(); |
| 49 } |
| 46 } | 50 } |
| 47 | 51 |
| 48 | 52 |
| 49 void CPU::FlushICache(void* start, size_t size) { | 53 void CPU::FlushICache(void* start, size_t size) { |
| 50 #if defined (USE_SIMULATOR) | 54 #if defined (USE_SIMULATOR) |
| 51 // Not generating ARM instructions for C-code. This means that we are | 55 // Not generating ARM instructions for C-code. This means that we are |
| 52 // building an ARM emulator based target. We should notify the simulator | 56 // building an ARM emulator based target. We should notify the simulator |
| 53 // that the Icache was flushed. | 57 // that the Icache was flushed. |
| 54 // None of this code ends up in the snapshot so there are no issues | 58 // None of this code ends up in the snapshot so there are no issues |
| 55 // around whether or not to generate the code when building snapshots. | 59 // around whether or not to generate the code when building snapshots. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 #if !defined (__arm__) || !defined(CAN_USE_ARMV5_INSTRUCTIONS) | 135 #if !defined (__arm__) || !defined(CAN_USE_ARMV5_INSTRUCTIONS) |
| 132 UNIMPLEMENTED(); // when building ARM emulator target | 136 UNIMPLEMENTED(); // when building ARM emulator target |
| 133 #else | 137 #else |
| 134 asm volatile("bkpt 0"); | 138 asm volatile("bkpt 0"); |
| 135 #endif | 139 #endif |
| 136 } | 140 } |
| 137 | 141 |
| 138 } } // namespace v8::internal | 142 } } // namespace v8::internal |
| 139 | 143 |
| 140 #endif // V8_TARGET_ARCH_ARM | 144 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |