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

Unified Diff: src/code-stubs.cc

Issue 2570213002: [stubs] Enable machine graph verification for CodeStubAssembler and friends by default in debug mode (Closed)
Patch Set: Created 4 years 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/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 9ad51574c162ce65895e3025119957515ddefc8d..5b83bce8baa91dcb68bd4f10a2871bc310cc40d6 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -437,10 +437,7 @@ Handle<Code> TurboFanCodeStub::GenerateCode() {
compiler::CodeAssemblerState state(isolate(), &zone, descriptor,
GetCodeFlags(), name);
GenerateAssembly(&state);
- // TODO(ishell): enable verification once all issues are fixed.
- // Enable verification only in mksnapshot.
- bool verify_graph = FLAG_csa_verify && FLAG_startup_blob != nullptr;
- return compiler::CodeAssembler::GenerateCode(&state, verify_graph);
+ return compiler::CodeAssembler::GenerateCode(&state);
}
#define ACCESSOR_ASSEMBLER(Name) \

Powered by Google App Engine
This is Rietveld 408576698