]> git.cworth.org Git - apitrace/blob - cli/trace_analyzer.hpp
Rename trim::CallSet to trace::FastCallSet
[apitrace] / cli / trace_analyzer.hpp
1 /**************************************************************************
2  * Copyright 2012 Intel corporation
3  *
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #include <set>
27
28 #include <GL/gl.h>
29 #include <GL/glext.h>
30
31 #include "trace_callset.hpp"
32 #include "trace_fast_callset.hpp"
33 #include "trace_parser.hpp"
34
35 typedef unsigned TrimFlags;
36
37 /**
38  * Trim flags
39  */
40 enum {
41
42     /* Whether to trim calls that have no side effects. */
43     TRIM_FLAG_NO_SIDE_EFFECTS           = (1 << 0),
44
45     /* Whether to trim calls to setup textures that are never used. */
46     TRIM_FLAG_TEXTURES                  = (1 << 1),
47
48     /* Whether to trim calls to setup shaders that are never used. */
49     TRIM_FLAG_SHADERS                   = (1 << 2),
50
51     /* Whether to trim drawing operations outside of the desired call-set. */
52     TRIM_FLAG_DRAWING                   = (1 << 3),
53 };
54
55 class TraceAnalyzer {
56 private:
57     std::map<std::string, std::set<unsigned> > resources;
58     std::map<std::string, std::set<std::string> > dependencies;
59
60     std::map<GLenum, unsigned> texture_map;
61
62     trace::FastCallSet required;
63
64     bool transformFeedbackActive;
65     bool framebufferObjectActive;
66     bool insideBeginEnd;
67     GLuint insideNewEndList;
68     GLenum activeTextureUnit;
69     GLuint activeProgram;
70     unsigned int trimFlags;
71
72     void provide(std::string resource, trace::CallNo call_no);
73     void providef(std::string resource, int resource_no, trace::CallNo call_no);
74
75     void link(std::string resource, std::string dependency);
76     void linkf(std::string resource, std::string dependency, int dep_no);
77
78     void unlink(std::string resource, std::string dependency);
79     void unlinkf(std::string resource, std::string dependency, int dep_no);
80     void unlinkAll(std::string resource);
81
82     void stateTrackPreCall(trace::Call *call);
83
84     void recordSideEffects(trace::Call *call);
85     bool callHasNoSideEffects(trace::Call *call, const char *name);
86     bool recordTextureSideEffects(trace::Call *call, const char *name);
87     bool recordShaderSideEffects(trace::Call *call, const char *name);
88     bool recordDrawingSideEffects(trace::Call *call, const char *name);
89
90     void stateTrackPostCall(trace::Call *call);
91
92     bool renderingHasSideEffect(void);
93     std::set<unsigned> resolve(std::string resource);
94
95     void consume(std::string resource);
96     void requireDependencies(trace::Call *call);
97
98 public:
99     TraceAnalyzer(TrimFlags trimFlags);
100     ~TraceAnalyzer();
101
102     /* Analyze this call by tracking state and recording all the
103      * resources provided by this call as side effects.. */
104     void analyze(trace::Call *call);
105
106     /* Require this call and all of its dependencies to be included in
107      * the final trace. */
108     void require(trace::Call *call);
109
110     /* Return a set of all the required calls, (both those calls added
111      * explicitly with require() and those implicitly depended
112      * upon. */
113     trace::FastCallSet *get_required(void);
114 };