1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/* Function Parser for C++ v4.5.2
NOTE:
Do not include this file in your project. The fparser.cc file #includes
this file internally and thus you don't need to do anything (other than keep
this file in the same directory as fparser.cc).
This file contains generated code and is thus not intended to be to
be modified by hand. It was generated by util/bytecoderules_parser, which
is available in the development package.
*/
#define HasInvalidRangesOpcode HasInvalidRangesOpcode<IsComplexType<Value_t>::result>
#define FP_TRACE_BYTECODE_OPTIMIZATION(srcline,from,to,with) \
/*std::cout << "Changing \"" from "\"\t(line " #srcline ")\n" \
" into \"" to "\"\n" with << std::flush*/
#define FP_TRACE_OPCODENAME(op) \
(op < VarBegin \
? FP_GetOpcodeName(OPCODE(op)) \
: findName(mData->mNamePtrs,op,NameData<Value_t>::VARIABLE))
#define FP_TRACE_BYTECODE_ADD(opcode) \
/*std::cout << "Adding opcode: " << FP_TRACE_OPCODENAME(opcode) \
<< ", bytecode length " << data->ByteCode.size() \
<< ", pointer is " << (void*)ByteCodePtr \
<< ", code is " << (data->ByteCode.empty() \
? (void*)0 \
: (void*)&data->ByteCode[0]) \
<< std::endl*/
|