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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 __ jmp(&done); | 441 __ jmp(&done); |
442 __ bind(&ascii); | 442 __ bind(&ascii); |
443 // Ascii string. | 443 // Ascii string. |
444 __ Addu(at, string, index); | 444 __ Addu(at, string, index); |
445 __ lbu(result, MemOperand(at)); | 445 __ lbu(result, MemOperand(at)); |
446 __ bind(&done); | 446 __ bind(&done); |
447 } | 447 } |
448 | 448 |
449 #undef __ | 449 #undef __ |
450 | 450 |
| 451 |
| 452 byte* Code::FindPlatformCodeAgeSequence() { |
| 453 UNIMPLEMENTED(); |
| 454 return NULL; |
| 455 } |
| 456 |
| 457 |
| 458 bool Code::IsYoungSequence(byte* sequence) { |
| 459 UNIMPLEMENTED(); |
| 460 return false; |
| 461 } |
| 462 |
| 463 |
| 464 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, |
| 465 MarkingParity* parity) { |
| 466 } |
| 467 |
| 468 |
| 469 void Code::PatchPlatformCodeAge(byte* sequence, |
| 470 Code::Age age, |
| 471 MarkingParity parity) { |
| 472 UNIMPLEMENTED(); |
| 473 } |
| 474 |
451 } } // namespace v8::internal | 475 } } // namespace v8::internal |
452 | 476 |
453 #endif // V8_TARGET_ARCH_MIPS | 477 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |