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

Side by Side Diff: src/mips/codegen-mips.cc

Issue 11293250: Unbreak MIPS part a bit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 | « src/mips/builtins-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/mips/builtins-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698