luau/Analysis/include/Luau/DataFlowGraph.h

236 lines
8.1 KiB
C
Raw Normal View History

2022-10-21 18:33:43 +01:00
// 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"
2023-11-10 18:05:48 +00:00
#include "Luau/ControlFlow.h"
2022-10-21 18:33:43 +01:00
#include "Luau/DenseHash.h"
#include "Luau/Def.h"
#include "Luau/Symbol.h"
2023-10-20 21:36:26 +01:00
#include "Luau/TypedAllocator.h"
2022-10-21 18:33:43 +01:00
#include <unordered_map>
namespace Luau
{
2023-10-20 21:36:26 +01:00
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);
};
2022-10-21 18:33:43 +01:00
struct DataFlowGraph
{
DataFlowGraph(DataFlowGraph&&) = default;
DataFlowGraph& operator=(DataFlowGraph&&) = default;
2023-10-20 21:36:26 +01:00
DefId getDef(const AstExpr* expr) const;
2024-10-25 17:46:08 +01:00
// Look up the definition optionally, knowing it may not be present.
std::optional<DefId> getDefOptional(const AstExpr* expr) const;
2023-11-03 19:47:28 +00:00
// Look up for the rvalue def for a compound assignment.
2023-10-20 21:36:26 +01:00
std::optional<DefId> getRValueDefForCompoundAssign(const AstExpr* expr) const;
2022-10-21 18:33:43 +01:00
2023-10-20 21:36:26 +01:00
DefId getDef(const AstLocal* local) const;
2023-03-03 13:45:38 +00:00
2023-10-20 21:36:26 +01:00
DefId getDef(const AstStatDeclareGlobal* global) const;
DefId getDef(const AstStatDeclareFunction* func) const;
const RefinementKey* getRefinementKey(const AstExpr* expr) const;
2022-10-21 18:33:43 +01:00
private:
DataFlowGraph() = default;
DataFlowGraph(const DataFlowGraph&) = delete;
DataFlowGraph& operator=(const DataFlowGraph&) = delete;
2023-10-20 21:36:26 +01:00
DefArena defArena;
RefinementKeyArena keyArena;
2023-03-03 13:45:38 +00:00
2023-10-20 21:36:26 +01:00
DenseHashMap<const AstExpr*, const Def*> astDefs{nullptr};
2023-03-03 13:45:38 +00:00
// Sometimes we don't have the AstExprLocal* but we have AstLocal*, and sometimes we need to extract that DefId.
2023-10-20 21:36:26 +01:00
DenseHashMap<const AstLocal*, const Def*> localDefs{nullptr};
2023-03-03 13:45:38 +00:00
// 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.
2023-10-20 21:36:26 +01:00
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.
2023-11-03 19:47:28 +00:00
DenseHashMap<const AstExpr*, const Def*> compoundAssignDefs{nullptr};
2023-10-20 21:36:26 +01:00
DenseHashMap<const AstExpr*, const RefinementKey*> astRefinementKeys{nullptr};
2022-10-21 18:33:43 +01:00
friend struct DataFlowGraphBuilder;
};
struct DfgScope
{
2023-12-08 15:42:54 +00:00
enum ScopeType
{
Linear,
Loop,
Function,
};
2022-10-21 18:33:43 +01:00
DfgScope* parent;
2023-12-08 15:42:54 +00:00
ScopeType scopeType;
2023-11-10 18:05:48 +00:00
2023-11-17 18:15:31 +00:00
using Bindings = DenseHashMap<Symbol, const Def*>;
using Props = DenseHashMap<const Def*, std::unordered_map<std::string, const Def*>>;
Bindings bindings{Symbol{}};
Props props{nullptr};
2022-10-21 18:33:43 +01:00
2023-10-20 21:36:26 +01:00
std::optional<DefId> lookup(Symbol symbol) const;
std::optional<DefId> lookup(DefId def, const std::string& key) const;
2023-11-10 18:05:48 +00:00
void inherit(const DfgScope* childScope);
bool canUpdateDefinition(Symbol symbol) const;
bool canUpdateDefinition(DefId def, const std::string& key) const;
2023-10-20 21:36:26 +01:00
};
struct DataFlowResult
{
DefId def;
const RefinementKey* parent = nullptr;
2022-10-21 18:33:43 +01:00
};
2024-10-18 16:08:01 +01:00
using ScopeStack = std::vector<DfgScope*>;
2022-10-21 18:33:43 +01:00
struct DataFlowGraphBuilder
{
static DataFlowGraph build(AstStatBlock* root, NotNull<struct InternalErrorReporter> handle);
2024-10-18 16:08:01 +01:00
/**
* This method is identical to the build method above, but returns a pair of dfg, scopes as the data flow graph
* here is intended to live on the module between runs of typechecking. Before, the DFG only needed to live as
* long as the typecheck, but in a world with incremental typechecking, we need the information on the dfg to incrementally
* typecheck small fragments of code.
* @param block - pointer to the ast to build the dfg for
* @param handle - for raising internal errors while building the dfg
*/
static std::pair<std::shared_ptr<DataFlowGraph>, std::vector<std::unique_ptr<DfgScope>>> buildShared(
AstStatBlock* block,
NotNull<InternalErrorReporter> handle
);
2022-10-21 18:33:43 +01:00
private:
DataFlowGraphBuilder() = default;
DataFlowGraphBuilder(const DataFlowGraphBuilder&) = delete;
DataFlowGraphBuilder& operator=(const DataFlowGraphBuilder&) = delete;
DataFlowGraph graph;
2023-10-20 21:36:26 +01:00
NotNull<DefArena> defArena{&graph.defArena};
NotNull<RefinementKeyArena> keyArena{&graph.keyArena};
2022-10-21 18:33:43 +01:00
2023-03-03 13:45:38 +00:00
struct InternalErrorReporter* handle = nullptr;
2022-12-02 10:46:05 +00:00
2024-10-18 16:08:01 +01:00
/// The arena owning all of the scope allocations for the dataflow graph being built.
2023-03-03 13:45:38 +00:00
std::vector<std::unique_ptr<DfgScope>> scopes;
2022-10-21 18:33:43 +01:00
2024-10-18 16:08:01 +01:00
/// A stack of scopes used by the visitor to see where we are.
ScopeStack scopeStack;
DfgScope* currentScope();
2023-12-08 15:42:54 +00:00
struct FunctionCapture
{
std::vector<DefId> captureDefs;
std::vector<DefId> allVersions;
size_t versionOffset = 0;
};
DenseHashMap<Symbol, FunctionCapture> captures{Symbol{}};
void resolveCaptures();
DfgScope* makeChildScope(DfgScope::ScopeType scopeType = DfgScope::Linear);
2023-11-17 18:15:31 +00:00
void join(DfgScope* p, DfgScope* a, DfgScope* b);
2023-12-15 20:52:08 +00:00
void joinBindings(DfgScope* p, const DfgScope& a, const DfgScope& b);
void joinProps(DfgScope* p, const DfgScope& a, const DfgScope& b);
2023-11-17 18:15:31 +00:00
2024-10-18 16:08:01 +01:00
DefId lookup(Symbol symbol);
DefId lookup(DefId def, const std::string& key);
ControlFlow visit(AstStatBlock* b);
ControlFlow visitBlockWithoutChildScope(AstStatBlock* b);
ControlFlow visit(AstStat* s);
ControlFlow visit(AstStatIf* i);
ControlFlow visit(AstStatWhile* w);
ControlFlow visit(AstStatRepeat* r);
ControlFlow visit(AstStatBreak* b);
ControlFlow visit(AstStatContinue* c);
ControlFlow visit(AstStatReturn* r);
ControlFlow visit(AstStatExpr* e);
ControlFlow visit(AstStatLocal* l);
ControlFlow visit(AstStatFor* f);
ControlFlow visit(AstStatForIn* f);
ControlFlow visit(AstStatAssign* a);
ControlFlow visit(AstStatCompoundAssign* c);
ControlFlow visit(AstStatFunction* f);
ControlFlow visit(AstStatLocalFunction* l);
ControlFlow visit(AstStatTypeAlias* t);
ControlFlow visit(AstStatTypeFunction* f);
ControlFlow visit(AstStatDeclareGlobal* d);
ControlFlow visit(AstStatDeclareFunction* d);
ControlFlow visit(AstStatDeclareClass* d);
ControlFlow visit(AstStatError* error);
DataFlowResult visitExpr(AstExpr* e);
DataFlowResult visitExpr(AstExprGroup* group);
DataFlowResult visitExpr(AstExprLocal* l);
DataFlowResult visitExpr(AstExprGlobal* g);
DataFlowResult visitExpr(AstExprCall* c);
DataFlowResult visitExpr(AstExprIndexName* i);
DataFlowResult visitExpr(AstExprIndexExpr* i);
DataFlowResult visitExpr(AstExprFunction* f);
DataFlowResult visitExpr(AstExprTable* t);
DataFlowResult visitExpr(AstExprUnary* u);
DataFlowResult visitExpr(AstExprBinary* b);
DataFlowResult visitExpr(AstExprTypeAssertion* t);
DataFlowResult visitExpr(AstExprIfElse* i);
DataFlowResult visitExpr(AstExprInterpString* i);
DataFlowResult visitExpr(AstExprError* error);
void visitLValue(AstExpr* e, DefId incomingDef);
DefId visitLValue(AstExprLocal* l, DefId incomingDef);
DefId visitLValue(AstExprGlobal* g, DefId incomingDef);
DefId visitLValue(AstExprIndexName* i, DefId incomingDef);
DefId visitLValue(AstExprIndexExpr* i, DefId incomingDef);
DefId visitLValue(AstExprError* e, DefId incomingDef);
void visitType(AstType* t);
void visitType(AstTypeReference* r);
void visitType(AstTypeTable* t);
void visitType(AstTypeFunction* f);
void visitType(AstTypeTypeof* t);
void visitType(AstTypeUnion* u);
void visitType(AstTypeIntersection* i);
void visitType(AstTypeError* error);
void visitTypePack(AstTypePack* p);
void visitTypePack(AstTypePackExplicit* e);
void visitTypePack(AstTypePackVariadic* v);
void visitTypePack(AstTypePackGeneric* g);
void visitTypeList(AstTypeList l);
void visitGenerics(AstArray<AstGenericType> g);
void visitGenericPacks(AstArray<AstGenericTypePack> g);
2022-10-21 18:33:43 +01:00
};
} // namespace Luau