| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 void CPU::Setup() { | 44 void CPU::Setup() { |
| 45 CpuFeatures* cpu_features = Isolate::Current()->cpu_features(); | 45 CpuFeatures* cpu_features = Isolate::Current()->cpu_features(); |
| 46 cpu_features->Probe(true); | 46 cpu_features->Probe(true); |
| 47 if (!cpu_features->IsSupported(VFP3) || Serializer::enabled()) { | 47 if (!cpu_features->IsSupported(VFP3) || Serializer::enabled()) { |
| 48 V8::DisableCrankshaft(); | 48 V8::DisableCrankshaft(); |
| 49 } | 49 } |
| 50 } | 50 } |
| 51 | 51 |
| 52 | 52 |
| 53 void CPU::FlushICache(void* start, size_t size) { | 53 void CPU::FlushICache(void* start, size_t size) { |
| 54 // Nothing to do flushing no instructions. |
| 55 if (size == 0) { |
| 56 return; |
| 57 } |
| 58 |
| 54 #if defined (USE_SIMULATOR) | 59 #if defined (USE_SIMULATOR) |
| 55 // Not generating ARM instructions for C-code. This means that we are | 60 // Not generating ARM instructions for C-code. This means that we are |
| 56 // building an ARM emulator based target. We should notify the simulator | 61 // building an ARM emulator based target. We should notify the simulator |
| 57 // that the Icache was flushed. | 62 // that the Icache was flushed. |
| 58 // None of this code ends up in the snapshot so there are no issues | 63 // None of this code ends up in the snapshot so there are no issues |
| 59 // around whether or not to generate the code when building snapshots. | 64 // around whether or not to generate the code when building snapshots. |
| 60 Simulator::FlushICache(Isolate::Current()->simulator_i_cache(), start, size); | 65 Simulator::FlushICache(Isolate::Current()->simulator_i_cache(), start, size); |
| 61 #else | 66 #else |
| 62 // Ideally, we would call | 67 // Ideally, we would call |
| 63 // syscall(__ARM_NR_cacheflush, start, | 68 // syscall(__ARM_NR_cacheflush, start, |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 #if !defined (__arm__) || !defined(CAN_USE_ARMV5_INSTRUCTIONS) | 139 #if !defined (__arm__) || !defined(CAN_USE_ARMV5_INSTRUCTIONS) |
| 135 UNIMPLEMENTED(); // when building ARM emulator target | 140 UNIMPLEMENTED(); // when building ARM emulator target |
| 136 #else | 141 #else |
| 137 asm volatile("bkpt 0"); | 142 asm volatile("bkpt 0"); |
| 138 #endif | 143 #endif |
| 139 } | 144 } |
| 140 | 145 |
| 141 } } // namespace v8::internal | 146 } } // namespace v8::internal |
| 142 | 147 |
| 143 #endif // V8_TARGET_ARCH_ARM | 148 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |