Title: [239398] trunk/Source/WebCore
Revision
239398
Author
mmaxfi...@apple.com
Date
2018-12-19 15:27:45 -0800 (Wed, 19 Dec 2018)

Log Message

[WHLSL] Add a handwritten lexer
https://bugs.webkit.org/show_bug.cgi?id=192294

Reviewed by Jon Lee.

This is infrastructure necessary for https://bugs.webkit.org/show_bug.cgi?id=192355. The
implementation matches the lexing rules in the spec (specifically, the rules that start
with an uppercase letter). The spec is at
https://github.com/gpuweb/WHLSL/blob/master/Spec/WHLSL.g4.

This patch also modifies the lexer according to https://github.com/gpuweb/WHLSL/pull/283.

No new tests because the lexer isn't hooked up yet; there are tests in the parser,
once that gets committed.

* Modules/webgpu/WHLSL/WHLSLLexer.cpp: Added.
(WebCore::WHLSL::Lexer::Token::typeName):
(WebCore::WHLSL::Lexer::recognizeKeyword):
(WebCore::WHLSL::Lexer::consumeTokenFromStream):
(WebCore::WHLSL::Lexer::skipWhitespaceAndComments):
(WebCore::WHLSL::isWhitespace):
(WebCore::WHLSL::isNewline):
(WebCore::WHLSL::Lexer::skipWhitespace):
(WebCore::WHLSL::Lexer::skipLineComment):
(WebCore::WHLSL::Lexer::skipLongComment):
(WebCore::WHLSL::Lexer::coreDecimalIntLiteral const):
(WebCore::WHLSL::Lexer::decimalIntLiteral const):
(WebCore::WHLSL::Lexer::decimalUintLiteral const):
(WebCore::WHLSL::isHexadecimalCharacter):
(WebCore::WHLSL::Lexer::coreHexadecimalIntLiteral const):
(WebCore::WHLSL::Lexer::hexadecimalIntLiteral const):
(WebCore::WHLSL::Lexer::hexadecimalUintLiteral const):
(WebCore::WHLSL::Lexer::intLiteral const):
(WebCore::WHLSL::Lexer::uintLiteral const):
(WebCore::WHLSL::Lexer::digit const):
(WebCore::WHLSL::Lexer::digitStar const):
(WebCore::WHLSL::Lexer::character const):
(WebCore::WHLSL::Lexer::coreFloatLiteralType1 const):
(WebCore::WHLSL::Lexer::coreFloatLiteral const):
(WebCore::WHLSL::Lexer::floatLiteral const):
(WebCore::WHLSL::Lexer::validIdentifier const):
(WebCore::WHLSL::Lexer::identifier const):
(WebCore::WHLSL::Lexer::operatorName const):
* Modules/webgpu/WHLSL/WHLSLLexer.h: Added.
(WebCore::WHLSL::Lexer::Lexer):
(WebCore::WHLSL::Lexer::consumeToken):
(WebCore::WHLSL::Lexer::unconsumeToken):
(WebCore::WHLSL::Lexer::state const):
(WebCore::WHLSL::Lexer::setState):
(WebCore::WHLSL::Lexer::isFullyConsumed const):
(WebCore::WHLSL::Lexer::errorString):
(WebCore::WHLSL::Lexer::string const):
(WebCore::WHLSL::Lexer::anyCharacter const):
* Sources.txt:
* WebCore.xcodeproj/project.pbxproj:

Modified Paths

Added Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (239397 => 239398)


--- trunk/Source/WebCore/ChangeLog	2018-12-19 23:17:31 UTC (rev 239397)
+++ trunk/Source/WebCore/ChangeLog	2018-12-19 23:27:45 UTC (rev 239398)
@@ -1,3 +1,61 @@
+2018-12-19  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        [WHLSL] Add a handwritten lexer
+        https://bugs.webkit.org/show_bug.cgi?id=192294
+
+        Reviewed by Jon Lee.
+
+        This is infrastructure necessary for https://bugs.webkit.org/show_bug.cgi?id=192355. The
+        implementation matches the lexing rules in the spec (specifically, the rules that start
+        with an uppercase letter). The spec is at
+        https://github.com/gpuweb/WHLSL/blob/master/Spec/WHLSL.g4.
+
+        This patch also modifies the lexer according to https://github.com/gpuweb/WHLSL/pull/283.
+
+        No new tests because the lexer isn't hooked up yet; there are tests in the parser,
+        once that gets committed.
+
+        * Modules/webgpu/WHLSL/WHLSLLexer.cpp: Added.
+        (WebCore::WHLSL::Lexer::Token::typeName):
+        (WebCore::WHLSL::Lexer::recognizeKeyword):
+        (WebCore::WHLSL::Lexer::consumeTokenFromStream):
+        (WebCore::WHLSL::Lexer::skipWhitespaceAndComments):
+        (WebCore::WHLSL::isWhitespace):
+        (WebCore::WHLSL::isNewline):
+        (WebCore::WHLSL::Lexer::skipWhitespace):
+        (WebCore::WHLSL::Lexer::skipLineComment):
+        (WebCore::WHLSL::Lexer::skipLongComment):
+        (WebCore::WHLSL::Lexer::coreDecimalIntLiteral const):
+        (WebCore::WHLSL::Lexer::decimalIntLiteral const):
+        (WebCore::WHLSL::Lexer::decimalUintLiteral const):
+        (WebCore::WHLSL::isHexadecimalCharacter):
+        (WebCore::WHLSL::Lexer::coreHexadecimalIntLiteral const):
+        (WebCore::WHLSL::Lexer::hexadecimalIntLiteral const):
+        (WebCore::WHLSL::Lexer::hexadecimalUintLiteral const):
+        (WebCore::WHLSL::Lexer::intLiteral const):
+        (WebCore::WHLSL::Lexer::uintLiteral const):
+        (WebCore::WHLSL::Lexer::digit const):
+        (WebCore::WHLSL::Lexer::digitStar const):
+        (WebCore::WHLSL::Lexer::character const):
+        (WebCore::WHLSL::Lexer::coreFloatLiteralType1 const):
+        (WebCore::WHLSL::Lexer::coreFloatLiteral const):
+        (WebCore::WHLSL::Lexer::floatLiteral const):
+        (WebCore::WHLSL::Lexer::validIdentifier const):
+        (WebCore::WHLSL::Lexer::identifier const):
+        (WebCore::WHLSL::Lexer::operatorName const):
+        * Modules/webgpu/WHLSL/WHLSLLexer.h: Added.
+        (WebCore::WHLSL::Lexer::Lexer):
+        (WebCore::WHLSL::Lexer::consumeToken):
+        (WebCore::WHLSL::Lexer::unconsumeToken):
+        (WebCore::WHLSL::Lexer::state const):
+        (WebCore::WHLSL::Lexer::setState):
+        (WebCore::WHLSL::Lexer::isFullyConsumed const):
+        (WebCore::WHLSL::Lexer::errorString):
+        (WebCore::WHLSL::Lexer::string const):
+        (WebCore::WHLSL::Lexer::anyCharacter const):
+        * Sources.txt:
+        * WebCore.xcodeproj/project.pbxproj:
+
 2018-12-18  Simon Fraser  <simon.fra...@apple.com>
 
         Web Inspector: Timelines: correctly label Intersection Observer callbacks

Added: trunk/Source/WebCore/Modules/webgpu/WHLSL/WHLSLLexer.cpp (0 => 239398)


--- trunk/Source/WebCore/Modules/webgpu/WHLSL/WHLSLLexer.cpp	                        (rev 0)
+++ trunk/Source/WebCore/Modules/webgpu/WHLSL/WHLSLLexer.cpp	2018-12-19 23:27:45 UTC (rev 239398)
@@ -0,0 +1,828 @@
+/*
+ * Copyright (C) 2018 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
+
+#if ENABLE(WEBGPU)
+
+#include "config.h"
+#include "WHLSLLexer.h"
+
+namespace WebCore {
+
+namespace WHLSL {
+
+const char* Lexer::Token::typeName(Type type)
+{
+    switch (type) {
+    case Type::IntLiteral:
+        return "int literal";
+    case Type::UintLiteral:
+        return "uint literal";
+    case Type::FloatLiteral:
+        return "float literal";
+    case Type::Struct:
+        return "struct";
+    case Type::Typedef:
+        return "typedef";
+    case Type::Enum:
+        return "enum";
+    case Type::Operator:
+        return "operator";
+    case Type::If:
+        return "if";
+    case Type::Else:
+        return "else";
+    case Type::Continue:
+        return "continue";
+    case Type::Break:
+        return "break";
+    case Type::Switch:
+        return "switch";
+    case Type::Case:
+        return "case";
+    case Type::Default:
+        return "default";
+    case Type::Fallthrough:
+        return "fallthrough";
+    case Type::For:
+        return "for";
+    case Type::While:
+        return "while";
+    case Type::Do:
+        return "do";
+    case Type::Return:
+        return "return";
+    case Type::Trap:
+        return "trap";
+    case Type::Null:
+        return "null";
+    case Type::True:
+        return "true";
+    case Type::False:
+        return "false";
+    case Type::Constant:
+        return "constant";
+    case Type::Device:
+        return "device";
+    case Type::Threadgroup:
+        return "threadgroup";
+    case Type::Thread:
+        return "thread";
+    case Type::Space:
+        return "space";
+    case Type::Vertex:
+        return "vertex";
+    case Type::Fragment:
+        return "fragment";
+    case Type::Compute:
+        return "compute";
+    case Type::NumThreads:
+        return "numthreads";
+    case Type::SVInstanceID:
+        return "SV_InstanceID";
+    case Type::SVVertexID:
+        return "SV_VertexID";
+    case Type::PSize:
+        return "PSIZE";
+    case Type::SVPosition:
+        return "SV_Position";
+    case Type::SVIsFrontFace:
+        return "SV_IsFrontFace";
+    case Type::SVSampleIndex:
+        return "SV_SampleIndex";
+    case Type::SVInnerCoverage:
+        return "SV_InnerCoverage";
+    case Type::SVTarget:
+        return "SV_Target";
+    case Type::SVDepth:
+        return "SV_Depth";
+    case Type::SVCoverage:
+        return "SV_Coverage";
+    case Type::SVDispatchThreadID:
+        return "SV_DispatchThreadID";
+    case Type::SVGroupID:
+        return "SV_GroupID";
+    case Type::SVGroupIndex:
+        return "SV_GroupIndex";
+    case Type::SVGroupThreadID:
+        return "SV_GroupThreadID";
+    case Type::Attribute:
+        return "SV_Attribute";
+    case Type::Register:
+        return "register";
+    case Type::Specialized:
+        return "specialized";
+    case Type::Native:
+        return "native";
+    case Type::Restricted:
+        return "restricted";
+    case Type::Underscore:
+        return "_";
+    case Type::Auto:
+        return "auto";
+    case Type::Protocol:
+        return "protocol";
+    case Type::Const:
+        return "const";
+    case Type::Static:
+        return "static";
+    case Type::Qualifier:
+        return "qualifier";
+    case Type::Identifier:
+        return "identifier";
+    case Type::OperatorName:
+        return "operator name";
+    case Type::EqualsSign:
+        return "=";
+    case Type::Semicolon:
+        return ";";
+    case Type::LeftCurlyBracket:
+        return "{";
+    case Type::RightCurlyBracket:
+        return "}";
+    case Type::Colon:
+        return ":";
+    case Type::Comma:
+        return ",";
+    case Type::LeftParenthesis:
+        return "(";
+    case Type::RightParenthesis:
+        return ")";
+    case Type::SquareBracketPair:
+        return "[]";
+    case Type::LeftSquareBracket:
+        return "[";
+    case Type::RightSquareBracket:
+        return "]";
+    case Type::Star:
+        return "*";
+    case Type::LessThanSign:
+        return "<";
+    case Type::GreaterThanSign:
+        return ">";
+    case Type::FullStop:
+        return ".";
+    case Type::PlusEquals:
+        return "+=";
+    case Type::MinusEquals:
+        return "-=";
+    case Type::TimesEquals:
+        return "*=";
+    case Type::DivideEquals:
+        return "/=";
+    case Type::ModEquals:
+        return "%=";
+    case Type::XorEquals:
+        return "^=";
+    case Type::AndEquals:
+        return "&=";
+    case Type::OrEquals:
+        return "|=";
+    case Type::RightShiftEquals:
+        return ">>=";
+    case Type::LeftShiftEquals:
+        return "<<=";
+    case Type::PlusPlus:
+        return "++";
+    case Type::MinusMinus:
+        return "--";
+    case Type::Arrow:
+        return "->";
+    case Type::QuestionMark:
+        return "?";
+    case Type::OrOr:
+        return "||";
+    case Type::AndAnd:
+        return "&&";
+    case Type::Or:
+        return "|";
+    case Type::Xor:
+        return "^";
+    case Type::And:
+        return "&";
+    case Type::LessThanOrEqualTo:
+        return "<=";
+    case Type::GreaterThanOrEqualTo:
+        return ">=";
+    case Type::EqualComparison:
+        return "==";
+    case Type::NotEqual:
+        return "!=";
+    case Type::RightShift:
+        return ">>";
+    case Type::LeftShift:
+        return "<<";
+    case Type::Plus:
+        return "+";
+    case Type::Minus:
+        return "-";
+    case Type::Divide:
+        return "/";
+    case Type::Mod:
+        return "%";
+    case Type::Tilde:
+        return "~";
+    case Type::ExclamationPoint:
+        return "!";
+    case Type::At:
+        return "@";
+    }
+}
+
+auto Lexer::recognizeKeyword(unsigned end) -> std::optional<Token::Type>
+{
+    auto substring = m_stringView.substring(m_offset, end - m_offset);
+    if (substring == "struct")
+        return Token::Type::Struct;
+    if (substring == "typedef")
+        return Token::Type::Typedef;
+    if (substring == "enum")
+        return Token::Type::Enum;
+    if (substring == "operator")
+        return Token::Type::Operator;
+    if (substring == "if")
+        return Token::Type::If;
+    if (substring == "else")
+        return Token::Type::Else;
+    if (substring == "continue")
+        return Token::Type::Continue;
+    if (substring == "break")
+        return Token::Type::Break;
+    if (substring == "switch")
+        return Token::Type::Switch;
+    if (substring == "case")
+        return Token::Type::Case;
+    if (substring == "default")
+        return Token::Type::Default;
+    if (substring == "fallthrough")
+        return Token::Type::Fallthrough;
+    if (substring == "for")
+        return Token::Type::For;
+    if (substring == "while")
+        return Token::Type::While;
+    if (substring == "do")
+        return Token::Type::Do;
+    if (substring == "return")
+        return Token::Type::Return;
+    if (substring == "trap")
+        return Token::Type::Trap;
+    if (substring == "null")
+        return Token::Type::Null;
+    if (substring == "true")
+        return Token::Type::True;
+    if (substring == "false")
+        return Token::Type::False;
+    if (substring == "constant")
+        return Token::Type::Constant;
+    if (substring == "device")
+        return Token::Type::Device;
+    if (substring == "threadgroup")
+        return Token::Type::Threadgroup;
+    if (substring == "thread")
+        return Token::Type::Thread;
+    if (substring == "space")
+        return Token::Type::Space;
+    if (substring == "vertex")
+        return Token::Type::Vertex;
+    if (substring == "fragment")
+        return Token::Type::Fragment;
+    if (substring == "compute")
+        return Token::Type::Compute;
+    if (substring == "numthreads")
+        return Token::Type::NumThreads;
+    if (substring == "SV_InstanceID")
+        return Token::Type::SVInstanceID;
+    if (substring == "SV_VertexID")
+        return Token::Type::SVVertexID;
+    if (substring == "PSIZE")
+        return Token::Type::PSize;
+    if (substring == "SV_Position")
+        return Token::Type::SVPosition;
+    if (substring == "SV_IsFrontFace")
+        return Token::Type::SVIsFrontFace;
+    if (substring == "SV_SampleIndex")
+        return Token::Type::SVSampleIndex;
+    if (substring == "SV_InnerCoverage")
+        return Token::Type::SVInnerCoverage;
+    if (substring == "SV_Target")
+        return Token::Type::SVTarget;
+    if (substring == "SV_Depth")
+        return Token::Type::SVDepth;
+    if (substring == "SV_Coverage")
+        return Token::Type::SVCoverage;
+    if (substring == "SV_DispatchThreadID")
+        return Token::Type::SVDispatchThreadID;
+    if (substring == "SV_GroupID")
+        return Token::Type::SVGroupID;
+    if (substring == "SV_GroupIndex")
+        return Token::Type::SVGroupIndex;
+    if (substring == "SV_GroupThreadID")
+        return Token::Type::SVGroupThreadID;
+    if (substring == "attribute")
+        return Token::Type::Attribute;
+    if (substring == "register")
+        return Token::Type::Register;
+    if (substring == "specialized")
+        return Token::Type::Specialized;
+    if (substring == "native")
+        return Token::Type::Native;
+    if (substring == "restricted")
+        return Token::Type::Restricted;
+    if (substring == "_")
+        return Token::Type::Underscore;
+    if (substring == "auto")
+        return Token::Type::Auto;
+    if (substring == "protocol")
+        return Token::Type::Protocol;
+    if (substring == "const")
+        return Token::Type::Const;
+    if (substring == "static")
+        return Token::Type::Static;
+    if (substring == "nointerpolation")
+        return Token::Type::Qualifier;
+    if (substring == "noperspective")
+        return Token::Type::Qualifier;
+    if (substring == "uniform")
+        return Token::Type::Qualifier;
+    if (substring == "centroid")
+        return Token::Type::Qualifier;
+    if (substring == "sample")
+        return Token::Type::Qualifier;
+    return std::nullopt;
+}
+
+auto Lexer::consumeTokenFromStream() -> std::optional<Token>
+{
+    auto prepare = [&](unsigned newOffset, Token::Type type) -> std::optional<Token> {
+        auto oldOffset = m_offset;
+        m_offset = newOffset;
+        skipWhitespaceAndComments();
+        return {{ m_stringView.substring(oldOffset, newOffset - oldOffset), m_lineNumber, type }};
+    };
+
+    if (auto newOffset = floatLiteral(m_offset))
+        return prepare(*newOffset, Token::Type::FloatLiteral);
+    if (auto newOffset = uintLiteral(m_offset))
+        return prepare(*newOffset, Token::Type::UintLiteral);
+    if (auto newOffset = intLiteral(m_offset))
+        return prepare(*newOffset, Token::Type::IntLiteral);
+    if (auto newOffset = operatorName(m_offset))
+        return prepare(*newOffset, Token::Type::OperatorName);
+    if (auto newOffset = identifier(m_offset)) {
+        if (auto result = recognizeKeyword(*newOffset))
+            return prepare(*newOffset, *result);
+        return prepare(*newOffset, Token::Type::Identifier);
+    }
+    // Sorted by length, so longer matches are preferable to shorter matches.
+    if (auto newOffset = string(">>=", m_offset))
+        return prepare(*newOffset, Token::Type::RightShiftEquals);
+    if (auto newOffset = string("<<=", m_offset))
+        return prepare(*newOffset, Token::Type::LeftShiftEquals);
+    if (auto newOffset = string("+=", m_offset))
+        return prepare(*newOffset, Token::Type::PlusEquals);
+    if (auto newOffset = string("-=", m_offset))
+        return prepare(*newOffset, Token::Type::MinusEquals);
+    if (auto newOffset = string("*=", m_offset))
+        return prepare(*newOffset, Token::Type::TimesEquals);
+    if (auto newOffset = string("/=", m_offset))
+        return prepare(*newOffset, Token::Type::DivideEquals);
+    if (auto newOffset = string("%=", m_offset))
+        return prepare(*newOffset, Token::Type::ModEquals);
+    if (auto newOffset = string("^=", m_offset))
+        return prepare(*newOffset, Token::Type::XorEquals);
+    if (auto newOffset = string("&=", m_offset))
+        return prepare(*newOffset, Token::Type::AndEquals);
+    if (auto newOffset = string("|=", m_offset))
+        return prepare(*newOffset, Token::Type::OrEquals);
+    if (auto newOffset = string("++", m_offset))
+        return prepare(*newOffset, Token::Type::PlusPlus);
+    if (auto newOffset = string("--", m_offset))
+        return prepare(*newOffset, Token::Type::MinusMinus);
+    if (auto newOffset = string("->", m_offset))
+        return prepare(*newOffset, Token::Type::Arrow);
+    if (auto newOffset = string("[]", m_offset))
+        return prepare(*newOffset, Token::Type::SquareBracketPair);
+    if (auto newOffset = string("||", m_offset))
+        return prepare(*newOffset, Token::Type::OrOr);
+    if (auto newOffset = string("&&", m_offset))
+        return prepare(*newOffset, Token::Type::AndAnd);
+    if (auto newOffset = string("<=", m_offset))
+        return prepare(*newOffset, Token::Type::LessThanOrEqualTo);
+    if (auto newOffset = string(">=", m_offset))
+        return prepare(*newOffset, Token::Type::GreaterThanOrEqualTo);
+    if (auto newOffset = string("==", m_offset))
+        return prepare(*newOffset, Token::Type::EqualComparison);
+    if (auto newOffset = string("!=", m_offset))
+        return prepare(*newOffset, Token::Type::NotEqual);
+    if (auto newOffset = string(">>", m_offset))
+        return prepare(*newOffset, Token::Type::RightShift);
+    if (auto newOffset = string("<<", m_offset))
+        return prepare(*newOffset, Token::Type::LeftShift);
+    if (auto newOffset = character('=', m_offset))
+        return prepare(*newOffset, Token::Type::EqualsSign);
+    if (auto newOffset = character(';', m_offset))
+        return prepare(*newOffset, Token::Type::Semicolon);
+    if (auto newOffset = character('{', m_offset))
+        return prepare(*newOffset, Token::Type::LeftCurlyBracket);
+    if (auto newOffset = character('}', m_offset))
+        return prepare(*newOffset, Token::Type::RightCurlyBracket);
+    if (auto newOffset = character(':', m_offset))
+        return prepare(*newOffset, Token::Type::Colon);
+    if (auto newOffset = character(',', m_offset))
+        return prepare(*newOffset, Token::Type::Comma);
+    if (auto newOffset = character('(', m_offset))
+        return prepare(*newOffset, Token::Type::LeftParenthesis);
+    if (auto newOffset = character(')', m_offset))
+        return prepare(*newOffset, Token::Type::RightParenthesis);
+    if (auto newOffset = character('[', m_offset))
+        return prepare(*newOffset, Token::Type::LeftSquareBracket);
+    if (auto newOffset = character(']', m_offset))
+        return prepare(*newOffset, Token::Type::RightSquareBracket);
+    if (auto newOffset = character('*', m_offset))
+        return prepare(*newOffset, Token::Type::Star);
+    if (auto newOffset = character('<', m_offset))
+        return prepare(*newOffset, Token::Type::LessThanSign);
+    if (auto newOffset = character('>', m_offset))
+        return prepare(*newOffset, Token::Type::GreaterThanSign);
+    if (auto newOffset = character('.', m_offset))
+        return prepare(*newOffset, Token::Type::FullStop);
+    if (auto newOffset = character('?', m_offset))
+        return prepare(*newOffset, Token::Type::QuestionMark);
+    if (auto newOffset = character('|', m_offset))
+        return prepare(*newOffset, Token::Type::Or);
+    if (auto newOffset = character('^', m_offset))
+        return prepare(*newOffset, Token::Type::Xor);
+    if (auto newOffset = character('&', m_offset))
+        return prepare(*newOffset, Token::Type::And);
+    if (auto newOffset = character('+', m_offset))
+        return prepare(*newOffset, Token::Type::Plus);
+    if (auto newOffset = character('-', m_offset))
+        return prepare(*newOffset, Token::Type::Minus);
+    if (auto newOffset = character('/', m_offset))
+        return prepare(*newOffset, Token::Type::Divide);
+    if (auto newOffset = character('%', m_offset))
+        return prepare(*newOffset, Token::Type::Mod);
+    if (auto newOffset = character('~', m_offset))
+        return prepare(*newOffset, Token::Type::Tilde);
+    if (auto newOffset = character('!', m_offset))
+        return prepare(*newOffset, Token::Type::ExclamationPoint);
+    if (auto newOffset = character('@', m_offset))
+        return prepare(*newOffset, Token::Type::At);
+
+    return std::nullopt;
+}
+
+void Lexer::skipWhitespaceAndComments()
+{
+    unsigned savedOffset;
+    do {
+        savedOffset = m_offset;
+        skipWhitespace();
+        skipLineComment();
+        skipLongComment();
+    } while (savedOffset != m_offset);
+}
+
+static inline bool isWhitespace(UChar codeUnit)
+{
+    switch (codeUnit) {
+    case ' ':
+    case '\t':
+    case '\r':
+    case '\n':
+        return true;
+    default:
+        return false;
+    }
+}
+
+static inline bool isNewline(UChar codeUnit)
+{
+    switch (codeUnit) {
+    case '\r':
+    case '\n':
+        return true;
+    default:
+        return false;
+    }
+}
+
+// We can take advantage of two properties of Unicode:
+// 1. The consitutent UTF-16 code units for all non-BMP code points are surrogates,
+//        which means we'll never see a false match. If we see a BMP code unit, we
+//        really have a BMP code point.
+// 2. Everything we're looking for is in BMP
+
+void Lexer::skipWhitespace()
+{
+    for ( ; m_offset < m_stringView.length() && isWhitespace(m_stringView[m_offset]); ++m_offset) {
+        if (m_stringView[m_offset] == '\r' && m_offset + 1 < m_stringView.length() && m_stringView[m_offset + 1] == '\n') {
+            ++m_offset;
+            ++m_lineNumber;
+        } else if (isNewline(m_stringView[m_offset]))
+            ++m_lineNumber;
+    }
+}
+
+void Lexer::skipLineComment()
+{
+    if (m_offset + 1 >= m_stringView.length() || m_stringView[m_offset] != '/' || m_stringView[m_offset + 1] != '/')
+        return;
+
+    m_offset += 2;
+    for ( ; m_offset < m_stringView.length() && !isNewline(m_stringView[m_offset]); ++m_offset) { }
+}
+
+void Lexer::skipLongComment()
+{
+    if (m_offset + 1 >= m_stringView.length() || m_stringView[m_offset] != '/' || m_stringView[m_offset + 1] != '*')
+        return;
+
+    m_offset += 2;
+    do {
+        for ( ; m_offset < m_stringView.length() && m_stringView[m_offset] != '*'; ++m_offset) {
+            if (m_stringView[m_offset] == '\r' && m_offset + 1 < m_stringView.length() && m_stringView[m_offset + 1] == '\n') {
+                ++m_offset;
+                ++m_lineNumber;
+            } else if (isNewline(m_stringView[m_offset]))
+                ++m_lineNumber;
+        }
+        if (m_offset < m_stringView.length())
+            ++m_offset;
+        if (m_offset < m_stringView.length() && m_stringView[m_offset] == '/') {
+            ++m_offset;
+            break;
+        }
+    } while (m_offset < m_stringView.length());
+}
+
+// Regular _expression_ are unnecessary; we shouldn't need to compile them.
+
+std::optional<unsigned> Lexer::coreDecimalIntLiteral(unsigned offset) const
+{
+    if (offset >= m_stringView.length())
+        return std::nullopt;
+    if (m_stringView[offset] == '0')
+        return offset + 1;
+    if (m_stringView[offset] >= '1' && m_stringView[offset] <= '9') {
+        ++offset;
+        for ( ; offset < m_stringView.length() && m_stringView[offset] >= '0' && m_stringView[offset] <= '9'; ++offset) {
+        }
+        return offset;
+    }
+    return std::nullopt;
+}
+
+std::optional<unsigned> Lexer::decimalIntLiteral(unsigned offset) const
+{
+    if (offset < m_stringView.length() && m_stringView[offset] == '-')
+        ++offset;
+    return coreDecimalIntLiteral(offset);
+}
+
+std::optional<unsigned> Lexer::decimalUintLiteral(unsigned offset) const
+{
+    auto result = coreDecimalIntLiteral(offset);
+    if (!result)
+        return std::nullopt;
+    if (*result < m_stringView.length() && m_stringView[*result] == 'u')
+        return *result + 1;
+    return std::nullopt;
+}
+
+static inline bool isHexadecimalCharacter(UChar character)
+{
+    return (character >= '0' && character <= '9')
+        || (character >= 'a' && character <= 'f')
+        || (character >= 'A' && character <= 'F');
+}
+
+std::optional<unsigned> Lexer::coreHexadecimalIntLiteral(unsigned offset) const
+{
+    if (offset + 1 >= m_stringView.length() || m_stringView[offset] != '0' || m_stringView[offset + 1] != 'x')
+        return std::nullopt;
+
+    offset += 2;
+    if (offset >= m_stringView.length() || !isHexadecimalCharacter(m_stringView[offset]))
+        return std::nullopt;
+    ++offset;
+    for ( ; offset < m_stringView.length() && isHexadecimalCharacter(m_stringView[offset]); ++offset) {
+    }
+    return offset;
+}
+
+std::optional<unsigned> Lexer::hexadecimalIntLiteral(unsigned offset) const
+{
+    if (offset < m_stringView.length() && m_stringView[offset] == '-')
+        ++offset;
+    return coreHexadecimalIntLiteral(offset);
+}
+
+std::optional<unsigned> Lexer::hexadecimalUintLiteral(unsigned offset) const
+{
+    auto result = coreHexadecimalIntLiteral(offset);
+    if (!result)
+        return std::nullopt;
+    if (*result < m_stringView.length() && m_stringView[*result] == 'u')
+        return *result + 1;
+    return std::nullopt;
+}
+
+std::optional<unsigned> Lexer::intLiteral(unsigned offset) const
+{
+    if (auto result = decimalIntLiteral(offset))
+        return result;
+    if (auto result = hexadecimalIntLiteral(offset))
+        return result;
+    return std::nullopt;
+}
+
+std::optional<unsigned> Lexer::uintLiteral(unsigned offset) const
+{
+    if (auto result = decimalUintLiteral(offset))
+        return result;
+    if (auto result = hexadecimalUintLiteral(offset))
+        return result;
+    return std::nullopt;
+}
+
+std::optional<unsigned> Lexer::digit(unsigned offset) const
+{
+    if (offset < m_stringView.length() && m_stringView[offset] >= '0' && m_stringView[offset] <= '9')
+        return offset + 1;
+    return std::nullopt;
+}
+
+unsigned Lexer::digitStar(unsigned offset) const
+{
+    while (true) {
+        auto result = digit(offset);
+        if (!result)
+            return offset;
+        offset = *result;
+    }
+}
+
+std::optional<unsigned> Lexer::character(char character, unsigned offset) const
+{
+    if (offset < m_stringView.length() && m_stringView[offset] == character)
+        return offset + 1;
+    return std::nullopt;
+}
+
+std::optional<unsigned> Lexer::coreFloatLiteralType1(unsigned offset) const
+{
+    auto result = digit(offset);
+    if (!result)
+        return std::nullopt;
+    auto result2 = digitStar(*result);
+    auto result3 = character('.', result2);
+    if (!result3)
+        return std::nullopt;
+    return digitStar(*result3);
+}
+
+std::optional<unsigned> Lexer::coreFloatLiteral(unsigned offset) const
+{
+    if (auto type1 = coreFloatLiteralType1(offset))
+        return type1;
+    auto result = digitStar(offset);
+    auto result2 = character('.', result);
+    if (!result2)
+        return std::nullopt;
+    auto result3 = digit(*result2);
+    if (!result3)
+        return std::nullopt;
+    return digitStar(*result3);
+}
+
+std::optional<unsigned> Lexer::floatLiteral(unsigned offset) const
+{
+    if (offset < m_stringView.length() && m_stringView[offset] == '-')
+        ++offset;
+    auto result = coreFloatLiteral(offset);
+    if (!result)
+        return std::nullopt;
+    offset = *result;
+    if (offset < m_stringView.length() && m_stringView[offset] == 'f')
+        ++offset;
+    return offset;
+}
+
+std::optional<unsigned> Lexer::validIdentifier(unsigned offset) const
+{
+    if (offset >= m_stringView.length()
+        || !((m_stringView[offset] >= 'a' && m_stringView[offset] <= 'z')
+            || (m_stringView[offset] >= 'A' && m_stringView[offset] <= 'Z')
+            || (m_stringView[offset] == '_')))
+        return std::nullopt;
+    ++offset;
+    while (true) {
+        if (offset >= m_stringView.length()
+            || !((m_stringView[offset] >= 'a' && m_stringView[offset] <= 'z')
+                || (m_stringView[offset] >= 'A' && m_stringView[offset] <= 'Z')
+                || (m_stringView[offset] >= '0' && m_stringView[offset] <= '9')
+                || (m_stringView[offset] == '_')))
+            return offset;
+        ++offset;
+    }
+}
+
+std::optional<unsigned> Lexer::identifier(unsigned offset) const
+{
+    return validIdentifier(offset);
+}
+
+std::optional<unsigned> Lexer::operatorName(unsigned offset) const
+{
+    if (auto result = string("operator&.", offset))
+        return validIdentifier(*result);
+    if (auto result = string("operator.", offset)) {
+        if ((result = validIdentifier(*result))) {
+            if (auto result2 = character('=', *result))
+                return result2;
+            return *result;
+        }
+    }
+    if (auto result = string("operator", offset)) {
+        // Sorted by length, so longer matches are preferable to shorter matches.
+        if (auto result2 = string("&[]", *result))
+            return result2;
+        if (auto result2 = string("[]=", *result))
+            return result2;
+        if (auto result2 = string(">>", *result))
+            return result2;
+        if (auto result2 = string("<<", *result))
+            return result2;
+        if (auto result2 = string("++", *result))
+            return result2;
+        if (auto result2 = string("--", *result))
+            return result2;
+        if (auto result2 = string("&&", *result))
+            return result2;
+        if (auto result2 = string("||", *result))
+            return result2;
+        if (auto result2 = string(">=", *result))
+            return result2;
+        if (auto result2 = string("<=", *result))
+            return result2;
+        if (auto result2 = string("==", *result))
+            return result2;
+        if (auto result2 = string("[]", *result))
+            return result2;
+        if (auto result2 = character('+', *result))
+            return result2;
+        if (auto result2 = character('-', *result))
+            return result2;
+        if (auto result2 = character('*', *result))
+            return result2;
+        if (auto result2 = character('/', *result))
+            return result2;
+        if (auto result2 = character('%', *result))
+            return result2;
+        if (auto result2 = character('<', *result))
+            return result2;
+        if (auto result2 = character('>', *result))
+            return result2;
+        if (auto result2 = character('!', *result))
+            return result2;
+        if (auto result2 = character('~', *result))
+            return result2;
+        if (auto result2 = character('&', *result))
+            return result2;
+        if (auto result2 = character('^', *result))
+            return result2;
+        if (auto result2 = character('|', *result))
+            return result2;
+    }
+    return std::nullopt;
+}
+
+}
+
+}
+
+#endif

Added: trunk/Source/WebCore/Modules/webgpu/WHLSL/WHLSLLexer.h (0 => 239398)


--- trunk/Source/WebCore/Modules/webgpu/WHLSL/WHLSLLexer.h	                        (rev 0)
+++ trunk/Source/WebCore/Modules/webgpu/WHLSL/WHLSLLexer.h	2018-12-19 23:27:45 UTC (rev 239398)
@@ -0,0 +1,283 @@
+/*
+ * Copyright (C) 2018 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
+
+#if ENABLE(WEBGPU)
+
+#include <wtf/Optional.h>
+#include <wtf/Vector.h>
+#include <wtf/text/StringView.h>
+#include <wtf/text/WTFString.h>
+
+namespace WebCore {
+
+namespace WHLSL {
+
+class Lexer {
+public:
+    Lexer() = default;
+
+    Lexer(StringView stringView)
+        : m_stringView(stringView)
+    {
+        skipWhitespaceAndComments();
+    }
+
+    Lexer(const Lexer&) = delete;
+    Lexer(Lexer&&) = default;
+
+    Lexer& operator=(const Lexer&) = delete;
+    Lexer& operator=(Lexer&&) = default;
+
+    struct Token {
+        Token() = delete;
+        Token(const Token&) = default;
+        Token(Token&&) = default;
+        Token& operator=(const Token&) = default;
+        Token& operator=(Token&&) = default;
+
+        StringView stringView;
+        unsigned lineNumber;
+        enum class Type {
+            IntLiteral,
+            UintLiteral,
+            FloatLiteral,
+            Struct,
+            Typedef,
+            Enum,
+            Operator,
+            If,
+            Else,
+            Continue,
+            Break,
+            Switch,
+            Case,
+            Default,
+            Fallthrough,
+            For,
+            While,
+            Do,
+            Return,
+            Trap,
+            Null,
+            True,
+            False,
+            Constant,
+            Device,
+            Threadgroup,
+            Thread,
+            Space,
+            Vertex,
+            Fragment,
+            Compute,
+            NumThreads,
+            SVInstanceID,
+            SVVertexID,
+            PSize,
+            SVPosition,
+            SVIsFrontFace,
+            SVSampleIndex,
+            SVInnerCoverage,
+            SVTarget,
+            SVDepth,
+            SVCoverage,
+            SVDispatchThreadID,
+            SVGroupID,
+            SVGroupIndex,
+            SVGroupThreadID,
+            Attribute,
+            Register,
+            Specialized,
+            Native,
+            Restricted,
+            Underscore,
+            Auto,
+            Protocol,
+            Const,
+            Static,
+            Qualifier,
+            Identifier,
+            OperatorName,
+            EqualsSign,
+            Semicolon,
+            LeftCurlyBracket,
+            RightCurlyBracket,
+            Colon,
+            Comma,
+            LeftParenthesis,
+            RightParenthesis,
+            SquareBracketPair,
+            LeftSquareBracket,
+            RightSquareBracket,
+            Star,
+            LessThanSign,
+            GreaterThanSign,
+            FullStop,
+            PlusEquals,
+            MinusEquals,
+            TimesEquals,
+            DivideEquals,
+            ModEquals,
+            XorEquals,
+            AndEquals,
+            OrEquals,
+            RightShiftEquals,
+            LeftShiftEquals,
+            PlusPlus,
+            MinusMinus,
+            Arrow,
+            QuestionMark,
+            OrOr,
+            AndAnd,
+            Or,
+            Xor,
+            And,
+            LessThanOrEqualTo,
+            GreaterThanOrEqualTo,
+            EqualComparison,
+            NotEqual,
+            RightShift,
+            LeftShift,
+            Plus,
+            Minus,
+            Divide,
+            Mod,
+            Tilde,
+            ExclamationPoint,
+            At,
+        } type;
+
+        static const char* typeName(Type);
+    };
+
+    std::optional<Token> consumeToken()
+    {
+        if (!m_stack.isEmpty())
+            return m_stack.takeLast();
+        return consumeTokenFromStream();
+    }
+
+    void unconsumeToken(Token&& token)
+    {
+        m_stack.append(WTFMove(token));
+    }
+
+    struct State {
+        Vector<Token> stack;
+        unsigned offset;
+        unsigned lineNumber;
+    };
+
+    State state() const
+    {
+        return { m_stack, m_offset, m_lineNumber };
+    }
+
+    void setState(const State& state)
+    {
+        m_stack = state.stack;
+        m_offset = state.offset;
+        m_lineNumber = state.lineNumber;
+    }
+
+    void setState(State&& state)
+    {
+        m_stack = WTFMove(state.stack);
+        m_offset = WTFMove(state.offset);
+        m_lineNumber = WTFMove(state.lineNumber);
+    }
+
+    bool isFullyConsumed() const
+    {
+        return m_offset == m_stringView.length();
+    }
+
+    String errorString(const Token& token, const String& message)
+    {
+        return String::format("Parse error at line %u: %s", token.lineNumber, message.utf8().data());
+    }
+
+private:
+    std::optional<Token> consumeTokenFromStream();
+
+    void skipWhitespaceAndComments();
+    void skipWhitespace();
+    void skipLineComment();
+    void skipLongComment();
+
+    std::optional<Token::Type> recognizeKeyword(unsigned end);
+
+    std::optional<unsigned> coreDecimalIntLiteral(unsigned) const;
+    std::optional<unsigned> decimalIntLiteral(unsigned) const;
+    std::optional<unsigned> decimalUintLiteral(unsigned) const;
+    std::optional<unsigned> coreHexadecimalIntLiteral(unsigned) const;
+    std::optional<unsigned> hexadecimalIntLiteral(unsigned) const;
+    std::optional<unsigned> hexadecimalUintLiteral(unsigned) const;
+    std::optional<unsigned> intLiteral(unsigned) const;
+    std::optional<unsigned> uintLiteral(unsigned) const;
+    std::optional<unsigned> digit(unsigned) const;
+    unsigned digitStar(unsigned) const;
+    std::optional<unsigned> character(char, unsigned) const;
+    template<unsigned length> std::optional<unsigned> anyCharacter(const char (&string)[length], unsigned) const;
+    std::optional<unsigned> coreFloatLiteralType1(unsigned) const;
+    std::optional<unsigned> coreFloatLiteral(unsigned) const;
+    std::optional<unsigned> floatLiteral(unsigned) const;
+    template<unsigned length> std::optional<unsigned> string(const char (&string)[length], unsigned) const;
+    std::optional<unsigned> validIdentifier(unsigned) const;
+    std::optional<unsigned> identifier(unsigned) const;
+    std::optional<unsigned> operatorName(unsigned) const;
+
+    StringView m_stringView;
+    Vector<Token> m_stack;
+    unsigned m_offset { 0 };
+    unsigned m_lineNumber { 0 };
+};
+
+template<unsigned length> std::optional<unsigned> Lexer::string(const char (&string)[length], unsigned offset) const
+{
+    for (unsigned i = 0; i < length - 1; ++i) {
+        if (offset + i >= m_stringView.length() || m_stringView[offset + i] != string[i])
+            return std::nullopt;
+    }
+    return offset + length - 1;
+}
+
+template<unsigned length> std::optional<unsigned> Lexer::anyCharacter(const char (&string)[length], unsigned offset) const
+{
+    if (offset >= m_stringView.length())
+        return std::nullopt;
+    for (unsigned i = 0; i < length - 1; ++i) {
+        if (m_stringView[offset] == string[i])
+            return offset + 1;
+    }
+    return std::nullopt;
+}
+
+}
+
+}
+
+#endif

Modified: trunk/Source/WebCore/Sources.txt (239397 => 239398)


--- trunk/Source/WebCore/Sources.txt	2018-12-19 23:17:31 UTC (rev 239397)
+++ trunk/Source/WebCore/Sources.txt	2018-12-19 23:27:45 UTC (rev 239398)
@@ -301,6 +301,7 @@
 Modules/websockets/WorkerThreadableWebSocketChannel.cpp
 
 Modules/webgpu/DOMWindowWebGPU.cpp
+Modules/webgpu/WHLSL/WHLSLLexer.cpp
 Modules/webgpu/WebGPU.cpp
 Modules/webgpu/WebGPUAdapter.cpp
 Modules/webgpu/WebGPUBindGroupLayout.cpp

Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (239397 => 239398)


--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj	2018-12-19 23:17:31 UTC (rev 239397)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj	2018-12-19 23:27:45 UTC (rev 239398)
@@ -13212,6 +13212,8 @@
 		C11A9ED22140578B00CFB20A /* SwitchingGPUClient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = SwitchingGPUClient.cpp; sourceTree = "<group>"; };
 		C1E1D235203DF15400584665 /* ScreenProperties.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScreenProperties.h; sourceTree = "<group>"; };
 		C2015C091BE6FE2C00822389 /* FontVariantBuilder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FontVariantBuilder.h; sourceTree = "<group>"; };
+		C210E91121B4BD1000B7F83D /* WHLSLLexer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = WHLSLLexer.cpp; sourceTree = "<group>"; };
+		C210E91221B4BD1000B7F83D /* WHLSLLexer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WHLSLLexer.h; sourceTree = "<group>"; };
 		C21DF2E71D9E4E9900F5B24C /* CSSFontVariationValue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSSFontVariationValue.cpp; sourceTree = "<group>"; };
 		C21DF2E81D9E4E9900F5B24C /* CSSFontVariationValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSSFontVariationValue.h; sourceTree = "<group>"; };
 		C2458E611FE8979E00594759 /* FontCacheCoreText.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FontCacheCoreText.h; sourceTree = "<group>"; };
@@ -25217,6 +25219,15 @@
 			tabWidth = 4;
 			usesTabs = 0;
 		};
+		C210E90D21B4BCA400B7F83D /* WHLSL */ = {
+			isa = PBXGroup;
+			children = (
+				C210E91121B4BD1000B7F83D /* WHLSLLexer.cpp */,
+				C210E91221B4BD1000B7F83D /* WHLSLLexer.h */,
+			);
+			path = WHLSL;
+			sourceTree = "<group>";
+		};
 		C96F5EBF1B5872260091EA9D /* mediasession */ = {
 			isa = PBXGroup;
 			children = (
@@ -25559,6 +25570,7 @@
 		D00F593E216ECC43000D71DB /* webgpu */ = {
 			isa = PBXGroup;
 			children = (
+				C210E90D21B4BCA400B7F83D /* WHLSL */,
 				D00F5941216ECC7A000D71DB /* DOMWindowWebGPU.cpp */,
 				D00F5940216ECC7A000D71DB /* DOMWindowWebGPU.h */,
 				D00F5942216ECC7A000D71DB /* DOMWindowWebGPU.idl */,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to