mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
`#assert` is a new static assertion statement that will let us write tests for the new constant evaluation infrastructure that we are working on. `#assert` works by lowering to a `Builtin.poundAssert` SIL instruction. The constant evaluation infrastructure will look for these SIL instructions, const-evaluate their conditions, and emit errors if the conditions are non-constant or false. This commit implements parsing, typechecking and SILGen for `#assert`.
90 lines
2.6 KiB
C++
90 lines
2.6 KiB
C++
//===--- IRGenPrepare.cpp -------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
///
|
|
/// Cleanup SIL to make it suitable for IRGen.
|
|
///
|
|
/// We perform the following canonicalizations:
|
|
///
|
|
/// 1. We remove calls to Builtin.poundAssert() and Builtin.staticReport(),
|
|
/// which are not needed post SIL.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#define DEBUG_TYPE "sil-cleanup"
|
|
#include "swift/SIL/SILFunction.h"
|
|
#include "swift/SIL/SILInstruction.h"
|
|
#include "swift/SIL/SILModule.h"
|
|
#include "swift/SILOptimizer/PassManager/Passes.h"
|
|
#include "swift/SILOptimizer/PassManager/Transforms.h"
|
|
#include "swift/SILOptimizer/Utils/Local.h"
|
|
#include "swift/Strings.h"
|
|
|
|
using namespace swift;
|
|
|
|
static bool cleanFunction(SILFunction &fn) {
|
|
bool madeChange = false;
|
|
|
|
for (auto &bb : fn) {
|
|
for (auto i = bb.begin(), e = bb.end(); i != e;) {
|
|
// Make sure there is no iterator invalidation if the inspected
|
|
// instruction gets removed from the block.
|
|
SILInstruction *inst = &*i;
|
|
++i;
|
|
|
|
// Remove calls to Builtin.poundAssert() and Builtin.staticReport().
|
|
auto *bi = dyn_cast<BuiltinInst>(inst);
|
|
if (!bi) {
|
|
continue;
|
|
}
|
|
|
|
const BuiltinInfo &bInfo = bi->getBuiltinInfo();
|
|
if (bInfo.ID != BuiltinValueKind::PoundAssert &&
|
|
bInfo.ID != BuiltinValueKind::StaticReport) {
|
|
continue;
|
|
}
|
|
|
|
// The call to the builtin should get removed before we reach
|
|
// IRGen.
|
|
recursivelyDeleteTriviallyDeadInstructions(bi, /* Force */ true);
|
|
madeChange = true;
|
|
}
|
|
}
|
|
|
|
return madeChange;
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Top Level Entrypoint
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
namespace {
|
|
|
|
class IRGenPrepare : public SILFunctionTransform {
|
|
void run() override {
|
|
SILFunction *F = getFunction();
|
|
|
|
bool shouldInvalidate = cleanFunction(*F);
|
|
|
|
if (shouldInvalidate)
|
|
invalidateAnalysis(SILAnalysis::InvalidationKind::Instructions);
|
|
}
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
SILTransform *swift::createIRGenPrepare() {
|
|
return new IRGenPrepare();
|
|
}
|