| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 OS::ProtectCode(buffer, actual_size); | 105 OS::ProtectCode(buffer, actual_size); |
| 106 | 106 |
| 107 #if !defined(USE_SIMULATOR) | 107 #if !defined(USE_SIMULATOR) |
| 108 return FUNCTION_CAST<UnaryMathFunction>(buffer); | 108 return FUNCTION_CAST<UnaryMathFunction>(buffer); |
| 109 #else | 109 #else |
| 110 fast_exp_arm_machine_code = buffer; | 110 fast_exp_arm_machine_code = buffer; |
| 111 return &fast_exp_simulator; | 111 return &fast_exp_simulator; |
| 112 #endif | 112 #endif |
| 113 } | 113 } |
| 114 | 114 |
| 115 #if defined(V8_HOST_ARCH_ARM) |
| 116 OS::MemCopyUint8Function CreateMemCopyUint8Function( |
| 117 OS::MemCopyUint8Function stub) { |
| 118 #if defined(USE_SIMULATOR) |
| 119 return stub; |
| 120 #else |
| 121 if (Serializer::enabled() || !CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) { |
| 122 return stub; |
| 123 } |
| 124 size_t actual_size; |
| 125 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true)); |
| 126 if (buffer == NULL) return stub; |
| 127 |
| 128 MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size)); |
| 129 |
| 130 Register dest = r0; |
| 131 Register src = r1; |
| 132 Register chars = r2; |
| 133 Register temp1 = r3; |
| 134 Label less_4; |
| 135 |
| 136 if (CpuFeatures::IsSupported(NEON)) { |
| 137 Label loop, less_256, less_128, less_64, less_32, _16_or_less, _8_or_less; |
| 138 Label size_less_than_8; |
| 139 __ pld(MemOperand(src, 0)); |
| 140 |
| 141 __ cmp(chars, Operand(8)); |
| 142 __ b(lt, &size_less_than_8); |
| 143 __ cmp(chars, Operand(32)); |
| 144 __ b(lt, &less_32); |
| 145 if (CpuFeatures::cache_line_size() == 32) { |
| 146 __ pld(MemOperand(src, 32)); |
| 147 } |
| 148 __ cmp(chars, Operand(64)); |
| 149 __ b(lt, &less_64); |
| 150 __ pld(MemOperand(src, 64)); |
| 151 if (CpuFeatures::cache_line_size() == 32) { |
| 152 __ pld(MemOperand(src, 96)); |
| 153 } |
| 154 __ cmp(chars, Operand(128)); |
| 155 __ b(lt, &less_128); |
| 156 __ pld(MemOperand(src, 128)); |
| 157 if (CpuFeatures::cache_line_size() == 32) { |
| 158 __ pld(MemOperand(src, 160)); |
| 159 } |
| 160 __ pld(MemOperand(src, 192)); |
| 161 if (CpuFeatures::cache_line_size() == 32) { |
| 162 __ pld(MemOperand(src, 224)); |
| 163 } |
| 164 __ cmp(chars, Operand(256)); |
| 165 __ b(lt, &less_256); |
| 166 __ sub(chars, chars, Operand(256)); |
| 167 |
| 168 __ bind(&loop); |
| 169 __ pld(MemOperand(src, 256)); |
| 170 __ vld1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(src, PostIndex)); |
| 171 if (CpuFeatures::cache_line_size() == 32) { |
| 172 __ pld(MemOperand(src, 256)); |
| 173 } |
| 174 __ vld1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(src, PostIndex)); |
| 175 __ sub(chars, chars, Operand(64), SetCC); |
| 176 __ vst1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(dest, PostIndex)); |
| 177 __ vst1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(dest, PostIndex)); |
| 178 __ b(ge, &loop); |
| 179 __ add(chars, chars, Operand(256)); |
| 180 |
| 181 __ bind(&less_256); |
| 182 __ vld1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(src, PostIndex)); |
| 183 __ vld1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(src, PostIndex)); |
| 184 __ sub(chars, chars, Operand(128)); |
| 185 __ vst1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(dest, PostIndex)); |
| 186 __ vst1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(dest, PostIndex)); |
| 187 __ vld1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(src, PostIndex)); |
| 188 __ vld1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(src, PostIndex)); |
| 189 __ vst1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(dest, PostIndex)); |
| 190 __ vst1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(dest, PostIndex)); |
| 191 __ cmp(chars, Operand(64)); |
| 192 __ b(lt, &less_64); |
| 193 |
| 194 __ bind(&less_128); |
| 195 __ vld1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(src, PostIndex)); |
| 196 __ vld1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(src, PostIndex)); |
| 197 __ sub(chars, chars, Operand(64)); |
| 198 __ vst1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(dest, PostIndex)); |
| 199 __ vst1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(dest, PostIndex)); |
| 200 |
| 201 __ bind(&less_64); |
| 202 __ cmp(chars, Operand(32)); |
| 203 __ b(lt, &less_32); |
| 204 __ vld1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(src, PostIndex)); |
| 205 __ vst1(Neon8, NeonListOperand(d0, 4), NeonMemOperand(dest, PostIndex)); |
| 206 __ sub(chars, chars, Operand(32)); |
| 207 |
| 208 __ bind(&less_32); |
| 209 __ cmp(chars, Operand(16)); |
| 210 __ b(le, &_16_or_less); |
| 211 __ vld1(Neon8, NeonListOperand(d0, 2), NeonMemOperand(src, PostIndex)); |
| 212 __ vst1(Neon8, NeonListOperand(d0, 2), NeonMemOperand(dest, PostIndex)); |
| 213 __ sub(chars, chars, Operand(16)); |
| 214 |
| 215 __ bind(&_16_or_less); |
| 216 __ cmp(chars, Operand(8)); |
| 217 __ b(le, &_8_or_less); |
| 218 __ vld1(Neon8, NeonListOperand(d0), NeonMemOperand(src, PostIndex)); |
| 219 __ vst1(Neon8, NeonListOperand(d0), NeonMemOperand(dest, PostIndex)); |
| 220 __ sub(chars, chars, Operand(8)); |
| 221 |
| 222 // Do a last copy which may overlap with the previous copy (up to 8 bytes). |
| 223 __ bind(&_8_or_less); |
| 224 __ rsb(chars, chars, Operand(8)); |
| 225 __ sub(src, src, Operand(chars)); |
| 226 __ sub(dest, dest, Operand(chars)); |
| 227 __ vld1(Neon8, NeonListOperand(d0), NeonMemOperand(src)); |
| 228 __ vst1(Neon8, NeonListOperand(d0), NeonMemOperand(dest)); |
| 229 |
| 230 __ Ret(); |
| 231 |
| 232 __ bind(&size_less_than_8); |
| 233 |
| 234 __ bic(temp1, chars, Operand(0x3), SetCC); |
| 235 __ b(&less_4, eq); |
| 236 __ ldr(temp1, MemOperand(src, 4, PostIndex)); |
| 237 __ str(temp1, MemOperand(dest, 4, PostIndex)); |
| 238 } else { |
| 239 Register temp2 = ip; |
| 240 Label loop; |
| 241 |
| 242 __ bic(temp2, chars, Operand(0x3), SetCC); |
| 243 __ b(&less_4, eq); |
| 244 __ add(temp2, dest, temp2); |
| 245 |
| 246 __ bind(&loop); |
| 247 __ ldr(temp1, MemOperand(src, 4, PostIndex)); |
| 248 __ str(temp1, MemOperand(dest, 4, PostIndex)); |
| 249 __ cmp(dest, temp2); |
| 250 __ b(&loop, ne); |
| 251 } |
| 252 |
| 253 __ bind(&less_4); |
| 254 __ mov(chars, Operand(chars, LSL, 31), SetCC); |
| 255 // bit0 => Z (ne), bit1 => C (cs) |
| 256 __ ldrh(temp1, MemOperand(src, 2, PostIndex), cs); |
| 257 __ strh(temp1, MemOperand(dest, 2, PostIndex), cs); |
| 258 __ ldrb(temp1, MemOperand(src), ne); |
| 259 __ strb(temp1, MemOperand(dest), ne); |
| 260 __ Ret(); |
| 261 |
| 262 CodeDesc desc; |
| 263 masm.GetCode(&desc); |
| 264 ASSERT(!RelocInfo::RequiresRelocation(desc)); |
| 265 |
| 266 CPU::FlushICache(buffer, actual_size); |
| 267 OS::ProtectCode(buffer, actual_size); |
| 268 return FUNCTION_CAST<OS::MemCopyUint8Function>(buffer); |
| 269 #endif |
| 270 } |
| 271 |
| 272 |
| 273 // Convert 8 to 16. The number of character to copy must be at least 8. |
| 274 OS::MemCopyUint16Uint8Function CreateMemCopyUint16Uint8Function( |
| 275 OS::MemCopyUint16Uint8Function stub) { |
| 276 #if defined(USE_SIMULATOR) |
| 277 return stub; |
| 278 #else |
| 279 if (Serializer::enabled() || !CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) { |
| 280 return stub; |
| 281 } |
| 282 size_t actual_size; |
| 283 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true)); |
| 284 if (buffer == NULL) return stub; |
| 285 |
| 286 MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size)); |
| 287 |
| 288 Register dest = r0; |
| 289 Register src = r1; |
| 290 Register chars = r2; |
| 291 if (CpuFeatures::IsSupported(NEON)) { |
| 292 Register temp = r3; |
| 293 Label loop; |
| 294 |
| 295 __ bic(temp, chars, Operand(0x7)); |
| 296 __ sub(chars, chars, Operand(temp)); |
| 297 __ add(temp, dest, Operand(temp, LSL, 1)); |
| 298 |
| 299 __ bind(&loop); |
| 300 __ vld1(Neon8, NeonListOperand(d0), NeonMemOperand(src, PostIndex)); |
| 301 __ vmovl(NeonU8, q0, d0); |
| 302 __ vst1(Neon16, NeonListOperand(d0, 2), NeonMemOperand(dest, PostIndex)); |
| 303 __ cmp(dest, temp); |
| 304 __ b(&loop, ne); |
| 305 |
| 306 // Do a last copy which will overlap with the previous copy (1 to 8 bytes). |
| 307 __ rsb(chars, chars, Operand(8)); |
| 308 __ sub(src, src, Operand(chars)); |
| 309 __ sub(dest, dest, Operand(chars, LSL, 1)); |
| 310 __ vld1(Neon8, NeonListOperand(d0), NeonMemOperand(src)); |
| 311 __ vmovl(NeonU8, q0, d0); |
| 312 __ vst1(Neon16, NeonListOperand(d0, 2), NeonMemOperand(dest)); |
| 313 __ Ret(); |
| 314 } else { |
| 315 Register temp1 = r3; |
| 316 Register temp2 = ip; |
| 317 Register temp3 = lr; |
| 318 Register temp4 = r4; |
| 319 Label loop; |
| 320 Label not_two; |
| 321 |
| 322 __ Push(lr, r4); |
| 323 __ bic(temp2, chars, Operand(0x3)); |
| 324 __ add(temp2, dest, Operand(temp2, LSL, 1)); |
| 325 |
| 326 __ bind(&loop); |
| 327 __ ldr(temp1, MemOperand(src, 4, PostIndex)); |
| 328 __ uxtb16(temp3, Operand(temp1, ROR, 0)); |
| 329 __ uxtb16(temp4, Operand(temp1, ROR, 8)); |
| 330 __ pkhbt(temp1, temp3, Operand(temp4, LSL, 16)); |
| 331 __ str(temp1, MemOperand(dest)); |
| 332 __ pkhtb(temp1, temp4, Operand(temp3, ASR, 16)); |
| 333 __ str(temp1, MemOperand(dest, 4)); |
| 334 __ add(dest, dest, Operand(8)); |
| 335 __ cmp(dest, temp2); |
| 336 __ b(&loop, ne); |
| 337 |
| 338 __ mov(chars, Operand(chars, LSL, 31), SetCC); // bit0 => ne, bit1 => cs |
| 339 __ b(¬_two, cc); |
| 340 __ ldrh(temp1, MemOperand(src, 2, PostIndex)); |
| 341 __ uxtb(temp3, Operand(temp1, ROR, 8)); |
| 342 __ mov(temp3, Operand(temp3, LSL, 16)); |
| 343 __ uxtab(temp3, temp3, Operand(temp1, ROR, 0)); |
| 344 __ str(temp3, MemOperand(dest, 4, PostIndex)); |
| 345 __ bind(¬_two); |
| 346 __ ldrb(temp1, MemOperand(src), ne); |
| 347 __ strh(temp1, MemOperand(dest), ne); |
| 348 __ Pop(pc, r4); |
| 349 } |
| 350 |
| 351 CodeDesc desc; |
| 352 masm.GetCode(&desc); |
| 353 |
| 354 CPU::FlushICache(buffer, actual_size); |
| 355 OS::ProtectCode(buffer, actual_size); |
| 356 |
| 357 return FUNCTION_CAST<OS::MemCopyUint16Uint8Function>(buffer); |
| 358 #endif |
| 359 } |
| 360 #endif |
| 115 | 361 |
| 116 #undef __ | 362 #undef __ |
| 117 | 363 |
| 118 | 364 |
| 119 UnaryMathFunction CreateSqrtFunction() { | 365 UnaryMathFunction CreateSqrtFunction() { |
| 120 return &sqrt; | 366 return &sqrt; |
| 121 } | 367 } |
| 122 | 368 |
| 123 | 369 |
| 124 // ------------------------------------------------------------------------- | 370 // ------------------------------------------------------------------------- |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 // The sequence of instructions that is patched out for aging code is the | 831 // The sequence of instructions that is patched out for aging code is the |
| 586 // following boilerplate stack-building prologue that is found in FUNCTIONS | 832 // following boilerplate stack-building prologue that is found in FUNCTIONS |
| 587 static bool initialized = false; | 833 static bool initialized = false; |
| 588 static uint32_t sequence[kNoCodeAgeSequenceLength]; | 834 static uint32_t sequence[kNoCodeAgeSequenceLength]; |
| 589 byte* byte_sequence = reinterpret_cast<byte*>(sequence); | 835 byte* byte_sequence = reinterpret_cast<byte*>(sequence); |
| 590 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize; | 836 *length = kNoCodeAgeSequenceLength * Assembler::kInstrSize; |
| 591 if (!initialized) { | 837 if (!initialized) { |
| 592 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength); | 838 CodePatcher patcher(byte_sequence, kNoCodeAgeSequenceLength); |
| 593 PredictableCodeSizeScope scope(patcher.masm(), *length); | 839 PredictableCodeSizeScope scope(patcher.masm(), *length); |
| 594 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit()); | 840 patcher.masm()->stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit()); |
| 595 patcher.masm()->LoadRoot(ip, Heap::kUndefinedValueRootIndex); | 841 patcher.masm()->nop(ip.code()); |
| 596 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize)); | 842 patcher.masm()->add(fp, sp, Operand(2 * kPointerSize)); |
| 597 initialized = true; | 843 initialized = true; |
| 598 } | 844 } |
| 599 return byte_sequence; | 845 return byte_sequence; |
| 600 } | 846 } |
| 601 | 847 |
| 602 | 848 |
| 603 bool Code::IsYoungSequence(byte* sequence) { | 849 bool Code::IsYoungSequence(byte* sequence) { |
| 604 uint32_t young_length; | 850 uint32_t young_length; |
| 605 byte* young_sequence = GetNoCodeAgeSequence(&young_length); | 851 byte* young_sequence = GetNoCodeAgeSequence(&young_length); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 patcher.masm()->add(r0, pc, Operand(-8)); | 884 patcher.masm()->add(r0, pc, Operand(-8)); |
| 639 patcher.masm()->ldr(pc, MemOperand(pc, -4)); | 885 patcher.masm()->ldr(pc, MemOperand(pc, -4)); |
| 640 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start())); | 886 patcher.masm()->dd(reinterpret_cast<uint32_t>(stub->instruction_start())); |
| 641 } | 887 } |
| 642 } | 888 } |
| 643 | 889 |
| 644 | 890 |
| 645 } } // namespace v8::internal | 891 } } // namespace v8::internal |
| 646 | 892 |
| 647 #endif // V8_TARGET_ARCH_ARM | 893 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |