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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 153823003: Use stability to only conditionally flush information from the CheckMaps table. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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 3087 matching lines...) Expand 10 before | Expand all | Expand 10 after
3098 } 3098 }
3099 3099
3100 3100
3101 HCheckMaps* HCheckMaps::New(Zone* zone, 3101 HCheckMaps* HCheckMaps::New(Zone* zone,
3102 HValue* context, 3102 HValue* context,
3103 HValue* value, 3103 HValue* value,
3104 Handle<Map> map, 3104 Handle<Map> map,
3105 CompilationInfo* info, 3105 CompilationInfo* info,
3106 HValue* typecheck) { 3106 HValue* typecheck) {
3107 HCheckMaps* check_map = new(zone) HCheckMaps(value, zone, typecheck); 3107 HCheckMaps* check_map = new(zone) HCheckMaps(value, zone, typecheck);
3108 check_map->Add(map, zone); 3108 check_map->Add(map, info, zone);
3109 if (map->CanOmitMapChecks() && 3109 if (map->CanOmitMapChecks() &&
3110 value->IsConstant() && 3110 value->IsConstant() &&
3111 HConstant::cast(value)->HasMap(map)) { 3111 HConstant::cast(value)->HasMap(map)) {
3112 // TODO(titzer): collect dependent map checks into a list. 3112 // TODO(titzer): collect dependent map checks into a list.
3113 check_map->omit_ = true; 3113 check_map->omit_ = true;
3114 if (map->CanTransition()) { 3114 if (map->CanTransition()) {
3115 map->AddDependentCompilationInfo( 3115 map->AddDependentCompilationInfo(
3116 DependentCode::kPrototypeCheckGroup, info); 3116 DependentCode::kPrototypeCheckGroup, info);
3117 } 3117 }
3118 } 3118 }
(...skipping 1373 matching lines...) Expand 10 before | Expand all | Expand 10 after
4492 break; 4492 break;
4493 case kExternalMemory: 4493 case kExternalMemory:
4494 stream->Add("[external-memory]"); 4494 stream->Add("[external-memory]");
4495 break; 4495 break;
4496 } 4496 }
4497 4497
4498 stream->Add("@%d", offset()); 4498 stream->Add("@%d", offset());
4499 } 4499 }
4500 4500
4501 } } // namespace v8::internal 4501 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698