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

Side by Side Diff: src/code-stubs.cc

Issue 27156004: Properly export uin32_bias double constant. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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/assembler.cc ('k') | src/ia32/macro-assembler-ia32.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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 Generate(Token::SHL, SMI, SMI, INT32, OVERWRITE_LEFT, isolate); 466 Generate(Token::SHL, SMI, SMI, INT32, OVERWRITE_LEFT, isolate);
467 Generate(Token::SHL, SMI, SMI, INT32, OVERWRITE_RIGHT, isolate); 467 Generate(Token::SHL, SMI, SMI, INT32, OVERWRITE_RIGHT, isolate);
468 Generate(Token::SHL, SMI, SMI, SMI, NO_OVERWRITE, isolate); 468 Generate(Token::SHL, SMI, SMI, SMI, NO_OVERWRITE, isolate);
469 Generate(Token::SHL, SMI, SMI, SMI, OVERWRITE_LEFT, isolate); 469 Generate(Token::SHL, SMI, SMI, SMI, OVERWRITE_LEFT, isolate);
470 Generate(Token::SHL, SMI, SMI, SMI, OVERWRITE_RIGHT, isolate); 470 Generate(Token::SHL, SMI, SMI, SMI, OVERWRITE_RIGHT, isolate);
471 Generate(Token::SHR, INT32, SMI, SMI, NO_OVERWRITE, isolate); 471 Generate(Token::SHR, INT32, SMI, SMI, NO_OVERWRITE, isolate);
472 Generate(Token::SHR, INT32, SMI, SMI, OVERWRITE_LEFT, isolate); 472 Generate(Token::SHR, INT32, SMI, SMI, OVERWRITE_LEFT, isolate);
473 Generate(Token::SHR, INT32, SMI, SMI, OVERWRITE_RIGHT, isolate); 473 Generate(Token::SHR, INT32, SMI, SMI, OVERWRITE_RIGHT, isolate);
474 Generate(Token::SHR, NUMBER, SMI, SMI, NO_OVERWRITE, isolate); 474 Generate(Token::SHR, NUMBER, SMI, SMI, NO_OVERWRITE, isolate);
475 Generate(Token::SHR, NUMBER, SMI, SMI, OVERWRITE_LEFT, isolate); 475 Generate(Token::SHR, NUMBER, SMI, SMI, OVERWRITE_LEFT, isolate);
476 Generate(Token::SHR, NUMBER, SMI, INT32, OVERWRITE_RIGHT, isolate);
476 Generate(Token::SHR, SMI, SMI, SMI, NO_OVERWRITE, isolate); 477 Generate(Token::SHR, SMI, SMI, SMI, NO_OVERWRITE, isolate);
477 Generate(Token::SHR, SMI, SMI, SMI, OVERWRITE_LEFT, isolate); 478 Generate(Token::SHR, SMI, SMI, SMI, OVERWRITE_LEFT, isolate);
478 Generate(Token::SHR, SMI, SMI, SMI, OVERWRITE_RIGHT, isolate); 479 Generate(Token::SHR, SMI, SMI, SMI, OVERWRITE_RIGHT, isolate);
479 Generate(Token::SUB, INT32, INT32, INT32, NO_OVERWRITE, isolate); 480 Generate(Token::SUB, INT32, INT32, INT32, NO_OVERWRITE, isolate);
480 Generate(Token::SUB, INT32, INT32, INT32, OVERWRITE_LEFT, isolate); 481 Generate(Token::SUB, INT32, INT32, INT32, OVERWRITE_LEFT, isolate);
481 Generate(Token::SUB, INT32, NUMBER, NUMBER, NO_OVERWRITE, isolate); 482 Generate(Token::SUB, INT32, NUMBER, NUMBER, NO_OVERWRITE, isolate);
482 Generate(Token::SUB, INT32, NUMBER, NUMBER, OVERWRITE_RIGHT, isolate); 483 Generate(Token::SUB, INT32, NUMBER, NUMBER, OVERWRITE_RIGHT, isolate);
483 Generate(Token::SUB, INT32, SMI, INT32, OVERWRITE_LEFT, isolate); 484 Generate(Token::SUB, INT32, SMI, INT32, OVERWRITE_LEFT, isolate);
484 Generate(Token::SUB, INT32, SMI, INT32, OVERWRITE_RIGHT, isolate); 485 Generate(Token::SUB, INT32, SMI, INT32, OVERWRITE_RIGHT, isolate);
485 Generate(Token::SUB, NUMBER, INT32, NUMBER, NO_OVERWRITE, isolate); 486 Generate(Token::SUB, NUMBER, INT32, NUMBER, NO_OVERWRITE, isolate);
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 InstallDescriptor(isolate, &stub3); 1163 InstallDescriptor(isolate, &stub3);
1163 } 1164 }
1164 1165
1165 InternalArrayConstructorStub::InternalArrayConstructorStub( 1166 InternalArrayConstructorStub::InternalArrayConstructorStub(
1166 Isolate* isolate) { 1167 Isolate* isolate) {
1167 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 1168 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
1168 } 1169 }
1169 1170
1170 1171
1171 } } // namespace v8::internal 1172 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698