本文整理汇总了C++中VMFrame::GetPreviousFrame方法的典型用法代码示例。如果您正苦于以下问题:C++ VMFrame::GetPreviousFrame方法的具体用法?C++ VMFrame::GetPreviousFrame怎么用?C++ VMFrame::GetPreviousFrame使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VMFrame
的用法示例。
在下文中一共展示了VMFrame::GetPreviousFrame方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testCloneFrame
void CloneObjectsTest::testCloneFrame() {
VMSymbol* methodSymbol = GetUniverse()->NewSymbol("frameMethod");
VMMethod* method = GetUniverse()->NewMethod(methodSymbol, 0, 0);
VMFrame* orig = GetUniverse()->NewFrame(nullptr, method);
VMFrame* context = orig->Clone();
orig->SetContext(context);
VMInteger* dummyArg = GetUniverse()->NewInteger(1111);
orig->SetArgument(0, 0, dummyArg);
VMFrame* clone = orig->Clone();
CPPUNIT_ASSERT((intptr_t)orig != (intptr_t)clone);
CPPUNIT_ASSERT_EQUAL_MESSAGE("class differs!!", orig->clazz, clone->clazz);
CPPUNIT_ASSERT_EQUAL_MESSAGE("objectSize differs!!", orig->objectSize, clone->objectSize);
CPPUNIT_ASSERT_EQUAL_MESSAGE("numberOfFields differs!!", orig->numberOfFields, clone->numberOfFields);
CPPUNIT_ASSERT_EQUAL_MESSAGE("GetPreviousFrame differs!!", orig->GetPreviousFrame(), clone->GetPreviousFrame());
CPPUNIT_ASSERT_EQUAL_MESSAGE("GetContext differs!!", orig->GetContext(), clone->GetContext());
CPPUNIT_ASSERT_EQUAL_MESSAGE("numberOGetMethodfFields differs!!", orig->GetMethod(), clone->GetMethod());
//CPPUNIT_ASSERT_EQUAL_MESSAGE("GetStackPointer differs!!", orig->GetStackPointer(), clone->GetStackPointer());
CPPUNIT_ASSERT_EQUAL_MESSAGE("bytecodeIndex differs!!", orig->bytecodeIndex, clone->bytecodeIndex);
}