f31522130f
Build system (5 gaps hardened): - COOKBOOK_OFFLINE defaults to true (fork-mode) - normalize_patch handles diff -ruN format - New 'repo validate-patches' command (25/25 relibc patches) - 14 patched Qt/Wayland/display recipes added to protected list - relibc archive regenerated with current patch chain Boot fixes (fixable): - Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset) - D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped) - redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped) - daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch) - udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async) - relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs - greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait) - greeter-ui: built and linked (header guard unification, sem_compat stubs removed) - mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps - greeter config: removed stale keymapd dependency from display/greeter services - prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified Unfixable (diagnosed, upstream): - i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort - kded6/greeter-ui: page fault 0x8 — Qt library null deref - Thread panics fd != -1 — Rust std library on Redox - DHCP timeout / eth0 MAC — QEMU user-mode networking - hwrngd/thermald — no hardware RNG/thermal in VM - live preload allocation — BIOS memory fragmentation, continues on demand
100 lines
2.7 KiB
C++
100 lines
2.7 KiB
C++
// Copyright (C) 2024 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
// Qt-Security score:significant
|
|
|
|
#ifndef QQMLJSCOMPILERSTATS_P_H
|
|
#define QQMLJSCOMPILERSTATS_P_H
|
|
|
|
//
|
|
// W A R N I N G
|
|
// -------------
|
|
//
|
|
// This file is not part of the Qt API. It exists purely as an
|
|
// implementation detail. This header file may change from version to
|
|
// version without notice, or even be removed.
|
|
//
|
|
// We mean it.
|
|
|
|
#include <qtqmlcompilerexports.h>
|
|
|
|
#include <QHash>
|
|
#include <QJsonDocument>
|
|
|
|
#include <private/qqmljsdiagnosticmessage_p.h>
|
|
#include <private/qqmljssourcelocation_p.h>
|
|
|
|
#include <chrono>
|
|
#include <memory>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
namespace QQmlJS {
|
|
|
|
enum class CodegenResult : quint8 { Success, Skip, Failure };
|
|
|
|
struct Q_QMLCOMPILER_EXPORT AotStatsEntry
|
|
{
|
|
std::chrono::microseconds codegenDuration;
|
|
QString functionName;
|
|
QString message;
|
|
int line = 0;
|
|
int column = 0;
|
|
CodegenResult codegenResult = CodegenResult::Success;
|
|
|
|
bool operator<(const AotStatsEntry &) const;
|
|
};
|
|
|
|
class Q_QMLCOMPILER_EXPORT AotStats
|
|
{
|
|
friend class QQmlJSAotCompilerStats;
|
|
|
|
public:
|
|
const QHash<QString, QHash<QString, QList<AotStatsEntry>>> &entries() const
|
|
{
|
|
return m_entries;
|
|
}
|
|
|
|
void registerFile(const QString &moduleId, const QString &filepath);
|
|
void addEntry(const QString &moduleId, const QString &filepath, const AotStatsEntry &entry);
|
|
void insert(const AotStats &other);
|
|
|
|
static std::optional<QStringList> readAllLines(const QString &path);
|
|
bool saveToDisk(const QString &filepath) const;
|
|
|
|
static std::optional<AotStats> parseAotstatsFile(const QString &aotstatsPath);
|
|
static std::optional<AotStats> aggregateAotstatsList(const QString &aotstatsListPath);
|
|
|
|
static std::optional<AotStats> fromJsonDocument(const QJsonDocument &);
|
|
QJsonDocument toJsonDocument() const;
|
|
|
|
private:
|
|
// module Id -> filename -> stats m_entries
|
|
QHash<QString, QHash<QString, QList<AotStatsEntry>>> m_entries;
|
|
};
|
|
|
|
class Q_QMLCOMPILER_EXPORT QQmlJSAotCompilerStats
|
|
{
|
|
public:
|
|
static AotStats *instance() { return s_instance.get(); }
|
|
|
|
static bool recordAotStats() { return s_recordAotStats; }
|
|
static void setRecordAotStats(bool recordAotStats) { s_recordAotStats = recordAotStats; }
|
|
|
|
static QString moduleId() { return s_moduleId; }
|
|
static void setModuleId(const QString &moduleId) { s_moduleId = moduleId; }
|
|
|
|
static void registerFile(const QString &filepath);
|
|
static void addEntry(const QString &filepath, const QQmlJS::AotStatsEntry &entry);
|
|
|
|
private:
|
|
static std::unique_ptr<AotStats> s_instance;
|
|
static QString s_moduleId;
|
|
static bool s_recordAotStats;
|
|
};
|
|
|
|
} // namespace QQmlJS
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QQMLJSCOMPILERSTATS_P_H
|