turnip: remove some dead/redundant code
[mesa.git] / src / freedreno / vulkan / tu_util.c
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #include "tu_private.h"
25
26 #include <assert.h>
27 #include <errno.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32
33 #include "util/u_math.h"
34 #include "vk_enum_to_str.h"
35
36 /* TODO: Add Android support to tu_log funcs */
37
38 /** \see tu_loge() */
39 static void
40 tu_loge_v(const char *format, va_list va)
41 {
42 fprintf(stderr, "vk: error: ");
43 vfprintf(stderr, format, va);
44 fprintf(stderr, "\n");
45 }
46
47
48 /** Log an error message. */
49 void tu_printflike(1, 2) tu_loge(const char *format, ...)
50 {
51 va_list va;
52
53 va_start(va, format);
54 tu_loge_v(format, va);
55 va_end(va);
56 }
57
58 /** \see tu_logi() */
59 static void
60 tu_logi_v(const char *format, va_list va)
61 {
62 fprintf(stderr, "tu: info: ");
63 vfprintf(stderr, format, va);
64 fprintf(stderr, "\n");
65 }
66
67 /** Log an error message. */
68 void tu_printflike(1, 2) tu_logi(const char *format, ...)
69 {
70 va_list va;
71
72 va_start(va, format);
73 tu_logi_v(format, va);
74 va_end(va);
75 }
76
77 void tu_printflike(3, 4)
78 __tu_finishme(const char *file, int line, const char *format, ...)
79 {
80 va_list ap;
81 char buffer[256];
82
83 va_start(ap, format);
84 vsnprintf(buffer, sizeof(buffer), format, ap);
85 va_end(ap);
86
87 fprintf(stderr, "%s:%d: FINISHME: %s\n", file, line, buffer);
88 }
89
90 VkResult
91 __vk_errorf(struct tu_instance *instance,
92 VkResult error,
93 const char *file,
94 int line,
95 const char *format,
96 ...)
97 {
98 va_list ap;
99 char buffer[256];
100
101 const char *error_str = vk_Result_to_str(error);
102
103 #ifndef DEBUG
104 return error;
105 #endif
106
107 if (format) {
108 va_start(ap, format);
109 vsnprintf(buffer, sizeof(buffer), format, ap);
110 va_end(ap);
111
112 fprintf(stderr, "%s:%d: %s (%s)\n", file, line, buffer, error_str);
113 } else {
114 fprintf(stderr, "%s:%d: %s\n", file, line, error_str);
115 }
116
117 return error;
118 }