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

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

Issue 110573004: Merge bleeding_edge 17696:18016. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years 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
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 are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 } 319 }
320 320
321 321
322 void Assembler::GetCode(CodeDesc* desc) { 322 void Assembler::GetCode(CodeDesc* desc) {
323 ASSERT(pc_ <= reloc_info_writer.pos()); // No overlap. 323 ASSERT(pc_ <= reloc_info_writer.pos()); // No overlap.
324 // Set up code descriptor. 324 // Set up code descriptor.
325 desc->buffer = buffer_; 325 desc->buffer = buffer_;
326 desc->buffer_size = buffer_size_; 326 desc->buffer_size = buffer_size_;
327 desc->instr_size = pc_offset(); 327 desc->instr_size = pc_offset();
328 desc->reloc_size = (buffer_ + buffer_size_) - reloc_info_writer.pos(); 328 desc->reloc_size = (buffer_ + buffer_size_) - reloc_info_writer.pos();
329 desc->origin = this;
329 } 330 }
330 331
331 332
332 void Assembler::Align(int m) { 333 void Assembler::Align(int m) {
333 ASSERT(m >= 4 && IsPowerOf2(m)); 334 ASSERT(m >= 4 && IsPowerOf2(m));
334 while ((pc_offset() & (m - 1)) != 0) { 335 while ((pc_offset() & (m - 1)) != 0) {
335 nop(); 336 nop();
336 } 337 }
337 } 338 }
338 339
(...skipping 1962 matching lines...) Expand 10 before | Expand all | Expand 10 after
2301 } 2302 }
2302 2303
2303 if (patched) { 2304 if (patched) {
2304 CPU::FlushICache(pc+2, sizeof(Address)); 2305 CPU::FlushICache(pc+2, sizeof(Address));
2305 } 2306 }
2306 } 2307 }
2307 2308
2308 } } // namespace v8::internal 2309 } } // namespace v8::internal
2309 2310
2310 #endif // V8_TARGET_ARCH_MIPS 2311 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« include/v8-platform.h ('K') | « src/math.js ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698