llvm/lld/Common/Timer.cpp

//===- Timer.cpp ----------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lld/Common/Timer.h"
#include "lld/Common/ErrorHandler.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/Format.h"
#include <ratio>

usingnamespacelld;
usingnamespacellvm;

ScopedTimer::ScopedTimer(Timer &t) :{}

void ScopedTimer::stop() {}

ScopedTimer::~ScopedTimer() {}

Timer::Timer(llvm::StringRef name) :{}
Timer::Timer(llvm::StringRef name, Timer &parent)
    :{}

void Timer::print() {}

double Timer::millis() const {}

void Timer::print(int depth, double totalDuration, bool recurse) const {}