mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
We've been running doxygen with the autobrief option for a couple of
years now. This makes the \brief markers into our comments
redundant. Since they are a visual distraction and we don't want to
encourage more \brief markers in new code either, this patch removes
them all.
Patch produced by
for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done
84 lines
2.5 KiB
C++
84 lines
2.5 KiB
C++
//===- tapi/Core/Architecture.cpp - Architecture ----------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// Implements the architecture.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Architecture.h"
|
|
#include "LLVM.h"
|
|
#include "Defines.h"
|
|
#include "clang/Basic/Diagnostic.h"
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
#include "llvm/BinaryFormat/MachO.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
TAPI_NAMESPACE_INTERNAL_BEGIN
|
|
|
|
Architecture getArchType(uint32_t CPUType, uint32_t CPUSubType) {
|
|
#define ARCHINFO(arch, type, subtype) \
|
|
if (CPUType == (type) && \
|
|
(CPUSubType & ~MachO::CPU_SUBTYPE_MASK) == (subtype)) \
|
|
return Architecture::arch;
|
|
#include "Architecture.def"
|
|
#undef ARCHINFO
|
|
|
|
return Architecture::unknown;
|
|
}
|
|
|
|
Architecture getArchType(StringRef name) {
|
|
return StringSwitch<Architecture>(name)
|
|
#define ARCHINFO(arch, type, subtype) .Case(#arch, Architecture::arch)
|
|
#include "Architecture.def"
|
|
#undef ARCHINFO
|
|
.Default(Architecture::unknown);
|
|
}
|
|
|
|
StringRef getArchName(Architecture arch) {
|
|
switch (arch) {
|
|
#define ARCHINFO(arch, type, subtype) \
|
|
case Architecture::arch: \
|
|
return #arch;
|
|
#include "Architecture.def"
|
|
#undef ARCHINFO
|
|
case Architecture::unknown:
|
|
return "unknown";
|
|
}
|
|
llvm_unreachable("unknown architecutre");
|
|
}
|
|
|
|
std::pair<uint32_t, uint32_t> getCPUType(Architecture arch) {
|
|
switch (arch) {
|
|
#define ARCHINFO(arch, type, subtype) \
|
|
case Architecture::arch: \
|
|
return std::make_pair(type, subtype);
|
|
#include "Architecture.def"
|
|
#undef ARCHINFO
|
|
case Architecture::unknown:
|
|
return std::make_pair(0, 0);
|
|
}
|
|
llvm_unreachable("unknown architecture");
|
|
}
|
|
|
|
raw_ostream &operator<<(raw_ostream &os, Architecture arch) {
|
|
os << getArchName(arch);
|
|
return os;
|
|
}
|
|
|
|
const DiagnosticBuilder &operator<<(const DiagnosticBuilder &db,
|
|
Architecture arch) {
|
|
db.AddString(getArchName(arch));
|
|
return db;
|
|
}
|
|
|
|
TAPI_NAMESPACE_INTERNAL_END
|