2008-01-15 05:40:21 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2008-08-28 19:53:15 +00:00
|
|
|
/// \file price_tablegen.c
|
2008-01-15 05:40:21 +00:00
|
|
|
/// \brief Probability price table generator
|
|
|
|
///
|
2008-08-28 19:53:15 +00:00
|
|
|
/// Compiling: gcc -std=c99 -o price_tablegen price_tablegen.c
|
2008-01-15 05:40:21 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 2007 Lasse Collin
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "range_common.h"
|
2008-08-28 19:53:15 +00:00
|
|
|
#include "price.h"
|
2008-01-15 05:40:21 +00:00
|
|
|
|
|
|
|
|
2008-12-30 22:30:49 +00:00
|
|
|
static uint32_t rc_prices[RC_PRICE_TABLE_SIZE];
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_price_table(void)
|
2008-01-15 05:40:21 +00:00
|
|
|
{
|
2008-12-30 22:30:49 +00:00
|
|
|
for (uint32_t i = (UINT32_C(1) << RC_MOVE_REDUCING_BITS) / 2;
|
|
|
|
i < RC_BIT_MODEL_TOTAL;
|
|
|
|
i += (UINT32_C(1) << RC_MOVE_REDUCING_BITS)) {
|
|
|
|
const uint32_t cycles_bits = RC_BIT_PRICE_SHIFT_BITS;
|
|
|
|
uint32_t w = i;
|
|
|
|
uint32_t bit_count = 0;
|
|
|
|
|
|
|
|
for (uint32_t j = 0; j < cycles_bits; ++j) {
|
|
|
|
w *= w;
|
|
|
|
bit_count <<= 1;
|
|
|
|
|
|
|
|
while (w >= (UINT32_C(1) << 16)) {
|
|
|
|
w >>= 1;
|
|
|
|
++bit_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rc_prices[i >> RC_MOVE_REDUCING_BITS]
|
|
|
|
= (RC_BIT_MODEL_TOTAL_BITS << cycles_bits)
|
|
|
|
- 15 - bit_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-15 05:40:21 +00:00
|
|
|
|
2008-12-30 22:30:49 +00:00
|
|
|
static void
|
|
|
|
print_price_table(void)
|
|
|
|
{
|
2008-01-15 05:40:21 +00:00
|
|
|
printf("/* This file has been automatically generated by "
|
2008-08-28 19:53:15 +00:00
|
|
|
"price_tablegen.c. */\n\n"
|
2008-01-15 05:40:21 +00:00
|
|
|
"#include \"range_encoder.h\"\n\n"
|
2008-12-30 22:30:49 +00:00
|
|
|
"const uint8_t lzma_rc_prices["
|
2008-08-28 19:53:15 +00:00
|
|
|
"RC_PRICE_TABLE_SIZE] = {");
|
2008-01-15 05:40:21 +00:00
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
const size_t array_size = sizeof(lzma_rc_prices)
|
|
|
|
/ sizeof(lzma_rc_prices[0]);
|
2008-01-15 05:40:21 +00:00
|
|
|
for (size_t i = 0; i < array_size; ++i) {
|
|
|
|
if (i % 8 == 0)
|
|
|
|
printf("\n\t");
|
|
|
|
|
2008-12-30 22:30:49 +00:00
|
|
|
printf("%4" PRIu32, rc_prices[i]);
|
2008-01-15 05:40:21 +00:00
|
|
|
|
|
|
|
if (i != array_size - 1)
|
|
|
|
printf(",");
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n};\n");
|
|
|
|
|
2008-12-30 22:30:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
init_price_table();
|
|
|
|
print_price_table();
|
2008-01-15 05:40:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|