1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2012 Jay Freeman (saurik)
5 /* GNU Lesser General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify it under
8 * the terms of the GNU Lesser General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 * License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 /* XXX: supposedly I will be screwed on very very long multi-line comments and need to replace these with a manual lexer. http://websrv.cs.fsu.edu/~engelen/courses/COP5621/Pr2.pdf */
25 #define YYLTYPE cy::location
26 #include "Cycript.tab.hh"
27 typedef cy::parser::token tk;
29 #include "Highlight.hpp"
31 #define YY_EXTRA_TYPE CYDriver *
33 // do /not/ fold token to the return: this is a macro and the ordering is dependent
34 #define F(value, highlight) do { \
36 yyextra->no_.AtImplementation = false; \
37 yyextra->no_.Function = false; \
38 yyextra->no_.OpenBrace = false; \
39 yylval->highlight_ = highlight; \
44 #define Y apr_pstrmemdup($pool, yytext, yyleng)
46 #define I(type, Type, value, highlight) do { \
47 yylval->type ## _ = A CY ## Type; \
48 F(value, highlight); \
51 #define T yylval->newline_ = yyextra->state_ == CYNewLine; BEGIN(Div);
52 #define C T yyextra->state_ = CYClear;
53 #define R T yyextra->state_ = CYRestricted;
56 if (yyextra->state_ != CYNewLine) { \
57 if (yyextra->state_ != CYRestricted) \
58 yyextra->state_ = CYNewLine; \
60 yyextra->state_ = CYClear; \
61 F(tk::NewLine, hi::Nothing); \
66 if (const char *nl = reinterpret_cast<const char *>(memchr(yytext, '\n', yyleng))) { \
71 left = yyleng - (nl - yytext) - 1; \
72 nl = reinterpret_cast<const char *>(memchr(nl + 1, '\n', left)); \
73 } while (nl != NULL); \
74 yylloc->end.lines(lines); \
75 yylloc->end.columns(left); \
83 yylloc->columns(yyleng); \
87 if (yyextra->commented_) { \
88 I(comment, Comment(Y), tk::Comment, hi::Comment); \
93 if (c >= '0' && c <= '9')
95 if (c >= 'a' && c <= 'f')
97 if (c >= 'A' && c <= 'F')
102 #define YY_INPUT(data, value, size) { \
103 if (yyextra->data_.eof()) \
106 yyextra->data_.read(data, size); \
107 size_t copy(yyextra->data_.gcount()); \
108 value = copy == 0 ? YY_NULL : copy; \
116 %option bison-locations
124 Exponent [eE][+-]?[0-9]+
125 Escape \\[\\'"bfnrtv]|\\0|\\x[0-9a-fA-F]{2}|\\u[0-9a-fA-F]{4}|\\\n
127 IdentifierStart [a-zA-Z$_]
128 IdentifierPart [a-zA-Z$_0-9]
131 BackslashSequence \\{NonTerminator}
132 RegularExpressionFirstChar [^\n*\\/]|{BackslashSequence}
133 RegularExpressionChar [^\n\\/]|{BackslashSequence}
134 RegularExpressionFlags {IdentifierPart}*
135 RegularExpressionChars {RegularExpressionChar}*
136 RegularExpressionBody {RegularExpressionFirstChar}{RegularExpressionChars}
139 XMLNameStart [a-zA-Z_:]
140 XMLNamePart [a-zA-Z0-9.-_:]
141 XMLName {XMLNameStart}{XMLNamePart}*
154 <RegExp>\/{RegularExpressionBody}\/{RegularExpressionFlags} L C I(literal, RegEx(Y), tk::RegularExpressionLiteral, hi::Constant);
158 /* http://ostermiller.org/findcomment.html */
159 /* XXX: unify these two rules using !? */
160 \/\*!([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\/ V() C I(comment, Comment(Y), tk::Comment, hi::Comment);
161 \/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\/ V(N) M
164 <RegExp>"<>" L F(tk::LeftRight, hi::Structure);
165 <XMLContent>"</>" L F(tk::LeftSlashRight, hi::Structure);
167 <RegExp,XMLContent>\<!\[CDATA\[(\n|[^[]|\[[^[]|\[\[[^>])*]]> V() F(tk::XMLCDATA, hi::Constant);
168 <RegExp,XMLContent>\<!--(\n|[^-]|-[^-])*--> V() F(tk::XMLComment, hi::Comment);
169 <RegExp,XMLContent>\<?(\n|[^?]|\?[^>])*?> V() F(tk::XMLPI, hi::Meta);
171 <XMLTag>"=" L F(tk::Equal, hi::Structure);
172 <XMLTag>">" L F(tk::Right, hi::Structure);
173 <XMLTag>"/>" L F(tk::SlashRight, hi::Structure);
174 <XMLTag>"{" L F(tk::OpenBrace, hi::Structure);
176 <XMLTag>\"(\n|[^"])*\"|'(\n|[^'])*' V() F(tk::XMLAttributeValue, hi::Constant);
177 <XMLTag>{XMLName} L F(tk::XMLName, hi::Identifier);
178 <XMLTag>[ \t\r\n] V() F(tk::XMLWhitespace, hi::Nothing);
180 <XMLContent>"{" L F(tk::OpenBrace, hi::Structure);
181 <XMLContent>"<" L F(tk::Left, hi::Structure);
182 <XMLContent>"</" L F(tk::LeftSlash, hi::Structure);
185 "..." L C F(tk::PeriodPeriodPeriod, hi::Meta);
188 "::" L C F(tk::ColonColon, hi::Operator);
189 ".." L C F(tk::PeriodPeriod, hi::Operator);
192 @begin E4X ObjectiveC
193 "@" L C F(tk::At, hi::Operator);
196 "&" L C F(tk::Ampersand, hi::Operator);
197 "&&" L C F(tk::AmpersandAmpersand, hi::Operator);
198 "&=" L C F(tk::AmpersandEqual, hi::Operator);
199 "^" L C F(tk::Carrot, hi::Operator);
200 "^=" L C F(tk::CarrotEqual, hi::Operator);
201 "=" L C F(tk::Equal, hi::Operator);
202 "==" L C F(tk::EqualEqual, hi::Operator);
203 "===" L C F(tk::EqualEqualEqual, hi::Operator);
204 "=>" L C F(tk::EqualRight, hi::Operator);
205 "!" L C F(tk::Exclamation, hi::Operator);
206 "!=" L C F(tk::ExclamationEqual, hi::Operator);
207 "!==" L C F(tk::ExclamationEqualEqual, hi::Operator);
208 "-" L C F(tk::Hyphen, hi::Operator);
209 "-=" L C F(tk::HyphenEqual, hi::Operator);
210 "--" L C F(yylval->newline_ ? tk::HyphenHyphen_ : tk::HyphenHyphen, hi::Operator);
211 "->" L C F(tk::HyphenRight, hi::Operator);
212 "<" L C F(tk::Left, hi::Operator);
213 "<=" L C F(tk::LeftEqual, hi::Operator);
214 "<<" L C F(tk::LeftLeft, hi::Operator);
215 "<<=" L C F(tk::LeftLeftEqual, hi::Operator);
216 "%" L C F(tk::Percent, hi::Operator);
217 "%=" L C F(tk::PercentEqual, hi::Operator);
218 "." L C F(tk::Period, hi::Operator);
219 "|" L C F(tk::Pipe, hi::Operator);
220 "|=" L C F(tk::PipeEqual, hi::Operator);
221 "||" L C F(tk::PipePipe, hi::Operator);
222 "+" L C F(tk::Plus, hi::Operator);
223 "+=" L C F(tk::PlusEqual, hi::Operator);
224 "++" L C F(yylval->newline_ ? tk::PlusPlus_ : tk::PlusPlus, hi::Operator);
225 ">" L C F(tk::Right, hi::Operator);
226 ">=" L C F(tk::RightEqual, hi::Operator);
227 ">>" L C F(tk::RightRight, hi::Operator);
228 ">>=" L C F(tk::RightRightEqual, hi::Operator);
229 ">>>" L C F(tk::RightRightRight, hi::Operator);
230 ">>>=" L C F(tk::RightRightRightEqual, hi::Operator);
231 "*" L C F(tk::Star, hi::Operator);
232 "*=" L C F(tk::StarEqual, hi::Operator);
233 "~" L C F(tk::Tilde, hi::Operator);
235 <Div>"/" L C F(tk::Slash, hi::Operator);
236 <Div>"/=" L C F(tk::SlashEqual, hi::Operator);
238 ":" L C F(tk::Colon, hi::Structure);
239 "," L C F(tk::Comma, hi::Structure);
240 "?" L C F(tk::Question, hi::Structure);
241 ";" L C F(tk::SemiColon, hi::Structure);
243 "(" L C F(tk::OpenParen, hi::Structure);
244 ")" L C F(tk::CloseParen, hi::Structure);
246 "{" L C F(yyextra->no_.OpenBrace ? tk::OpenBrace__ : yylval->newline_ ? tk::OpenBrace_ : tk::OpenBrace, hi::Structure);
247 "}" L C F(tk::CloseBrace, hi::Structure);
249 "[" L C F(tk::OpenBracket, hi::Structure);
250 "]" L C F(tk::CloseBracket, hi::Structure);
253 "@class" L C F(tk::AtClass, hi::Meta);
257 "@encode" L C F(tk::AtEncode, hi::Meta);
258 "@end" L C F(tk::AtEnd, hi::Meta);
259 "@implementation" L C F(yyextra->no_.AtImplementation ? tk::AtImplementation_ : tk::AtImplementation, hi::Meta);
260 "@import" L C F(tk::AtImport, hi::Meta);
261 "@selector" L C F(tk::AtSelector, hi::Meta);
263 "NULL" L C I(identifier, Identifier("NULL"), tk::Identifier_, hi::Constant);
264 "nil" L C I(identifier, Identifier("nil"), tk::Identifier_, hi::Constant);
265 "YES" L C I(identifier, Identifier("YES"), tk::Identifier_, hi::Constant);
266 "NO" L C I(identifier, Identifier("NO"), tk::Identifier_, hi::Constant);
269 "undefined" L C I(identifier, Identifier("undefined"), tk::Identifier_, hi::Operator);
271 "false" L C I(false, False(), tk::False, hi::Constant);
272 "null" L C I(null, Null(), tk::Null, hi::Constant);
273 "true" L C I(true, True(), tk::True, hi::Constant);
275 "auto" L C I(word, Word("auto"), tk::Auto, hi::Meta);
276 "break" L R I(word, Word("break"), tk::Break, hi::Control);
277 "case" L C I(word, Word("case"), tk::Case, hi::Control);
278 "catch" L C I(word, Word("catch"), tk::Catch, hi::Control);
279 "continue" L R I(word, Word("continue"), tk::Continue, hi::Control);
280 "default" L C I(word, Word("default"), tk::Default, hi::Control);
281 "delete" L C I(word, Word("delete"), tk::Delete, hi::Operator);
282 "do" L C I(word, Word("do"), tk::Do, hi::Control);
283 "else" L C I(word, Word("else"), tk::Else, hi::Control);
284 "finally" L C I(word, Word("finally"), tk::Finally, hi::Control);
285 "for" L C I(word, Word("for"), tk::For, hi::Control);
286 "function" L C I(word, Word("function"), yyextra->no_.Function ? tk::Function_ : tk::Function, hi::Meta);
287 "if" L C I(word, Word("if"), tk::If, hi::Control);
288 "in" L C I(word, Word("in"), yyextra->in_.top() ? tk::In_ : tk::In, hi::Operator);
289 "instanceof" L C I(word, Word("instanceof"), tk::InstanceOf, hi::Operator);
290 "new" L C I(word, Word("new"), tk::New, hi::Operator);
291 "return" L R I(word, Word("return"), tk::Return, hi::Control);
292 "switch" L C I(word, Word("switch"), tk::Switch, hi::Control);
293 "this" L C I(this, This(), tk::This, hi::Constant);
294 "throw" L R I(word, Word("throw"), tk::Throw, hi::Control);
295 "try" L C I(word, Word("try"), tk::Try, hi::Control);
296 "typeof" L C I(word, Word("typeof"), tk::TypeOf, hi::Operator);
297 "var" L C I(word, Word("var"), tk::Var, hi::Meta);
298 "void" L C I(word, Word("void"), tk::Void, hi::Operator);
299 "while" L C I(word, Word("while"), tk::While, hi::Control);
300 "with" L C I(word, Word("with"), tk::With, hi::Control);
302 "debugger" L C I(word, Word("debugger"), tk::Debugger, hi::Meta);
304 "const" L C I(word, Word("const"), tk::Const, hi::Meta);
306 "class" L C I(word, Word("class"), tk::Class, hi::Meta);
307 "enum" L C I(word, Word("enum"), tk::Enum, hi::Meta);
308 "export" L C I(word, Word("export"), tk::Export, hi::Meta);
309 "extends" L C I(word, Word("extends"), tk::Extends, hi::Meta);
310 "import" L C I(word, Word("import"), tk::Import, hi::Meta);
311 "super" L C I(word, Word("super"), tk::Super, hi::Constant);
313 "implements" L C I(identifier, Identifier("implements"), tk::Implements, hi::Meta);
314 "interface" L C I(identifier, Identifier("interface"), tk::Interface, hi::Meta);
315 "package" L C I(identifier, Identifier("package"), tk::Package, hi::Meta);
316 "private" L C I(identifier, Identifier("private"), tk::Private, hi::Meta);
317 "protected" L C I(identifier, Identifier("protected"), tk::Protected, hi::Meta);
318 "public" L C I(identifier, Identifier("public"), tk::Public, hi::Meta);
319 "static" L C I(identifier, Identifier("static"), tk::Static, hi::Meta);
321 "abstract" L C I(identifier, Identifier("abstract"), tk::Abstract, hi::Meta);
322 "boolean" L C I(identifier, Identifier("boolean"), tk::Boolean, hi::Type);
323 "byte" L C I(identifier, Identifier("byte"), tk::Byte, hi::Type);
324 "char" L C I(identifier, Identifier("char"), tk::Char, hi::Type);
325 "double" L C I(identifier, Identifier("double"), tk::Double, hi::Type);
326 "final" L C I(identifier, Identifier("final"), tk::Final, hi::Meta);
327 "float" L C I(identifier, Identifier("float"), tk::Float, hi::Type);
328 "goto" L C I(identifier, Identifier("goto"), tk::Goto, hi::Control);
329 "int" L C I(identifier, Identifier("int"), tk::Int, hi::Type);
330 "long" L C I(identifier, Identifier("long"), tk::Long, hi::Type);
331 "native" L C I(identifier, Identifier("native"), tk::Native, hi::Meta);
332 "short" L C I(identifier, Identifier("short"), tk::Short, hi::Type);
333 "synchronized" L C I(identifier, Identifier("synchronized"), tk::Synchronized, hi::Meta);
334 "throws" L C I(identifier, Identifier("throws"), tk::Throws, hi::Meta);
335 "transient" L C I(identifier, Identifier("transient"), tk::Transient, hi::Meta);
336 "volatile" L C I(identifier, Identifier("volatile"), tk::Volatile, hi::Meta);
338 "let" L C I(identifier, Identifier("let"), tk::Let, hi::Meta);
339 "yield" L C I(identifier, Identifier("yield"), tk::Yield, hi::Control);
341 "each" L C I(identifier, Identifier("each"), tk::Each, hi::Control);
342 "of" L C I(identifier, Identifier("of"), tk::Of, hi::Operator);
345 "namespace" L C I(identifier, Identifier("namespace"), tk::Namespace, hi::Meta);
346 "xml" L C I(identifier, Identifier("xml"), tk::XML, hi::Meta);
349 {IdentifierStart}{IdentifierPart}* L C I(identifier, Identifier(Y), tk::Identifier_, hi::Identifier);
351 (\.[0-9]+|(0|[1-9][0-9]*)(\.[0-9]*)?){Exponent}? L C I(number, Number(strtod(yytext, NULL)), tk::NumericLiteral, hi::Constant);
353 0[xX][0-9a-fA-F]+ L C I(number, Number(strtoull(yytext + 2, NULL, 16)), tk::NumericLiteral, hi::Constant);
354 0[0-7]+ L C I(number, Number(strtoull(yytext + 1, NULL, 8)), tk::NumericLiteral, hi::Constant);
355 0[bB][0-1]+ L C I(number, Number(strtoull(yytext + 2, NULL, 2)), tk::NumericLiteral, hi::Constant);
357 \"([^"\\\n]|{Escape})*\"|'([^'\\\n]|{Escape})*' L C {
358 char *value(A char[yyleng]);
361 for (yy_size_t i(1), e(yyleng - 1); i != e; ++i) {
362 char next(yytext[i]);
364 if (yytext[i] == '\\')
365 switch (next = yytext[++i]) {
367 case '\\': next = '\\'; break;
368 case '\'': next = '\''; break;
369 case '"': next = '"'; break;
370 case 'b': next = '\b'; break;
371 case 'f': next = '\f'; break;
372 case 'n': next = '\n'; break;
373 case 'r': next = '\r'; break;
374 case 't': next = '\t'; break;
375 case 'v': next = '\v'; break;
376 case '0': next = '\0'; break;
379 next = H(yytext[i + 1]) << 4 | H(yytext[i + 2]);
388 I(string, String(value, local - value), tk::StringLiteral, hi::Constant);
391 \r?\n|\r|\xe2\x80[\xa8\xa9] yylloc->end.lines(); yylloc->step(); N
395 <<EOF>> if (yyextra->auto_) { yyextra->auto_ = false; F(tk::AutoComplete, hi::Nothing); } L yyterminate();
398 CYDriver::Error error;
399 error.location_ = *yylloc;
400 error.message_ = "syntax error, unknown token";
401 yyextra->errors_.push_back(error);
407 void CYDriver::ScannerInit() {
408 cylex_init(&scanner_);
409 cyset_extra(this, scanner_);
412 void CYDriver::ScannerDestroy() {
413 cylex_destroy(scanner_);
416 CYDriver::Condition CYDriver::GetCondition() {
417 switch (yy_top_state(scanner_)) {
419 return RegExpCondition;
422 return XMLContentCondition;
424 return XMLTagCondition;
431 void CYDriver::SetCondition(Condition condition) {
432 struct yyguts_t *yyg(reinterpret_cast<struct yyguts_t *>(scanner_));
435 case RegExpCondition:
439 case XMLContentCondition:
442 case XMLTagCondition:
451 void CYDriver::PushCondition(Condition condition) {
453 case RegExpCondition:
454 yy_push_state(RegExp, scanner_);
457 case XMLContentCondition:
458 yy_push_state(XMLContent, scanner_);
460 case XMLTagCondition:
461 yy_push_state(XMLTag, scanner_);
469 void CYDriver::PopCondition() {
470 yy_pop_state(scanner_);