1 /**************************************************************************
3 * Copyright 2012 VMware, Inc.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 **************************************************************************/
26 #ifndef TRACE_PROFILER_H
27 #define TRACE_PROFILER_H
62 /* Indices to profile->calls array */
70 Program() : gpuTotal(0), cpuTotal(0), pixelTotal(0) {}
76 /* Indices to profile->calls array */
77 std::vector<unsigned> calls;
80 std::vector<Call> calls;
81 std::vector<Frame> frames;
82 std::vector<Program> programs;
91 void setup(bool cpuTimes_, bool gpuTimes_, bool pixelsDrawn_);
93 void addCall(unsigned no,
97 int64_t gpuStart, int64_t gpuDuration,
98 int64_t cpuStart, int64_t cpuDuration);
104 void setBaseCpuTime(int64_t cpuStart);
105 void setBaseGpuTime(int64_t gpuStart);
107 int64_t getBaseCpuTime();
108 int64_t getBaseGpuTime();
110 static void parseLine(const char* line, Profile* profile);
123 #endif // TRACE_PROFILER_H