Reduce verbosity of hydrogen instructions with OSEs.
R=hpayer@chromium.org Review URL: https://codereview.chromium.org/14091004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14240 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
dcd3f06b27
commit
41f032f4d8
@ -802,13 +802,13 @@ void HValue::ComputeInitialRange(Zone* zone) {
|
||||
|
||||
void HInstruction::PrintTo(StringStream* stream) {
|
||||
PrintMnemonicTo(stream);
|
||||
const char* side_effects =
|
||||
CheckFlag(HValue::kHasNoObservableSideEffects) ? "-" : "+";
|
||||
stream->Add("ose%s ", side_effects);
|
||||
PrintDataTo(stream);
|
||||
PrintRangeTo(stream);
|
||||
PrintChangesTo(stream);
|
||||
PrintTypeTo(stream);
|
||||
if (CheckFlag(HValue::kHasNoObservableSideEffects)) {
|
||||
stream->Add(" [noOSE]");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user