Kaydet (Commit) 438f9134 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Mirco-optimizations to reduce register spills and reloads observed on CLANG and GCC.

üst 54576da2
......@@ -84,8 +84,9 @@ set_lookkey(PySetObject *so, PyObject *key, Py_hash_t hash)
return set_lookkey(so, key, hash);
if (cmp > 0) /* likely */
return entry;
mask = so->mask; /* help avoid a register spill */
}
if (entry->key == dummy && freeslot == NULL)
if (entry->hash == -1 && freeslot == NULL)
freeslot = entry;
if (i + LINEAR_PROBES <= mask) {
......@@ -111,8 +112,9 @@ set_lookkey(PySetObject *so, PyObject *key, Py_hash_t hash)
return set_lookkey(so, key, hash);
if (cmp > 0)
return entry;
mask = so->mask;
}
if (entry->key == dummy && freeslot == NULL)
if (entry->hash == -1 && freeslot == NULL)
freeslot = entry;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment