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

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

Issue 19661003: Merged r15267, r15610, r15723, r15724, r15725, r15728 into 3.19 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.19
Patch Set: Created 7 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/ast.cc ('k') | src/hydrogen.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 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 1579 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 1590
1591 1591
1592 bool FullCodeGenerator::TryLiteralCompare(CompareOperation* expr) { 1592 bool FullCodeGenerator::TryLiteralCompare(CompareOperation* expr) {
1593 Expression* sub_expr; 1593 Expression* sub_expr;
1594 Handle<String> check; 1594 Handle<String> check;
1595 if (expr->IsLiteralCompareTypeof(&sub_expr, &check)) { 1595 if (expr->IsLiteralCompareTypeof(&sub_expr, &check)) {
1596 EmitLiteralCompareTypeof(expr, sub_expr, check); 1596 EmitLiteralCompareTypeof(expr, sub_expr, check);
1597 return true; 1597 return true;
1598 } 1598 }
1599 1599
1600 if (expr->IsLiteralCompareUndefined(&sub_expr)) { 1600 if (expr->IsLiteralCompareUndefined(&sub_expr, isolate())) {
1601 EmitLiteralCompareNil(expr, sub_expr, kUndefinedValue); 1601 EmitLiteralCompareNil(expr, sub_expr, kUndefinedValue);
1602 return true; 1602 return true;
1603 } 1603 }
1604 1604
1605 if (expr->IsLiteralCompareNull(&sub_expr)) { 1605 if (expr->IsLiteralCompareNull(&sub_expr)) {
1606 EmitLiteralCompareNil(expr, sub_expr, kNullValue); 1606 EmitLiteralCompareNil(expr, sub_expr, kNullValue);
1607 return true; 1607 return true;
1608 } 1608 }
1609 1609
1610 return false; 1610 return false;
1611 } 1611 }
1612 1612
1613 1613
1614 #undef __ 1614 #undef __
1615 1615
1616 1616
1617 } } // namespace v8::internal 1617 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698