// Copyright (c) 2017 Google Inc. // // 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. #include "markv_autogen.h" #include #include #include #include #include #include "spirv/1.2/spirv.h" using spvutils::HuffmanCodec; namespace { // Signals that the value is not in the coding scheme and a fallback method // needs to be used. const uint64_t kMarkvNoneOfTheAbove = GetMarkvNonOfTheAbove(); inline uint32_t CombineOpcodeAndNumOperands(uint32_t opcode, uint32_t num_operands) { return opcode | (num_operands << 16); } } // namespace // The following file contains autogenerated statistical coding rules. // Generated by running spirv-stats on representative corpus of shaders with // flags: // --codegen_opcode_and_num_operands_hist // --codegen_opcode_and_num_operands_markov_huffman_codecs // --codegen_literal_string_huffman_codecs // --codegen_non_id_word_huffman_codecs // --codegen_id_descriptor_huffman_codecs // // Example: // find -type f -print0 | xargs -0 -s 2000000 // ~/SPIRV-Tools/build/tools/spirv-stats -v // --codegen_opcode_and_num_operands_hist // --codegen_opcode_and_num_operands_markov_huffman_codecs // --codegen_literal_string_huffman_codecs --codegen_non_id_word_huffman_codecs // --codegen_id_descriptor_huffman_codecs -o // ~/SPIRV-Tools/source/comp/markv_autogen.inc #include "markv_autogen.inc"