blob: e8f6b14c5ee225614caf9e136d018e68cf5215ba [file] [log] [blame]
Nicolas Capens68a82382018-10-02 13:16:55 -04001// 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 Capens68a82382018-10-02 13:16:55 -040018#include "Context.hpp"
Ben Claytoneea9d352019-08-29 01:05:14 +010019#include "Memset.hpp"
Nicolas Capens68a82382018-10-02 13:16:55 -040020#include "RoutineCache.hpp"
Alexis Hetuf60a2d52019-05-09 14:16:05 -040021#include "Vertex.hpp"
Chris Forbes2e7f35b2019-01-17 09:51:39 -080022#include "Pipeline/SpirvShader.hpp"
Nicolas Capens68a82382018-10-02 13:16:55 -040023
Ben Clayton197e2512020-04-12 16:35:12 +010024#include <memory>
25
Nicolas Capens157ba262019-12-10 17:49:14 -050026namespace sw {
27
28struct DrawData;
29
30// Basic direct mapped vertex cache.
31struct VertexCache
Nicolas Capens68a82382018-10-02 13:16:55 -040032{
Ben Claytonfccfc562019-12-17 20:37:31 +000033 static constexpr uint32_t SIZE = 64; // TODO: Variable size?
Nicolas Capens157ba262019-12-10 17:49:14 -050034 static constexpr uint32_t TAG_MASK = SIZE - 1; // Size must be power of 2.
Nicolas Capens68a82382018-10-02 13:16:55 -040035
Nicolas Capens157ba262019-12-10 17:49:14 -050036 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
47struct VertexTask
48{
49 unsigned int vertexCount;
50 unsigned int primitiveStart;
51 VertexCache vertexCache;
52};
53
Nicolas Capens06aaffa2021-11-10 10:19:50 -050054using VertexRoutineFunction = FunctionT<void(const vk::Device *device, Vertex *output, unsigned int *batch, VertexTask *vertextask, DrawData *draw)>;
Nicolas Capens157ba262019-12-10 17:49:14 -050055
56class VertexProcessor
57{
58public:
59 struct States : Memset<States>
Nicolas Capens68a82382018-10-02 13:16:55 -040060 {
Ben Claytonfccfc562019-12-17 20:37:31 +000061 States()
62 : Memset(this, 0)
63 {}
Nicolas Capens4a105592018-01-02 23:41:25 -050064
Nicolas Capens157ba262019-12-10 17:49:14 -050065 uint32_t computeHash();
Nicolas Capens68a82382018-10-02 13:16:55 -040066
Nicolas Capens157ba262019-12-10 17:49:14 -050067 uint64_t shaderID;
Nicolas Capens5ab1f362020-04-22 01:39:36 -040068 uint32_t pipelineLayoutIdentifier;
Nicolas Capens68a82382018-10-02 13:16:55 -040069
Nicolas Capens157ba262019-12-10 17:49:14 -050070 struct Input
Nicolas Capens68a82382018-10-02 13:16:55 -040071 {
Ben Claytonfccfc562019-12-17 20:37:31 +000072 operator bool() const // Returns true if stream contains data
Nicolas Capens68a82382018-10-02 13:16:55 -040073 {
Alexis Hetub766e5e2020-01-20 11:40:28 -050074 return format != VK_FORMAT_UNDEFINED;
Nicolas Capens157ba262019-12-10 17:49:14 -050075 }
Nicolas Capens68a82382018-10-02 13:16:55 -040076
Alexis Hetub766e5e2020-01-20 11:40:28 -050077 VkFormat format; // TODO(b/148016460): Could be restricted to VK_FORMAT_END_RANGE
Nicolas Capens157ba262019-12-10 17:49:14 -050078 unsigned int attribType : BITS(SpirvShader::ATTRIBTYPE_LAST);
Nicolas Capens68a82382018-10-02 13:16:55 -040079 };
80
Nicolas Capens157ba262019-12-10 17:49:14 -050081 Input input[MAX_INTERFACE_COMPONENTS / 4];
82 bool robustBufferAccess : 1;
83 bool isPoint : 1;
Sean Risser72b1f012021-04-19 15:02:06 -040084 bool depthClipEnable : 1;
Nicolas Capens68a82382018-10-02 13:16:55 -040085 };
Nicolas Capens157ba262019-12-10 17:49:14 -050086
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 Hetu35f07702020-10-01 09:21:17 -040098 const State update(const vk::GraphicsState &pipelineState, const sw::SpirvShader *vertexShader, const vk::Inputs &inputs);
Nicolas Capens157ba262019-12-10 17:49:14 -050099 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
104private:
Ben Claytonefca5652020-04-13 08:24:45 +0100105 using RoutineCacheType = RoutineCache<State, VertexRoutineFunction::CFunctionType>;
Ben Clayton197e2512020-04-12 16:35:12 +0100106 std::unique_ptr<RoutineCacheType> routineCache;
Nicolas Capens157ba262019-12-10 17:49:14 -0500107};
108
109} // namespace sw
Nicolas Capens68a82382018-10-02 13:16:55 -0400110
Ben Claytonac43aa72020-04-04 00:48:13 +0100111namespace std {
112
113template<>
114struct 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 Claytonfccfc562019-12-17 20:37:31 +0000124#endif // sw_VertexProcessor_hpp