blob: 064d5a3a0efdd30cde88b81584f6c913046e6eb1 [file] [log] [blame] [edit]
/*
* Copyright (C) 2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "SourceSpan.h"
#include <wtf/text/WTFString.h>
namespace WGSL {
// https://www.w3.org/TR/WGSL/#keyword-summary
#define FOREACH_KEYWORD(F) \
F(alias, Alias) \
F(break, Break) \
F(case, Case) \
F(const, Const) \
F(const_assert, ConstAssert) \
F(continue, Continue) \
F(continuing, Continuing) \
F(default, Default) \
F(diagnostic, Diagnostic) \
F(discard, Discard) \
F(else, Else) \
F(enable, Enable) \
F(false, False) \
F(fn, Fn) \
F(for, For) \
F(if, If) \
F(let, Let) \
F(loop, Loop) \
F(override, Override) \
F(requires, Requires) \
F(return, Return) \
F(struct, Struct) \
F(switch, Switch) \
F(true, True) \
F(var, Var) \
F(while, While)
enum class TokenType: uint32_t {
// Instead of having this type, we could have a std::optional<Token> everywhere that we currently have a Token.
// I made this choice for two reasons:
// - space efficiency: we don't use an extra word of memory for the variant's tag
// (although this part could be solved by using https://github.com/akrzemi1/markable)
// - ease of use and time efficiency: everywhere that we check for a given TokenType, we would have to first check that the Token is not nullopt, and then check the TokenType.
Invalid,
EndOfFile,
AbstractFloatLiteral,
IntegerLiteral,
IntegerLiteralSigned,
IntegerLiteralUnsigned,
FloatLiteral,
HalfLiteral,
Identifier,
ReservedWord,
#define ENUM_ENTRY(_, name) Keyword##name,
FOREACH_KEYWORD(ENUM_ENTRY)
#undef ENUM_ENTRY
And,
AndAnd,
AndEq,
Arrow,
Attribute,
Bang,
BangEq,
BraceLeft,
BraceRight,
BracketLeft,
BracketRight,
Colon,
Comma,
Equal,
EqEq,
Gt,
GtEq,
GtGt,
GtGtEq,
Lt,
LtEq,
LtLt,
LtLtEq,
Minus,
MinusMinus,
MinusEq,
Modulo,
ModuloEq,
Or,
OrOr,
OrEq,
ParenLeft,
ParenRight,
Period,
Plus,
PlusPlus,
PlusEq,
Semicolon,
Slash,
SlashEq,
Star,
StarEq,
Tilde,
Underbar,
Xor,
XorEq,
Placeholder,
TemplateArgsLeft,
TemplateArgsRight,
};
String toString(TokenType);
struct Token {
TokenType type;
SourceSpan span;
union {
double floatValue;
int64_t integerValue;
String ident;
};
Token(TokenType type, SourcePosition position, unsigned length)
: type(type)
, span(position.line, position.lineOffset, position.offset, length)
{
ASSERT(type != TokenType::AbstractFloatLiteral
&& type != TokenType::Identifier
&& type != TokenType::IntegerLiteral
&& type != TokenType::IntegerLiteralSigned
&& type != TokenType::IntegerLiteralUnsigned
&& type != TokenType::FloatLiteral
&& type != TokenType::HalfLiteral);
}
Token(TokenType type, SourcePosition position, unsigned length, int64_t integerValue)
: type(type)
, span(position.line, position.lineOffset, position.offset, length)
, integerValue(integerValue)
{
ASSERT(type == TokenType::IntegerLiteral
|| type == TokenType::IntegerLiteralSigned
|| type == TokenType::IntegerLiteralUnsigned);
}
Token(TokenType type, SourcePosition position, unsigned length, double floatValue)
: type(type)
, span(position.line, position.lineOffset, position.offset, length)
, floatValue(floatValue)
{
ASSERT(type == TokenType::AbstractFloatLiteral
|| type == TokenType::FloatLiteral
|| type == TokenType::HalfLiteral);
}
Token(TokenType type, SourcePosition position, unsigned length, String&& ident)
: type(type)
, span(position.line, position.lineOffset, position.offset, length)
, ident(WTF::move(ident))
{
ASSERT(this->ident.impl() && this->ident.impl()->bufferOwnership() == StringImpl::BufferInternal);
ASSERT(type == TokenType::Identifier);
}
Token& operator=(Token&& other)
{
if (type == TokenType::Identifier)
ident.~String();
type = other.type;
span = other.span;
switch (other.type) {
case TokenType::Identifier:
new (NotNull, &ident) String();
ident = other.ident;
break;
case TokenType::IntegerLiteral:
case TokenType::IntegerLiteralSigned:
case TokenType::IntegerLiteralUnsigned:
integerValue = other.integerValue;
break;
case TokenType::AbstractFloatLiteral:
case TokenType::FloatLiteral:
case TokenType::HalfLiteral:
floatValue = other.floatValue;
break;
default:
break;
}
return *this;
}
Token& operator=(const Token& other)
{
type = other.type;
span = other.span;
switch (other.type) {
case TokenType::Identifier:
new (NotNull, &ident) String();
ident = other.ident;
break;
case TokenType::IntegerLiteral:
case TokenType::IntegerLiteralSigned:
case TokenType::IntegerLiteralUnsigned:
integerValue = other.integerValue;
break;
case TokenType::AbstractFloatLiteral:
case TokenType::FloatLiteral:
case TokenType::HalfLiteral:
floatValue = other.floatValue;
break;
default:
break;
}
return *this;
}
Token(const Token& other)
: type(other.type)
, span(other.span)
{
switch (other.type) {
case TokenType::Identifier:
new (NotNull, &ident) String();
ident = other.ident;
break;
case TokenType::IntegerLiteral:
case TokenType::IntegerLiteralSigned:
case TokenType::IntegerLiteralUnsigned:
integerValue = other.integerValue;
break;
case TokenType::AbstractFloatLiteral:
case TokenType::FloatLiteral:
case TokenType::HalfLiteral:
floatValue = other.floatValue;
break;
default:
break;
}
}
~Token()
{
if (type == TokenType::Identifier)
(&ident)->~String();
}
};
} // namespace WGSL