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

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

Issue 2877018: Refactor type checks in v8natives.js and runtime.js.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 5 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/runtime.js » ('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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) { 900 void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) {
901 UNIMPLEMENTED_MIPS(); 901 UNIMPLEMENTED_MIPS();
902 } 902 }
903 903
904 904
905 void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) { 905 void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) {
906 UNIMPLEMENTED_MIPS(); 906 UNIMPLEMENTED_MIPS();
907 } 907 }
908 908
909 909
910 void CodeGenerator::GenerateIsSpecObject(ZoneList<Expression*>* args) {
911 UNIMPLEMENTED_MIPS();
912 }
913
914
910 void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) { 915 void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) {
911 UNIMPLEMENTED_MIPS(); 916 UNIMPLEMENTED_MIPS();
912 } 917 }
913 918
914 919
915 void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) { 920 void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) {
916 UNIMPLEMENTED_MIPS(); 921 UNIMPLEMENTED_MIPS();
917 } 922 }
918 923
919 924
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15)); 1428 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15));
1424 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0); 1429 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0);
1425 } 1430 }
1426 1431
1427 1432
1428 #undef __ 1433 #undef __
1429 1434
1430 } } // namespace v8::internal 1435 } } // namespace v8::internal
1431 1436
1432 #endif // V8_TARGET_ARCH_MIPS 1437 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/mips/codegen-mips.h ('k') | src/runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698