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

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

Issue 200253006: MIPS: Fix deoptimization for out-of-line constant pool. (Closed) Base URL: https://github.com/v8/v8.git@gbl
Patch Set: Created 6 years, 9 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 // Copyright 2011 the V8 project authors. All rights reserved. 2 // Copyright 2011 the V8 project authors. All rights reserved.
3 // Redistribution and use in source and binary forms, with or without 3 // Redistribution and use in source and binary forms, with or without
4 // modification, are permitted provided that the following conditions are 4 // modification, are permitted provided that the following conditions are
5 // met: 5 // met:
6 // 6 //
7 // * Redistributions of source code must retain the above copyright 7 // * Redistributions of source code must retain the above copyright
8 // notice, this list of conditions and the following disclaimer. 8 // notice, this list of conditions and the following disclaimer.
9 // * Redistributions in binary form must reproduce the above 9 // * Redistributions in binary form must reproduce the above
10 // copyright notice, this list of conditions and the following 10 // copyright notice, this list of conditions and the following
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 void FrameDescription::SetCallerPc(unsigned offset, intptr_t value) { 387 void FrameDescription::SetCallerPc(unsigned offset, intptr_t value) {
388 SetFrameSlot(offset, value); 388 SetFrameSlot(offset, value);
389 } 389 }
390 390
391 391
392 void FrameDescription::SetCallerFp(unsigned offset, intptr_t value) { 392 void FrameDescription::SetCallerFp(unsigned offset, intptr_t value) {
393 SetFrameSlot(offset, value); 393 SetFrameSlot(offset, value);
394 } 394 }
395 395
396 396
397 void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) {
398 // No out-of-line constant pool support.
399 UNREACHABLE();
400 }
401
402
397 #undef __ 403 #undef __
398 404
399 405
400 } } // namespace v8::internal 406 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698