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

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

Issue 15927005: MIPS: Tag length of FixedArrayBase and smi-array[x] as smi representation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixed nit. Created 7 years, 7 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/mips/lithium-mips.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 4918 matching lines...) Expand 10 before | Expand all | Expand 10 after
4929 __ And(scratch1, scratch1, Operand(HeapNumber::kSignMask)); 4929 __ And(scratch1, scratch1, Operand(HeapNumber::kSignMask));
4930 DeoptimizeIf(ne, instr->environment(), scratch1, Operand(zero_reg)); 4930 DeoptimizeIf(ne, instr->environment(), scratch1, Operand(zero_reg));
4931 __ bind(&done); 4931 __ bind(&done);
4932 } 4932 }
4933 } 4933 }
4934 __ SmiTagCheckOverflow(result_reg, result_reg, scratch1); 4934 __ SmiTagCheckOverflow(result_reg, result_reg, scratch1);
4935 DeoptimizeIf(lt, instr->environment(), scratch1, Operand(zero_reg)); 4935 DeoptimizeIf(lt, instr->environment(), scratch1, Operand(zero_reg));
4936 } 4936 }
4937 4937
4938 4938
4939 void LCodeGen::DoCheckSmiAndReturn(LCheckSmiAndReturn* instr) {
4940 LOperand* input = instr->value();
4941 __ And(at, ToRegister(input), Operand(kSmiTagMask));
4942 DeoptimizeIf(ne, instr->environment(), at, Operand(zero_reg));
4943 }
4944
4945
4939 void LCodeGen::DoCheckSmi(LCheckSmi* instr) { 4946 void LCodeGen::DoCheckSmi(LCheckSmi* instr) {
4940 LOperand* input = instr->value(); 4947 LOperand* input = instr->value();
4941 __ And(at, ToRegister(input), Operand(kSmiTagMask)); 4948 __ And(at, ToRegister(input), Operand(kSmiTagMask));
4942 DeoptimizeIf(ne, instr->environment(), at, Operand(zero_reg)); 4949 DeoptimizeIf(ne, instr->environment(), at, Operand(zero_reg));
4943 } 4950 }
4944 4951
4945 4952
4946 void LCodeGen::DoCheckNonSmi(LCheckNonSmi* instr) { 4953 void LCodeGen::DoCheckNonSmi(LCheckNonSmi* instr) {
4947 LOperand* input = instr->value(); 4954 LOperand* input = instr->value();
4948 __ And(at, ToRegister(input), Operand(kSmiTagMask)); 4955 __ And(at, ToRegister(input), Operand(kSmiTagMask));
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
5739 __ Subu(scratch, result, scratch); 5746 __ Subu(scratch, result, scratch);
5740 __ lw(result, FieldMemOperand(scratch, 5747 __ lw(result, FieldMemOperand(scratch,
5741 FixedArray::kHeaderSize - kPointerSize)); 5748 FixedArray::kHeaderSize - kPointerSize));
5742 __ bind(&done); 5749 __ bind(&done);
5743 } 5750 }
5744 5751
5745 5752
5746 #undef __ 5753 #undef __
5747 5754
5748 } } // namespace v8::internal 5755 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/mips/lithium-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698