Files
swift-mirror/lib/Syntax/Syntax.cpp
David Farler c343298b8f [Syntax] Implement return-statement and integer-literal-expr
A return statement needs something to return, so implement
integer-literal-expression too. This necessarily also forced
UnknownExprSyntax, UnknownStmtSyntax, and UnknownDeclSyntax,
which are stand-in token buckets for when we don't know
how to transform/migrate an AST.

This commit also contains the core function for caching
SyntaxData children. This is highly tricky code, with some
detailed comments in SyntaxData.{h,cpp}. The gist is that
we have to atomically swap in a SyntaxData pointer into the
child field, so we can maintain pointer identity of SyntaxData
nodes, while still being able to cache them internally.

To prove that this works, there is a multithreaded test that
checks that two threads can ask for a child that hasn't been
cached yet without crashing or violating pointer identity.

https://bugs.swift.org/browse/SR-4010
2017-02-22 18:45:29 -08:00

71 lines
1.6 KiB
C++

//===--- Syntax.cpp - Swift Syntax Implementation ---------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 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
//
//===----------------------------------------------------------------------===//
#include "swift/Syntax/Syntax.h"
#include "swift/Syntax/SyntaxData.h"
using namespace swift;
using namespace swift::syntax;
Syntax::Syntax(const RC<SyntaxData> Root, const SyntaxData *Data)
: Root(Root), Data(Data) {}
RC<RawSyntax> Syntax::getRaw() const {
return Data->getRaw();
}
SyntaxKind Syntax::getKind() const {
return getRaw()->Kind;
}
void Syntax::print(llvm::raw_ostream &OS) const {
getRaw()->print(OS);
}
void Syntax::dump() const {
getRaw()->dump();
}
void Syntax::dump(llvm::raw_ostream &OS, unsigned Indent) const {
getRaw()->dump(OS, 0);
}
bool Syntax::isType() const {
return Data->isType();
}
bool Syntax::isDecl() const {
return Data->isDecl();
}
bool Syntax::isStmt() const {
return Data->isStmt();
}
bool Syntax::isExpr() const {
return Data->isExpr();
}
#pragma mark - unknown-syntax API
UnknownSyntax::UnknownSyntax(const RC<SyntaxData> Root,
UnknownSyntaxData *Data)
: Syntax(Root, Data) {}
UnknownSyntax UnknownSyntax::make(RC<RawSyntax> Raw) {
auto Data = UnknownSyntaxData::make(Raw);
return UnknownSyntax {
Data, Data.get()
};
}