/*
 * Copyright (c) 2015 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
  Copyright (c) 2010 Eliot Dresselhaus

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#if 0
#ifdef __OPTIMIZE__
#undef CLIB_DEBUG
#endif
#endif

#include <vppinfra/bitmap.h>
#include <vppinfra/error.h>
#include <vppinfra/os.h>
#include <vppinfra/random.h>
#include <vppinfra/time.h>
#include <vppinfra/vhash.h>

#ifdef CLIB_HAVE_VEC128

typedef struct
{
  u32 n_iter;
  u32 seed;
  u32 verbose;
  u32 n_keys;
  u32 log2_size;
  u32 n_key_u32;

  u32 n_vectors_div_4;
  u32 n_vectors_mod_4;

  u32 *keys;
  u32 *results;

  u32 *vhash_get_key_indices;
  u32 *vhash_get_results;

  u32 *vhash_key_indices;
  u32 *vhash_results;

  vhash_t vhash;

  uword **key_hash;

  struct
  {
    u64 n_clocks;
    u64 n_vectors;
    u64 n_calls;
  } get_stats, set_stats, unset_stats;
} test_vhash_main_t;

always_inline u32
test_vhash_key_gather (void *_tm, u32 vi, u32 wi, u32 n_key_u32s)
{
  test_vhash_main_t *tm = _tm;
  ASSERT (n_key_u32s == tm->n_key_u32);
  ASSERT (wi < n_key_u32s);
  vi = vec_elt (tm->vhash_key_indices, vi);
  return vec_elt (tm->keys, vi * n_key_u32s + wi);
}

always_inline u32x4
test_vhash_4key_gather (void *_tm, u32 vi, u32 wi, u32 n_key_u32s)
{
  test_vhash_main_t *tm = _tm;
  u32 *p;
  u32x4_union_t x;

  ASSERT (n_key_u32s == tm->n_key_u32);
  ASSERT (wi < n_key_u32s);

  p = vec_elt_at_index (tm->vhash_key_indices, vi + 0);
  x.as_u32[0] = tm->keys[p[0] * n_key_u32s + wi];
  x.as_u32[1] = tm->keys[p[1] * n_key_u32s + wi];
  x.as_u32[2] = tm->keys[p[2] * n_key_u32s + wi];
  x.as_u32[3] = tm->keys[p[3] * n_key_u32s + wi];
  return x.as_u32x4;
}

always_inline u32
test_vhash_get_result (void *_tm,
		       u32 vector_index, u32 result_index, u32 n_key_u32s)
{
  test_vhash_main_t *tm = _tm;
  u32 *p = vec_elt_at_index (tm->vhash_results, vector_index);
  p[0] = result_index;
  return result_index;
}

always_inline u32x4
test_vhash_get_4result (void *_tm,
			u32 vector_index, u32x4 results, u32 n_key_u32s)
{
  test_vhash_main_t *tm = _tm;
  u32 *p = vec_elt_at_index (tm->vhash_results, vector_index);
  *(u32x4 *) p = results;
  return results;
}

always_inline u32
test_vhash_set_result (void *_tm,
		       u32 vector_index, u32 old_result, u32 n_key_u32s)
{
  test_vhash_main_t *tm = _tm;
  u32 *p = vec_elt_at_index (tm->vhash_results, vector_index);
  u32 new_result = p[0];
  p[0] = old_result;
  return new_result;
}

always_inline u32
test_vhash_unset_result (void *_tm, u32 i, u32 old_result, u32 n_key_u32s)
{
  test_vhash_main_t *tm = _tm;
  u32 *p = vec_elt_at_index (tm->vhash_results, i);
  p[0] = old_result;
  return 0;
}

#define _(N_KEY_U32)							\
  always_inline u32							\
  test_vhash_key_gather_##N_KEY_U32 (void * _tm, u32 vi, u32 i)		\
  { return test_vhash_key_gather (_tm, vi, i, N_KEY_U32); }		\
									\
  always_inline u32x4							\
  test_vhash_key_gather_4_##N_KEY_U32 (void * _tm, u32 vi, u32 i)	\
  {  return test_vhash_4key_gather (_tm, vi, i, N_KEY_U32); }		\
									\
  clib_pipeline_stage							\
  (test_vhash_gather_keys_stage_##N_KEY_U32,				\
   test_vhash_main_t *, tm, i,						\
   {									\
     vhash_gather_4key_stage						\
       (&tm->vhash,							\
	/* vector_index */ i,						\
	test_vhash_key_gather_4_##N_KEY_U32,				\
	tm,								\
	N_KEY_U32);							\
   })									\
									\
  clib_pipeline_stage_no_inline						\
  (test_vhash_gather_keys_mod_stage_##N_KEY_U32,			\
   test_vhash_main_t *, tm, i,						\
   {									\
     vhash_gather_key_stage						\
       (&tm->vhash,							\
	/* vector_index */ tm->n_vectors_div_4,				\
	/* n_vectors */ tm->n_vectors_mod_4,				\
	test_vhash_key_gather_##N_KEY_U32,				\
	tm,								\
	N_KEY_U32);							\
   })									\
									\
  clib_pipeline_stage							\
  (test_vhash_hash_finalize_stage_##N_KEY_U32,				\
   test_vhash_main_t *, tm, i,						\
   {									\
     vhash_finalize_stage (&tm->vhash, i, N_KEY_U32);			\
   })									\
									\
  clib_pipeline_stage_no_inline						\
  (test_vhash_hash_finalize_mod_stage_##N_KEY_U32,			\
   test_vhash_main_t *, tm, i,						\
   {									\
     vhash_finalize_stage (&tm->vhash, tm->n_vectors_div_4, N_KEY_U32);	\
   })									\
									\
  clib_pipeline_stage							\
  (test_vhash_get_stage_##N_KEY_U32,					\
   test_vhash_main_t *, tm, i,						\
   {									\
     vhash_get_4_stage (&tm->vhash,					\
			/* vector_index */ i,				\
			test_vhash_get_4result,				\
			tm, N_KEY_U32);					\
   })									\
									\
  clib_pipeline_stage_no_inline						\
  (test_vhash_get_mod_stage_##N_KEY_U32,				\
   test_vhash_main_t *, tm, i,						\
   {									\
     vhash_get_stage (&tm->vhash,					\
		      /* vector_i<style>.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */</style><div class="highlight"><pre><span></span><span class="cm">/*</span>
<span class="cm"> *------------------------------------------------------------------</span>
<span class="cm"> * Copyright (c) 2017 Cisco and/or its affiliates.</span>
<span class="cm"> * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);</span>
<span class="cm"> * you may not use this file except in compliance with the License.</span>
<span class="cm"> * You may obtain a copy of the License at:</span>
<span class="cm"> *</span>
<span class="cm"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
<span class="cm"> *</span>
<span class="cm"> * Unless required by applicable law or agreed to in writing, software</span>
<span class="cm"> * distributed under the License is distributed on an &quot;AS IS&quot; BASIS,</span>
<span class="cm"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
<span class="cm"> * See the License for the specific language governing permissions and</span>
<span class="cm"> * limitations under the License.</span>
<span class="cm"> *------------------------------------------------------------------</span>
<span class="cm"> */</span>

<span class="cp">#ifndef _IGMP_ERROR_H_</span>
<span class="cp">#define _IGMP_ERROR_H_</span>

<span class="cp">#define foreach_igmp_error					\</span>
<span class="cp">  _ (NONE, &quot;valid igmp packets&quot;)				\</span>
<span class="cp">  _ (UNSPECIFIED, &quot;unspecified error&quot;)				\</span>
<span class="cp">  _ (INVALID_PROTOCOL, &quot;invalid ip4 protocol&quot;)			\</span>
<span class="cp">  _ (BAD_CHECKSUM, &quot;bad checksum&quot;)				\</span>
<span class="cp">  _ (BAD_LENGTH, &quot;bad length&quot;)                                  \</span>
<span class="cp">  _ (UNKNOWN_TYPE, &quot;unknown igmp message type&quot;)			\</span>
<span class="cp">  _ (NOT_ENABLED, &quot;IGMP not enabled on this interface&quot;)         \</span>

<span class="k">typedef</span> <span class="k">enum</span>
<span class="p">{</span>
<span class="cp">#define _(sym,str) IGMP_ERROR_##sym,</span>
  <span class="n">foreach_igmp_error</span>
<span class="cp">#undef _</span>
    <span class="n">IGMP_N_ERROR</span><span class="p">,</span>
<span class="p">}</span> <span class="n">igmp_error_t</span><span class="p">;</span>

<span class="cp">#endif </span><span class="cm">/* IGMP_ERROR_H */</span><span class="cp"></span>

<span class="cm">/*</span>
<span class="cm"> * fd.io coding-style-patch-verification: ON</span>
<span class="cm"> *</span>
<span class="cm"> * Local Variables:</span>
<span class="cm"> * eval: (c-set-style &quot;gnu&quot;)</span>
<span class="cm"> * End:</span>
<span class="cm"> */</span>
</pre></div>
</code></pre></td></tr></table>
</div> <!-- class=content -->
<div id="lfcollabprojects-footer">
  <div class="gray-diagonal">
    <div class="footer-inner">
      <p>
        &copy; 2016 <a href="https://www.fd.io/">FD.io</a> a Linux Foundation
        Collaborative Project. All Rights Reserved.
      </p>
      <p>
        Linux Foundation is a registered trademark of The Linux Foundation.
        Linux is a registered
        <a
          href="http://www.linuxfoundation.org/programs/legal/trademark"
          title="Linux Mark Institute"
          >trademark</a
        >
        of Linus Torvalds.
      </p>
      <p>
        Please see our
        <a href="http://www.linuxfoundation.org/privacy">privacy policy</a> and
        <a href="http://www.linuxfoundation.org/terms">terms of use</a>
      </p>
    </div>
  </div>
</div>
</div> <!-- id=cgit -->
</body>
</html>

  vec_resize_aligned (tm->vhash_get_results, tm->n_keys,
		      CLIB_CACHE_LINE_BYTES);
  vec_clone (tm->vhash_get_key_indices, tm->results);
  for (i = 0; i < vec_len (tm->vhash_get_key_indices); i++)
    tm->vhash_get_key_indices[i] = i;

  {
    uword *is_set_bitmap = 0;
    uword *to_set_bitmap = 0;
    uword *to_unset_bitmap = 0;
    u32 *to_set = 0, *to_unset = 0;
    u32 *to_set_results = 0, *to_unset_results = 0;
    u64 t[2];

    for (i = 0; i < tm->n_iter; i++)
      {
	vec_reset_length (to_set);
	vec_reset_length (to_unset);
	vec_reset_length (to_set_results);
	vec_reset_length (to_unset_results);

	do
	  {
	    to_set_bitmap = clib_bitmap_random (to_set_bitmap,
						tm->n_keys, &tm->seed);
	  }
	while (clib_bitmap_is_zero (to_set_bitmap));
	to_unset_bitmap = clib_bitmap_dup_and (to_set_bitmap, is_set_bitmap);
	to_set_bitmap = clib_bitmap_andnot (to_set_bitmap, to_unset_bitmap);

	/* *INDENT-OFF* */
	clib_bitmap_foreach (j, to_set_bitmap, ({
	      vec_add1 (to_set, j);
	      vec_add1 (to_set_results, tm->results[j]);
	}));
	/* *INDENT-ON* */
	/* *INDENT-OFF* */
	clib_bitmap_foreach (j, to_unset_bitmap, ({
	      vec_add1 (to_unset, j);
	      vec_add1 (to_unset_results, 0xdeadbeef);
	}));
	/* *INDENT-ON* */

	if (vec_len (to_set) > 0)
	  {
	    t[0] = clib_cpu_time_now ();
	    test_vhash_op (tm, to_set, to_set_results, vec_len (to_set), SET);
	    t[1] = clib_cpu_time_now ();
	    tm->set_stats.n_clocks += t[1] - t[0];
	    tm->set_stats.n_vectors += vec_len (to_set);
	    tm->set_stats.n_calls += 1;
	    is_set_bitmap = clib_bitmap_or (is_set_bitmap, to_set_bitmap);
	  }

	t[0] = clib_cpu_time_now ();
	test_vhash_op (tm, tm->vhash_get_key_indices,
		       tm->vhash_get_results,
		       vec_len (tm->vhash_get_key_indices), GET);
	t[1] = clib_cpu_time_now ();
	tm->get_stats.n_clocks += t[1] - t[0];
	tm->get_stats.n_vectors += vec_len (tm->vhash_get_key_indices);
	tm->get_stats.n_calls += 1;

	for (j = 0; j < vec_len (tm->vhash_get_results); j++)
	  {
	    u32 r0 = tm->vhash_get_results[j];
	    u32 r1 = tm->results[j];
	    if (clib_bitmap_get (is_set_bitmap, j))
	      {
		if (r0 != r1)
		  os_panic ();
	      }
	    else
	      {
		if (r0 != ~0)
		  os_panic ();
	      }
	  }

	if (vh->n_elts != clib_bitmap_count_set_bits (is_set_bitmap))
	  os_panic ();

	if (vec_len (to_unset) > 0)
	  {
	    t[0] = clib_cpu_time_now ();
	    test_vhash_op (tm, to_unset, to_unset_results,
			   vec_len (to_unset), UNSET);
	    t[1] = clib_cpu_time_now ();
	    tm->unset_stats.n_clocks += t[1] - t[0];
	    tm->unset_stats.n_vectors += vec_len (to_unset);
	    tm->unset_stats.n_calls += 1;
	    is_set_bitmap =
	      clib_bitmap_andnot (is_set_bitmap, to_unset_bitmap);
	  }

	t[0] = clib_cpu_time_now ();
	test_vhash_op (tm, tm->vhash_get_key_indices,
		       tm->vhash_get_results,
		       vec_len (tm->vhash_get_key_indices), GET);
	t[1] = clib_cpu_time_now ();
	tm->get_stats.n_clocks += t[1] - t[0];
	tm->get_stats.n_vectors += vec_len (tm->vhash_get_key_indices);
	tm->get_stats.n_calls += 1;

	for (j = 0; j < vec_len (tm->vhash_get_results); j++)
	  {
	    u32 r0 = tm->vhash_get_results[j];
	    u32 r1 = tm->results[j];
	    if (clib_bitmap_get (is_set_bitmap, j))
	      {
		if (r0 != r1)
		  os_panic ();
	      }
	    else
	      {
		if (r0 != ~0)
		  os_panic ();
	      }
	  }

	if (vh->n_elts != clib_bitmap_count_set_bits (is_set_bitmap))
	  os_panic ();
      }

    vhash_resize (vh, tm->log2_size + 1);

    test_vhash_op (tm, tm->vhash_get_key_indices,
		   tm->vhash_get_results,
		   vec_len (tm->vhash_get_key_indices), GET);

    for (j = 0; j < vec_len (tm->vhash_get_results); j++)
      {
	u32 r0 = tm->vhash_get_results[j];
	u32 r1 = tm->results[j];
	if (clib_bitmap_get (is_set_bitmap, j))
	  {
	    if (r0 != r1)
	      os_panic ();
	  }
	else
	  {
	    if (r0 != ~0)
	      os_panic ();
	  }
      }

    if (vh->n_elts != clib_bitmap_count_set_bits (is_set_bitmap))
      os_panic ();
  }

  {
    clib_time_t ct;

    clib_time_init (&ct);

    clib_warning ("%.4e clocks/get %.4e gets/call %.4e gets/sec",
		  (f64) tm->get_stats.n_clocks /
		  (f64) tm->get_stats.n_vectors,
		  (f64) tm->get_stats.n_vectors / (f64) tm->get_stats.n_calls,
		  (f64) tm->get_stats.n_vectors /
		  (f64) (tm->get_stats.n_clocks * ct.seconds_per_clock));
    if (tm->set_stats.n_calls > 0)
      clib_warning ("%.4e clocks/set %.4e sets/call %.4e sets/sec",
		    (f64) tm->set_stats.n_clocks /
		    (f64) tm->set_stats.n_vectors,
		    (f64) tm->set_stats.n_vectors /
		    (f64) tm->set_stats.n_calls,
		    (f64) tm->set_stats.n_vectors /
		    (f64) (tm->set_stats.n_clocks * ct.seconds_per_clock));
    if (tm->unset_stats.n_calls > 0)
      clib_warning ("%.4e clocks/unset %.4e unsets/call %.4e unsets/sec",
		    (f64) tm->unset_stats.n_clocks /
		    (f64) tm->unset_stats.n_vectors,
		    (f64) tm->unset_stats.n_vectors /
		    (f64) tm->unset_stats.n_calls,
		    (f64) tm->unset_stats.n_vectors /
		    (f64) (tm->unset_stats.n_clocks * ct.seconds_per_clock));
  }

done:
  if (error)
    clib_error_report (error);
  return 0;
}

#endif /* CLIB_HAVE_VEC128 */

#ifndef CLIB_HAVE_VEC128
int
test_vhash_main (unformat_input_t * input)
{
  clib_error ("compiled without vector support");
  return 0;
}
#endif

#ifdef CLIB_UNIX
int
main (int argc, char *argv[])
{
  unformat_input_t i;
  int r;

  clib_mem_init (0, 64ULL << 20);

  unformat_init_command_line (&i, argv);
  r = test_vhash_main (&i);
  unformat_free (&i);
  return r;
}
#endif

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */