blob: 01dddd9902b5def13882bb56169bfa3c2567a64f [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
Andrew Walbran692b3252019-03-07 15:51:31 +00002 * Copyright 2018 The Hafnium Authors.
Andrew Scull18834872018-10-12 11:48:09 +01003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andrew Scullfbc938a2018-08-20 14:09:28 +010017#pragma once
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010018
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010019#include <stdarg.h>
20
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +010021#include "vm.h"
22
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010023#if DEBUG
Andrew Scullfdd716e2018-12-20 05:37:31 +000024void dlog_enable_lock(void);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010025void dlog(const char *fmt, ...);
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010026void vdlog(const char *fmt, va_list args);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010027#else
Andrew Scullfdd716e2018-12-20 05:37:31 +000028#define dlog_enable_lock()
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010029#define dlog(...)
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010030#define vdlog(fmt, args)
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010031#endif
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +010032
33void dlog_flush_vm_buffer(struct vm_locked vm);