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

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

Issue 1599019: Change Math.random() to return 32 bits of random goodness, instead of 30 rand... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 8 months 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/codegen-mips.h ('k') | src/serialize.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) { 883 void CodeGenerator::GenerateArgumentsLength(ZoneList<Expression*>* args) {
884 UNIMPLEMENTED_MIPS(); 884 UNIMPLEMENTED_MIPS();
885 } 885 }
886 886
887 887
888 void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) { 888 void CodeGenerator::GenerateArguments(ZoneList<Expression*>* args) {
889 UNIMPLEMENTED_MIPS(); 889 UNIMPLEMENTED_MIPS();
890 } 890 }
891 891
892 892
893 void CodeGenerator::GenerateRandomPositiveSmi(ZoneList<Expression*>* args) { 893 void CodeGenerator::GenerateRandomHeapNumber(ZoneList<Expression*>* args) {
894 UNIMPLEMENTED_MIPS(); 894 UNIMPLEMENTED_MIPS();
895 } 895 }
896 896
897 897
898 void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) { 898 void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
899 UNIMPLEMENTED_MIPS(); 899 UNIMPLEMENTED_MIPS();
900 } 900 }
901 901
902 902
903 void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) { 903 void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
1419 int CompareStub::MinorKey() { 1419 int CompareStub::MinorKey() {
1420 // Encode the two parameters in a unique 16 bit value. 1420 // Encode the two parameters in a unique 16 bit value.
1421 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15)); 1421 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15));
1422 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0); 1422 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0);
1423 } 1423 }
1424 1424
1425 1425
1426 #undef __ 1426 #undef __
1427 1427
1428 } } // namespace v8::internal 1428 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mips/codegen-mips.h ('k') | src/serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698