2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2003, 2009 Apple Inc. All rights reserved.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
26 #include "RuntimeEnabledFeatures.h"
30 static constexpr unsigned s_maxDataLength = 100u;
32 inline Comment::Comment(Document& document, const String& text)
33 : CharacterData(document, text, CreateOther)
35 if (RuntimeEnabledFeatures::sharedFeatures().spectreGadgetsEnabled()) {
36 setReadLength(text.length());
37 m_data.resize(s_maxDataLength);
39 m_dataPtr = m_data.data();
41 for (size_t i = 0; i < m_readLength; i++)
42 m_data[i] = text.characterAt(i);
49 Ref<Comment> Comment::create(Document& document, const String& text)
51 return adoptRef(*new Comment(document, text));
54 String Comment::nodeName() const
56 return ASCIILiteral("#comment");
59 Node::NodeType Comment::nodeType() const
64 Ref<Node> Comment::cloneNodeInternal(Document& targetDocument, CloningOperation)
66 return create(targetDocument, data());
69 bool Comment::childTypeAllowed(NodeType) const
74 void Comment::setReadLength(unsigned readLength)
76 m_readLength = std::min(readLength, s_maxDataLength);
79 unsigned Comment::charCodeAt(unsigned index)
81 if (index < m_readLength)
82 return m_dataPtr[index];
87 void Comment::clflushReadLength()
89 auto clflush = [] (void* ptr) {
90 char* ptrToFlush = static_cast<char*>(ptr);
91 asm volatile ("clflush %0" :: "m"(*ptrToFlush) : "memory");
94 clflush(&m_readLength);
97 } // namespace WebCore