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

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

Issue 18094: Fix a bunch of spelling mistakes :\ (Closed)
Patch Set: More fixes. Created 11 years, 11 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
« no previous file with comments | « src/assembler-arm.h ('k') | src/assembler-ia32.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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 void Assembler::WriteRecordedPositions() { 1324 void Assembler::WriteRecordedPositions() {
1325 // Write the statement position if it is different from what was written last 1325 // Write the statement position if it is different from what was written last
1326 // time. 1326 // time.
1327 if (current_statement_position_ != written_statement_position_) { 1327 if (current_statement_position_ != written_statement_position_) {
1328 CheckBuffer(); 1328 CheckBuffer();
1329 RecordRelocInfo(RelocInfo::STATEMENT_POSITION, current_statement_position_); 1329 RecordRelocInfo(RelocInfo::STATEMENT_POSITION, current_statement_position_);
1330 written_statement_position_ = current_statement_position_; 1330 written_statement_position_ = current_statement_position_;
1331 } 1331 }
1332 1332
1333 // Write the position if it is different from what was written last time and 1333 // Write the position if it is different from what was written last time and
1334 // also diferent from the written statement position. 1334 // also different from the written statement position.
1335 if (current_position_ != written_position_ && 1335 if (current_position_ != written_position_ &&
1336 current_position_ != written_statement_position_) { 1336 current_position_ != written_statement_position_) {
1337 CheckBuffer(); 1337 CheckBuffer();
1338 RecordRelocInfo(RelocInfo::POSITION, current_position_); 1338 RecordRelocInfo(RelocInfo::POSITION, current_position_);
1339 written_position_ = current_position_; 1339 written_position_ = current_position_;
1340 } 1340 }
1341 } 1341 }
1342 1342
1343 1343
1344 void Assembler::GrowBuffer() { 1344 void Assembler::GrowBuffer() {
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 bind(&after_pool); 1511 bind(&after_pool);
1512 } 1512 }
1513 1513
1514 // Since a constant pool was just emitted, move the check offset forward by 1514 // Since a constant pool was just emitted, move the check offset forward by
1515 // the standard interval. 1515 // the standard interval.
1516 next_buffer_check_ = pc_offset() + kCheckConstInterval; 1516 next_buffer_check_ = pc_offset() + kCheckConstInterval;
1517 } 1517 }
1518 1518
1519 1519
1520 } } // namespace v8::internal 1520 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler-arm.h ('k') | src/assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698