More work on core features
This commit is contained in:
parent
a9519afee4
commit
c867b86598
|
@ -0,0 +1,14 @@
|
||||||
|
// Copyright Brian Schott (Sir Alaran) 2012.
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
module ctags;
|
||||||
|
|
||||||
|
void printCtags(Tokens)(File output, ref Tokens tokens)
|
||||||
|
{
|
||||||
|
output.write("!_TAG_FILE_FORMAT 2\n"
|
||||||
|
~ "!_TAG_FILE_SORTED 1\n"
|
||||||
|
~ "!_TAG_PROGRAM_URL https://github.com/Hackerpilot/Dscanner/\n");
|
||||||
|
|
||||||
|
}
|
36
main.d
36
main.d
|
@ -84,6 +84,7 @@ int main(string[] args)
|
||||||
bool sloc;
|
bool sloc;
|
||||||
bool dotComplete;
|
bool dotComplete;
|
||||||
bool parenComplete;
|
bool parenComplete;
|
||||||
|
bool symbolComplete;
|
||||||
bool highlight;
|
bool highlight;
|
||||||
bool ctags;
|
bool ctags;
|
||||||
bool json;
|
bool json;
|
||||||
|
@ -92,15 +93,14 @@ int main(string[] args)
|
||||||
bool format;
|
bool format;
|
||||||
bool help;
|
bool help;
|
||||||
bool tokenCount;
|
bool tokenCount;
|
||||||
bool frequencyCount;
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
getopt(args, "I", &importDirs,/+ "dotComplete|d", &dotComplete,+/ "sloc|l", &sloc,
|
getopt(args, "I", &importDirs, "dotComplete|d", &dotComplete, "sloc|l", &sloc,
|
||||||
/+"json|j", &json,+/ /+"parenComplete|p", &parenComplete,+/ "highlight", &highlight,
|
"json|j", &json, "parenComplete|p", &parenComplete, "highlight", &highlight,
|
||||||
"ctags|c", &ctags, "recursive|r|R", &recursive, "help|h", &help,
|
"ctags|c", &ctags, "recursive|r|R", &recursive, "help|h", &help,
|
||||||
"tokenCount", &tokenCount, "frequencyCount", &frequencyCount,
|
"tokenCount", &tokenCount,
|
||||||
"declaration|e", &declaration);
|
"declaration|e", &declaration, "symbolComplete|s", &symbolComplete);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -144,7 +144,7 @@ int main(string[] args)
|
||||||
config.fileName = usingStdin ? "stdin" : args[1];
|
config.fileName = usingStdin ? "stdin" : args[1];
|
||||||
File f = usingStdin ? stdin : File(args[1]);
|
File f = usingStdin ? stdin : File(args[1]);
|
||||||
auto bytes = usingStdin ? cast(ubyte[]) [] : uninitializedArray!(ubyte[])(f.size);
|
auto bytes = usingStdin ? cast(ubyte[]) [] : uninitializedArray!(ubyte[])(f.size);
|
||||||
|
auto byteCount = f.size;
|
||||||
f.rawRead(bytes);
|
f.rawRead(bytes);
|
||||||
|
|
||||||
auto tokens = byToken(bytes, config);
|
auto tokens = byToken(bytes, config);
|
||||||
|
@ -154,16 +154,24 @@ int main(string[] args)
|
||||||
}
|
}
|
||||||
else if (tokenCount)
|
else if (tokenCount)
|
||||||
{
|
{
|
||||||
printTokenCount(stdout, tokens);
|
printTokenCount(stdout, tokens, f.size);
|
||||||
}
|
}
|
||||||
else if (dotComplete)
|
else if (dotComplete || parenComplete || symbolComplete)
|
||||||
{
|
|
||||||
}
|
|
||||||
else if (parenComplete)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
else if (symbolComplete)
|
|
||||||
{
|
{
|
||||||
|
auto app = appender!Token();
|
||||||
|
app.reserve(byteCount / 13);
|
||||||
|
while (!tokens.empty)
|
||||||
|
app.put(tokensn.moveFront());
|
||||||
|
Token[] tokenArr = app.data;
|
||||||
|
else if (dotComplete)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
else if (parenComplete)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
else if (symbolComplete)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
12
perftest.sh
12
perftest.sh
|
@ -1,9 +1,9 @@
|
||||||
echo -e "file\tstd.d.lexer dmd\tstd.d.lexer ldc\tstd.d.lexer gdc\tdmd"
|
echo -e "file\tstd.d.lexer dmd\tstd.d.lexer ldc\tstd.d.lexer gdc\tdmd"
|
||||||
for i in `ls ../phobos/std/*.d`; do
|
for i in $(ls ../phobos/std/*.d); do
|
||||||
f=`echo $i | sed s/.*phobos\\\\///`
|
f=$(echo $i | sed "s/.*phobos\///")
|
||||||
dmdt=`avgtime -q -r 200 ./dscanner-dmd --tokenCount $i | grep "Median" | sed "s/.*: //"`
|
dmdt=$(avgtime -q -r 200 ./dscanner-dmd --tokenCount $i | grep "Median" | sed "s/.*: //")
|
||||||
ldct=`avgtime -q -r 200 ./dscanner-ldc --tokenCount $i | grep "Median" | sed "s/.*: //"`
|
ldct=$(avgtime -q -r 200 ./dscanner-ldc --tokenCount $i | grep "Median" | sed "s/.*: //")
|
||||||
gdct=`avgtime -q -r 200 ./dscanner-gdc --tokenCount $i | grep "Median" | sed "s/.*: //"`
|
gdct=$(avgtime -q -r 200 ./dscanner-gdc --tokenCount $i | grep "Median" | sed "s/.*: //")
|
||||||
gcct=`avgtime -q -r 200 ~/src/dmd-lexer/src/dmd $i | grep "Median" | sed "s/.*: //"`
|
gcct=$(avgtime -q -r 200 ~/src/dmd-lexer/src/dmd $i | grep "Median" | sed "s/.*: //")
|
||||||
echo -e "${f}\t${dmdt}\t${ldct}\t${gdct}\t${gcct}"
|
echo -e "${f}\t${dmdt}\t${ldct}\t${gdct}\t${gcct}"
|
||||||
done
|
done
|
||||||
|
|
5
stats.d
5
stats.d
|
@ -25,7 +25,7 @@ pure nothrow bool isLineOfCode(TokenType t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void printTokenCount(Tokens)(File output, ref Tokens tokens)
|
void printTokenCount(Tokens)(File output, ref Tokens tokens, size_t fileSize)
|
||||||
{
|
{
|
||||||
ulong count;
|
ulong count;
|
||||||
while(!tokens.empty)
|
while(!tokens.empty)
|
||||||
|
@ -33,7 +33,8 @@ void printTokenCount(Tokens)(File output, ref Tokens tokens)
|
||||||
tokens.popFront();
|
tokens.popFront();
|
||||||
++count;
|
++count;
|
||||||
}
|
}
|
||||||
output.writefln("%d", count);
|
output.writefln("%f", cast(float) fileSize / cast(float) count);
|
||||||
|
//output.writefln("%d", count);
|
||||||
}
|
}
|
||||||
|
|
||||||
void printLineCount(Tokens)(File output, ref Tokens tokens)
|
void printLineCount(Tokens)(File output, ref Tokens tokens)
|
||||||
|
|
|
@ -0,0 +1,378 @@
|
||||||
|
// Written in the D programming language.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This module defines an Abstract Syntax Tree for the D language
|
||||||
|
*/
|
||||||
|
|
||||||
|
module std.d.ast;
|
||||||
|
|
||||||
|
import std.container;
|
||||||
|
import std.d.lexer;
|
||||||
|
|
||||||
|
interface ASTNode {}
|
||||||
|
|
||||||
|
class DeclDef : ASTNode {}
|
||||||
|
|
||||||
|
class Module : ASTNode
|
||||||
|
{
|
||||||
|
ModuleDeclaration declaration;
|
||||||
|
DList!(DeclDef) declDefs;
|
||||||
|
}
|
||||||
|
|
||||||
|
class ModuleDeclaration : ASTNode
|
||||||
|
{
|
||||||
|
string[] packageName;
|
||||||
|
string moduleName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
struct Import
|
||||||
|
{
|
||||||
|
string moduleName;
|
||||||
|
string aliasName;
|
||||||
|
string[] symbols;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
interface Statement : ASTNode {}
|
||||||
|
class EmptyStatement : Statement, NoScopeStatement {}
|
||||||
|
interface NoScopeNonEmptyStatement : ASTNode {}
|
||||||
|
interface NoScopeStatement : ASTNode {}
|
||||||
|
interface NonEmptyStatement : NoScopeNonEmptyStatement, NoScopeStatement, Statement {}
|
||||||
|
interface NoScopeBlockStatement : Statement {}
|
||||||
|
interface NonEmptyOrScopeBlockStatement : ASTNode {}
|
||||||
|
interface ScopeBlockStatement : NonEmptyOrScopeBlockStatement {}
|
||||||
|
|
||||||
|
interface NonEmptyStatementNoCaseNoDefault : NonEmptyStatement {}
|
||||||
|
|
||||||
|
class LabeledStatement : NonEmptyStatementNoCaseNoDefault
|
||||||
|
{
|
||||||
|
string label;
|
||||||
|
NoScopeStatement statement;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ExpressionStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
interface DeclarationStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* $(LINK2 http://dlang.org/statement.html#IfStatement)
|
||||||
|
*/
|
||||||
|
class IfStatement : NonEmptyStatementNoCaseNoDefault
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
class WhileStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class DoStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class ForStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class ForeachStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class SwitchStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class FinalSwitchStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* $(LINK http://dlang.org/statement.html#ContinueStatement)
|
||||||
|
*/
|
||||||
|
class ContinueStatement : NonEmptyStatementNoCaseNoDefault
|
||||||
|
{
|
||||||
|
string identifier;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class BreakStatement : NonEmptyStatementNoCaseNoDefault
|
||||||
|
{
|
||||||
|
string identifier;
|
||||||
|
}
|
||||||
|
class ReturnStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class GotoStatement : NonEmptyStatementNoCaseNoDefault
|
||||||
|
{
|
||||||
|
enum GotoType
|
||||||
|
{
|
||||||
|
identifier,
|
||||||
|
default_,
|
||||||
|
case_,
|
||||||
|
caseExpression
|
||||||
|
}
|
||||||
|
|
||||||
|
union
|
||||||
|
{
|
||||||
|
//Expression expression;
|
||||||
|
string identifier;
|
||||||
|
}
|
||||||
|
|
||||||
|
GotoType type;
|
||||||
|
}
|
||||||
|
class WithStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class SynchronizedStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class TryStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class ScopeGuardStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class ThrowStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class AsmStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class PragmaStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class MixinStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class ForeachRangeStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class ConditionalStatement : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class StaticAssert : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class TemplateMixin : NonEmptyStatementNoCaseNoDefault {}
|
||||||
|
class ImportDeclaration : NonEmptyStatementNoCaseNoDefault
|
||||||
|
{
|
||||||
|
bool isStatic;
|
||||||
|
Import[] importList;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class BlockStatement : NoScopeNonEmptyStatement, ScopeBlockStatement
|
||||||
|
{
|
||||||
|
Statement[] statements;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Expression : ASTNode {}
|
||||||
|
class CommaExpression : Expression
|
||||||
|
{
|
||||||
|
AssignExpression left;
|
||||||
|
AssignExpression right;
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignExpression
|
||||||
|
{
|
||||||
|
ConditionalExpression left;
|
||||||
|
ConditionalExpression right;
|
||||||
|
TokenType operator;
|
||||||
|
|
||||||
|
invariant()
|
||||||
|
{
|
||||||
|
assert (
|
||||||
|
operator == TokenType.assign
|
||||||
|
|| operator == TokenType.plusEqual
|
||||||
|
|| operator == TokenType.minusEqual
|
||||||
|
|| operator == TokenType.mulEqual
|
||||||
|
|| operator == TokenType.divEqual
|
||||||
|
|| operator == TokenType.modEqual
|
||||||
|
|| operator == TokenType.bitAndEqual
|
||||||
|
|| operator == TokenType.bitOrEqual
|
||||||
|
|| operator == TokenType.xorEqual
|
||||||
|
|| operator == TokenType.catEqual
|
||||||
|
|| operator == TokenType.shiftLeftEqual
|
||||||
|
|| operator == TokenType.shiftRightEqual
|
||||||
|
|| operator == TokenType.unsignedShiftRightEqual
|
||||||
|
|| operator == TokenType.powEqual
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ConditionalExpression : Expression {}
|
||||||
|
|
||||||
|
class TernaryExpression : ConditionalExpression
|
||||||
|
{
|
||||||
|
OrOrExpression left;
|
||||||
|
/// Null unless this is a ternary
|
||||||
|
Expression middle;
|
||||||
|
/// Null unless this is a ternary
|
||||||
|
ConditionalExpression right;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface OrOrExpression : ConditionalExpression {}
|
||||||
|
|
||||||
|
interface AndAndExpression : OrOrExpression {}
|
||||||
|
interface OrExpression : AndAndExpression {}
|
||||||
|
interface CmpExpression : AndAndExpression {}
|
||||||
|
interface XorExpression : OrExpression {}
|
||||||
|
interface AndExpression : XorExpression {}
|
||||||
|
interface ShiftExpression : AndExpression {}
|
||||||
|
interface AddExpression : ShiftExpression {}
|
||||||
|
interface MulExpression : AddExpression {}
|
||||||
|
interface CatExpression : AddExpression {}
|
||||||
|
interface UnaryExpression : MulExpression {}
|
||||||
|
class ComplementaryExpression : UnaryExpression
|
||||||
|
{
|
||||||
|
UnaryExpression unary;
|
||||||
|
}
|
||||||
|
interface NewExpression : UnaryExpression {}
|
||||||
|
interface DeleteExpression : UnaryExpression {}
|
||||||
|
interface CastExpression : UnaryExpression {}
|
||||||
|
interface PowExpression : UnaryExpression {}
|
||||||
|
|
||||||
|
|
||||||
|
interface PrimaryExpression : Expression {}
|
||||||
|
class SingleTokenExpression
|
||||||
|
{
|
||||||
|
Token token;
|
||||||
|
}
|
||||||
|
class ThisExpression : SingleTokenExpression {}
|
||||||
|
class SuperExpression : SingleTokenExpression {}
|
||||||
|
class NullExpression : SingleTokenExpression {}
|
||||||
|
class TrueExpression : SingleTokenExpression {}
|
||||||
|
class FalseExpression : SingleTokenExpression {}
|
||||||
|
class DollarExpression : SingleTokenExpression {}
|
||||||
|
class FileExpression : SingleTokenExpression {}
|
||||||
|
class LineExpression : SingleTokenExpression {}
|
||||||
|
class IntegerExpression : SingleTokenExpression {}
|
||||||
|
class FloatExpression : SingleTokenExpression {}
|
||||||
|
class CharacterExpression : SingleTokenExpression {}
|
||||||
|
class StringExpression : SingleTokenExpression {}
|
||||||
|
class IdentifierExpression : SingleTokenExpression {}
|
||||||
|
class ArrayExpression : PrimaryExpression {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
interface DefaultInitializerExpression : ASTNode {}
|
||||||
|
|
||||||
|
class RelExpression : CmpExpression
|
||||||
|
{
|
||||||
|
ShiftExpression left;
|
||||||
|
ShiftExpression right;
|
||||||
|
TokenType operator;
|
||||||
|
}
|
||||||
|
|
||||||
|
class Parameter : ASTNode
|
||||||
|
{
|
||||||
|
|
||||||
|
string[] inOut;
|
||||||
|
string type;
|
||||||
|
}
|
||||||
|
|
||||||
|
/+
|
||||||
|
// Copyright Brian Schott (Sir Alaran) 2012.
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
module basicast;
|
||||||
|
|
||||||
|
import std.d.lexer;
|
||||||
|
|
||||||
|
struct Scope
|
||||||
|
{
|
||||||
|
size_t begin;
|
||||||
|
size_t end;
|
||||||
|
Scope* parent;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct ModuleDeclaration
|
||||||
|
{
|
||||||
|
string[] package_;
|
||||||
|
string name;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Module
|
||||||
|
{
|
||||||
|
ModuleDeclaration moduleDeclaration;
|
||||||
|
VariableDeclaration[] variables;
|
||||||
|
FunctionDeclaration[] functions;
|
||||||
|
Enum[] enums;
|
||||||
|
Scope*[] scopes;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum DeclDefType : ubyte
|
||||||
|
{
|
||||||
|
attributeSpecifier,
|
||||||
|
importDeclaration,
|
||||||
|
enumDeclaration,
|
||||||
|
classDeclaration,
|
||||||
|
interfaceDeclaration,
|
||||||
|
aggregateDeclaration,
|
||||||
|
declaration,
|
||||||
|
constructor,
|
||||||
|
destructor,
|
||||||
|
unitTest,
|
||||||
|
staticConstructor,
|
||||||
|
staticDestructor,
|
||||||
|
sharedStaticConstructor,
|
||||||
|
sharedStaticDestructor,
|
||||||
|
conditionalDeclaration,
|
||||||
|
debugSpecification,
|
||||||
|
versionSpecification,
|
||||||
|
staticAssert,
|
||||||
|
templatedeclaration,
|
||||||
|
templateMixinDeclaration,
|
||||||
|
templateMixin,
|
||||||
|
mixinDeclaration,
|
||||||
|
semicolon
|
||||||
|
}
|
||||||
|
|
||||||
|
class DeclDef
|
||||||
|
{
|
||||||
|
DeclDefType type;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Enum
|
||||||
|
{
|
||||||
|
bool singleValue;
|
||||||
|
EnumMember[] members;
|
||||||
|
string baseType;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AttributeList
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
void set(TokenType attribute)
|
||||||
|
in
|
||||||
|
{
|
||||||
|
assert(isAttribute(attribute));
|
||||||
|
}
|
||||||
|
body
|
||||||
|
{
|
||||||
|
attributes ~= attribute;
|
||||||
|
}
|
||||||
|
|
||||||
|
const(TokenType)[] get()
|
||||||
|
{
|
||||||
|
return attributes[];
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
TokenType[] attributes;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Parameter
|
||||||
|
{
|
||||||
|
string name;
|
||||||
|
string type;
|
||||||
|
string def;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct FunctionDeclaration
|
||||||
|
{
|
||||||
|
AttributeList attributes;
|
||||||
|
Parameter[] ctParameters;
|
||||||
|
Parameter[] rtParameters;
|
||||||
|
string returnType;
|
||||||
|
string name;
|
||||||
|
uint line;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct VariableDeclaration
|
||||||
|
{
|
||||||
|
AttributeList attributes;
|
||||||
|
string name;
|
||||||
|
string type;
|
||||||
|
uint line;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Import
|
||||||
|
{
|
||||||
|
struct ImportSymbol
|
||||||
|
{
|
||||||
|
string symbolName;
|
||||||
|
string alias_;
|
||||||
|
}
|
||||||
|
|
||||||
|
string alias_;
|
||||||
|
string moduleName;
|
||||||
|
string[] packageParts;
|
||||||
|
ImportSymbol[] symbols;
|
||||||
|
}
|
||||||
|
|
||||||
|
class ImportDeclaration : DeclDef
|
||||||
|
{
|
||||||
|
Import[] imports;
|
||||||
|
}
|
||||||
|
|
||||||
|
class Inherits : DeclDef
|
||||||
|
{
|
||||||
|
//FunctionDeclaration[] functions;
|
||||||
|
}
|
||||||
|
+/
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue