Chromium Code Reviews| Index: runtime/vm/intermediate_language_ia32.cc |
| =================================================================== |
| --- runtime/vm/intermediate_language_ia32.cc (revision 8082) |
| +++ runtime/vm/intermediate_language_ia32.cc (working copy) |
| @@ -14,11 +14,6 @@ |
| #define DEFINE_UNIMPLEMENTED(ShortName, ClassName) \ |
| - LocationSummary* ClassName::MakeLocationSummary() const { \ |
| - UNIMPLEMENTED(); \ |
| - return NULL; \ |
| - } \ |
| - \ |
| void ClassName::EmitNativeCode(FlowGraphCompiler* compiler) { \ |
|
Florian Schneider
2012/05/30 15:06:24
May also add the empty definitions of EmitNativeCo
srdjan
2012/05/30 16:31:19
Done.
|
| UNIMPLEMENTED(); \ |
| } |
| @@ -30,6 +25,194 @@ |
| } |
| +LocationSummary* CurrentContextComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StoreContextComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StrictCompareComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* ClosureCallComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* InstanceCallComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StaticCallComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* LoadLocalComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StoreLocalComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* ConstantVal::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* UseVal::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* AssertAssignableComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* AssertBooleanComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* EqualityCompareComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* NativeCallComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StoreIndexedComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* InstanceSetterComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StaticSetterComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* LoadInstanceFieldComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StoreInstanceFieldComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* LoadStaticFieldComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StoreStaticFieldComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* BooleanNegateComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* InstanceOfComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* CreateArrayComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* CreateClosureComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* AllocateObjectComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* |
| +AllocateObjectWithBoundsCheckComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* LoadVMFieldComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* StoreVMFieldComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* InstantiateTypeArgumentsComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* |
| +ExtractConstructorTypeArgumentsComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* |
| +ExtractConstructorInstantiatorComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* AllocateContextComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* ChainContextComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* CloneContextComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* CatchEntryComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| +LocationSummary* BinaryOpComp::MakeLocationSummary() const { |
| + return NULL; |
| +} |
| + |
| + |
| } // namespace dart |
| #undef __ |