mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
fd6250cf9d
### What's Changed - Improve readability of unions and intersections by limiting the number of elements of those types that can be presented on a single line (gated under `FFlag::LuauToStringSimpleCompositeTypesSingleLine`) - Adds a new option to the compiler `--record-stats` to record and output compilation statistics - `if...then...else` expressions are now optimized into `AND/OR` form when possible. ### VM - Add a new `buffer` type to Luau based on the [buffer RFC](https://github.com/Roblox/luau/pull/739) and additional C API functions to work with it; this release does not include the library. - Internal C API to work with string buffers has been updated to align with Lua version more closely ### Native Codegen - Added support for new X64 instruction (rev) and new A64 instruction (bswap) in the assembler - Simplified the way numerical loop condition is translated to IR ### New Type Solver - Operator inference now handled by type families - Created a new system called `Type Paths` to explain why subtyping tests fail in order to improve the quality of error messages. - Systematic changes to implement Data Flow analysis in the new solver (`Breadcrumb` removed and replaced with `RefinementKey`) --- Co-authored-by: Aaron Weiss <aaronweiss@roblox.com> Co-authored-by: Alexander McCord <amccord@roblox.com> Co-authored-by: Andy Friesen <afriesen@roblox.com> Co-authored-by: Aviral Goel <agoel@roblox.com> Co-authored-by: Lily Brown <lbrown@roblox.com> Co-authored-by: Vighnesh Vijay <vvijay@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> --------- Co-authored-by: Arseny Kapoulkine <arseny.kapoulkine@gmail.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> Co-authored-by: Andy Friesen <afriesen@roblox.com> Co-authored-by: Lily Brown <lbrown@roblox.com> Co-authored-by: Aaron Weiss <aaronweiss@roblox.com> Co-authored-by: Alexander McCord <amccord@roblox.com> Co-authored-by: Aviral Goel <agoel@roblox.com>
179 lines
6.9 KiB
C++
179 lines
6.9 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
// Do not include LValue. It should never be used here.
|
|
#include "Luau/Ast.h"
|
|
#include "Luau/DenseHash.h"
|
|
#include "Luau/Def.h"
|
|
#include "Luau/Symbol.h"
|
|
#include "Luau/TypedAllocator.h"
|
|
|
|
#include <unordered_map>
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
struct RefinementKey
|
|
{
|
|
const RefinementKey* parent = nullptr;
|
|
DefId def;
|
|
std::optional<std::string> propName;
|
|
};
|
|
|
|
struct RefinementKeyArena
|
|
{
|
|
TypedAllocator<RefinementKey> allocator;
|
|
|
|
const RefinementKey* leaf(DefId def);
|
|
const RefinementKey* node(const RefinementKey* parent, DefId def, const std::string& propName);
|
|
};
|
|
|
|
struct DataFlowGraph
|
|
{
|
|
DataFlowGraph(DataFlowGraph&&) = default;
|
|
DataFlowGraph& operator=(DataFlowGraph&&) = default;
|
|
|
|
DefId getDef(const AstExpr* expr) const;
|
|
// Look up for the rvalue breadcrumb for a compound assignment.
|
|
std::optional<DefId> getRValueDefForCompoundAssign(const AstExpr* expr) const;
|
|
|
|
DefId getDef(const AstLocal* local) const;
|
|
|
|
DefId getDef(const AstStatDeclareGlobal* global) const;
|
|
DefId getDef(const AstStatDeclareFunction* func) const;
|
|
|
|
const RefinementKey* getRefinementKey(const AstExpr* expr) const;
|
|
|
|
private:
|
|
DataFlowGraph() = default;
|
|
|
|
DataFlowGraph(const DataFlowGraph&) = delete;
|
|
DataFlowGraph& operator=(const DataFlowGraph&) = delete;
|
|
|
|
DefArena defArena;
|
|
RefinementKeyArena keyArena;
|
|
|
|
DenseHashMap<const AstExpr*, const Def*> astDefs{nullptr};
|
|
|
|
// Sometimes we don't have the AstExprLocal* but we have AstLocal*, and sometimes we need to extract that DefId.
|
|
DenseHashMap<const AstLocal*, const Def*> localDefs{nullptr};
|
|
|
|
// There's no AstStatDeclaration, and it feels useless to introduce it just to enforce an invariant in one place.
|
|
// All keys in this maps are really only statements that ambiently declares a symbol.
|
|
DenseHashMap<const AstStat*, const Def*> declaredDefs{nullptr};
|
|
|
|
// Compound assignments are in a weird situation where the local being assigned to is also being used at its
|
|
// previous type implicitly in an rvalue position. This map provides the previous binding.
|
|
DenseHashMap<const AstExpr*, const Def*> compoundAssignBreadcrumbs{nullptr};
|
|
|
|
DenseHashMap<const AstExpr*, const RefinementKey*> astRefinementKeys{nullptr};
|
|
|
|
friend struct DataFlowGraphBuilder;
|
|
};
|
|
|
|
struct DfgScope
|
|
{
|
|
DfgScope* parent;
|
|
DenseHashMap<Symbol, const Def*> bindings{Symbol{}};
|
|
DenseHashMap<const Def*, std::unordered_map<std::string, const Def*>> props{nullptr};
|
|
|
|
std::optional<DefId> lookup(Symbol symbol) const;
|
|
std::optional<DefId> lookup(DefId def, const std::string& key) const;
|
|
};
|
|
|
|
struct DataFlowResult
|
|
{
|
|
DefId def;
|
|
const RefinementKey* parent = nullptr;
|
|
};
|
|
|
|
struct DataFlowGraphBuilder
|
|
{
|
|
static DataFlowGraph build(AstStatBlock* root, NotNull<struct InternalErrorReporter> handle);
|
|
|
|
private:
|
|
DataFlowGraphBuilder() = default;
|
|
|
|
DataFlowGraphBuilder(const DataFlowGraphBuilder&) = delete;
|
|
DataFlowGraphBuilder& operator=(const DataFlowGraphBuilder&) = delete;
|
|
|
|
DataFlowGraph graph;
|
|
NotNull<DefArena> defArena{&graph.defArena};
|
|
NotNull<RefinementKeyArena> keyArena{&graph.keyArena};
|
|
|
|
struct InternalErrorReporter* handle = nullptr;
|
|
DfgScope* moduleScope = nullptr;
|
|
|
|
std::vector<std::unique_ptr<DfgScope>> scopes;
|
|
|
|
DfgScope* childScope(DfgScope* scope);
|
|
|
|
void visit(DfgScope* scope, AstStatBlock* b);
|
|
void visitBlockWithoutChildScope(DfgScope* scope, AstStatBlock* b);
|
|
|
|
void visit(DfgScope* scope, AstStat* s);
|
|
void visit(DfgScope* scope, AstStatIf* i);
|
|
void visit(DfgScope* scope, AstStatWhile* w);
|
|
void visit(DfgScope* scope, AstStatRepeat* r);
|
|
void visit(DfgScope* scope, AstStatBreak* b);
|
|
void visit(DfgScope* scope, AstStatContinue* c);
|
|
void visit(DfgScope* scope, AstStatReturn* r);
|
|
void visit(DfgScope* scope, AstStatExpr* e);
|
|
void visit(DfgScope* scope, AstStatLocal* l);
|
|
void visit(DfgScope* scope, AstStatFor* f);
|
|
void visit(DfgScope* scope, AstStatForIn* f);
|
|
void visit(DfgScope* scope, AstStatAssign* a);
|
|
void visit(DfgScope* scope, AstStatCompoundAssign* c);
|
|
void visit(DfgScope* scope, AstStatFunction* f);
|
|
void visit(DfgScope* scope, AstStatLocalFunction* l);
|
|
void visit(DfgScope* scope, AstStatTypeAlias* t);
|
|
void visit(DfgScope* scope, AstStatDeclareGlobal* d);
|
|
void visit(DfgScope* scope, AstStatDeclareFunction* d);
|
|
void visit(DfgScope* scope, AstStatDeclareClass* d);
|
|
void visit(DfgScope* scope, AstStatError* error);
|
|
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExpr* e);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprGroup* group);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprLocal* l);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprGlobal* g);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprCall* c);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprIndexName* i);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprIndexExpr* i);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprFunction* f);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprTable* t);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprUnary* u);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprBinary* b);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprTypeAssertion* t);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprIfElse* i);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprInterpString* i);
|
|
DataFlowResult visitExpr(DfgScope* scope, AstExprError* error);
|
|
|
|
void visitLValue(DfgScope* scope, AstExpr* e, DefId incomingDef, bool isCompoundAssignment = false);
|
|
void visitLValue(DfgScope* scope, AstExprLocal* l, DefId incomingDef, bool isCompoundAssignment);
|
|
void visitLValue(DfgScope* scope, AstExprGlobal* g, DefId incomingDef, bool isCompoundAssignment);
|
|
void visitLValue(DfgScope* scope, AstExprIndexName* i, DefId incomingDef);
|
|
void visitLValue(DfgScope* scope, AstExprIndexExpr* i, DefId incomingDef);
|
|
void visitLValue(DfgScope* scope, AstExprError* e, DefId incomingDef);
|
|
|
|
void visitType(DfgScope* scope, AstType* t);
|
|
void visitType(DfgScope* scope, AstTypeReference* r);
|
|
void visitType(DfgScope* scope, AstTypeTable* t);
|
|
void visitType(DfgScope* scope, AstTypeFunction* f);
|
|
void visitType(DfgScope* scope, AstTypeTypeof* t);
|
|
void visitType(DfgScope* scope, AstTypeUnion* u);
|
|
void visitType(DfgScope* scope, AstTypeIntersection* i);
|
|
void visitType(DfgScope* scope, AstTypeError* error);
|
|
|
|
void visitTypePack(DfgScope* scope, AstTypePack* p);
|
|
void visitTypePack(DfgScope* scope, AstTypePackExplicit* e);
|
|
void visitTypePack(DfgScope* scope, AstTypePackVariadic* v);
|
|
void visitTypePack(DfgScope* scope, AstTypePackGeneric* g);
|
|
|
|
void visitTypeList(DfgScope* scope, AstTypeList l);
|
|
|
|
void visitGenerics(DfgScope* scope, AstArray<AstGenericType> g);
|
|
void visitGenericPacks(DfgScope* scope, AstArray<AstGenericTypePack> g);
|
|
};
|
|
|
|
} // namespace Luau
|