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

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

Issue 6966019: Merge r8007 to 2.5 branch (Closed) Base URL: http://v8.googlecode.com/svn/branches/2.5/
Patch Set: Created 9 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/version.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 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 7257 matching lines...) Expand 10 before | Expand all | Expand 10 after
7268 MemOperand(scratch1, key, LSL, 7268 MemOperand(scratch1, key, LSL,
7269 kPointerSizeLog2 - (kSmiTagSize + kSmiShiftSize))); 7269 kPointerSizeLog2 - (kSmiTagSize + kSmiShiftSize)));
7270 7270
7271 // Make sure that the expected number of instructions are generated. 7271 // Make sure that the expected number of instructions are generated.
7272 ASSERT_EQ(kInlinedKeyedStoreInstructionsAfterPatch, 7272 ASSERT_EQ(kInlinedKeyedStoreInstructionsAfterPatch,
7273 masm_->InstructionsGeneratedSince(&check_inlined_codesize)); 7273 masm_->InstructionsGeneratedSince(&check_inlined_codesize));
7274 } 7274 }
7275 7275
7276 ASSERT(we_remembered_the_write_barrier); 7276 ASSERT(we_remembered_the_write_barrier);
7277 7277
7278 // Make sure that r0 holds the value which is the result of the expression.
7279 __ Move(r0, value);
7280
7278 deferred->BindExit(); 7281 deferred->BindExit();
7279 } else { 7282 } else {
7280 frame()->CallKeyedStoreIC(); 7283 frame()->CallKeyedStoreIC();
7281 } 7284 }
7282 } 7285 }
7283 7286
7284 7287
7285 #ifdef DEBUG 7288 #ifdef DEBUG
7286 bool CodeGenerator::HasValidEntryRegisters() { return true; } 7289 bool CodeGenerator::HasValidEntryRegisters() { return true; }
7287 #endif 7290 #endif
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
7438 BinaryOpIC::GetName(runtime_operands_type_)); 7441 BinaryOpIC::GetName(runtime_operands_type_));
7439 return name_; 7442 return name_;
7440 } 7443 }
7441 7444
7442 7445
7443 #undef __ 7446 #undef __
7444 7447
7445 } } // namespace v8::internal 7448 } } // namespace v8::internal
7446 7449
7447 #endif // V8_TARGET_ARCH_ARM 7450 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698