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

Side by Side Diff: src/serialize.cc

Issue 1635001: Make not sucking at regexp the default... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 8 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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 19, 410 19,
411 "compare_doubles"); 411 "compare_doubles");
412 Add(ExternalReference::compile_array_pop_call().address(), 412 Add(ExternalReference::compile_array_pop_call().address(),
413 UNCLASSIFIED, 413 UNCLASSIFIED,
414 20, 414 20,
415 "compile_array_pop"); 415 "compile_array_pop");
416 Add(ExternalReference::compile_array_push_call().address(), 416 Add(ExternalReference::compile_array_push_call().address(),
417 UNCLASSIFIED, 417 UNCLASSIFIED,
418 21, 418 21,
419 "compile_array_push"); 419 "compile_array_push");
420 #ifdef V8_NATIVE_REGEXP 420 #ifndef V8_INTERPRETED_REGEXP
421 Add(ExternalReference::re_case_insensitive_compare_uc16().address(), 421 Add(ExternalReference::re_case_insensitive_compare_uc16().address(),
422 UNCLASSIFIED, 422 UNCLASSIFIED,
423 22, 423 22,
424 "NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()"); 424 "NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()");
425 Add(ExternalReference::re_check_stack_guard_state().address(), 425 Add(ExternalReference::re_check_stack_guard_state().address(),
426 UNCLASSIFIED, 426 UNCLASSIFIED,
427 23, 427 23,
428 "RegExpMacroAssembler*::CheckStackGuardState()"); 428 "RegExpMacroAssembler*::CheckStackGuardState()");
429 Add(ExternalReference::re_grow_stack().address(), 429 Add(ExternalReference::re_grow_stack().address(),
430 UNCLASSIFIED, 430 UNCLASSIFIED,
431 24, 431 24,
432 "NativeRegExpMacroAssembler::GrowStack()"); 432 "NativeRegExpMacroAssembler::GrowStack()");
433 Add(ExternalReference::re_word_character_map().address(), 433 Add(ExternalReference::re_word_character_map().address(),
434 UNCLASSIFIED, 434 UNCLASSIFIED,
435 25, 435 25,
436 "NativeRegExpMacroAssembler::word_character_map"); 436 "NativeRegExpMacroAssembler::word_character_map");
437 #endif 437 #endif // V8_INTERPRETED_REGEXP
438 // Keyed lookup cache. 438 // Keyed lookup cache.
439 Add(ExternalReference::keyed_lookup_cache_keys().address(), 439 Add(ExternalReference::keyed_lookup_cache_keys().address(),
440 UNCLASSIFIED, 440 UNCLASSIFIED,
441 26, 441 26,
442 "KeyedLookupCache::keys()"); 442 "KeyedLookupCache::keys()");
443 Add(ExternalReference::keyed_lookup_cache_field_offsets().address(), 443 Add(ExternalReference::keyed_lookup_cache_field_offsets().address(),
444 UNCLASSIFIED, 444 UNCLASSIFIED,
445 27, 445 27,
446 "KeyedLookupCache::field_offsets()"); 446 "KeyedLookupCache::field_offsets()");
447 Add(ExternalReference::transcendental_cache_array_address().address(), 447 Add(ExternalReference::transcendental_cache_array_address().address(),
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 fullness_[space] = RoundUp(fullness_[space], Page::kPageSize); 1366 fullness_[space] = RoundUp(fullness_[space], Page::kPageSize);
1367 } 1367 }
1368 } 1368 }
1369 int allocation_address = fullness_[space]; 1369 int allocation_address = fullness_[space];
1370 fullness_[space] = allocation_address + size; 1370 fullness_[space] = allocation_address + size;
1371 return allocation_address; 1371 return allocation_address;
1372 } 1372 }
1373 1373
1374 1374
1375 } } // namespace v8::internal 1375 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698