Oops, use #if instead of #ifdef
This commit is contained in:
@@ -57,7 +57,7 @@ static typelib_TypeClass cpp2uno_call(
|
||||
void ** gpreg, void ** fpreg, void ** ovrflw,
|
||||
sal_Int64 * pRegisterReturn /* space for register return */ )
|
||||
{
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "as far as cpp2uno_call\n");
|
||||
#endif
|
||||
|
||||
@@ -115,13 +115,13 @@ static typelib_TypeClass cpp2uno_call(
|
||||
typelib_TypeDescription * pParamTypeDescr = 0;
|
||||
TYPELIB_DANGER_GET( &pParamTypeDescr, rParam.pTypeRef );
|
||||
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "arg %d of %d\n", nPos, nParams);
|
||||
#endif
|
||||
|
||||
if (!rParam.bOut && bridges::cpp_uno::shared::isSimpleType( pParamTypeDescr ))
|
||||
{
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "simple\n");
|
||||
#endif
|
||||
|
||||
@@ -213,7 +213,7 @@ static typelib_TypeClass cpp2uno_call(
|
||||
}
|
||||
else // ptr to complex value | ref
|
||||
{
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "complex, ng is %d\n", ng);
|
||||
#endif
|
||||
void *pCppStack; //temporary stack pointer
|
||||
@@ -257,7 +257,7 @@ static typelib_TypeClass cpp2uno_call(
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "end of params\n");
|
||||
#endif
|
||||
|
||||
@@ -356,25 +356,25 @@ static typelib_TypeClass cpp_mediate(
|
||||
{
|
||||
nFunctionIndex &= 0x7fffffff;
|
||||
pThis = gpreg[1];
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "pThis is gpreg[1]\n");
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
pThis = gpreg[0];
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "pThis is gpreg[0]\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "pThis is %lx\n", pThis);
|
||||
#endif
|
||||
|
||||
pThis = static_cast< char * >(pThis) - nVtableOffset;
|
||||
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "pThis is now %lx\n", pThis);
|
||||
#endif
|
||||
|
||||
@@ -384,7 +384,7 @@ static typelib_TypeClass cpp_mediate(
|
||||
|
||||
typelib_InterfaceTypeDescription * pTypeDescr = pCppI->getTypeDescr();
|
||||
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "indexes are %d %d\n", nFunctionIndex, pTypeDescr->nMapFunctionIndexToMemberIndex);
|
||||
#endif
|
||||
|
||||
@@ -400,7 +400,7 @@ static typelib_TypeClass cpp_mediate(
|
||||
sal_Int32 nMemberPos = pTypeDescr->pMapFunctionIndexToMemberIndex[nFunctionIndex];
|
||||
OSL_ENSURE( nMemberPos < pTypeDescr->nAllMembers, "### illegal member index!" );
|
||||
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "members are %d %d\n", nMemberPos, pTypeDescr->nAllMembers);
|
||||
#endif
|
||||
|
||||
@@ -488,7 +488,7 @@ static typelib_TypeClass cpp_mediate(
|
||||
}
|
||||
default:
|
||||
{
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "screwed\n");
|
||||
#endif
|
||||
|
||||
@@ -500,7 +500,7 @@ static typelib_TypeClass cpp_mediate(
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "end of cpp_mediate\n");
|
||||
#endif
|
||||
return eRet;
|
||||
@@ -605,7 +605,7 @@ const int codeSnippetSize = 24;
|
||||
unsigned char * codeSnippet( unsigned char * code, sal_Int32 nFunctionIndex, sal_Int32 nVtableOffset,
|
||||
bool simpleRetType)
|
||||
{
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr,"in codeSnippet functionIndex is %x\n", nFunctionIndex);
|
||||
fprintf(stderr,"in codeSnippet vtableOffset is %x\n", nVtableOffset);
|
||||
#endif
|
||||
@@ -618,7 +618,7 @@ unsigned char * codeSnippet( unsigned char * code, sal_Int32 nFunctionIndex, sa
|
||||
void ** raw = (void **)&code[0];
|
||||
memcpy(raw, (char*) privateSnippetExecutor, 16);
|
||||
raw[2] = (void*) nOffsetAndIndex;
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "in: offset/index is %x %x %d, %lx\n",
|
||||
nFunctionIndex, nVtableOffset, !simpleRetType, raw[2]);
|
||||
#endif
|
||||
@@ -671,7 +671,7 @@ unsigned char * bridges::cpp_uno::shared::VtableFactory::addLocalFunctions(
|
||||
{
|
||||
(*slots) -= functionCount;
|
||||
Slot * s = *slots;
|
||||
#ifdef OSL_DEBUG_LEVEL > 2
|
||||
#if OSL_DEBUG_LEVEL > 2
|
||||
fprintf(stderr, "in addLocalFunctions functionOffset is %x\n",functionOffset);
|
||||
fprintf(stderr, "in addLocalFunctions vtableOffset is %x\n",vtableOffset);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user