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

Unified Diff: src/hydrogen.h

Issue 19492007: Generate KeyedLoadDictionaryElementStub with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add V8_OVERRIDE Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: src/hydrogen.h
diff --git a/src/hydrogen.h b/src/hydrogen.h
index b5046bd00190a46b4ae0aecc5c804b10989afc54..e94fd74310cdbe6c31f55860cd2caf96dd5a0466 100644
--- a/src/hydrogen.h
+++ b/src/hydrogen.h
@@ -1450,6 +1450,10 @@ class HGraphBuilder {
void JoinContinuation(HIfContinuation* continuation);
void Then();
+ void ThenDeopt(const char* reason) {
+ Then();
+ Deopt(reason);
+ }
void Else();
void End();
@@ -1624,6 +1628,8 @@ class HGraphBuilder {
ElementsKind kind,
int length);
+ HValue* BuildElementIndexHash(HValue* index);
+
void BuildCompareNil(
HValue* value,
Handle<Type> type,

Powered by Google App Engine
This is Rietveld 408576698