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

Unified Diff: src/ia32/assembler-ia32.h

Issue 155350: Changed hash table to use more of the hash value when probing. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: src/ia32/assembler-ia32.h
===================================================================
--- src/ia32/assembler-ia32.h (revision 2481)
+++ src/ia32/assembler-ia32.h (working copy)
@@ -597,6 +597,9 @@
void xor_(const Operand& src, Register dst);
void xor_(const Operand& dst, const Immediate& x);
+ // Rotate dist right count times, asserts count < 32.
+ void ror(Register dst, uint32_t count);
+
// Bit operations.
void bt(const Operand& dst, Register src);
void bts(const Operand& dst, Register src);

Powered by Google App Engine
This is Rietveld 408576698