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 | #ifndef sw_VertexProcessor_hpp |
| 16 | #define sw_VertexProcessor_hpp |
| 17 | |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 18 | #include "Context.hpp" |
Ben Clayton | eea9d35 | 2019-08-29 01:05:14 +0100 | [diff] [blame] | 19 | #include "Memset.hpp" |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 20 | #include "RoutineCache.hpp" |
Alexis Hetu | f60a2d5 | 2019-05-09 14:16:05 -0400 | [diff] [blame] | 21 | #include "Vertex.hpp" |
Chris Forbes | 2e7f35b | 2019-01-17 09:51:39 -0800 | [diff] [blame] | 22 | #include "Pipeline/SpirvShader.hpp" |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 23 | |
Ben Clayton | 197e251 | 2020-04-12 16:35:12 +0100 | [diff] [blame] | 24 | #include <memory> |
| 25 | |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 26 | namespace sw { |
| 27 | |
| 28 | struct DrawData; |
| 29 | |
| 30 | // Basic direct mapped vertex cache. |
| 31 | struct VertexCache |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 32 | { |
Ben Clayton | fccfc56 | 2019-12-17 20:37:31 +0000 | [diff] [blame] | 33 | static constexpr uint32_t SIZE = 64; // TODO: Variable size? |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 34 | static constexpr uint32_t TAG_MASK = SIZE - 1; // Size must be power of 2. |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 35 | |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 36 | void clear(); |
| 37 | |
| 38 | Vertex vertex[SIZE]; |
| 39 | uint32_t tag[SIZE]; |
| 40 | |
| 41 | // Identifier of the draw call for the cache data. If this cache is |
| 42 | // used with a different draw call, then the cache should be invalidated |
| 43 | // before use. |
| 44 | int drawCall = -1; |
| 45 | }; |
| 46 | |
| 47 | struct VertexTask |
| 48 | { |
| 49 | unsigned int vertexCount; |
| 50 | unsigned int primitiveStart; |
| 51 | VertexCache vertexCache; |
| 52 | }; |
| 53 | |
Nicolas Capens | 06aaffa | 2021-11-10 10:19:50 -0500 | [diff] [blame] | 54 | using VertexRoutineFunction = FunctionT<void(const vk::Device *device, Vertex *output, unsigned int *batch, VertexTask *vertextask, DrawData *draw)>; |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 55 | |
| 56 | class VertexProcessor |
| 57 | { |
| 58 | public: |
| 59 | struct States : Memset<States> |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 60 | { |
Ben Clayton | fccfc56 | 2019-12-17 20:37:31 +0000 | [diff] [blame] | 61 | States() |
| 62 | : Memset(this, 0) |
| 63 | {} |
Nicolas Capens | 4a10559 | 2018-01-02 23:41:25 -0500 | [diff] [blame] | 64 | |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 65 | uint32_t computeHash(); |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 66 | |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 67 | uint64_t shaderID; |
Nicolas Capens | 5ab1f36 | 2020-04-22 01:39:36 -0400 | [diff] [blame] | 68 | uint32_t pipelineLayoutIdentifier; |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 69 | |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 70 | struct Input |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 71 | { |
Ben Clayton | fccfc56 | 2019-12-17 20:37:31 +0000 | [diff] [blame] | 72 | operator bool() const // Returns true if stream contains data |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 73 | { |
Alexis Hetu | b766e5e | 2020-01-20 11:40:28 -0500 | [diff] [blame] | 74 | return format != VK_FORMAT_UNDEFINED; |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 75 | } |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 76 | |
Alexis Hetu | b766e5e | 2020-01-20 11:40:28 -0500 | [diff] [blame] | 77 | VkFormat format; // TODO(b/148016460): Could be restricted to VK_FORMAT_END_RANGE |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 78 | unsigned int attribType : BITS(SpirvShader::ATTRIBTYPE_LAST); |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 79 | }; |
| 80 | |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 81 | Input input[MAX_INTERFACE_COMPONENTS / 4]; |
| 82 | bool robustBufferAccess : 1; |
| 83 | bool isPoint : 1; |
Sean Risser | 72b1f01 | 2021-04-19 15:02:06 -0400 | [diff] [blame] | 84 | bool depthClipEnable : 1; |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 85 | }; |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 86 | |
| 87 | struct State : States |
| 88 | { |
| 89 | bool operator==(const State &state) const; |
| 90 | |
| 91 | uint32_t hash; |
| 92 | }; |
| 93 | |
| 94 | using RoutineType = VertexRoutineFunction::RoutineType; |
| 95 | |
| 96 | VertexProcessor(); |
| 97 | |
Alexis Hetu | 35f0770 | 2020-10-01 09:21:17 -0400 | [diff] [blame] | 98 | const State update(const vk::GraphicsState &pipelineState, const sw::SpirvShader *vertexShader, const vk::Inputs &inputs); |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 99 | RoutineType routine(const State &state, vk::PipelineLayout const *pipelineLayout, |
| 100 | SpirvShader const *vertexShader, const vk::DescriptorSet::Bindings &descriptorSets); |
| 101 | |
| 102 | void setRoutineCacheSize(int cacheSize); |
| 103 | |
| 104 | private: |
Ben Clayton | efca565 | 2020-04-13 08:24:45 +0100 | [diff] [blame] | 105 | using RoutineCacheType = RoutineCache<State, VertexRoutineFunction::CFunctionType>; |
Ben Clayton | 197e251 | 2020-04-12 16:35:12 +0100 | [diff] [blame] | 106 | std::unique_ptr<RoutineCacheType> routineCache; |
Nicolas Capens | 157ba26 | 2019-12-10 17:49:14 -0500 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | } // namespace sw |
Nicolas Capens | 68a8238 | 2018-10-02 13:16:55 -0400 | [diff] [blame] | 110 | |
Ben Clayton | ac43aa7 | 2020-04-04 00:48:13 +0100 | [diff] [blame] | 111 | namespace std { |
| 112 | |
| 113 | template<> |
| 114 | struct hash<sw::VertexProcessor::State> |
| 115 | { |
| 116 | uint64_t operator()(const sw::VertexProcessor::State &state) const |
| 117 | { |
| 118 | return state.hash; |
| 119 | } |
| 120 | }; |
| 121 | |
| 122 | } // namespace std |
| 123 | |
Ben Clayton | fccfc56 | 2019-12-17 20:37:31 +0000 | [diff] [blame] | 124 | #endif // sw_VertexProcessor_hpp |