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

Unified Diff: runtime/vm/jit_optimizer.h

Issue 2254053002: Move inlining of recognized SIMD methods to the flow-graph inliner. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: add missing guard for speculative inlining Created 4 years, 4 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: runtime/vm/jit_optimizer.h
diff --git a/runtime/vm/jit_optimizer.h b/runtime/vm/jit_optimizer.h
index ebddc78b27c43e55b3c9b8e973069f4e4abc2d6a..5d5311103ba84f621f1108ea9d03a6fda569baaa 100644
--- a/runtime/vm/jit_optimizer.h
+++ b/runtime/vm/jit_optimizer.h
@@ -69,18 +69,6 @@ class JitOptimizer : public FlowGraphVisitor {
const ICData& unary_ic_data);
bool TryInlineInstanceMethod(InstanceCallInstr* call);
- bool TryInlineFloat32x4Constructor(StaticCallInstr* call,
- MethodRecognizer::Kind recognized_kind);
- bool TryInlineFloat64x2Constructor(StaticCallInstr* call,
- MethodRecognizer::Kind recognized_kind);
- bool TryInlineInt32x4Constructor(StaticCallInstr* call,
- MethodRecognizer::Kind recognized_kind);
- bool TryInlineFloat32x4Method(InstanceCallInstr* call,
- MethodRecognizer::Kind recognized_kind);
- bool TryInlineFloat64x2Method(InstanceCallInstr* call,
- MethodRecognizer::Kind recognized_kind);
- bool TryInlineInt32x4Method(InstanceCallInstr* call,
- MethodRecognizer::Kind recognized_kind);
void ReplaceWithInstanceOf(InstanceCallInstr* instr);
bool TypeCheckAsClassEquality(const AbstractType& type);
void ReplaceWithTypeCast(InstanceCallInstr* instr);

Powered by Google App Engine
This is Rietveld 408576698