Give the compiler a hint for automatic optimizations based on password length

This commit is contained in:
Jens Steube
2018-11-20 15:26:46 +01:00
parent 490050ecb3
commit 2a6444c05a
363 changed files with 1124 additions and 1124 deletions
+6 -6
View File
@@ -458,7 +458,7 @@ __kernel void m01760_m04 (KERN_ATTR_BASIC ())
w3[2] = 0;
w3[3] = 0;
const u32 pw_len = pws[gid].pw_len;
const u32 pw_len = pws[gid].pw_len & 63;
/**
* main
@@ -505,7 +505,7 @@ __kernel void m01760_m08 (KERN_ATTR_BASIC ())
w3[2] = 0;
w3[3] = 0;
const u32 pw_len = pws[gid].pw_len;
const u32 pw_len = pws[gid].pw_len & 63;
/**
* main
@@ -552,7 +552,7 @@ __kernel void m01760_m16 (KERN_ATTR_BASIC ())
w3[2] = 0;
w3[3] = 0;
const u32 pw_len = pws[gid].pw_len;
const u32 pw_len = pws[gid].pw_len & 63;
/**
* main
@@ -599,7 +599,7 @@ __kernel void m01760_s04 (KERN_ATTR_BASIC ())
w3[2] = 0;
w3[3] = 0;
const u32 pw_len = pws[gid].pw_len;
const u32 pw_len = pws[gid].pw_len & 63;
/**
* main
@@ -646,7 +646,7 @@ __kernel void m01760_s08 (KERN_ATTR_BASIC ())
w3[2] = 0;
w3[3] = 0;
const u32 pw_len = pws[gid].pw_len;
const u32 pw_len = pws[gid].pw_len & 63;
/**
* main
@@ -693,7 +693,7 @@ __kernel void m01760_s16 (KERN_ATTR_BASIC ())
w3[2] = 0;
w3[3] = 0;
const u32 pw_len = pws[gid].pw_len;
const u32 pw_len = pws[gid].pw_len & 63;
/**
* main