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

Unified Diff: src/compiler/verifier.cc

Issue 768543002: [WIP] TrapHandler 2014/11/27. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « src/compiler/typer.cc ('k') | src/d8.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/verifier.cc
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
index b30b72786b9beaf574dd09d2bd0ec4ebf888cf09..693eb5c186bdfcca959d18e3f3bccafe061ca899 100644
--- a/src/compiler/verifier.cc
+++ b/src/compiler/verifier.cc
@@ -656,6 +656,19 @@ void Verifier::Visitor::Pre(Node* node) {
CheckNotTyped(node);
break;
+ case IrOpcode::kLoadBuffer:
+ break;
+ case IrOpcode::kStoreBuffer:
+ CheckNotTyped(node);
+ break;
+ case IrOpcode::kBoundsCheck:
+ // (Integral32, Unsigned32) -> Unsigned32
+ // TODO(rossberg): Can we haz something that works in this file?!$*#@
+ // CheckValueInputIs(node, 0, Type::Integral32());
+ // CheckValueInputIs(node, 1, Type::Unsigned32());
+ // CheckUpperIs(node, Type::Unsigned32());
+ break;
+
// Machine operators
// -----------------------
case IrOpcode::kLoad:
@@ -975,6 +988,7 @@ void ScheduleVerifier::Run(Schedule* schedule) {
}
}
}
-}
-}
-} // namespace v8::internal::compiler
+
+} // namespace compiler
+} // namespace internal
+} // namespace v8
« no previous file with comments | « src/compiler/typer.cc ('k') | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698