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

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

Issue 669272: Added sqrt and pow for arm and x64 - to fix build failures. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 9 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/x64/codegen-x64.h » ('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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) { 285 void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) {
286 UNIMPLEMENTED_MIPS(); 286 UNIMPLEMENTED_MIPS();
287 } 287 }
288 288
289 289
290 void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) { 290 void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) {
291 UNIMPLEMENTED_MIPS(); 291 UNIMPLEMENTED_MIPS();
292 } 292 }
293 293
294 294
295 void CodeGenerator::GeneratePow(ZoneList<Expression*>* args) { 295 void CodeGenerator::GenerateMathPow(ZoneList<Expression*>* args) {
296 UNIMPLEMENTED_MIPS();
297 }
298
299
300 void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) {
296 UNIMPLEMENTED_MIPS(); 301 UNIMPLEMENTED_MIPS();
297 } 302 }
298 303
299 304
300 // This should generate code that performs a charCodeAt() call or returns 305 // This should generate code that performs a charCodeAt() call or returns
301 // undefined in order to trigger the slow case, Runtime_StringCharCodeAt. 306 // undefined in order to trigger the slow case, Runtime_StringCharCodeAt.
302 // It is not yet implemented on ARM, so it always goes to the slow case. 307 // It is not yet implemented on ARM, so it always goes to the slow case.
303 void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) { 308 void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) {
304 UNIMPLEMENTED_MIPS(); 309 UNIMPLEMENTED_MIPS();
305 } 310 }
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 int CompareStub::MinorKey() { 544 int CompareStub::MinorKey() {
540 // Encode the two parameters in a unique 16 bit value. 545 // Encode the two parameters in a unique 16 bit value.
541 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15)); 546 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15));
542 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0); 547 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0);
543 } 548 }
544 549
545 550
546 #undef __ 551 #undef __
547 552
548 } } // namespace v8::internal 553 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mips/codegen-mips.h ('k') | src/x64/codegen-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698