RESOLVED FIXED 102572
Don't blind all the things.
https://bugs.webkit.org/show_bug.cgi?id=102572
Summary Don't blind all the things.
Oliver Hunt
Reported 2012-11-16 16:56:32 PST
Don't blind all the things.
Attachments
Patch (3.57 KB, patch)
2012-11-26 12:29 PST, Oliver Hunt
barraclough: review+
Oliver Hunt
Comment 1 2012-11-26 12:29:41 PST
Darin Adler
Comment 2 2012-11-26 12:37:06 PST
Comment on attachment 176046 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=176046&action=review > Source/JavaScriptCore/ChangeLog:12 > + (MacroAssembler): Please delete bogus lines like this from change log. > Source/JavaScriptCore/assembler/MacroAssembler.h:843 > + bool shouldConsiderBlinding() Should be a static member function? > Source/JavaScriptCore/assembler/MacroAssembler.h:847 > bool shouldBlindDouble(double value) Should be a static member function? > Source/JavaScriptCore/assembler/MacroAssembler.h:895 > + if (~value <= 0xff) > + return false; No explanation of this change in the change log. > Source/JavaScriptCore/assembler/MacroAssembler.h:954 > + if (~value <= 0xff) > + return false; No explanation of this change in the change log. > Source/JavaScriptCore/assembler/MacroAssembler.h:1089 > + if (~value <= 0xff) > + return false; No explanation of this change in the change log.
Gavin Barraclough
Comment 3 2012-11-26 13:13:37 PST
Comment on attachment 176046 [details] Patch r=me, please add changelog comment re blinding small negative value.
Oliver Hunt
Comment 4 2012-11-26 13:21:17 PST
Darin Adler
Comment 5 2012-11-27 10:03:02 PST
Comment on attachment 176046 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=176046&action=review >> Source/JavaScriptCore/assembler/MacroAssembler.h:843 >> + bool shouldConsiderBlinding() > > Should be a static member function? Why is this a non-static member function instead of a static one? >> Source/JavaScriptCore/assembler/MacroAssembler.h:847 >> bool shouldBlindDouble(double value) > > Should be a static member function? Why is this a non-static member function instead of a static one?
Oliver Hunt
Comment 6 2012-11-27 10:41:33 PST
(In reply to comment #5) > (From update of attachment 176046 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=176046&action=review > > >> Source/JavaScriptCore/assembler/MacroAssembler.h:843 > >> + bool shouldConsiderBlinding() > > > > Should be a static member function? > > Why is this a non-static member function instead of a static one? > > >> Source/JavaScriptCore/assembler/MacroAssembler.h:847 > >> bool shouldBlindDouble(double value) > > > > Should be a static member function? > > Why is this a non-static member function instead of a static one? Because they use member functions
Note You need to log in before you can comment on or make changes to this bug.