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

Unified Diff: src/code-stubs.cc

Issue 1999003002: WIP: Register allocator crash repro. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/code-stubs.h ('k') | src/heap/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index e6a9d78f05c3476c8a67ca2ad264446754d837d5..584116fc4e489e449b818f7536ce4037bdfa5773 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -4278,6 +4278,16 @@ void TypeofStub::GenerateAheadOfTime(Isolate* isolate) {
}
// static
+void BoomStub::GenerateAssembly(CodeStubAssembler* assembler) const {
+ assembler->Boom();
+}
+
+void BoomStub::GenerateAheadOfTime(Isolate* isolate) {
+ BoomStub stub(isolate);
+ stub.GetCode();
+}
+
+// static
compiler::Node* HasPropertyStub::Generate(CodeStubAssembler* assembler,
compiler::Node* key,
compiler::Node* object,
« no previous file with comments | « src/code-stubs.h ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698