Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: test/cctest/test-parsing.cc

Issue 231073002: WIP: Parser: delay string internalization. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: internalizing better Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 19 matching lines...) Expand all
30 #include <string.h> 30 #include <string.h>
31 31
32 #include "v8.h" 32 #include "v8.h"
33 33
34 #include "cctest.h" 34 #include "cctest.h"
35 #include "compiler.h" 35 #include "compiler.h"
36 #include "execution.h" 36 #include "execution.h"
37 #include "isolate.h" 37 #include "isolate.h"
38 #include "objects.h" 38 #include "objects.h"
39 #include "parser.h" 39 #include "parser.h"
40 #include "parser-symbol-table.h"
40 #include "preparser.h" 41 #include "preparser.h"
41 #include "scanner-character-streams.h" 42 #include "scanner-character-streams.h"
42 #include "token.h" 43 #include "token.h"
43 #include "utils.h" 44 #include "utils.h"
44 45
45 TEST(ScanKeywords) { 46 TEST(ScanKeywords) {
46 struct KeywordToken { 47 struct KeywordToken {
47 const char* keyword; 48 const char* keyword;
48 i::Token::Value token; 49 i::Token::Value token;
49 }; 50 };
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 reinterpret_cast<const i::byte*>(re_source), 790 reinterpret_cast<const i::byte*>(re_source),
790 static_cast<unsigned>(strlen(re_source))); 791 static_cast<unsigned>(strlen(re_source)));
791 i::HandleScope scope(CcTest::i_isolate()); 792 i::HandleScope scope(CcTest::i_isolate());
792 i::Scanner scanner(CcTest::i_isolate()->unicode_cache()); 793 i::Scanner scanner(CcTest::i_isolate()->unicode_cache());
793 scanner.Initialize(&stream); 794 scanner.Initialize(&stream);
794 795
795 i::Token::Value start = scanner.peek(); 796 i::Token::Value start = scanner.peek();
796 CHECK(start == i::Token::DIV || start == i::Token::ASSIGN_DIV); 797 CHECK(start == i::Token::DIV || start == i::Token::ASSIGN_DIV);
797 CHECK(scanner.ScanRegExpPattern(start == i::Token::ASSIGN_DIV)); 798 CHECK(scanner.ScanRegExpPattern(start == i::Token::ASSIGN_DIV));
798 scanner.Next(); // Current token is now the regexp literal. 799 scanner.Next(); // Current token is now the regexp literal.
799 i::Handle<i::String> val = 800 i::ParserSymbolTable symbol_table;
800 scanner.AllocateInternalizedString(CcTest::i_isolate()); 801 symbol_table.AlwaysInternalize(CcTest::i_isolate());
802 i::Handle<i::String> val = scanner.CurrentString(&symbol_table)->string();
801 i::DisallowHeapAllocation no_alloc; 803 i::DisallowHeapAllocation no_alloc;
802 i::String::FlatContent content = val->GetFlatContent(); 804 i::String::FlatContent content = val->GetFlatContent();
803 CHECK(content.IsAscii()); 805 CHECK(content.IsAscii());
804 i::Vector<const uint8_t> actual = content.ToOneByteVector(); 806 i::Vector<const uint8_t> actual = content.ToOneByteVector();
805 for (int i = 0; i < actual.length(); i++) { 807 for (int i = 0; i < actual.length(); i++) {
806 CHECK_NE('\0', expected[i]); 808 CHECK_NE('\0', expected[i]);
807 CHECK_EQ(expected[i], actual[i]); 809 CHECK_EQ(expected[i], actual[i]);
808 } 810 }
809 } 811 }
810 812
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 } 1142 }
1141 } 1143 }
1142 1144
1143 1145
1144 i::Handle<i::String> FormatMessage(i::ScriptData* data) { 1146 i::Handle<i::String> FormatMessage(i::ScriptData* data) {
1145 i::Isolate* isolate = CcTest::i_isolate(); 1147 i::Isolate* isolate = CcTest::i_isolate();
1146 i::Factory* factory = isolate->factory(); 1148 i::Factory* factory = isolate->factory();
1147 const char* message = data->BuildMessage(); 1149 const char* message = data->BuildMessage();
1148 i::Handle<i::String> format = v8::Utils::OpenHandle( 1150 i::Handle<i::String> format = v8::Utils::OpenHandle(
1149 *v8::String::NewFromUtf8(CcTest::isolate(), message)); 1151 *v8::String::NewFromUtf8(CcTest::isolate(), message));
1150 i::Vector<const char*> args = data->BuildArgs(); 1152 const char* arg = data->BuildArg();
1151 i::Handle<i::JSArray> args_array = factory->NewJSArray(args.length()); 1153 i::Handle<i::JSArray> args_array = factory->NewJSArray(arg != NULL ? 1 : 0);
1152 for (int i = 0; i < args.length(); i++) { 1154 if (arg != NULL) {
1153 i::JSArray::SetElement( 1155 i::JSArray::SetElement(
1154 args_array, i, v8::Utils::OpenHandle(*v8::String::NewFromUtf8( 1156 args_array, 0,
1155 CcTest::isolate(), args[i])), 1157 v8::Utils::OpenHandle(*v8::String::NewFromUtf8(CcTest::isolate(), arg)),
1156 NONE, i::SLOPPY).Check(); 1158 NONE, i::SLOPPY).Check();
1157 } 1159 }
1158 i::Handle<i::JSObject> builtins(isolate->js_builtins_object()); 1160 i::Handle<i::JSObject> builtins(isolate->js_builtins_object());
1159 i::Handle<i::Object> format_fun = i::Object::GetProperty( 1161 i::Handle<i::Object> format_fun = i::Object::GetProperty(
1160 isolate, builtins, "FormatMessage").ToHandleChecked(); 1162 isolate, builtins, "FormatMessage").ToHandleChecked();
1161 i::Handle<i::Object> arg_handles[] = { format, args_array }; 1163 i::Handle<i::Object> arg_handles[] = { format, args_array };
1162 i::Handle<i::Object> result = i::Execution::Call( 1164 i::Handle<i::Object> result = i::Execution::Call(
1163 isolate, format_fun, builtins, 2, arg_handles).ToHandleChecked(); 1165 isolate, format_fun, builtins, 2, arg_handles).ToHandleChecked();
1164 CHECK(result->IsString()); 1166 CHECK(result->IsString());
1165 for (int i = 0; i < args.length(); i++) { 1167 i::DeleteArray(arg);
1166 i::DeleteArray(args[i]);
1167 }
1168 i::DeleteArray(args.start());
1169 i::DeleteArray(message); 1168 i::DeleteArray(message);
1170 return i::Handle<i::String>::cast(result); 1169 return i::Handle<i::String>::cast(result);
1171 } 1170 }
1172 1171
1173 1172
1174 enum ParserFlag { 1173 enum ParserFlag {
1175 kAllowLazy, 1174 kAllowLazy,
1176 kAllowNativesSyntax, 1175 kAllowNativesSyntax,
1177 kAllowHarmonyScoping, 1176 kAllowHarmonyScoping,
1178 kAllowModules, 1177 kAllowModules,
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
2452 RunParserSyncTest(assignment_context_data, bad_statement_data_common, kError); 2451 RunParserSyncTest(assignment_context_data, bad_statement_data_common, kError);
2453 RunParserSyncTest(assignment_context_data, bad_statement_data_for_assignment, 2452 RunParserSyncTest(assignment_context_data, bad_statement_data_for_assignment,
2454 kError); 2453 kError);
2455 2454
2456 RunParserSyncTest(prefix_context_data, good_statement_data, kSuccess); 2455 RunParserSyncTest(prefix_context_data, good_statement_data, kSuccess);
2457 RunParserSyncTest(prefix_context_data, bad_statement_data_common, kError); 2456 RunParserSyncTest(prefix_context_data, bad_statement_data_common, kError);
2458 2457
2459 RunParserSyncTest(postfix_context_data, good_statement_data, kSuccess); 2458 RunParserSyncTest(postfix_context_data, good_statement_data, kSuccess);
2460 RunParserSyncTest(postfix_context_data, bad_statement_data_common, kError); 2459 RunParserSyncTest(postfix_context_data, bad_statement_data_common, kError);
2461 } 2460 }
OLDNEW
« src/scopes.cc ('K') | « src/variables.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698