Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 1 | // Copyright 2016 The SwiftShader Authors. All Rights Reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | #include "VertexProcessor.hpp" |
| 16 | |
Nicolas Capens | 1d8c8db | 2018-11-05 16:30:42 -0500 | [diff] [blame] | 17 | #include "Pipeline/VertexProgram.hpp" |
Nicolas Capens | 1d8c8db | 2018-11-05 16:30:42 -0500 | [diff] [blame] | 18 | #include "Pipeline/Constants.hpp" |
| 19 | #include "System/Math.hpp" |
Chris Forbes | ebe5f7f | 2019-01-16 10:38:34 -0800 | [diff] [blame] | 20 | #include "Vulkan/VkDebug.hpp" |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 21 | |
| 22 | #include <string.h> |
| 23 | |
| 24 | namespace sw |
| 25 | { |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 26 | void VertexCache::clear() |
| 27 | { |
Nicolas Capens | 4a10559 | 2018-01-02 23:41:25 -0500 | [diff] [blame] | 28 | for(uint32_t i = 0; i < SIZE; i++) |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 29 | { |
Nicolas Capens | 4a10559 | 2018-01-02 23:41:25 -0500 | [diff] [blame] | 30 | tag[i] = 0xFFFFFFFF; |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 31 | } |
| 32 | } |
| 33 | |
| 34 | unsigned int VertexProcessor::States::computeHash() |
| 35 | { |
| 36 | unsigned int *state = (unsigned int*)this; |
| 37 | unsigned int hash = 0; |
| 38 | |
| 39 | for(unsigned int i = 0; i < sizeof(States) / 4; i++) |
| 40 | { |
| 41 | hash ^= state[i]; |
| 42 | } |
| 43 | |
| 44 | return hash; |
| 45 | } |
| 46 | |
| 47 | VertexProcessor::State::State() |
| 48 | { |
| 49 | memset(this, 0, sizeof(State)); |
| 50 | } |
| 51 | |
| 52 | bool VertexProcessor::State::operator==(const State &state) const |
| 53 | { |
| 54 | if(hash != state.hash) |
| 55 | { |
| 56 | return false; |
| 57 | } |
| 58 | |
| 59 | return memcmp(static_cast<const States*>(this), static_cast<const States*>(&state), sizeof(States)) == 0; |
| 60 | } |
| 61 | |
Alexis Hetu | 2e4f6e8 | 2019-05-08 15:52:21 -0400 | [diff] [blame] | 62 | VertexProcessor::VertexProcessor() |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 63 | { |
Nicolas Capens | dc2966a | 2018-10-31 11:25:15 -0400 | [diff] [blame] | 64 | routineCache = nullptr; |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 65 | setRoutineCacheSize(1024); |
| 66 | } |
| 67 | |
| 68 | VertexProcessor::~VertexProcessor() |
| 69 | { |
| 70 | delete routineCache; |
Nicolas Capens | dc2966a | 2018-10-31 11:25:15 -0400 | [diff] [blame] | 71 | routineCache = nullptr; |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 72 | } |
| 73 | |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 74 | void VertexProcessor::setRoutineCacheSize(int cacheSize) |
| 75 | { |
| 76 | delete routineCache; |
Alexis Hetu | f287834 | 2019-03-12 16:32:04 -0400 | [diff] [blame] | 77 | routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536)); |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 78 | } |
| 79 | |
Alexis Hetu | 2e4f6e8 | 2019-05-08 15:52:21 -0400 | [diff] [blame] | 80 | const VertexProcessor::State VertexProcessor::update(const sw::Context* context) |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 81 | { |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 82 | State state; |
| 83 | |
Nicolas Capens | dc2966a | 2018-10-31 11:25:15 -0400 | [diff] [blame] | 84 | state.shaderID = context->vertexShader->getSerialID(); |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 85 | |
Chris Forbes | 8a718cb | 2019-02-21 10:20:26 -0800 | [diff] [blame] | 86 | for(int i = 0; i < MAX_VERTEX_INPUTS; i++) |
| 87 | { |
| 88 | state.input[i].type = context->input[i].type; |
| 89 | state.input[i].count = context->input[i].count; |
| 90 | state.input[i].normalized = context->input[i].normalized; |
| 91 | // TODO: get rid of attribType -- just keep the VK format all the way through, this fully determines |
| 92 | // how to handle the attribute. |
| 93 | state.input[i].attribType = context->vertexShader->inputs[i*4].Type; |
| 94 | } |
| 95 | |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 96 | state.hash = state.computeHash(); |
| 97 | |
| 98 | return state; |
| 99 | } |
| 100 | |
Alexis Hetu | 2e4f6e8 | 2019-05-08 15:52:21 -0400 | [diff] [blame] | 101 | Routine *VertexProcessor::routine(const State &state, |
| 102 | vk::PipelineLayout const *pipelineLayout, |
| 103 | SpirvShader const *vertexShader, |
| 104 | const vk::DescriptorSet::Bindings &descriptorSets) |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 105 | { |
| 106 | Routine *routine = routineCache->query(state); |
| 107 | |
| 108 | if(!routine) // Create one |
| 109 | { |
Alexis Hetu | 2e4f6e8 | 2019-05-08 15:52:21 -0400 | [diff] [blame] | 110 | VertexRoutine *generator = new VertexProgram(state, pipelineLayout, vertexShader, descriptorSets); |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 111 | generator->generate(); |
Chris Forbes | 878d4b0 | 2019-01-21 10:48:35 -0800 | [diff] [blame] | 112 | routine = (*generator)("VertexRoutine_%0.8X", state.shaderID); |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 113 | delete generator; |
| 114 | |
| 115 | routineCache->add(state, routine); |
| 116 | } |
| 117 | |
| 118 | return routine; |
| 119 | } |
| 120 | } |