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

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

Issue 12254036: Minor cleanup of CompareIC state (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 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 | « no previous file | src/code-stubs.h » ('j') | src/ic.h » ('J')
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 1723 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 1734
1735 1735
1736 static void ICCompareStub_CheckInputType(MacroAssembler* masm, 1736 static void ICCompareStub_CheckInputType(MacroAssembler* masm,
1737 Register input, 1737 Register input,
1738 Register scratch, 1738 Register scratch,
1739 CompareIC::State expected, 1739 CompareIC::State expected,
1740 Label* fail) { 1740 Label* fail) {
1741 Label ok; 1741 Label ok;
1742 if (expected == CompareIC::SMI) { 1742 if (expected == CompareIC::SMI) {
1743 __ JumpIfNotSmi(input, fail); 1743 __ JumpIfNotSmi(input, fail);
1744 } else if (expected == CompareIC::HEAP_NUMBER) { 1744 } else if (expected == CompareIC::NUMBER) {
1745 __ JumpIfSmi(input, &ok); 1745 __ JumpIfSmi(input, &ok);
1746 __ CheckMap(input, scratch, Heap::kHeapNumberMapRootIndex, fail, 1746 __ CheckMap(input, scratch, Heap::kHeapNumberMapRootIndex, fail,
1747 DONT_DO_SMI_CHECK); 1747 DONT_DO_SMI_CHECK);
1748 } 1748 }
1749 // We could be strict about symbol/string here, but as long as 1749 // We could be strict about symbol/string here, but as long as
1750 // hydrogen doesn't care, the stub doesn't have to care either. 1750 // hydrogen doesn't care, the stub doesn't have to care either.
1751 __ bind(&ok); 1751 __ bind(&ok);
1752 } 1752 }
1753 1753
1754 1754
(...skipping 5209 matching lines...) Expand 10 before | Expand all | Expand 10 after
6964 __ SmiUntag(r1); 6964 __ SmiUntag(r1);
6965 __ sub(r0, r1, SmiUntagOperand(r0)); 6965 __ sub(r0, r1, SmiUntagOperand(r0));
6966 } 6966 }
6967 __ Ret(); 6967 __ Ret();
6968 6968
6969 __ bind(&miss); 6969 __ bind(&miss);
6970 GenerateMiss(masm); 6970 GenerateMiss(masm);
6971 } 6971 }
6972 6972
6973 6973
6974 void ICCompareStub::GenerateHeapNumbers(MacroAssembler* masm) { 6974 void ICCompareStub::GenerateNumbers(MacroAssembler* masm) {
6975 ASSERT(state_ == CompareIC::HEAP_NUMBER); 6975 ASSERT(state_ == CompareIC::NUMBER);
6976 6976
6977 Label generic_stub; 6977 Label generic_stub;
6978 Label unordered, maybe_undefined1, maybe_undefined2; 6978 Label unordered, maybe_undefined1, maybe_undefined2;
6979 Label miss; 6979 Label miss;
6980 6980
6981 if (left_ == CompareIC::SMI) { 6981 if (left_ == CompareIC::SMI) {
6982 __ JumpIfNotSmi(r1, &miss); 6982 __ JumpIfNotSmi(r1, &miss);
6983 } 6983 }
6984 if (right_ == CompareIC::SMI) { 6984 if (right_ == CompareIC::SMI) {
6985 __ JumpIfNotSmi(r0, &miss); 6985 __ JumpIfNotSmi(r0, &miss);
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
7946 7946
7947 __ Pop(lr, r5, r1); 7947 __ Pop(lr, r5, r1);
7948 __ Ret(); 7948 __ Ret();
7949 } 7949 }
7950 7950
7951 #undef __ 7951 #undef __
7952 7952
7953 } } // namespace v8::internal 7953 } } // namespace v8::internal
7954 7954
7955 #endif // V8_TARGET_ARCH_ARM 7955 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/code-stubs.h » ('j') | src/ic.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698