diff --git a/bin/systemlib.php b/bin/systemlib.php index dcef4df94..8902ae5ff 100644 --- a/bin/systemlib.php +++ b/bin/systemlib.php @@ -146,7 +146,6 @@ class Exception { * @return mixed Returns the Exception stack trace as a string. */ final function getTraceAsString() { - // works with the new FrameInjection-based stacktrace. $i = 0; $s = ""; foreach ($this->getTrace() as $frame) { diff --git a/hphp/compiler/analysis/emitter.cpp b/hphp/compiler/analysis/emitter.cpp index 6536e0fca..9ae51c681 100644 --- a/hphp/compiler/analysis/emitter.cpp +++ b/hphp/compiler/analysis/emitter.cpp @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include #include @@ -6288,7 +6288,7 @@ PreClass::Hoistable EmitterVisitor::emitClass(Emitter& e, ClassScopePtr cNode, // initialization support. static const StringData* methName = StringData::GetStaticString("86cinit"); FuncEmitter* fe = m_ue.newMethodEmitter(methName, pce); - assert(!(attr & VM::AttrTrait)); + assert(!(attr & AttrTrait)); bool added UNUSED = pce->addMethod(fe); assert(added); postponeCinit(is, fe, nonScalarConstVec); diff --git a/hphp/compiler/analysis/emitter.h b/hphp/compiler/analysis/emitter.h index 3f9c7b2de..555937655 100644 --- a/hphp/compiler/analysis/emitter.h +++ b/hphp/compiler/analysis/emitter.h @@ -47,13 +47,10 @@ class HhbcExtClassInfo; namespace Compiler { /////////////////////////////////////////////////////////////////////////////// -using VM::Offset; using VM::Func; using VM::Class; using VM::Unit; using VM::InvalidAbsoluteOffset; -using VM::Opcode; -using VM::Id; using namespace VM; diff --git a/hphp/compiler/analysis/peephole.cpp b/hphp/compiler/analysis/peephole.cpp index 20c357eef..d1bf255b2 100644 --- a/hphp/compiler/analysis/peephole.cpp +++ b/hphp/compiler/analysis/peephole.cpp @@ -21,7 +21,6 @@ namespace HPHP { namespace Compiler { using VM::FuncEmitter; using VM::UnitEmitter; -using VM::Offset; static void collapseJmp(Offset* offsetPtr, Opcode* instr, Opcode* start) { if (offsetPtr) { diff --git a/hphp/compiler/analysis/peephole.h b/hphp/compiler/analysis/peephole.h index d4e6f1df5..d121d74a3 100644 --- a/hphp/compiler/analysis/peephole.h +++ b/hphp/compiler/analysis/peephole.h @@ -50,7 +50,7 @@ private: void buildJumpTargets(); VM::UnitEmitter& m_ue; - hphp_hash_set m_jumpTargets; + hphp_hash_set m_jumpTargets; }; }} diff --git a/hphp/hhvm/process_init.h b/hphp/hhvm/process_init.h index c13664729..661d9cd35 100644 --- a/hphp/hhvm/process_init.h +++ b/hphp/hhvm/process_init.h @@ -36,10 +36,10 @@ namespace VM { */ inline void register_process_init() { g_vmProcessInit = &VM::ProcessInit; - VM::g_hphp_compiler_parse = &HPHP::Compiler::hphp_compiler_parse; - VM::g_hphp_build_native_func_unit = &HPHP::Compiler:: + g_hphp_compiler_parse = &HPHP::Compiler::hphp_compiler_parse; + g_hphp_build_native_func_unit = &HPHP::Compiler:: hphp_build_native_func_unit; - VM::g_hphp_build_native_class_unit = &HPHP::Compiler:: + g_hphp_build_native_class_unit = &HPHP::Compiler:: hphp_build_native_class_unit; } @@ -54,7 +54,7 @@ inline void init_for_unit_test() { init_thread_locals(); Hdf config; RuntimeOption::Load(config); - VM::compile_file(0, 0, MD5(), 0); + compile_file(0, 0, MD5(), 0); hphp_process_init(); } diff --git a/hphp/runtime/base/array/array_iterator.cpp b/hphp/runtime/base/array/array_iterator.cpp index ed3f8ace0..ec2acfc83 100644 --- a/hphp/runtime/base/array/array_iterator.cpp +++ b/hphp/runtime/base/array/array_iterator.cpp @@ -531,8 +531,6 @@ MArrayIter::~MArrayIter() { } } -namespace VM { - bool Iter::init(TypedValue* c1) { assert(c1->m_type != KindOfRef); bool hasElems = true; @@ -553,7 +551,7 @@ bool Iter::init(TypedValue* c1) { if (isIterator) { (void) new (&arr()) ArrayIter(obj, ArrayIter::transferOwner); } else { - Class* ctx = arGetContextClass(g_vmContext->getFP()); + VM::Class* ctx = arGetContextClass(g_vmContext->getFP()); CStrRef ctxStr = ctx ? ctx->nameRef() : null_string; Array iterArray(obj->o_toIterArray(ctxStr)); ArrayData* ad = iterArray.getArrayData(); @@ -603,7 +601,7 @@ bool Iter::minit(TypedValue* v1) { if (isIterator) { raise_error("An iterator cannot be used with foreach by reference"); } - Class* ctx = arGetContextClass(g_vmContext->getFP()); + VM::Class* ctx = arGetContextClass(g_vmContext->getFP()); CStrRef ctxStr = ctx ? ctx->nameRef() : null_string; Array iterArray = obj->o_toIterArray(ctxStr, true); if (iterArray->empty()) { @@ -847,7 +845,7 @@ class FreeObj { * If exceptions are thrown, new_iter_object takes care of decRefing the object. */ HOT_FUNC -int64_t new_iter_object(Iter* dest, ObjectData* obj, Class* ctx, +int64_t new_iter_object(Iter* dest, ObjectData* obj, VM::Class* ctx, TypedValue* valOut, TypedValue* keyOut) { valOut = tvToCell(valOut); if (keyOut) { @@ -1055,7 +1053,5 @@ cold: return iter_next_cold(iter, valOut, keyOut); } -} - /////////////////////////////////////////////////////////////////////////////// } diff --git a/hphp/runtime/base/array/array_iterator.h b/hphp/runtime/base/array/array_iterator.h index 3b2e2c0ce..a2e6f37bc 100644 --- a/hphp/runtime/base/array/array_iterator.h +++ b/hphp/runtime/base/array/array_iterator.h @@ -31,9 +31,7 @@ class c_Vector; class c_Map; class c_StableMap; class c_Pair; -namespace VM { - struct Iter; -} +struct Iter; /** * An iteration normally looks like this: @@ -59,7 +57,7 @@ class ArrayIter { * Constructors. */ ArrayIter(); - ArrayIter(const ArrayData* data); + explicit ArrayIter(const ArrayData* data); enum NoInc { noInc = 0 }; // Special constructor used by the VM. This constructor does not increment @@ -81,19 +79,19 @@ class ArrayIter { setArrayData(data); m_pos = data->getIterBegin(); } - ArrayIter(CArrRef array); + explicit ArrayIter(CArrRef array); void reset(); private: // not defined. // Either use ArrayIter(const ArrayData*) or // ArrayIter(const HphpArray*, NoIncNonNull) - ArrayIter(const HphpArray*); + explicit ArrayIter(const HphpArray*); template void objInit(ObjectData* obj); public: - ArrayIter(ObjectData* obj); + explicit ArrayIter(ObjectData* obj); ArrayIter(ObjectData* obj, NoInc); enum TransferOwner { transferOwner }; ArrayIter(Object& obj, TransferOwner); @@ -235,7 +233,7 @@ class ArrayIter { int m_version; Type m_itype; - friend struct VM::Iter; + friend struct Iter; }; /////////////////////////////////////////////////////////////////////////////// @@ -380,7 +378,7 @@ class FullPos { */ class FullPosRange { public: - FullPosRange(FullPos* list) : m_fpos(list) {} + explicit FullPosRange(FullPos* list) : m_fpos(list) {} FullPosRange(const FullPosRange& other) : m_fpos(other.m_fpos) {} bool empty() const { return m_fpos == 0; } FullPos* front() const { assert(!empty()); return m_fpos; } @@ -412,8 +410,8 @@ class MutableArrayIter : public FullPos { class MArrayIter : public FullPos { public: MArrayIter() { m_data = NULL; } - MArrayIter(const RefData* ref); - MArrayIter(ArrayData* data); + explicit MArrayIter(const RefData* ref); + explicit MArrayIter(ArrayData* data); ~MArrayIter(); /** @@ -437,43 +435,40 @@ class MArrayIter : public FullPos { return data->getValueRef(m_pos); } - friend struct VM::Iter; + friend struct Iter; }; -namespace VM { - struct Iter { - ArrayIter& arr() { - return *(ArrayIter*)m_u; - } - MArrayIter& marr() { - return *(MArrayIter*)m_u; - } - bool init(TypedValue* c1); - bool minit(TypedValue* v1); - bool next(); - bool mnext(); - void free(); - void mfree(); - private: - // C++ won't let you have union members with constructors. So we get to - // implement unions by hand. - char m_u[MAX(sizeof(ArrayIter), sizeof(MArrayIter))]; - } __attribute__ ((aligned(16))); +struct Iter { + ArrayIter& arr() { + return *(ArrayIter*)m_u; + } + MArrayIter& marr() { + return *(MArrayIter*)m_u; + } + bool init(TypedValue* c1); + bool minit(TypedValue* v1); + bool next(); + bool mnext(); + void free(); + void mfree(); + private: + // C++ won't let you have union members with constructors. So we get to + // implement unions by hand. + char m_u[MAX(sizeof(ArrayIter), sizeof(MArrayIter))]; +} __attribute__ ((aligned(16))); - bool interp_init_iterator(Iter* it, TypedValue* c1); - bool interp_init_iterator_m(Iter* it, TypedValue* v1); - bool interp_iter_next(Iter* it); - bool interp_iter_next_m(Iter* it); +bool interp_init_iterator(Iter* it, TypedValue* c1); +bool interp_init_iterator_m(Iter* it, TypedValue* v1); +bool interp_iter_next(Iter* it); +bool interp_iter_next_m(Iter* it); - int64_t new_iter_array(HPHP::VM::Iter* dest, ArrayData* arr, - TypedValue* val); - int64_t new_iter_array_key(HPHP::VM::Iter* dest, ArrayData* arr, - TypedValue* val, TypedValue* key); - int64_t new_iter_object(HPHP::VM::Iter* dest, ObjectData* obj, Class* ctx, +int64_t new_iter_array(Iter* dest, ArrayData* arr, TypedValue* val); +int64_t new_iter_array_key(Iter* dest, ArrayData* arr, TypedValue* val, + TypedValue* key); +int64_t new_iter_object(Iter* dest, ObjectData* obj, VM::Class* ctx, TypedValue* val, TypedValue* key); - int64_t iter_next(HPHP::VM::Iter* dest, TypedValue* val); - int64_t iter_next_key(HPHP::VM::Iter* dest, TypedValue* val, TypedValue* key); -} +int64_t iter_next(Iter* dest, TypedValue* val); +int64_t iter_next_key(Iter* dest, TypedValue* val, TypedValue* key); /////////////////////////////////////////////////////////////////////////////// } diff --git a/hphp/runtime/base/array/hphp_array.cpp b/hphp/runtime/base/array/hphp_array.cpp index 8f16fd7f3..0543d6b8b 100644 --- a/hphp/runtime/base/array/hphp_array.cpp +++ b/hphp/runtime/base/array/hphp_array.cpp @@ -31,7 +31,7 @@ #include #include #include -#include +#include // If PEDANTIC is defined, extra checks are performed to ensure correct // function even as an array approaches 2^31 elements. In practice this is @@ -500,7 +500,7 @@ ssize_t /*ElmInd*/ HphpArray::find(int64_t ki) const { // Try to get at it without dirtying a data cache line. Elm* e = m_data + uint64_t(ki); if (e->data.m_type != HphpArray::KindOfTombstone && hitIntKey(e, ki)) { - VM::Stats::inc(VM::Stats::HA_FindIntFast); + Stats::inc(Stats::HA_FindIntFast); assert([&] { // Our results had better match the other path FIND_BODY(ki, hitIntKey(&elms[pos], ki)); @@ -508,7 +508,7 @@ ssize_t /*ElmInd*/ HphpArray::find(int64_t ki) const { return ki; } } - VM::Stats::inc(VM::Stats::HA_FindIntSlow); + Stats::inc(Stats::HA_FindIntSlow); FIND_BODY(ki, hitIntKey(&elms[pos], ki)); } diff --git a/hphp/runtime/base/builtin_functions.cpp b/hphp/runtime/base/builtin_functions.cpp index fb6614127..197e44c64 100644 --- a/hphp/runtime/base/builtin_functions.cpp +++ b/hphp/runtime/base/builtin_functions.cpp @@ -83,7 +83,7 @@ bool array_is_valid_callback(CArrRef arr) { const HPHP::VM::Func* vm_decode_function(CVarRef function, - HPHP::VM::ActRec* ar, + ActRec* ar, bool forwarding, ObjectData*& this_, HPHP::VM::Class*& cls, @@ -246,7 +246,7 @@ vm_decode_function(CVarRef function, CallType lookupType = this_ ? ObjMethod : ClsMethod; const HPHP::VM::Func* f = g_vmContext->lookupMethodCtx(cc, name.get(), ctx, lookupType); - if (f && (f->attrs() & HPHP::VM::AttrStatic)) { + if (f && (f->attrs() & AttrStatic)) { // If we found a method and its static, null out this_ this_ = nullptr; } else { @@ -264,11 +264,11 @@ vm_decode_function(CVarRef function, // If this_ is non-null AND we could not find a method, try // looking up __call in cls's method table f = cls->lookupMethod(s___call.get()); - assert(!f || !(f->attrs() & HPHP::VM::AttrStatic)); + assert(!f || !(f->attrs() & AttrStatic)); } if (!f && lookupType == ClsMethod) { f = cls->lookupMethod(s___callStatic.get()); - assert(!f || (f->attrs() & HPHP::VM::AttrStatic)); + assert(!f || (f->attrs() & AttrStatic)); this_ = nullptr; } if (f) { @@ -314,7 +314,7 @@ vm_decode_function(CVarRef function, cls = nullptr; const HPHP::VM::Func *f = this_->getVMClass()->lookupMethod(invokeStr); if (f != nullptr && - ((f->attrs() & HPHP::VM::AttrStatic) && !f->isClosureBody())) { + ((f->attrs() & AttrStatic) && !f->isClosureBody())) { // If __invoke is static, invoke it as such cls = this_->getVMClass(); this_ = nullptr; @@ -369,7 +369,7 @@ Variant invoke_static_method(CStrRef s, CStrRef method, CArrRef params, return uninit_null(); } const HPHP::VM::Func* f = class_->lookupMethod(method.get()); - if (f == nullptr || !(f->attrs() & HPHP::VM::AttrStatic)) { + if (f == nullptr || !(f->attrs() & AttrStatic)) { o_invoke_failed(s.data(), method.data(), fatal); return uninit_null(); } @@ -584,7 +584,7 @@ void throw_bad_type_exception(const char *fmt, ...) { void throw_bad_array_exception() { const char* fn = "(unknown)"; - HPHP::VM::ActRec *ar = g_vmContext->getStackFrame(); + ActRec *ar = g_vmContext->getStackFrame(); if (ar) { fn = ar->m_func->name()->data(); } diff --git a/hphp/runtime/base/builtin_functions.ext_hhvm.cpp b/hphp/runtime/base/builtin_functions.ext_hhvm.cpp index d1bac00cb..9d1910c47 100644 --- a/hphp/runtime/base/builtin_functions.ext_hhvm.cpp +++ b/hphp/runtime/base/builtin_functions.ext_hhvm.cpp @@ -34,7 +34,7 @@ value => rsi Value* fh_serialize(Value* _rv, TypedValue* value) asm("_ZN4HPHP11f_serializeERKNS_7VariantE"); -TypedValue* fg_serialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_serialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/base/builtin_functions.h b/hphp/runtime/base/builtin_functions.h index d1793bb9d..e85918854 100644 --- a/hphp/runtime/base/builtin_functions.h +++ b/hphp/runtime/base/builtin_functions.h @@ -351,7 +351,7 @@ Variant f_call_user_func_array(CVarRef function, CArrRef params, const HPHP::VM::Func* vm_decode_function(CVarRef function, - HPHP::VM::ActRec* ar, + ActRec* ar, bool forwarding, ObjectData*& this_, HPHP::VM::Class*& cls, @@ -360,15 +360,15 @@ vm_decode_function(CVarRef function, inline void vm_decode_function(CVarRef function, - HPHP::VM::ActRec* ar, + ActRec* ar, bool forwarding, - HPHP::VM::CallCtx& ctx, + CallCtx& ctx, bool warn = true) { ctx.func = vm_decode_function(function, ar, forwarding, ctx.this_, ctx.cls, ctx.invName, warn); } -HPHP::VM::ActRec* vm_get_previous_frame(); +ActRec* vm_get_previous_frame(); Variant vm_call_user_func(CVarRef function, CArrRef params, bool forwarding = false); diff --git a/hphp/runtime/base/execution_context.h b/hphp/runtime/base/execution_context.h index 6baa16dfd..174bea88b 100644 --- a/hphp/runtime/base/execution_context.h +++ b/hphp/runtime/base/execution_context.h @@ -81,9 +81,9 @@ protected: }; struct VMState { - HPHP::VM::PC pc; - HPHP::VM::ActRec* fp; - HPHP::VM::ActRec* firstAR; + PC pc; + ActRec* fp; + ActRec* firstAR; TypedValue *sp; }; @@ -184,9 +184,9 @@ public: // are accessed from within the TC and having their offset fit // within a single byte makes the generated code slightly smaller // and faster. - HPHP::VM::Stack m_stack; - HPHP::VM::ActRec* m_fp; - HPHP::VM::PC m_pc; + Stack m_stack; + ActRec* m_fp; + PC m_pc; uint32_t m_isValid; /* Debug-only: non-zero iff m_fp/m_stack are trustworthy */ HPHP::VM::EventHook* m_eventHook; int64_t m_currentThreadIdx; @@ -427,14 +427,14 @@ public: static void getElem(TypedValue* base, TypedValue* key, TypedValue* dest); template - static c_Continuation* createContinuation(VM::ActRec* fp, bool getArgs, + static c_Continuation* createContinuation(ActRec* fp, bool getArgs, const VM::Func* origFunc, const VM::Func* genFunc); static c_Continuation* fillContinuationVars( - VM::ActRec* fp, const VM::Func* origFunc, const VM::Func* genFunc, + ActRec* fp, const VM::Func* origFunc, const VM::Func* genFunc, c_Continuation* cont); - static void unpackContVarEnvLinkage(VM::ActRec* fp); - static void packContVarEnvLinkage(VM::ActRec* fp); + static void unpackContVarEnvLinkage(ActRec* fp); + static void packContVarEnvLinkage(ActRec* fp); void pushLocalsAndIterators(const HPHP::VM::Func* f, int nparams = 0); private: @@ -444,13 +444,13 @@ private: }; template - bool memberHelperPre(VM::PC& pc, unsigned& ndiscard, TypedValue*& base, + bool memberHelperPre(PC& pc, unsigned& ndiscard, TypedValue*& base, TypedValue& tvScratch, TypedValue& tvLiteral, TypedValue& tvRef, TypedValue& tvRef2, VM::MemberCode& mcode, TypedValue*& curMember); template - void getHelperPre(VM::PC& pc, unsigned& ndiscard, + void getHelperPre(PC& pc, unsigned& ndiscard, TypedValue*& base, TypedValue& tvScratch, TypedValue& tvLiteral, TypedValue& tvRef, TypedValue& tvRef2, @@ -459,7 +459,7 @@ private: void getHelperPost(unsigned ndiscard, TypedValue*& tvRet, TypedValue& tvScratch, TypedValue& tvRef, TypedValue& tvRef2); - void getHelper(VM::PC& pc, unsigned& ndiscard, TypedValue*& tvRet, + void getHelper(PC& pc, unsigned& ndiscard, TypedValue*& tvRet, TypedValue*& base, TypedValue& tvScratch, TypedValue& tvLiteral, TypedValue& tvRef, TypedValue& tvRef2, @@ -467,7 +467,7 @@ private: template - bool setHelperPre(VM::PC& pc, unsigned& ndiscard, TypedValue*& base, + bool setHelperPre(PC& pc, unsigned& ndiscard, TypedValue*& base, TypedValue& tvScratch, TypedValue& tvLiteral, TypedValue& tvRef, TypedValue& tvRef2, @@ -476,18 +476,18 @@ private: void setHelperPost(unsigned ndiscard, TypedValue& tvRef, TypedValue& tvRef2); bool cellInstanceOf(TypedValue* c, const HPHP::VM::NamedEntity* s); - bool initIterator(HPHP::VM::PC& pc, HPHP::VM::PC& origPc, HPHP::VM::Iter* it, - HPHP::VM::Offset offset, HPHP::VM::Cell* c1); - bool initIteratorM(HPHP::VM::PC& pc, HPHP::VM::PC& origPc, HPHP::VM::Iter* it, - HPHP::VM::Offset offset, HPHP::VM::Var* v1); + bool initIterator(PC& pc, PC& origPc, Iter* it, + Offset offset, Cell* c1); + bool initIteratorM(PC& pc, PC& origPc, Iter* it, + Offset offset, Var* v1); #define O(name, imm, pusph, pop, flags) \ - void iop##name(HPHP::VM::PC& pc); + void iop##name(PC& pc); OPCODES #undef O template void contSendImpl(); - void classExistsImpl(HPHP::VM::PC& pc, HPHP::VM::Attr typeAttr); + void classExistsImpl(PC& pc, Attr typeAttr); void fPushObjMethodImpl( VM::Class* cls, StringData* name, ObjectData* obj, int numArgs); @@ -560,15 +560,15 @@ public: TypedValue* lookupClsCns(const StringData* cls, const StringData* cns); - HPHP::VM::ActRec* arGetSfp(const HPHP::VM::ActRec* ar); + ActRec* arGetSfp(const ActRec* ar); std::string prettyStack(const std::string& prefix) const; static void DumpStack(); static void DumpCurUnit(int skip = 0); static void PrintTCCallerInfo(); - VM::VarEnv* m_globalVarEnv; - VM::VarEnv* m_topVarEnv; + VarEnv* m_globalVarEnv; + VarEnv* m_topVarEnv; HPHP::VM::RenamedFuncDict m_renamedFuncs; EvaledFilesMap m_evaledFiles; @@ -585,16 +585,16 @@ public: void checkRegStateWork() const; void checkRegState() const { if (debug) checkRegStateWork(); } - const VM::ActRec* getFP() const { checkRegState(); return m_fp; } - VM::ActRec* getFP() { checkRegState(); return m_fp; } - VM::PC getPC() const { checkRegState(); return m_pc; } - const VM::Stack& getStack() const { checkRegState(); return m_stack; } - VM::Stack& getStack() { checkRegState(); return m_stack; } + const ActRec* getFP() const { checkRegState(); return m_fp; } + ActRec* getFP() { checkRegState(); return m_fp; } + PC getPC() const { checkRegState(); return m_pc; } + const Stack& getStack() const { checkRegState(); return m_stack; } + Stack& getStack() { checkRegState(); return m_stack; } - HPHP::VM::ActRec* m_firstAR; - std::vector m_faults; + ActRec* m_firstAR; + std::vector m_faults; - HPHP::VM::ActRec* getStackFrame(); + ActRec* getStackFrame(); ObjectData* getThis(); VM::Class* getContextClass(); VM::Class* getParentContextClass(); @@ -614,7 +614,7 @@ public: InclOpFlags flags, bool* initial, HPHP::VM::Unit* unit = 0); bool evalUnit(HPHP::VM::Unit* unit, bool local, - HPHP::VM::PC& pc, int funcType); + PC& pc, int funcType); void invokeUnit(TypedValue* retval, HPHP::VM::Unit* unit); HPHP::VM::Unit* compileEvalString(StringData* code); CStrRef createFunction(CStrRef args, CStrRef code); @@ -625,8 +625,8 @@ public: int m_lambdaCounter; struct ReentryRecord { VMState m_savedState; - const VM::ActRec* m_entryFP; - ReentryRecord(const VMState &s, const VM::ActRec* entryFP) : + const ActRec* m_entryFP; + ReentryRecord(const VMState &s, const ActRec* entryFP) : m_savedState(s), m_entryFP(entryFP) { } ReentryRecord() {} }; @@ -635,19 +635,19 @@ public: int m_nesting; bool isNested() { return m_nesting != 0; } - void pushVMState(VMState &savedVM, const VM::ActRec* reentryAR); + void pushVMState(VMState &savedVM, const ActRec* reentryAR); void popVMState(); int hhvmPrepareThrow(); - VM::ActRec* getPrevVMState(const VM::ActRec* fp, - VM::Offset* prevPc = nullptr, + ActRec* getPrevVMState(const ActRec* fp, + Offset* prevPc = nullptr, TypedValue** prevSp = nullptr); Array debugBacktrace(bool skip = false, bool withSelf = false, bool withThis = false, VMParserFrame* parserFrame = nullptr); - int handleUnwind(VM::UnwindStatus unwindType); - HPHP::VM::VarEnv* getVarEnv(); + int handleUnwind(UnwindStatus unwindType); + VarEnv* getVarEnv(); void setVar(StringData* name, TypedValue* v, bool ref); Array getLocalDefinedVariables(int frame); HPHP::VM::InjectionTables* m_injTables; @@ -657,49 +657,49 @@ public: bool m_dbgNoBreak; int switchMode(bool unwindBuiltin); template - void doFCall(HPHP::VM::ActRec* ar, HPHP::VM::PC& pc); - bool doFCallArray(HPHP::VM::PC& pc); + void doFCall(HPHP::ActRec* ar, PC& pc); + bool doFCallArray(PC& pc); CVarRef getEvaledArg(const StringData* val); private: - void enterVMWork(VM::ActRec* enterFnAr); + void enterVMWork(ActRec* enterFnAr); void enterVM(TypedValue* retval, - VM::ActRec* ar, - VM::ExtraArgs* extraArgs); + ActRec* ar, + ExtraArgs* extraArgs); void reenterVM(TypedValue* retval, - VM::ActRec* ar, - VM::ExtraArgs* extraArgs, + ActRec* ar, + ExtraArgs* extraArgs, TypedValue* savedSP); - void doFPushCuf(VM::PC& pc, bool forward, bool safe); + void doFPushCuf(PC& pc, bool forward, bool safe); void unwindBuiltinFrame(); template void pushClsMethodImpl(VM::Class* cls, StringData* name, ObjectData* obj, int numArgs); template - bool prepareFuncEntry(VM::ActRec* ar, - VM::PC& pc, - VM::ExtraArgs* extraArgs); - bool prepareArrayArgs(VM::ActRec* ar, ArrayData* args, - VM::ExtraArgs*& extraArgs); - void recordCodeCoverage(VM::PC pc); + bool prepareFuncEntry(ActRec* ar, + PC& pc, + ExtraArgs* extraArgs); + bool prepareArrayArgs(ActRec* ar, ArrayData* args, + ExtraArgs*& extraArgs); + void recordCodeCoverage(PC pc); int m_coverPrevLine; HPHP::VM::Unit* m_coverPrevUnit; Array m_evaledArgs; public: void resetCoverageCounters(); - void shuffleMagicArgs(HPHP::VM::ActRec* ar); + void shuffleMagicArgs(ActRec* ar); void syncGdbState(); void invokeFunc(TypedValue* retval, const HPHP::VM::Func* f, CArrRef params, ObjectData* this_ = nullptr, HPHP::VM::Class* class_ = nullptr, - HPHP::VM::VarEnv* varEnv = nullptr, + VarEnv* varEnv = nullptr, StringData* invName = nullptr, HPHP::VM::Unit* mergeUnit = nullptr); void invokeFunc(TypedValue* retval, - HPHP::VM::CallCtx& ctx, + CallCtx& ctx, CArrRef params, - HPHP::VM::VarEnv* varEnv = nullptr, + VarEnv* varEnv = nullptr, HPHP::VM::Unit* toMerge = nullptr) { invokeFunc(retval, ctx.func, params, ctx.this_, ctx.cls, varEnv, ctx.invName, toMerge); @@ -752,7 +752,7 @@ public: static int64_t s_threadIdxCounter; Variant m_setprofileCallback; bool m_executingSetprofileCallback; - inline HPHP::VM::Offset pcOff() const { + inline Offset pcOff() const { return m_fp->m_func->unit()->offsetOf(m_pc); } @@ -794,7 +794,7 @@ private: class Silencer { public: Silencer() : m_active(false) {} - Silencer(bool); + explicit Silencer(bool); ~Silencer() { if (m_active) disableHelper(); } void enable(); diff --git a/hphp/runtime/base/file/user_file.cpp b/hphp/runtime/base/file/user_file.cpp index f0246dfee..e54b096e5 100644 --- a/hphp/runtime/base/file/user_file.cpp +++ b/hphp/runtime/base/file/user_file.cpp @@ -75,7 +75,7 @@ const VM::Func* UserFile::lookupMethod(const StringData* name) { const VM::Func *f = m_cls->lookupMethod(name); if (!f) return nullptr; - if (f->attrs() & VM::AttrStatic) { + if (f->attrs() & AttrStatic) { throw InvalidArgumentException(0, "%s::%s() must not be declared static", m_cls->name()->data(), name->data()); } @@ -93,7 +93,7 @@ Variant UserFile::invoke(const VM::Func *func, CStrRef name, // Public method, no private ancestor, no need for further checks (common) if (func && - !(func->attrs() & (VM::AttrPrivate|VM::AttrProtected|VM::AttrAbstract)) && + !(func->attrs() & (AttrPrivate|AttrProtected|AttrAbstract)) && !func->hasPrivateAncestor()) { Variant ret; g_vmContext->invokeFunc(ret.asTypedValue(), func, args, m_obj.get()); diff --git a/hphp/runtime/base/object_data.cpp b/hphp/runtime/base/object_data.cpp index 638241884..a1aa3da17 100644 --- a/hphp/runtime/base/object_data.cpp +++ b/hphp/runtime/base/object_data.cpp @@ -78,7 +78,7 @@ void ObjectData::destruct() { // case. auto& faults = g_vmContext->m_faults; if (!faults.empty()) { - if (faults.back().m_faultType == HPHP::VM::Fault::CppException) return; + if (faults.back().m_faultType == Fault::CppException) return; } // We raise the refcount around the call to __destruct(). This is to // prevent the refcount from going to zero when the destructor returns. @@ -485,7 +485,7 @@ Variant ObjectData::o_invoke(CStrRef s, CArrRef params, // to incorrect behavior in some corner cases. o_invoke is gradually being // removed from the HPHP runtime this should be ok for the short term. const HPHP::VM::Func* f = cls->lookupMethod(s.get()); - if (f && (f->attrs() & HPHP::VM::AttrStatic)) { + if (f && (f->attrs() & AttrStatic)) { // If we found a method and its static, null out this_ this_ = nullptr; } else if (!f) { @@ -500,7 +500,7 @@ Variant ObjectData::o_invoke(CStrRef s, CArrRef params, return uninit_null(); } // We found __call! Stash the original name into invName. - assert(!(f->attrs() & HPHP::VM::AttrStatic)); + assert(!(f->attrs() & AttrStatic)); invName = s.get(); invName->incRefCount(); } @@ -636,10 +636,9 @@ void ObjectData::serializeImpl(VariableSerializer *serializer) const { thiz->getProp(m_cls, name.get(), visible, accessible, unset); if (accessible && !unset) { String propName = name; - VM::Slot propInd = - m_cls->getDeclPropIndex(m_cls, name.get(), accessible); - if (accessible && propInd != VM::kInvalidSlot) { - if (m_cls->m_declProperties[propInd].m_attrs & VM::AttrPrivate) { + Slot propInd = m_cls->getDeclPropIndex(m_cls, name.get(), accessible); + if (accessible && propInd != kInvalidSlot) { + if (m_cls->m_declProperties[propInd].m_attrs & AttrPrivate) { propName = concat4(s_zero, o_getClassName(), s_zero, name); } } diff --git a/hphp/runtime/base/program_functions.cpp b/hphp/runtime/base/program_functions.cpp index 900179177..fa55012e6 100644 --- a/hphp/runtime/base/program_functions.cpp +++ b/hphp/runtime/base/program_functions.cpp @@ -954,7 +954,7 @@ static int execute_program_impl(int argc, char **argv) { ShmCounters::initialize(true, Logger::Error); // Initialize compiler state - VM::compile_file(0, 0, MD5(), 0); + compile_file(0, 0, MD5(), 0); if (!po.lint.empty()) { if (po.isTempFile) { diff --git a/hphp/runtime/base/runtime_error.h b/hphp/runtime/base/runtime_error.h index b4bd01c93..05938a6df 100644 --- a/hphp/runtime/base/runtime_error.h +++ b/hphp/runtime/base/runtime_error.h @@ -60,10 +60,6 @@ public: }; }; -namespace VM { - struct ActRec; -} - void raise_error(const std::string &msg); void raise_error(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2); void raise_error_without_first_frame(const std::string &msg); diff --git a/hphp/runtime/base/server/job_queue_vm_stack.h b/hphp/runtime/base/server/job_queue_vm_stack.h index 9d06c6b83..348eabb4e 100644 --- a/hphp/runtime/base/server/job_queue_vm_stack.h +++ b/hphp/runtime/base/server/job_queue_vm_stack.h @@ -21,10 +21,10 @@ namespace HPHP { ////////////////////////////////////////////////////////////////////// -namespace VM { void flush_evaluation_stack(); } +void flush_evaluation_stack(); struct JobQueueDropVMStack { - static void dropCache() { VM::flush_evaluation_stack(); } + static void dropCache() { flush_evaluation_stack(); } }; ////////////////////////////////////////////////////////////////////// diff --git a/hphp/runtime/vm/stats.cpp b/hphp/runtime/base/stats.cpp similarity index 98% rename from hphp/runtime/vm/stats.cpp rename to hphp/runtime/base/stats.cpp index c9a34717d..52e5ac7be 100644 --- a/hphp/runtime/vm/stats.cpp +++ b/hphp/runtime/base/stats.cpp @@ -16,10 +16,9 @@ #include #include #include -#include +#include namespace HPHP { -namespace VM { namespace Stats { using namespace HPHP::VM::Transl; @@ -72,7 +71,7 @@ emitInc(X64Assembler& a, uint64_t* tl_table, uint index, int n, void emitIncTranslOp(X64Assembler& a, Opcode opc, bool force) { if (!force && !enableInstrCount()) return; emitInc(a, &tl_counters[0], opcodeToTranslStatCounter(opc), 1, - Transl::CC_None, force); + CC_None, force); } void init() { @@ -146,4 +145,4 @@ void incStatGrouped(const StringData* category, const StringData* name, int n) { (*tl_stat_groups)[category->data()][name->data()] += n; } -} } } +} } diff --git a/hphp/runtime/vm/stats.h b/hphp/runtime/base/stats.h similarity index 92% rename from hphp/runtime/vm/stats.h rename to hphp/runtime/base/stats.h index f842b146d..464363b92 100644 --- a/hphp/runtime/vm/stats.h +++ b/hphp/runtime/base/stats.h @@ -21,11 +21,11 @@ #include namespace HPHP { -namespace VM { -namespace Transl { class X64Assembler; } + +namespace VM { namespace Transl { class X64Assembler; } } namespace Stats { -#include "stats-opcodeDef.h" +#include "runtime/vm/stats-opcodeDef.h" #define STATS \ STAT(Instr_TC) \ @@ -214,7 +214,7 @@ static inline void inc(StatCounter stat, int n = 1) { } static inline StatCounter opcodeToStatCounter(Opcode opc) { - assert(OpLowInvalid == 0); + assert(VM::OpLowInvalid == 0); return StatCounter(Instr_InterpBBLowInvalid + STATS_PER_OPCODE * opc); } @@ -223,34 +223,34 @@ static inline void incOp(Opcode opc) { } static inline StatCounter opcodeToTranslStatCounter(Opcode opc) { - assert(OpLowInvalid == 0); + assert(VM::OpLowInvalid == 0); return StatCounter(Instr_TranslLowInvalid + STATS_PER_OPCODE * opc); } static inline StatCounter opcodeToIRPreStatCounter(Opcode opc) { - assert(OpLowInvalid == 0); + assert(VM::OpLowInvalid == 0); return StatCounter(Instr_TranslIRPreLowInvalid + STATS_PER_OPCODE * opc); } static inline StatCounter opcodeToIRPostStatCounter(Opcode opc) { - assert(OpLowInvalid == 0); + assert(VM::OpLowInvalid == 0); return StatCounter(Instr_TranslIRPostLowInvalid + STATS_PER_OPCODE * opc); } // Both emitIncs use r10. -extern void emitInc(Transl::X64Assembler& a, +extern void emitInc(VM::Transl::X64Assembler& a, uint64_t* tl_table, uint index, int n = 1, - Transl::ConditionCode cc = Transl::CC_None, + VM::Transl::ConditionCode cc = VM::Transl::CC_None, bool force = false); -inline void emitInc(Transl::X64Assembler& a, StatCounter stat, int n = 1, - Transl::ConditionCode cc = Transl::CC_None, +inline void emitInc(VM::Transl::X64Assembler& a, StatCounter stat, int n = 1, + VM::Transl::ConditionCode cc = VM::Transl::CC_None, bool force = false) { emitInc(a, &tl_counters[0], stat, n, cc, force); } -extern void emitIncTranslOp(Transl::X64Assembler& a, Opcode opc, +extern void emitIncTranslOp(VM::Transl::X64Assembler& a, Opcode opc, bool force = false); extern void init(); extern void dump(); @@ -258,6 +258,6 @@ extern void clear(); void incStatGrouped(const StringData* cat, const StringData* name, int n = 1); -} } } +} } #endif diff --git a/hphp/runtime/base/tv_helpers.h b/hphp/runtime/base/tv_helpers.h index 445e7f489..532e8616d 100644 --- a/hphp/runtime/base/tv_helpers.h +++ b/hphp/runtime/base/tv_helpers.h @@ -24,13 +24,6 @@ #include -namespace HPHP { -namespace VM { -class Class; -class Stack; -} -} - namespace HPHP { /////////////////////////////////////////////////////////////////////////////// diff --git a/hphp/runtime/base/type_array.cpp b/hphp/runtime/base/type_array.cpp index d8a969f41..bf2d9ee0c 100644 --- a/hphp/runtime/base/type_array.cpp +++ b/hphp/runtime/base/type_array.cpp @@ -395,7 +395,7 @@ bool Array::more(CVarRef v2) const { HOT_FUNC ArrayIter Array::begin(CStrRef context /* = null_string */) const { - return m_px; + return ArrayIter(m_px); } void Array::escalate() { diff --git a/hphp/runtime/eval/debugger/break_point.cpp b/hphp/runtime/eval/debugger/break_point.cpp index 6e99bc5df..ae1057661 100644 --- a/hphp/runtime/eval/debugger/break_point.cpp +++ b/hphp/runtime/eval/debugger/break_point.cpp @@ -83,9 +83,9 @@ InterruptSiteVM::InterruptSiteVM(bool hardBreakPoint /* = false */, VM::Transl::VMRegAnchor _; #define bail_on(c) if (c) { return; } VMExecutionContext* context = g_vmContext; - VM::ActRec *fp = context->getFP(); + ActRec *fp = context->getFP(); bail_on(!fp); - VM::Offset offset; + Offset offset; if (hardBreakPoint && fp->skipFrame()) { // for hard breakpoint, the fp is for an extension function, // so we need to construct the site on the caller diff --git a/hphp/runtime/eval/debugger/debugger_proxy.cpp b/hphp/runtime/eval/debugger/debugger_proxy.cpp index d156624ec..4234f56f2 100644 --- a/hphp/runtime/eval/debugger/debugger_proxy.cpp +++ b/hphp/runtime/eval/debugger/debugger_proxy.cpp @@ -727,7 +727,7 @@ int DebuggerProxyVM::getRealStackDepth() { TRACE(2, "DebuggerProxyVM::getRealStackDepth\n"); int depth = 0; VMExecutionContext* context = g_vmContext; - HPHP::VM::ActRec *fp = context->getFP(); + ActRec *fp = context->getFP(); if (!fp) return 0; while (fp != nullptr) { @@ -741,9 +741,9 @@ int DebuggerProxyVM::getStackDepth() { TRACE(2, "DebuggerProxyVM::getStackDepth\n"); int depth = 0; VMExecutionContext* context = g_vmContext; - HPHP::VM::ActRec *fp = context->getFP(); + ActRec *fp = context->getFP(); if (!fp) return 0; - HPHP::VM::ActRec *prev = context->arGetSfp(fp); + ActRec *prev = context->arGetSfp(fp); while (fp != prev) { fp = prev; prev = context->arGetSfp(fp); diff --git a/hphp/runtime/eval/debugger/inst_point.cpp b/hphp/runtime/eval/debugger/inst_point.cpp index c02d13c06..eaf608551 100644 --- a/hphp/runtime/eval/debugger/inst_point.cpp +++ b/hphp/runtime/eval/debugger/inst_point.cpp @@ -28,11 +28,11 @@ const uchar* InstPointInfo::lookupPC() { VMExecutionContext* context = g_vmContext; if (m_locType == LocHere) { // Instrument to current location - HPHP::VM::ActRec *fp = context->getFP(); + ActRec *fp = context->getFP(); if (!fp) { return nullptr; } - HPHP::VM::PC pc = context->getPC(); + PC pc = context->getPC(); HPHP::VM::Unit *unit = fp->m_func->unit(); if (!unit) { return nullptr; diff --git a/hphp/runtime/eval/runtime/file_repository.cpp b/hphp/runtime/eval/runtime/file_repository.cpp index 00379bd28..e527468ef 100644 --- a/hphp/runtime/eval/runtime/file_repository.cpp +++ b/hphp/runtime/eval/runtime/file_repository.cpp @@ -433,9 +433,9 @@ PhpFile *FileRepository::readHhbc(const std::string &name, PhpFile *FileRepository::parseFile(const std::string &name, const FileInfo &fileInfo) { MD5 md5 = MD5(fileInfo.m_unitMd5.c_str()); - VM::Unit* unit = VM::compile_file(fileInfo.m_inputString->data(), - fileInfo.m_inputString->size(), - md5, name.c_str()); + VM::Unit* unit = compile_file(fileInfo.m_inputString->data(), + fileInfo.m_inputString->size(), + md5, name.c_str()); PhpFile *p = new PhpFile(name, fileInfo.m_srcRoot, fileInfo.m_relPath, fileInfo.m_md5, unit); return p; diff --git a/hphp/runtime/ext/asio/blockable_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/blockable_wait_handle.ext_hhvm.cpp index 1a1997e25..b18b31824 100644 --- a/hphp/runtime/ext/asio/blockable_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/blockable_wait_handle.ext_hhvm.cpp @@ -34,7 +34,7 @@ this_ => rdi void th_19BlockableWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP21c_BlockableWaitHandle13t___constructEv"); -TypedValue* tg_19BlockableWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_19BlockableWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/continuation_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/continuation_wait_handle.ext_hhvm.cpp index e38928be8..3f930828c 100644 --- a/hphp/runtime/ext/asio/continuation_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/continuation_wait_handle.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_22ContinuationWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP24c_ContinuationWaitHandle13t___constructEv"); -TypedValue* tg_22ContinuationWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_22ContinuationWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -82,8 +82,8 @@ continuation => rdx Value* th_22ContinuationWaitHandle_start(Value* _rv, char const* cls_, Value* continuation) asm("_ZN4HPHP24c_ContinuationWaitHandle8ti_startEPKcRKNS_6ObjectE"); -TypedValue* tg1_22ContinuationWaitHandle_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_22ContinuationWaitHandle_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_22ContinuationWaitHandle_start(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_22ContinuationWaitHandle_start(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -92,7 +92,7 @@ TypedValue* tg1_22ContinuationWaitHandle_start(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_22ContinuationWaitHandle_start(HPHP::VM::ActRec *ar) { +TypedValue* tg_22ContinuationWaitHandle_start(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -132,7 +132,7 @@ this_ => rsi Value* th_22ContinuationWaitHandle_getPrivData(Value* _rv, ObjectData* this_) asm("_ZN4HPHP24c_ContinuationWaitHandle13t_getprivdataEv"); -TypedValue* tg_22ContinuationWaitHandle_getPrivData(HPHP::VM::ActRec *ar) { +TypedValue* tg_22ContinuationWaitHandle_getPrivData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -169,8 +169,8 @@ data => rsi void th_22ContinuationWaitHandle_setPrivData(ObjectData* this_, Value* data) asm("_ZN4HPHP24c_ContinuationWaitHandle13t_setprivdataERKNS_6ObjectE"); -TypedValue* tg1_22ContinuationWaitHandle_setPrivData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_22ContinuationWaitHandle_setPrivData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_22ContinuationWaitHandle_setPrivData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_22ContinuationWaitHandle_setPrivData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -179,7 +179,7 @@ TypedValue* tg1_22ContinuationWaitHandle_setPrivData(TypedValue* rv, HPHP::VM::A return rv; } -TypedValue* tg_22ContinuationWaitHandle_setPrivData(HPHP::VM::ActRec *ar) { +TypedValue* tg_22ContinuationWaitHandle_setPrivData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/gen_array_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/gen_array_wait_handle.ext_hhvm.cpp index 5f13c77cc..4d514e248 100644 --- a/hphp/runtime/ext/asio/gen_array_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/gen_array_wait_handle.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_18GenArrayWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP20c_GenArrayWaitHandle13t___constructEv"); -TypedValue* tg_18GenArrayWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_18GenArrayWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -82,8 +82,8 @@ dependencies => rdx Value* th_18GenArrayWaitHandle_create(Value* _rv, char const* cls_, Value* dependencies) asm("_ZN4HPHP20c_GenArrayWaitHandle9ti_createEPKcRKNS_5ArrayE"); -TypedValue* tg1_18GenArrayWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_18GenArrayWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_18GenArrayWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_18GenArrayWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToArrayInPlace(args-0); @@ -92,7 +92,7 @@ TypedValue* tg1_18GenArrayWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_18GenArrayWaitHandle_create(HPHP::VM::ActRec *ar) { +TypedValue* tg_18GenArrayWaitHandle_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/reschedule_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/reschedule_wait_handle.ext_hhvm.cpp index 21d0a6952..523cf4e36 100644 --- a/hphp/runtime/ext/asio/reschedule_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/reschedule_wait_handle.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_20RescheduleWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP22c_RescheduleWaitHandle13t___constructEv"); -TypedValue* tg_20RescheduleWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_20RescheduleWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -83,8 +83,8 @@ priority => rcx Value* th_20RescheduleWaitHandle_create(Value* _rv, char const* cls_, int queue, int priority) asm("_ZN4HPHP22c_RescheduleWaitHandle9ti_createEPKcii"); -TypedValue* tg1_20RescheduleWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_20RescheduleWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_20RescheduleWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_20RescheduleWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfInt64) { @@ -98,7 +98,7 @@ TypedValue* tg1_20RescheduleWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_20RescheduleWaitHandle_create(HPHP::VM::ActRec *ar) { +TypedValue* tg_20RescheduleWaitHandle_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/set_result_to_ref_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/set_result_to_ref_wait_handle.ext_hhvm.cpp index 6c0be8585..924b347cf 100644 --- a/hphp/runtime/ext/asio/set_result_to_ref_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/set_result_to_ref_wait_handle.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_24SetResultToRefWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP26c_SetResultToRefWaitHandle13t___constructEv"); -TypedValue* tg_24SetResultToRefWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SetResultToRefWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -83,8 +83,8 @@ ref => rcx Value* th_24SetResultToRefWaitHandle_create(Value* _rv, char const* cls_, Value* wait_handle, TypedValue* ref) asm("_ZN4HPHP26c_SetResultToRefWaitHandle9ti_createEPKcRKNS_6ObjectERKNS_14VRefParamValueE"); -TypedValue* tg1_24SetResultToRefWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_24SetResultToRefWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_24SetResultToRefWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_24SetResultToRefWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -93,7 +93,7 @@ TypedValue* tg1_24SetResultToRefWaitHandle_create(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* tg_24SetResultToRefWaitHandle_create(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SetResultToRefWaitHandle_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/static_exception_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/static_exception_wait_handle.ext_hhvm.cpp index 39b06879f..86fb135c9 100644 --- a/hphp/runtime/ext/asio/static_exception_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/static_exception_wait_handle.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_25StaticExceptionWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP27c_StaticExceptionWaitHandle13t___constructEv"); -TypedValue* tg_25StaticExceptionWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_25StaticExceptionWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -82,8 +82,8 @@ exception => rdx Value* th_25StaticExceptionWaitHandle_create(Value* _rv, char const* cls_, Value* exception) asm("_ZN4HPHP27c_StaticExceptionWaitHandle9ti_createEPKcRKNS_6ObjectE"); -TypedValue* tg1_25StaticExceptionWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_25StaticExceptionWaitHandle_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_25StaticExceptionWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_25StaticExceptionWaitHandle_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -92,7 +92,7 @@ TypedValue* tg1_25StaticExceptionWaitHandle_create(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* tg_25StaticExceptionWaitHandle_create(HPHP::VM::ActRec *ar) { +TypedValue* tg_25StaticExceptionWaitHandle_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/static_result_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/static_result_wait_handle.ext_hhvm.cpp index e78cb095c..8a11928be 100644 --- a/hphp/runtime/ext/asio/static_result_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/static_result_wait_handle.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_22StaticResultWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP24c_StaticResultWaitHandle13t___constructEv"); -TypedValue* tg_22StaticResultWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_22StaticResultWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -82,7 +82,7 @@ result => rdx Value* th_22StaticResultWaitHandle_create(Value* _rv, char const* cls_, TypedValue* result) asm("_ZN4HPHP24c_StaticResultWaitHandle9ti_createEPKcRKNS_7VariantE"); -TypedValue* tg_22StaticResultWaitHandle_create(HPHP::VM::ActRec *ar) { +TypedValue* tg_22StaticResultWaitHandle_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/static_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/static_wait_handle.ext_hhvm.cpp index 3b22e0c77..ec185cdb5 100644 --- a/hphp/runtime/ext/asio/static_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/static_wait_handle.ext_hhvm.cpp @@ -34,7 +34,7 @@ this_ => rdi void th_16StaticWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP18c_StaticWaitHandle13t___constructEv"); -TypedValue* tg_16StaticWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_16StaticWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/wait_handle.ext_hhvm.cpp index d2f9d4100..f10d1d03c 100644 --- a/hphp/runtime/ext/asio/wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/wait_handle.ext_hhvm.cpp @@ -34,7 +34,7 @@ this_ => rdi void th_10WaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle13t___constructEv"); -TypedValue* tg_10WaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -72,7 +72,7 @@ this_ => rsi Value* th_10WaitHandle_getWaitHandle(Value* _rv, ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle15t_getwaithandleEv"); -TypedValue* tg_10WaitHandle_getWaitHandle(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_getWaitHandle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -108,7 +108,7 @@ this_ => rdi void th_10WaitHandle_import(ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle8t_importEv"); -TypedValue* tg_10WaitHandle_import(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_import(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -146,7 +146,7 @@ this_ => rsi TypedValue* th_10WaitHandle_join(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle6t_joinEv"); -TypedValue* tg_10WaitHandle_join(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_join(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -182,7 +182,7 @@ this_ => rdi bool th_10WaitHandle_isFinished(ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle12t_isfinishedEv"); -TypedValue* tg_10WaitHandle_isFinished(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_isFinished(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -218,7 +218,7 @@ this_ => rdi bool th_10WaitHandle_isSucceeded(ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle13t_issucceededEv"); -TypedValue* tg_10WaitHandle_isSucceeded(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_isSucceeded(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -254,7 +254,7 @@ this_ => rdi bool th_10WaitHandle_isFailed(ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle10t_isfailedEv"); -TypedValue* tg_10WaitHandle_isFailed(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_isFailed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -290,7 +290,7 @@ this_ => rdi long th_10WaitHandle_getID(ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle7t_getidEv"); -TypedValue* tg_10WaitHandle_getID(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_getID(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -327,7 +327,7 @@ this_ => rsi Value* th_10WaitHandle_getName(Value* _rv, ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle9t_getnameEv"); -TypedValue* tg_10WaitHandle_getName(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_getName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -365,7 +365,7 @@ this_ => rsi Value* th_10WaitHandle_getExceptionIfFailed(Value* _rv, ObjectData* this_) asm("_ZN4HPHP12c_WaitHandle22t_getexceptioniffailedEv"); -TypedValue* tg_10WaitHandle_getExceptionIfFailed(HPHP::VM::ActRec *ar) { +TypedValue* tg_10WaitHandle_getExceptionIfFailed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/asio/waitable_wait_handle.ext_hhvm.cpp b/hphp/runtime/ext/asio/waitable_wait_handle.ext_hhvm.cpp index 4f3573f97..d2badfaae 100644 --- a/hphp/runtime/ext/asio/waitable_wait_handle.ext_hhvm.cpp +++ b/hphp/runtime/ext/asio/waitable_wait_handle.ext_hhvm.cpp @@ -34,7 +34,7 @@ this_ => rdi void th_18WaitableWaitHandle___construct(ObjectData* this_) asm("_ZN4HPHP20c_WaitableWaitHandle13t___constructEv"); -TypedValue* tg_18WaitableWaitHandle___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_18WaitableWaitHandle___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -71,7 +71,7 @@ this_ => rdi int th_18WaitableWaitHandle_getContextIdx(ObjectData* this_) asm("_ZN4HPHP20c_WaitableWaitHandle15t_getcontextidxEv"); -TypedValue* tg_18WaitableWaitHandle_getContextIdx(HPHP::VM::ActRec *ar) { +TypedValue* tg_18WaitableWaitHandle_getContextIdx(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -108,7 +108,7 @@ this_ => rsi Value* th_18WaitableWaitHandle_getCreator(Value* _rv, ObjectData* this_) asm("_ZN4HPHP20c_WaitableWaitHandle12t_getcreatorEv"); -TypedValue* tg_18WaitableWaitHandle_getCreator(HPHP::VM::ActRec *ar) { +TypedValue* tg_18WaitableWaitHandle_getCreator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -146,7 +146,7 @@ this_ => rsi Value* th_18WaitableWaitHandle_getParents(Value* _rv, ObjectData* this_) asm("_ZN4HPHP20c_WaitableWaitHandle12t_getparentsEv"); -TypedValue* tg_18WaitableWaitHandle_getParents(HPHP::VM::ActRec *ar) { +TypedValue* tg_18WaitableWaitHandle_getParents(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -184,7 +184,7 @@ this_ => rsi Value* th_18WaitableWaitHandle_getStackTrace(Value* _rv, ObjectData* this_) asm("_ZN4HPHP20c_WaitableWaitHandle15t_getstacktraceEv"); -TypedValue* tg_18WaitableWaitHandle_getStackTrace(HPHP::VM::ActRec *ar) { +TypedValue* tg_18WaitableWaitHandle_getStackTrace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_apache.ext_hhvm.cpp b/hphp/runtime/ext/ext_apache.ext_hhvm.cpp index 3a54aa2a0..f4d6b260b 100644 --- a/hphp/runtime/ext/ext_apache.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_apache.ext_hhvm.cpp @@ -36,8 +36,8 @@ note_value => rdx TypedValue* fh_apache_note(TypedValue* _rv, Value* note_name, Value* note_value) asm("_ZN4HPHP13f_apache_noteERKNS_6StringES2_"); -TypedValue * fg1_apache_note(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apache_note(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apache_note(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apache_note(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -55,7 +55,7 @@ TypedValue * fg1_apache_note(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_apache_note(HPHP::VM::ActRec *ar) { +TypedValue* fg_apache_note(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -95,7 +95,7 @@ _rv => rdi Value* fh_apache_request_headers(Value* _rv) asm("_ZN4HPHP24f_apache_request_headersEv"); -TypedValue* fg_apache_request_headers(HPHP::VM::ActRec *ar) { +TypedValue* fg_apache_request_headers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -129,7 +129,7 @@ _rv => rdi Value* fh_apache_response_headers(Value* _rv) asm("_ZN4HPHP25f_apache_response_headersEv"); -TypedValue* fg_apache_response_headers(HPHP::VM::ActRec *ar) { +TypedValue* fg_apache_response_headers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -165,8 +165,8 @@ walk_to_top => rdx bool fh_apache_setenv(Value* variable, Value* value, bool walk_to_top) asm("_ZN4HPHP15f_apache_setenvERKNS_6StringES2_b"); -TypedValue * fg1_apache_setenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apache_setenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apache_setenv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apache_setenv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -187,7 +187,7 @@ TypedValue * fg1_apache_setenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_apache_setenv(HPHP::VM::ActRec *ar) { +TypedValue* fg_apache_setenv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -227,7 +227,7 @@ _rv => rdi Value* fh_getallheaders(Value* _rv) asm("_ZN4HPHP15f_getallheadersEv"); -TypedValue* fg_getallheaders(HPHP::VM::ActRec *ar) { +TypedValue* fg_getallheaders(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -261,8 +261,8 @@ filename => rdi bool fh_virtual(Value* filename) asm("_ZN4HPHP9f_virtualERKNS_6StringE"); -TypedValue * fg1_virtual(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_virtual(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_virtual(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_virtual(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -270,7 +270,7 @@ TypedValue * fg1_virtual(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_virtual(HPHP::VM::ActRec *ar) { +TypedValue* fg_virtual(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -310,7 +310,7 @@ _rv => rdi TypedValue* fh_apache_get_config(TypedValue* _rv) asm("_ZN4HPHP19f_apache_get_configEv"); -TypedValue* fg_apache_get_config(HPHP::VM::ActRec *ar) { +TypedValue* fg_apache_get_config(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -343,7 +343,7 @@ _rv => rdi TypedValue* fh_apache_get_scoreboard(TypedValue* _rv) asm("_ZN4HPHP23f_apache_get_scoreboardEv"); -TypedValue* fg_apache_get_scoreboard(HPHP::VM::ActRec *ar) { +TypedValue* fg_apache_get_scoreboard(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -376,7 +376,7 @@ _rv => rdi TypedValue* fh_apache_get_rewrite_rules(TypedValue* _rv) asm("_ZN4HPHP26f_apache_get_rewrite_rulesEv"); -TypedValue* fg_apache_get_rewrite_rules(HPHP::VM::ActRec *ar) { +TypedValue* fg_apache_get_rewrite_rules(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_apc.ext_hhvm.cpp b/hphp/runtime/ext/ext_apc.ext_hhvm.cpp index c4e9400b7..4353103ac 100644 --- a/hphp/runtime/ext/ext_apc.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_apc.ext_hhvm.cpp @@ -37,8 +37,8 @@ cache_id => rcx bool fh_apc_add(Value* key, TypedValue* var, long ttl, long cache_id) asm("_ZN4HPHP9f_apc_addERKNS_6StringERKNS_7VariantEll"); -TypedValue * fg1_apc_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_add(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_add(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -60,7 +60,7 @@ TypedValue * fg1_apc_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_apc_add(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -103,8 +103,8 @@ cache_id => rcx bool fh_apc_store(Value* key, TypedValue* var, long ttl, long cache_id) asm("_ZN4HPHP11f_apc_storeERKNS_6StringERKNS_7VariantEll"); -TypedValue * fg1_apc_store(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_store(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_store(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_store(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -126,7 +126,7 @@ TypedValue * fg1_apc_store(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_apc_store(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_store(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -169,8 +169,8 @@ cache_id => rcx TypedValue* fh_apc_fetch(TypedValue* _rv, TypedValue* key, TypedValue* success, long cache_id) asm("_ZN4HPHP11f_apc_fetchERKNS_7VariantERKNS_14VRefParamValueEl"); -TypedValue * fg1_apc_fetch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_fetch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_fetch(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_fetch(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-2); VRefParamValue defVal1 = uninit_null(); @@ -179,7 +179,7 @@ TypedValue * fg1_apc_fetch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_apc_fetch(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_fetch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -222,8 +222,8 @@ cache_id => rdx TypedValue* fh_apc_delete(TypedValue* _rv, TypedValue* key, long cache_id) asm("_ZN4HPHP12f_apc_deleteERKNS_7VariantEl"); -TypedValue * fg1_apc_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_delete(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_delete(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_apc_delete((rv), (args-0), (count > 1) ? (long)(args[-1].m_data.num) : (long)(0)); @@ -231,7 +231,7 @@ TypedValue * fg1_apc_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_apc_delete(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_delete(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -273,8 +273,8 @@ cache_id => rdx bool fh_apc_compile_file(Value* filename, bool atomic, long cache_id) asm("_ZN4HPHP18f_apc_compile_fileERKNS_6StringEbl"); -TypedValue * fg1_apc_compile_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_compile_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_compile_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_compile_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -296,7 +296,7 @@ TypedValue * fg1_apc_compile_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_apc_compile_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_compile_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -338,8 +338,8 @@ limited => rdx TypedValue* fh_apc_cache_info(TypedValue* _rv, long cache_id, bool limited) asm("_ZN4HPHP16f_apc_cache_infoElb"); -TypedValue * fg1_apc_cache_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_cache_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_cache_info(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_cache_info(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -358,7 +358,7 @@ TypedValue * fg1_apc_cache_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_apc_cache_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_cache_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -398,8 +398,8 @@ cache_id => rdi bool fh_apc_clear_cache(long cache_id) asm("_ZN4HPHP17f_apc_clear_cacheEl"); -TypedValue * fg1_apc_clear_cache(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_clear_cache(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_clear_cache(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_clear_cache(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -407,7 +407,7 @@ TypedValue * fg1_apc_clear_cache(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_apc_clear_cache(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_clear_cache(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -450,8 +450,8 @@ cache_id => rcx bool fh_apc_define_constants(Value* key, Value* constants, bool case_sensitive, long cache_id) asm("_ZN4HPHP22f_apc_define_constantsERKNS_6StringES2_bl"); -TypedValue * fg1_apc_define_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_define_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_define_constants(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_define_constants(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -476,7 +476,7 @@ TypedValue * fg1_apc_define_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_apc_define_constants(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_define_constants(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -518,8 +518,8 @@ cache_id => rdx bool fh_apc_load_constants(Value* key, bool case_sensitive, long cache_id) asm("_ZN4HPHP20f_apc_load_constantsERKNS_6StringEbl"); -TypedValue * fg1_apc_load_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_load_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_load_constants(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_load_constants(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -541,7 +541,7 @@ TypedValue * fg1_apc_load_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_apc_load_constants(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_load_constants(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -582,8 +582,8 @@ limited => rsi Value* fh_apc_sma_info(Value* _rv, bool limited) asm("_ZN4HPHP14f_apc_sma_infoEb"); -TypedValue * fg1_apc_sma_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_sma_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_sma_info(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_sma_info(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -592,7 +592,7 @@ TypedValue * fg1_apc_sma_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_apc_sma_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_sma_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -633,7 +633,7 @@ _rv => rdi Value* fh_apc_filehits(Value* _rv) asm("_ZN4HPHP14f_apc_filehitsEv"); -TypedValue* fg_apc_filehits(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_filehits(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -669,8 +669,8 @@ cache_id => rdx TypedValue* fh_apc_delete_file(TypedValue* _rv, TypedValue* keys, long cache_id) asm("_ZN4HPHP17f_apc_delete_fileERKNS_7VariantEl"); -TypedValue * fg1_apc_delete_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_delete_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_delete_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_delete_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_apc_delete_file((rv), (args-0), (count > 1) ? (long)(args[-1].m_data.num) : (long)(0)); @@ -678,7 +678,7 @@ TypedValue * fg1_apc_delete_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_apc_delete_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_delete_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -722,8 +722,8 @@ cache_id => r8 TypedValue* fh_apc_inc(TypedValue* _rv, Value* key, long step, TypedValue* success, long cache_id) asm("_ZN4HPHP9f_apc_incERKNS_6StringElRKNS_14VRefParamValueEl"); -TypedValue * fg1_apc_inc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_inc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_inc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_inc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -747,7 +747,7 @@ TypedValue * fg1_apc_inc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_apc_inc(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_inc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -792,8 +792,8 @@ cache_id => r8 TypedValue* fh_apc_dec(TypedValue* _rv, Value* key, long step, TypedValue* success, long cache_id) asm("_ZN4HPHP9f_apc_decERKNS_6StringElRKNS_14VRefParamValueEl"); -TypedValue * fg1_apc_dec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_dec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_dec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_dec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -817,7 +817,7 @@ TypedValue * fg1_apc_dec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_apc_dec(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_dec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -861,8 +861,8 @@ cache_id => rcx bool fh_apc_cas(Value* key, long old_cas, long new_cas, long cache_id) asm("_ZN4HPHP9f_apc_casERKNS_6StringElll"); -TypedValue * fg1_apc_cas(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_cas(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_cas(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_cas(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -886,7 +886,7 @@ TypedValue * fg1_apc_cas(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_apc_cas(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_cas(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -928,8 +928,8 @@ cache_id => rdx TypedValue* fh_apc_exists(TypedValue* _rv, TypedValue* key, long cache_id) asm("_ZN4HPHP12f_apc_existsERKNS_7VariantEl"); -TypedValue * fg1_apc_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_apc_exists((rv), (args-0), (count > 1) ? (long)(args[-1].m_data.num) : (long)(0)); @@ -937,7 +937,7 @@ TypedValue * fg1_apc_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_apc_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -979,8 +979,8 @@ filter => rdx TypedValue* fh_apc_bin_dump(TypedValue* _rv, long cache_id, TypedValue* filter) asm("_ZN4HPHP14f_apc_bin_dumpElRKNS_7VariantE"); -TypedValue * fg1_apc_bin_dump(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_bin_dump(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_bin_dump(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_bin_dump(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_apc_bin_dump((rv), (count > 0) ? (long)(args[-0].m_data.num) : (long)(0), (count > 1) ? (args-1) : (TypedValue*)(&null_variant)); @@ -988,7 +988,7 @@ TypedValue * fg1_apc_bin_dump(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_apc_bin_dump(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_bin_dump(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1030,8 +1030,8 @@ cache_id => rdx bool fh_apc_bin_load(Value* data, long flags, long cache_id) asm("_ZN4HPHP14f_apc_bin_loadERKNS_6StringEll"); -TypedValue * fg1_apc_bin_load(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_bin_load(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_bin_load(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_bin_load(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1053,7 +1053,7 @@ TypedValue * fg1_apc_bin_load(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_apc_bin_load(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_bin_load(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1098,8 +1098,8 @@ context => r9 TypedValue* fh_apc_bin_dumpfile(TypedValue* _rv, long cache_id, TypedValue* filter, Value* filename, long flags, Value* context) asm("_ZN4HPHP18f_apc_bin_dumpfileElRKNS_7VariantERKNS_6StringElRKNS_6ObjectE"); -TypedValue * fg1_apc_bin_dumpfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_bin_dumpfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_bin_dumpfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_bin_dumpfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1125,7 +1125,7 @@ TypedValue * fg1_apc_bin_dumpfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_apc_bin_dumpfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_bin_dumpfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1169,8 +1169,8 @@ cache_id => rcx bool fh_apc_bin_loadfile(Value* filename, Value* context, long flags, long cache_id) asm("_ZN4HPHP18f_apc_bin_loadfileERKNS_6StringERKNS_6ObjectEll"); -TypedValue * fg1_apc_bin_loadfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apc_bin_loadfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apc_bin_loadfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apc_bin_loadfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1197,7 +1197,7 @@ TypedValue * fg1_apc_bin_loadfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_apc_bin_loadfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_apc_bin_loadfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_apd.ext_hhvm.cpp b/hphp/runtime/ext/ext_apd.ext_hhvm.cpp index e4e944788..823f3deda 100644 --- a/hphp/runtime/ext/ext_apd.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_apd.ext_hhvm.cpp @@ -36,8 +36,8 @@ code => rdx bool fh_override_function(Value* name, Value* args, Value* code) asm("_ZN4HPHP19f_override_functionERKNS_6StringES2_S2_"); -TypedValue * fg1_override_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_override_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_override_function(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_override_function(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -53,7 +53,7 @@ TypedValue * fg1_override_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_override_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_override_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -94,8 +94,8 @@ new_name => rsi bool fh_rename_function(Value* orig_name, Value* new_name) asm("_ZN4HPHP17f_rename_functionERKNS_6StringES2_"); -TypedValue * fg1_rename_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rename_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rename_function(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rename_function(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -108,7 +108,7 @@ TypedValue * fg1_rename_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_rename_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_rename_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -146,7 +146,7 @@ _ZN4HPHP23f_apd_set_browser_traceEv void fh_apd_set_browser_trace() asm("_ZN4HPHP23f_apd_set_browser_traceEv"); -TypedValue* fg_apd_set_browser_trace(HPHP::VM::ActRec *ar) { +TypedValue* fg_apd_set_browser_trace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -182,8 +182,8 @@ frament => rdx Value* fh_apd_set_pprof_trace(Value* _rv, Value* dumpdir, Value* frament) asm("_ZN4HPHP21f_apd_set_pprof_traceERKNS_6StringES2_"); -TypedValue * fg1_apd_set_pprof_trace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apd_set_pprof_trace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apd_set_pprof_trace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apd_set_pprof_trace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -203,7 +203,7 @@ TypedValue * fg1_apd_set_pprof_trace(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_apd_set_pprof_trace(HPHP::VM::ActRec *ar) { +TypedValue* fg_apd_set_pprof_trace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -247,8 +247,8 @@ mask => rcx bool fh_apd_set_session_trace_socket(Value* ip_or_filename, int domain, int port, int mask) asm("_ZN4HPHP30f_apd_set_session_trace_socketERKNS_6StringEiii"); -TypedValue * fg1_apd_set_session_trace_socket(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apd_set_session_trace_socket(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apd_set_session_trace_socket(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apd_set_session_trace_socket(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfInt64) { @@ -267,7 +267,7 @@ TypedValue * fg1_apd_set_session_trace_socket(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_apd_set_session_trace_socket(HPHP::VM::ActRec *ar) { +TypedValue* fg_apd_set_session_trace_socket(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -305,7 +305,7 @@ _ZN4HPHP16f_apd_stop_traceEv void fh_apd_stop_trace() asm("_ZN4HPHP16f_apd_stop_traceEv"); -TypedValue* fg_apd_stop_trace(HPHP::VM::ActRec *ar) { +TypedValue* fg_apd_stop_trace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -338,7 +338,7 @@ _ZN4HPHP16f_apd_breakpointEv bool fh_apd_breakpoint() asm("_ZN4HPHP16f_apd_breakpointEv"); -TypedValue* fg_apd_breakpoint(HPHP::VM::ActRec *ar) { +TypedValue* fg_apd_breakpoint(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -370,7 +370,7 @@ _ZN4HPHP14f_apd_continueEv bool fh_apd_continue() asm("_ZN4HPHP14f_apd_continueEv"); -TypedValue* fg_apd_continue(HPHP::VM::ActRec *ar) { +TypedValue* fg_apd_continue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -403,8 +403,8 @@ output => rdi bool fh_apd_echo(Value* output) asm("_ZN4HPHP10f_apd_echoERKNS_6StringE"); -TypedValue * fg1_apd_echo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_apd_echo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_apd_echo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_apd_echo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -412,7 +412,7 @@ TypedValue * fg1_apd_echo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_apd_echo(HPHP::VM::ActRec *ar) { +TypedValue* fg_apd_echo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_array.cpp b/hphp/runtime/ext/ext_array.cpp index d15981bdc..9386ba5c3 100644 --- a/hphp/runtime/ext/ext_array.cpp +++ b/hphp/runtime/ext/ext_array.cpp @@ -167,7 +167,7 @@ Variant f_array_fill(int start_index, int num, CVarRef value) { } static bool filter_func(CVarRef value, const void *data) { - HPHP::VM::CallCtx* ctx = (HPHP::VM::CallCtx*)data; + CallCtx* ctx = (CallCtx*)data; Variant ret; g_vmContext->invokeFunc((TypedValue*)&ret, ctx->func, CREATE_VECTOR1(value), ctx->this_, ctx->cls, @@ -180,7 +180,7 @@ Variant f_array_filter(CVarRef input, CVarRef callback /* = null_variant */) { if (callback.isNull()) { return ArrayUtil::Filter(arr_input); } - HPHP::VM::CallCtx ctx; + CallCtx ctx; CallerFrame cf; ctx.func = vm_decode_function(callback, cf(), false, ctx.this_, ctx.cls, ctx.invName); @@ -242,7 +242,7 @@ Variant f_array_keys(CVarRef input, CVarRef search_value /* = null_variant */, } static Variant map_func(CArrRef params, const void *data) { - HPHP::VM::CallCtx* ctx = (HPHP::VM::CallCtx*)data; + CallCtx* ctx = (CallCtx*)data; if (ctx == NULL) { if (params.size() == 1) { return params[0]; @@ -265,7 +265,7 @@ Variant f_array_map(int _argc, CVarRef callback, CVarRef arr1, CArrRef _argv /* if (!_argv.empty()) { inputs = inputs.merge(_argv); } - HPHP::VM::CallCtx ctx; + CallCtx ctx; ctx.func = NULL; if (!callback.isNull()) { CallerFrame cf; @@ -465,7 +465,7 @@ Variant f_array_rand(CVarRef input, int num_req /* = 1 */) { } static Variant reduce_func(CVarRef result, CVarRef operand, const void *data) { - HPHP::VM::CallCtx* ctx = (HPHP::VM::CallCtx*)data; + CallCtx* ctx = (CallCtx*)data; Variant ret; g_vmContext->invokeFunc((TypedValue*)&ret, ctx->func, CREATE_VECTOR2(result, operand), ctx->this_, @@ -475,7 +475,7 @@ static Variant reduce_func(CVarRef result, CVarRef operand, const void *data) { Variant f_array_reduce(CVarRef input, CVarRef callback, CVarRef initial /* = null_variant */) { getCheckedArray(input); - HPHP::VM::CallCtx ctx; + CallCtx ctx; CallerFrame cf; ctx.func = vm_decode_function(callback, cf(), false, ctx.this_, ctx.cls, ctx.invName); @@ -573,7 +573,7 @@ Variant f_array_values(CVarRef input) { static void walk_func(VRefParam value, CVarRef key, CVarRef userdata, const void *data) { - HPHP::VM::CallCtx* ctx = (HPHP::VM::CallCtx*)data; + CallCtx* ctx = (CallCtx*)data; Variant sink; g_vmContext->invokeFunc((TypedValue*)&sink, ctx->func, CREATE_VECTOR3(ref(value), key, userdata), @@ -586,7 +586,7 @@ bool f_array_walk_recursive(VRefParam input, CVarRef funcname, throw_bad_array_exception(); return false; } - HPHP::VM::CallCtx ctx; + CallCtx ctx; CallerFrame cf; ctx.func = vm_decode_function(funcname, cf(), false, ctx.this_, ctx.cls, ctx.invName); @@ -603,7 +603,7 @@ bool f_array_walk(VRefParam input, CVarRef funcname, throw_bad_array_exception(); return false; } - HPHP::VM::CallCtx ctx; + CallCtx ctx; CallerFrame cf; ctx.func = vm_decode_function(funcname, cf(), false, ctx.this_, ctx.cls, ctx.invName); @@ -614,7 +614,7 @@ bool f_array_walk(VRefParam input, CVarRef funcname, return true; } -static void compact(HPHP::VM::VarEnv* v, Array &ret, CVarRef var) { +static void compact(VarEnv* v, Array &ret, CVarRef var) { if (var.isArray()) { for (ArrayIter iter(var.getArrayData()); iter; ++iter) { compact(v, ret, iter.second()); @@ -629,7 +629,7 @@ static void compact(HPHP::VM::VarEnv* v, Array &ret, CVarRef var) { Array f_compact(int _argc, CVarRef varname, CArrRef _argv /* = null_array */) { Array ret = Array::Create(); - HPHP::VM::VarEnv* v = g_vmContext->getVarEnv(); + VarEnv* v = g_vmContext->getVarEnv(); if (v) { compact(v, ret, varname); compact(v, ret, _argv); @@ -736,7 +736,7 @@ static Variant f_hphp_get_iterator(VRefParam iterable, bool isMutable) { if (!iterator.isObject()) break; obj = iterator.getObjectData(); } - VM::Class*ctx = g_vmContext->getContextClass(); + VM::Class* ctx = g_vmContext->getContextClass(); CStrRef context = ctx ? ctx->nameRef() : empty_string; if (isMutable) { if (obj->instanceof(SystemLib::s_IteratorClass)) { diff --git a/hphp/runtime/ext/ext_array.ext_hhvm.cpp b/hphp/runtime/ext/ext_array.ext_hhvm.cpp index e8b9f5936..92ea1fa7c 100644 --- a/hphp/runtime/ext/ext_array.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_array.ext_hhvm.cpp @@ -36,8 +36,8 @@ upper => rdx TypedValue* fh_array_change_key_case(TypedValue* _rv, TypedValue* input, bool upper) asm("_ZN4HPHP23f_array_change_key_caseERKNS_7VariantEb"); -TypedValue * fg1_array_change_key_case(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_change_key_case(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_change_key_case(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_change_key_case(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_array_change_key_case((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(false)); @@ -45,7 +45,7 @@ TypedValue * fg1_array_change_key_case(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_array_change_key_case(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_change_key_case(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -88,8 +88,8 @@ preserve_keys => rcx TypedValue* fh_array_chunk(TypedValue* _rv, TypedValue* input, int size, bool preserve_keys) asm("_ZN4HPHP13f_array_chunkERKNS_7VariantEib"); -TypedValue * fg1_array_chunk(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_chunk(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_chunk(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_chunk(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -107,7 +107,7 @@ TypedValue * fg1_array_chunk(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_array_chunk(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_chunk(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -150,7 +150,7 @@ idx_key => rcx TypedValue* fh_array_column(TypedValue* _rv, TypedValue* arr, TypedValue* val_key, TypedValue* idx_key) asm("_ZN4HPHP14f_array_columnERKNS_7VariantES2_S2_"); -TypedValue* fg_array_column(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_column(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -185,7 +185,7 @@ values => rdx TypedValue* fh_array_combine(TypedValue* _rv, TypedValue* keys, TypedValue* values) asm("_ZN4HPHP15f_array_combineERKNS_7VariantES2_"); -TypedValue* fg_array_combine(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_combine(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -219,7 +219,7 @@ input => rsi TypedValue* fh_array_count_values(TypedValue* _rv, TypedValue* input) asm("_ZN4HPHP20f_array_count_valuesERKNS_7VariantE"); -TypedValue* fg_array_count_values(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_count_values(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -254,7 +254,7 @@ value => rdx TypedValue* fh_array_fill_keys(TypedValue* _rv, TypedValue* keys, TypedValue* value) asm("_ZN4HPHP17f_array_fill_keysERKNS_7VariantES2_"); -TypedValue* fg_array_fill_keys(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_fill_keys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -290,8 +290,8 @@ value => rcx TypedValue* fh_array_fill(TypedValue* _rv, int start_index, int num, TypedValue* value) asm("_ZN4HPHP12f_array_fillEiiRKNS_7VariantE"); -TypedValue * fg1_array_fill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_fill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_fill(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_fill(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -304,7 +304,7 @@ TypedValue * fg1_array_fill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_array_fill(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_fill(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -346,7 +346,7 @@ callback => rdx TypedValue* fh_array_filter(TypedValue* _rv, TypedValue* input, TypedValue* callback) asm("_ZN4HPHP14f_array_filterERKNS_7VariantES2_"); -TypedValue* fg_array_filter(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_filter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -380,7 +380,7 @@ trans => rsi TypedValue* fh_array_flip(TypedValue* _rv, TypedValue* trans) asm("_ZN4HPHP12f_array_flipERKNS_7VariantE"); -TypedValue* fg_array_flip(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_flip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -414,7 +414,7 @@ search => rsi bool fh_array_key_exists(TypedValue* key, TypedValue* search) asm("_ZN4HPHP18f_array_key_existsERKNS_7VariantES2_"); -TypedValue* fg_array_key_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_key_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -448,7 +448,7 @@ search => rsi bool fh_key_exists(TypedValue* key, TypedValue* search) asm("_ZN4HPHP12f_key_existsERKNS_7VariantES2_"); -TypedValue* fg_key_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_key_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -484,8 +484,8 @@ strict => rcx TypedValue* fh_array_keys(TypedValue* _rv, TypedValue* input, TypedValue* search_value, bool strict) asm("_ZN4HPHP12f_array_keysERKNS_7VariantES2_b"); -TypedValue * fg1_array_keys(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_keys(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_keys(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_keys(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-2); fh_array_keys((rv), (args-0), (count > 1) ? (args-1) : (TypedValue*)(&null_variant), (count > 2) ? (bool)(args[-2].m_data.num) : (bool)(false)); @@ -493,7 +493,7 @@ TypedValue * fg1_array_keys(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_array_keys(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_keys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -537,7 +537,7 @@ _argv => r8 TypedValue* fh_array_map(TypedValue* _rv, int64_t _argc, TypedValue* callback, TypedValue* arr1, Value* _argv) asm("_ZN4HPHP11f_array_mapEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_array_map(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_map(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -586,7 +586,7 @@ _argv => rcx TypedValue* fh_array_merge_recursive(TypedValue* _rv, int64_t _argc, TypedValue* array1, Value* _argv) asm("_ZN4HPHP23f_array_merge_recursiveEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_array_merge_recursive(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_merge_recursive(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -635,7 +635,7 @@ _argv => rcx TypedValue* fh_array_merge(TypedValue* _rv, int64_t _argc, TypedValue* array1, Value* _argv) asm("_ZN4HPHP13f_array_mergeEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_array_merge(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_merge(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -684,7 +684,7 @@ _argv => rcx TypedValue* fh_array_replace_recursive(TypedValue* _rv, int64_t _argc, TypedValue* array1, Value* _argv) asm("_ZN4HPHP25f_array_replace_recursiveEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_array_replace_recursive(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_replace_recursive(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -733,7 +733,7 @@ _argv => rcx TypedValue* fh_array_replace(TypedValue* _rv, int64_t _argc, TypedValue* array1, Value* _argv) asm("_ZN4HPHP15f_array_replaceEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_array_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -781,7 +781,7 @@ _argv => rdx bool fh_array_multisort(int64_t _argc, TypedValue* ar1, Value* _argv) asm("_ZN4HPHP17f_array_multisortEiRKNS_14VRefParamValueERKNS_5ArrayE"); -TypedValue* fg_array_multisort(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_multisort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -830,8 +830,8 @@ pad_value => rcx TypedValue* fh_array_pad(TypedValue* _rv, TypedValue* input, int pad_size, TypedValue* pad_value) asm("_ZN4HPHP11f_array_padERKNS_7VariantEiS2_"); -TypedValue * fg1_array_pad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_pad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_pad(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_pad(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_array_pad((rv), (args-0), (int)(args[-1].m_data.num), (args-2)); @@ -839,7 +839,7 @@ TypedValue * fg1_array_pad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_array_pad(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_pad(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -880,7 +880,7 @@ array => rsi TypedValue* fh_array_pop(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP11f_array_popERKNS_14VRefParamValueE"); -TypedValue* fg_array_pop(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_pop(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -914,7 +914,7 @@ array => rsi TypedValue* fh_array_product(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP15f_array_productERKNS_7VariantE"); -TypedValue* fg_array_product(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_product(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -951,7 +951,7 @@ _argv => r8 TypedValue* fh_array_push(TypedValue* _rv, int64_t _argc, TypedValue* array, TypedValue* var, Value* _argv) asm("_ZN4HPHP12f_array_pushEiRKNS_14VRefParamValueERKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_array_push(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_push(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -999,8 +999,8 @@ num_req => rdx TypedValue* fh_array_rand(TypedValue* _rv, TypedValue* input, int num_req) asm("_ZN4HPHP12f_array_randERKNS_7VariantEi"); -TypedValue * fg1_array_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_rand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_rand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_array_rand((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(1)); @@ -1008,7 +1008,7 @@ TypedValue * fg1_array_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_array_rand(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_rand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1051,7 +1051,7 @@ initial => rcx TypedValue* fh_array_reduce(TypedValue* _rv, TypedValue* input, TypedValue* callback, TypedValue* initial) asm("_ZN4HPHP14f_array_reduceERKNS_7VariantES2_S2_"); -TypedValue* fg_array_reduce(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_reduce(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1086,8 +1086,8 @@ preserve_keys => rdx TypedValue* fh_array_reverse(TypedValue* _rv, TypedValue* array, bool preserve_keys) asm("_ZN4HPHP15f_array_reverseERKNS_7VariantEb"); -TypedValue * fg1_array_reverse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_reverse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_reverse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_reverse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_array_reverse((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(false)); @@ -1095,7 +1095,7 @@ TypedValue * fg1_array_reverse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_array_reverse(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_reverse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1138,8 +1138,8 @@ strict => rcx TypedValue* fh_array_search(TypedValue* _rv, TypedValue* needle, TypedValue* haystack, bool strict) asm("_ZN4HPHP14f_array_searchERKNS_7VariantES2_b"); -TypedValue * fg1_array_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_search(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_search(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-2); fh_array_search((rv), (args-0), (args-1), (count > 2) ? (bool)(args[-2].m_data.num) : (bool)(false)); @@ -1147,7 +1147,7 @@ TypedValue * fg1_array_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_array_search(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_search(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1188,7 +1188,7 @@ array => rsi TypedValue* fh_array_shift(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP13f_array_shiftERKNS_14VRefParamValueE"); -TypedValue* fg_array_shift(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_shift(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1225,8 +1225,8 @@ preserve_keys => r8 TypedValue* fh_array_slice(TypedValue* _rv, TypedValue* array, int offset, TypedValue* length, bool preserve_keys) asm("_ZN4HPHP13f_array_sliceERKNS_7VariantEiS2_b"); -TypedValue * fg1_array_slice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_slice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_slice(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_slice(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1245,7 +1245,7 @@ TypedValue * fg1_array_slice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_array_slice(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_slice(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1289,8 +1289,8 @@ replacement => r8 TypedValue* fh_array_splice(TypedValue* _rv, TypedValue* input, int offset, TypedValue* length, TypedValue* replacement) asm("_ZN4HPHP14f_array_spliceERKNS_14VRefParamValueEiRKNS_7VariantES5_"); -TypedValue * fg1_array_splice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_splice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_splice(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_splice(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_array_splice((rv), (args-0), (int)(args[-1].m_data.num), (count > 2) ? (args-2) : (TypedValue*)(&null_variant), (count > 3) ? (args-3) : (TypedValue*)(&null_variant)); @@ -1298,7 +1298,7 @@ TypedValue * fg1_array_splice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_array_splice(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_splice(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1339,7 +1339,7 @@ array => rsi TypedValue* fh_array_sum(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP11f_array_sumERKNS_7VariantE"); -TypedValue* fg_array_sum(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_sum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1374,8 +1374,8 @@ sort_flags => rdx TypedValue* fh_array_unique(TypedValue* _rv, TypedValue* array, int sort_flags) asm("_ZN4HPHP14f_array_uniqueERKNS_7VariantEi"); -TypedValue * fg1_array_unique(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_array_unique(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_array_unique(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_array_unique(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_array_unique((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(2)); @@ -1383,7 +1383,7 @@ TypedValue * fg1_array_unique(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_array_unique(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_unique(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1426,7 +1426,7 @@ _argv => rcx long fh_array_unshift(int64_t _argc, TypedValue* array, TypedValue* var, Value* _argv) asm("_ZN4HPHP15f_array_unshiftEiRKNS_14VRefParamValueERKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_array_unshift(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_unshift(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1473,7 +1473,7 @@ input => rsi TypedValue* fh_array_values(TypedValue* _rv, TypedValue* input) asm("_ZN4HPHP14f_array_valuesERKNS_7VariantE"); -TypedValue* fg_array_values(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_values(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1508,7 +1508,7 @@ userdata => rdx bool fh_array_walk_recursive(TypedValue* input, TypedValue* funcname, TypedValue* userdata) asm("_ZN4HPHP22f_array_walk_recursiveERKNS_14VRefParamValueERKNS_7VariantES5_"); -TypedValue* fg_array_walk_recursive(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_walk_recursive(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1543,7 +1543,7 @@ userdata => rdx bool fh_array_walk(TypedValue* input, TypedValue* funcname, TypedValue* userdata) asm("_ZN4HPHP12f_array_walkERKNS_14VRefParamValueERKNS_7VariantES5_"); -TypedValue* fg_array_walk(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_walk(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1579,7 +1579,7 @@ _argv => rcx Value* fh_compact(Value* _rv, int64_t _argc, TypedValue* varname, Value* _argv) asm("_ZN4HPHP9f_compactEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_compact(HPHP::VM::ActRec *ar) { +TypedValue* fg_compact(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1626,7 +1626,7 @@ array => rdi bool fh_shuffle(TypedValue* array) asm("_ZN4HPHP9f_shuffleERKNS_14VRefParamValueE"); -TypedValue* fg_shuffle(HPHP::VM::ActRec *ar) { +TypedValue* fg_shuffle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1660,8 +1660,8 @@ recursive => rsi long fh_count(TypedValue* var, bool recursive) asm("_ZN4HPHP7f_countERKNS_7VariantEb"); -TypedValue * fg1_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_count(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_count(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToBooleanInPlace(args-1); @@ -1669,7 +1669,7 @@ TypedValue * fg1_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_count(HPHP::VM::ActRec *ar) { +TypedValue* fg_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1710,8 +1710,8 @@ recursive => rsi long fh_sizeof(TypedValue* var, bool recursive) asm("_ZN4HPHP8f_sizeofERKNS_7VariantEb"); -TypedValue * fg1_sizeof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sizeof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sizeof(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sizeof(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToBooleanInPlace(args-1); @@ -1719,7 +1719,7 @@ TypedValue * fg1_sizeof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sizeof(HPHP::VM::ActRec *ar) { +TypedValue* fg_sizeof(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1760,7 +1760,7 @@ array => rsi TypedValue* fh_each(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP6f_eachERKNS_14VRefParamValueE"); -TypedValue* fg_each(HPHP::VM::ActRec *ar) { +TypedValue* fg_each(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1794,7 +1794,7 @@ array => rsi TypedValue* fh_current(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP9f_currentERKNS_14VRefParamValueE"); -TypedValue* fg_current(HPHP::VM::ActRec *ar) { +TypedValue* fg_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1828,7 +1828,7 @@ array => rsi TypedValue* fh_hphp_current_ref(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP18f_hphp_current_refERKNS_14VRefParamValueE"); -TypedValue* fg_hphp_current_ref(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_current_ref(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1862,7 +1862,7 @@ array => rsi TypedValue* fh_next(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP6f_nextERKNS_14VRefParamValueE"); -TypedValue* fg_next(HPHP::VM::ActRec *ar) { +TypedValue* fg_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1896,7 +1896,7 @@ array => rsi TypedValue* fh_pos(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP5f_posERKNS_14VRefParamValueE"); -TypedValue* fg_pos(HPHP::VM::ActRec *ar) { +TypedValue* fg_pos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1930,7 +1930,7 @@ array => rsi TypedValue* fh_prev(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP6f_prevERKNS_14VRefParamValueE"); -TypedValue* fg_prev(HPHP::VM::ActRec *ar) { +TypedValue* fg_prev(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1964,7 +1964,7 @@ array => rsi TypedValue* fh_reset(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP7f_resetERKNS_14VRefParamValueE"); -TypedValue* fg_reset(HPHP::VM::ActRec *ar) { +TypedValue* fg_reset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1998,7 +1998,7 @@ array => rsi TypedValue* fh_end(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP5f_endERKNS_14VRefParamValueE"); -TypedValue* fg_end(HPHP::VM::ActRec *ar) { +TypedValue* fg_end(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2032,7 +2032,7 @@ array => rsi TypedValue* fh_key(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP5f_keyERKNS_14VRefParamValueE"); -TypedValue* fg_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2066,7 +2066,7 @@ iterable => rsi TypedValue* fh_hphp_get_iterator(TypedValue* _rv, TypedValue* iterable) asm("_ZN4HPHP19f_hphp_get_iteratorERKNS_7VariantE"); -TypedValue* fg_hphp_get_iterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_iterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2100,7 +2100,7 @@ iterable => rsi TypedValue* fh_hphp_get_mutable_iterator(TypedValue* _rv, TypedValue* iterable) asm("_ZN4HPHP27f_hphp_get_mutable_iteratorERKNS_14VRefParamValueE"); -TypedValue* fg_hphp_get_mutable_iterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_mutable_iterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2135,8 +2135,8 @@ strict => rdx bool fh_in_array(TypedValue* needle, TypedValue* haystack, bool strict) asm("_ZN4HPHP10f_in_arrayERKNS_7VariantES2_b"); -TypedValue * fg1_in_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_in_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_in_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_in_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-2); @@ -2144,7 +2144,7 @@ TypedValue * fg1_in_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_in_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_in_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2187,7 +2187,7 @@ step => rcx TypedValue* fh_range(TypedValue* _rv, TypedValue* low, TypedValue* high, TypedValue* step) asm("_ZN4HPHP7f_rangeERKNS_7VariantES2_S2_"); -TypedValue* fg_range(HPHP::VM::ActRec *ar) { +TypedValue* fg_range(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2225,7 +2225,7 @@ _argv => r8 TypedValue* fh_array_diff(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, Value* _argv) asm("_ZN4HPHP12f_array_diffEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_array_diff(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_diff(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2276,7 +2276,7 @@ _argv => r9 TypedValue* fh_array_udiff(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* data_compare_func, Value* _argv) asm("_ZN4HPHP13f_array_udiffEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_udiff(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_udiff(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2326,7 +2326,7 @@ _argv => r8 TypedValue* fh_array_diff_assoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, Value* _argv) asm("_ZN4HPHP18f_array_diff_assocEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_array_diff_assoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_diff_assoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2377,7 +2377,7 @@ _argv => r9 TypedValue* fh_array_diff_uassoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* key_compare_func, Value* _argv) asm("_ZN4HPHP19f_array_diff_uassocEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_diff_uassoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_diff_uassoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2428,7 +2428,7 @@ _argv => r9 TypedValue* fh_array_udiff_assoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* data_compare_func, Value* _argv) asm("_ZN4HPHP19f_array_udiff_assocEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_udiff_assoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_udiff_assoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2480,7 +2480,7 @@ _argv => st0 TypedValue* fh_array_udiff_uassoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* data_compare_func, TypedValue* key_compare_func, Value* _argv) asm("_ZN4HPHP20f_array_udiff_uassocEiRKNS_7VariantES2_S2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_udiff_uassoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_udiff_uassoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2530,7 +2530,7 @@ _argv => r8 TypedValue* fh_array_diff_key(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, Value* _argv) asm("_ZN4HPHP16f_array_diff_keyEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_array_diff_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_diff_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2581,7 +2581,7 @@ _argv => r9 TypedValue* fh_array_diff_ukey(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* key_compare_func, Value* _argv) asm("_ZN4HPHP17f_array_diff_ukeyEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_diff_ukey(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_diff_ukey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2631,7 +2631,7 @@ _argv => r8 TypedValue* fh_array_intersect(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, Value* _argv) asm("_ZN4HPHP17f_array_intersectEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_array_intersect(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_intersect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2682,7 +2682,7 @@ _argv => r9 TypedValue* fh_array_uintersect(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* data_compare_func, Value* _argv) asm("_ZN4HPHP18f_array_uintersectEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_uintersect(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_uintersect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2732,7 +2732,7 @@ _argv => r8 TypedValue* fh_array_intersect_assoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, Value* _argv) asm("_ZN4HPHP23f_array_intersect_assocEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_array_intersect_assoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_intersect_assoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2783,7 +2783,7 @@ _argv => r9 TypedValue* fh_array_intersect_uassoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* key_compare_func, Value* _argv) asm("_ZN4HPHP24f_array_intersect_uassocEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_intersect_uassoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_intersect_uassoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2834,7 +2834,7 @@ _argv => r9 TypedValue* fh_array_uintersect_assoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* data_compare_func, Value* _argv) asm("_ZN4HPHP24f_array_uintersect_assocEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_uintersect_assoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_uintersect_assoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2886,7 +2886,7 @@ _argv => st0 TypedValue* fh_array_uintersect_uassoc(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* data_compare_func, TypedValue* key_compare_func, Value* _argv) asm("_ZN4HPHP25f_array_uintersect_uassocEiRKNS_7VariantES2_S2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_uintersect_uassoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_uintersect_uassoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2936,7 +2936,7 @@ _argv => r8 TypedValue* fh_array_intersect_key(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, Value* _argv) asm("_ZN4HPHP21f_array_intersect_keyEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_array_intersect_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_intersect_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2987,7 +2987,7 @@ _argv => r9 TypedValue* fh_array_intersect_ukey(TypedValue* _rv, int64_t _argc, TypedValue* array1, TypedValue* array2, TypedValue* key_compare_func, Value* _argv) asm("_ZN4HPHP22f_array_intersect_ukeyEiRKNS_7VariantES2_S2_RKNS_5ArrayE"); -TypedValue* fg_array_intersect_ukey(HPHP::VM::ActRec *ar) { +TypedValue* fg_array_intersect_ukey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3035,8 +3035,8 @@ use_collator => rdx bool fh_sort(TypedValue* array, int sort_flags, bool use_collator) asm("_ZN4HPHP6f_sortERKNS_14VRefParamValueEib"); -TypedValue * fg1_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3055,7 +3055,7 @@ TypedValue * fg1_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sort(HPHP::VM::ActRec *ar) { +TypedValue* fg_sort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3097,8 +3097,8 @@ use_collator => rdx bool fh_rsort(TypedValue* array, int sort_flags, bool use_collator) asm("_ZN4HPHP7f_rsortERKNS_14VRefParamValueEib"); -TypedValue * fg1_rsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rsort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rsort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3117,7 +3117,7 @@ TypedValue * fg1_rsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_rsort(HPHP::VM::ActRec *ar) { +TypedValue* fg_rsort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3159,8 +3159,8 @@ use_collator => rdx bool fh_asort(TypedValue* array, int sort_flags, bool use_collator) asm("_ZN4HPHP7f_asortERKNS_14VRefParamValueEib"); -TypedValue * fg1_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_asort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_asort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3179,7 +3179,7 @@ TypedValue * fg1_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_asort(HPHP::VM::ActRec *ar) { +TypedValue* fg_asort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3221,8 +3221,8 @@ use_collator => rdx bool fh_arsort(TypedValue* array, int sort_flags, bool use_collator) asm("_ZN4HPHP8f_arsortERKNS_14VRefParamValueEib"); -TypedValue * fg1_arsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_arsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_arsort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_arsort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3241,7 +3241,7 @@ TypedValue * fg1_arsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_arsort(HPHP::VM::ActRec *ar) { +TypedValue* fg_arsort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3282,8 +3282,8 @@ sort_flags => rsi bool fh_ksort(TypedValue* array, int sort_flags) asm("_ZN4HPHP7f_ksortERKNS_14VRefParamValueEi"); -TypedValue * fg1_ksort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ksort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ksort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ksort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-1); @@ -3291,7 +3291,7 @@ TypedValue * fg1_ksort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ksort(HPHP::VM::ActRec *ar) { +TypedValue* fg_ksort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3332,8 +3332,8 @@ sort_flags => rsi bool fh_krsort(TypedValue* array, int sort_flags) asm("_ZN4HPHP8f_krsortERKNS_14VRefParamValueEi"); -TypedValue * fg1_krsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_krsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_krsort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_krsort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-1); @@ -3341,7 +3341,7 @@ TypedValue * fg1_krsort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_krsort(HPHP::VM::ActRec *ar) { +TypedValue* fg_krsort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3382,7 +3382,7 @@ cmp_function => rsi bool fh_usort(TypedValue* array, TypedValue* cmp_function) asm("_ZN4HPHP7f_usortERKNS_14VRefParamValueERKNS_7VariantE"); -TypedValue* fg_usort(HPHP::VM::ActRec *ar) { +TypedValue* fg_usort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3416,7 +3416,7 @@ cmp_function => rsi bool fh_uasort(TypedValue* array, TypedValue* cmp_function) asm("_ZN4HPHP8f_uasortERKNS_14VRefParamValueERKNS_7VariantE"); -TypedValue* fg_uasort(HPHP::VM::ActRec *ar) { +TypedValue* fg_uasort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3450,7 +3450,7 @@ cmp_function => rsi bool fh_uksort(TypedValue* array, TypedValue* cmp_function) asm("_ZN4HPHP8f_uksortERKNS_14VRefParamValueERKNS_7VariantE"); -TypedValue* fg_uksort(HPHP::VM::ActRec *ar) { +TypedValue* fg_uksort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3484,7 +3484,7 @@ array => rsi TypedValue* fh_natsort(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP9f_natsortERKNS_14VRefParamValueE"); -TypedValue* fg_natsort(HPHP::VM::ActRec *ar) { +TypedValue* fg_natsort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3518,7 +3518,7 @@ array => rsi TypedValue* fh_natcasesort(TypedValue* _rv, TypedValue* array) asm("_ZN4HPHP13f_natcasesortERKNS_14VRefParamValueE"); -TypedValue* fg_natcasesort(HPHP::VM::ActRec *ar) { +TypedValue* fg_natcasesort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3551,7 +3551,7 @@ _rv => rdi Value* fh_i18n_loc_get_default(Value* _rv) asm("_ZN4HPHP22f_i18n_loc_get_defaultEv"); -TypedValue* fg_i18n_loc_get_default(HPHP::VM::ActRec *ar) { +TypedValue* fg_i18n_loc_get_default(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3585,8 +3585,8 @@ locale => rdi bool fh_i18n_loc_set_default(Value* locale) asm("_ZN4HPHP22f_i18n_loc_set_defaultERKNS_6StringE"); -TypedValue * fg1_i18n_loc_set_default(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_i18n_loc_set_default(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_i18n_loc_set_default(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_i18n_loc_set_default(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3594,7 +3594,7 @@ TypedValue * fg1_i18n_loc_set_default(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_i18n_loc_set_default(HPHP::VM::ActRec *ar) { +TypedValue* fg_i18n_loc_set_default(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3635,8 +3635,8 @@ val => rsi bool fh_i18n_loc_set_attribute(long attr, long val) asm("_ZN4HPHP24f_i18n_loc_set_attributeEll"); -TypedValue * fg1_i18n_loc_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_i18n_loc_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_i18n_loc_set_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_i18n_loc_set_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -3649,7 +3649,7 @@ TypedValue * fg1_i18n_loc_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_i18n_loc_set_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_i18n_loc_set_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3689,8 +3689,8 @@ strength => rdi bool fh_i18n_loc_set_strength(long strength) asm("_ZN4HPHP23f_i18n_loc_set_strengthEl"); -TypedValue * fg1_i18n_loc_set_strength(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_i18n_loc_set_strength(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_i18n_loc_set_strength(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_i18n_loc_set_strength(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -3698,7 +3698,7 @@ TypedValue * fg1_i18n_loc_set_strength(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_i18n_loc_set_strength(HPHP::VM::ActRec *ar) { +TypedValue* fg_i18n_loc_set_strength(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3738,7 +3738,7 @@ _rv => rdi TypedValue* fh_i18n_loc_get_error_code(TypedValue* _rv) asm("_ZN4HPHP25f_i18n_loc_get_error_codeEv"); -TypedValue* fg_i18n_loc_get_error_code(HPHP::VM::ActRec *ar) { +TypedValue* fg_i18n_loc_get_error_code(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_asio.ext_hhvm.cpp b/hphp/runtime/ext/ext_asio.ext_hhvm.cpp index 8901eef79..c72e821ef 100644 --- a/hphp/runtime/ext/ext_asio.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_asio.ext_hhvm.cpp @@ -32,7 +32,7 @@ _ZN4HPHP20f_asio_enter_contextEv void fh_asio_enter_context() asm("_ZN4HPHP20f_asio_enter_contextEv"); -TypedValue* fg_asio_enter_context(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_enter_context(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -64,7 +64,7 @@ _ZN4HPHP19f_asio_exit_contextEv void fh_asio_exit_context() asm("_ZN4HPHP19f_asio_exit_contextEv"); -TypedValue* fg_asio_exit_context(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_exit_context(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -97,7 +97,7 @@ _ZN4HPHP30f_asio_get_current_context_idxEv int fh_asio_get_current_context_idx() asm("_ZN4HPHP30f_asio_get_current_context_idxEv"); -TypedValue* fg_asio_get_current_context_idx(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_get_current_context_idx(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -131,8 +131,8 @@ ctx_idx => rsi Value* fh_asio_get_running_in_context(Value* _rv, int ctx_idx) asm("_ZN4HPHP29f_asio_get_running_in_contextEi"); -TypedValue * fg1_asio_get_running_in_context(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_asio_get_running_in_context(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_asio_get_running_in_context(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_asio_get_running_in_context(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToInt64InPlace(args-0); @@ -141,7 +141,7 @@ TypedValue * fg1_asio_get_running_in_context(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_asio_get_running_in_context(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_get_running_in_context(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -182,7 +182,7 @@ _rv => rdi Value* fh_asio_get_running(Value* _rv) asm("_ZN4HPHP18f_asio_get_runningEv"); -TypedValue* fg_asio_get_running(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_get_running(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -216,7 +216,7 @@ _rv => rdi Value* fh_asio_get_current(Value* _rv) asm("_ZN4HPHP18f_asio_get_currentEv"); -TypedValue* fg_asio_get_current(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_get_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -249,7 +249,7 @@ on_failed_cb => rdi void fh_asio_set_on_failed_callback(TypedValue* on_failed_cb) asm("_ZN4HPHP29f_asio_set_on_failed_callbackERKNS_7VariantE"); -TypedValue* fg_asio_set_on_failed_callback(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_set_on_failed_callback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -282,7 +282,7 @@ on_started_cb => rdi void fh_asio_set_on_started_callback(TypedValue* on_started_cb) asm("_ZN4HPHP30f_asio_set_on_started_callbackERKNS_7VariantE"); -TypedValue* fg_asio_set_on_started_callback(HPHP::VM::ActRec *ar) { +TypedValue* fg_asio_set_on_started_callback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_bcmath.ext_hhvm.cpp b/hphp/runtime/ext/ext_bcmath.ext_hhvm.cpp index 422307283..c12564797 100644 --- a/hphp/runtime/ext/ext_bcmath.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_bcmath.ext_hhvm.cpp @@ -34,8 +34,8 @@ scale => rdi bool fh_bcscale(long scale) asm("_ZN4HPHP9f_bcscaleEl"); -TypedValue * fg1_bcscale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcscale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcscale(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcscale(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -43,7 +43,7 @@ TypedValue * fg1_bcscale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcscale(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcscale(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -86,8 +86,8 @@ scale => rcx Value* fh_bcadd(Value* _rv, Value* left, Value* right, long scale) asm("_ZN4HPHP7f_bcaddERKNS_6StringES2_l"); -TypedValue * fg1_bcadd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcadd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcadd(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcadd(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -109,7 +109,7 @@ TypedValue * fg1_bcadd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcadd(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcadd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -153,8 +153,8 @@ scale => rcx Value* fh_bcsub(Value* _rv, Value* left, Value* right, long scale) asm("_ZN4HPHP7f_bcsubERKNS_6StringES2_l"); -TypedValue * fg1_bcsub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcsub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcsub(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcsub(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -176,7 +176,7 @@ TypedValue * fg1_bcsub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcsub(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcsub(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -219,8 +219,8 @@ scale => rdx long fh_bccomp(Value* left, Value* right, long scale) asm("_ZN4HPHP8f_bccompERKNS_6StringES2_l"); -TypedValue * fg1_bccomp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bccomp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bccomp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bccomp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -241,7 +241,7 @@ TypedValue * fg1_bccomp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bccomp(HPHP::VM::ActRec *ar) { +TypedValue* fg_bccomp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -284,8 +284,8 @@ scale => rcx Value* fh_bcmul(Value* _rv, Value* left, Value* right, long scale) asm("_ZN4HPHP7f_bcmulERKNS_6StringES2_l"); -TypedValue * fg1_bcmul(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcmul(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcmul(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcmul(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -307,7 +307,7 @@ TypedValue * fg1_bcmul(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcmul(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcmul(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -351,8 +351,8 @@ scale => rcx Value* fh_bcdiv(Value* _rv, Value* left, Value* right, long scale) asm("_ZN4HPHP7f_bcdivERKNS_6StringES2_l"); -TypedValue * fg1_bcdiv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcdiv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcdiv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcdiv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -374,7 +374,7 @@ TypedValue * fg1_bcdiv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcdiv(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcdiv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -417,8 +417,8 @@ right => rdx Value* fh_bcmod(Value* _rv, Value* left, Value* right) asm("_ZN4HPHP7f_bcmodERKNS_6StringES2_"); -TypedValue * fg1_bcmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcmod(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcmod(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -432,7 +432,7 @@ TypedValue * fg1_bcmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcmod(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcmod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -476,8 +476,8 @@ scale => rcx Value* fh_bcpow(Value* _rv, Value* left, Value* right, long scale) asm("_ZN4HPHP7f_bcpowERKNS_6StringES2_l"); -TypedValue * fg1_bcpow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcpow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcpow(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcpow(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -499,7 +499,7 @@ TypedValue * fg1_bcpow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcpow(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcpow(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -544,8 +544,8 @@ scale => r8 TypedValue* fh_bcpowmod(TypedValue* _rv, Value* left, Value* right, Value* modulus, long scale) asm("_ZN4HPHP10f_bcpowmodERKNS_6StringES2_S2_l"); -TypedValue * fg1_bcpowmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcpowmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcpowmod(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcpowmod(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -569,7 +569,7 @@ TypedValue * fg1_bcpowmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcpowmod(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcpowmod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -611,8 +611,8 @@ scale => rdx TypedValue* fh_bcsqrt(TypedValue* _rv, Value* operand, long scale) asm("_ZN4HPHP8f_bcsqrtERKNS_6StringEl"); -TypedValue * fg1_bcsqrt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bcsqrt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bcsqrt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bcsqrt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -630,7 +630,7 @@ TypedValue * fg1_bcsqrt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bcsqrt(HPHP::VM::ActRec *ar) { +TypedValue* fg_bcsqrt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_bzip2.ext_hhvm.cpp b/hphp/runtime/ext/ext_bzip2.ext_hhvm.cpp index facb08720..3f00d6bed 100644 --- a/hphp/runtime/ext/ext_bzip2.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_bzip2.ext_hhvm.cpp @@ -35,8 +35,8 @@ bz => rsi TypedValue* fh_bzclose(TypedValue* _rv, Value* bz) asm("_ZN4HPHP9f_bzcloseERKNS_6ObjectE"); -TypedValue * fg1_bzclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzclose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzclose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_bzclose((rv), &args[-0].m_data); @@ -44,7 +44,7 @@ TypedValue * fg1_bzclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzclose(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzclose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -86,8 +86,8 @@ mode => rdx TypedValue* fh_bzopen(TypedValue* _rv, TypedValue* filename, Value* mode) asm("_ZN4HPHP8f_bzopenERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_bzopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzopen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzopen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_bzopen((rv), (args-0), &args[-1].m_data); @@ -95,7 +95,7 @@ TypedValue * fg1_bzopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzopen(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzopen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -137,8 +137,8 @@ length => rdx TypedValue* fh_bzread(TypedValue* _rv, Value* bz, int length) asm("_ZN4HPHP8f_bzreadERKNS_6ObjectEi"); -TypedValue * fg1_bzread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzread(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzread(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -156,7 +156,7 @@ TypedValue * fg1_bzread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzread(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzread(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -199,8 +199,8 @@ length => rcx TypedValue* fh_bzwrite(TypedValue* _rv, Value* bz, Value* data, int length) asm("_ZN4HPHP9f_bzwriteERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_bzwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzwrite(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzwrite(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -221,7 +221,7 @@ TypedValue * fg1_bzwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzwrite(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzwrite(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -262,8 +262,8 @@ bz => rsi TypedValue* fh_bzflush(TypedValue* _rv, Value* bz) asm("_ZN4HPHP9f_bzflushERKNS_6ObjectE"); -TypedValue * fg1_bzflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzflush(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzflush(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_bzflush((rv), &args[-0].m_data); @@ -271,7 +271,7 @@ TypedValue * fg1_bzflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzflush(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzflush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -312,8 +312,8 @@ bz => rsi Value* fh_bzerrstr(Value* _rv, Value* bz) asm("_ZN4HPHP10f_bzerrstrERKNS_6ObjectE"); -TypedValue * fg1_bzerrstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzerrstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzerrstr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzerrstr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -322,7 +322,7 @@ TypedValue * fg1_bzerrstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzerrstr(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzerrstr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -364,8 +364,8 @@ bz => rsi TypedValue* fh_bzerror(TypedValue* _rv, Value* bz) asm("_ZN4HPHP9f_bzerrorERKNS_6ObjectE"); -TypedValue * fg1_bzerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzerror(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzerror(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_bzerror((rv), &args[-0].m_data); @@ -373,7 +373,7 @@ TypedValue * fg1_bzerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzerror(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzerror(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -413,8 +413,8 @@ bz => rdi long fh_bzerrno(Value* bz) asm("_ZN4HPHP9f_bzerrnoERKNS_6ObjectE"); -TypedValue * fg1_bzerrno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzerrno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzerrno(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzerrno(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -422,7 +422,7 @@ TypedValue * fg1_bzerrno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bzerrno(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzerrno(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -465,8 +465,8 @@ workfactor => rcx TypedValue* fh_bzcompress(TypedValue* _rv, Value* source, int blocksize, int workfactor) asm("_ZN4HPHP12f_bzcompressERKNS_6StringEii"); -TypedValue * fg1_bzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzcompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzcompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -488,7 +488,7 @@ TypedValue * fg1_bzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_bzcompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzcompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -530,8 +530,8 @@ small => rdx TypedValue* fh_bzdecompress(TypedValue* _rv, Value* source, int small) asm("_ZN4HPHP14f_bzdecompressERKNS_6StringEi"); -TypedValue * fg1_bzdecompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bzdecompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bzdecompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bzdecompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -549,7 +549,7 @@ TypedValue * fg1_bzdecompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_bzdecompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_bzdecompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_class.cpp b/hphp/runtime/ext/ext_class.cpp index 4c90e67f7..14d5ce12b 100644 --- a/hphp/runtime/ext/ext_class.cpp +++ b/hphp/runtime/ext/ext_class.cpp @@ -67,16 +67,16 @@ Array f_get_declared_traits() { } bool f_class_exists(CStrRef class_name, bool autoload /* = true */) { - return VM::Unit::classExists(class_name.get(), autoload, VM::AttrNone); + return VM::Unit::classExists(class_name.get(), autoload, AttrNone); } bool f_interface_exists(CStrRef interface_name, bool autoload /* = true */) { return VM::Unit::classExists(interface_name.get(), autoload, - VM::AttrInterface); + AttrInterface); } bool f_trait_exists(CStrRef trait_name, bool autoload /* = true */) { - return VM::Unit::classExists(trait_name.get(), autoload, VM::AttrTrait); + return VM::Unit::classExists(trait_name.get(), autoload, AttrTrait); } Array f_get_class_methods(CVarRef class_or_object) { @@ -179,7 +179,7 @@ Variant f_get_class(CVarRef object /* = null_variant */) { // No arg passed. String ret; CallerFrame cf; - HPHP::VM::Class* cls = HPHP::VM::arGetContextClassImpl(cf()); + HPHP::VM::Class* cls = arGetContextClassImpl(cf()); if (cls) { ret = CStrRef(cls->nameRef()); } @@ -231,10 +231,10 @@ static bool is_a_impl(CVarRef class_or_object, CStrRef class_name, const VM::Class* cls = get_cls(class_or_object); if (!cls) return false; - if (cls->attrs() & VM::AttrTrait) return false; + if (cls->attrs() & AttrTrait) return false; const VM::Class* other = VM::Unit::lookupClass(class_name.get()); if (!other) return false; - if (other->attrs() & VM::AttrTrait) return false; + if (other->attrs() & AttrTrait) return false; if (other == cls) return !subclass_only; return cls->classof(other); } @@ -251,7 +251,7 @@ bool f_method_exists(CVarRef class_or_object, CStrRef method_name) { const VM::Class* cls = get_cls(class_or_object); if (!cls) return false; if (cls->lookupMethod(method_name.get()) != NULL) return true; - if (cls->attrs() & VM::AttrAbstract) { + if (cls->attrs() & AttrAbstract) { const VM::ClassSet& ifaces = cls->allInterfaces(); for (VM::ClassSet::const_iterator it = ifaces.begin(); it != ifaces.end(); @@ -280,12 +280,12 @@ Variant f_property_exists(CVarRef class_or_object, CStrRef property) { return false; } bool accessible; - VM::Slot propInd = cls->getDeclPropIndex(cls, property.get(), accessible); - if (propInd != VM::kInvalidSlot) { + auto propInd = cls->getDeclPropIndex(cls, property.get(), accessible); + if (propInd != kInvalidSlot) { return true; } propInd = cls->lookupSProp(property.get()); - return (propInd != VM::kInvalidSlot); + return (propInd != kInvalidSlot); } Variant f_get_object_vars(CVarRef object) { diff --git a/hphp/runtime/ext/ext_class.ext_hhvm.cpp b/hphp/runtime/ext/ext_class.ext_hhvm.cpp index acb3fd5f4..11af8b89d 100644 --- a/hphp/runtime/ext/ext_class.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_class.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi Value* fh_get_declared_classes(Value* _rv) asm("_ZN4HPHP22f_get_declared_classesEv"); -TypedValue* fg_get_declared_classes(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_declared_classes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -68,7 +68,7 @@ _rv => rdi Value* fh_get_declared_interfaces(Value* _rv) asm("_ZN4HPHP25f_get_declared_interfacesEv"); -TypedValue* fg_get_declared_interfaces(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_declared_interfaces(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -102,7 +102,7 @@ _rv => rdi Value* fh_get_declared_traits(Value* _rv) asm("_ZN4HPHP21f_get_declared_traitsEv"); -TypedValue* fg_get_declared_traits(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_declared_traits(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -137,8 +137,8 @@ autoload => rsi bool fh_class_exists(Value* class_name, bool autoload) asm("_ZN4HPHP14f_class_existsERKNS_6StringEb"); -TypedValue * fg1_class_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_class_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_class_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_class_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -156,7 +156,7 @@ TypedValue * fg1_class_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_class_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_class_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -197,8 +197,8 @@ autoload => rsi bool fh_interface_exists(Value* interface_name, bool autoload) asm("_ZN4HPHP18f_interface_existsERKNS_6StringEb"); -TypedValue * fg1_interface_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_interface_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_interface_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_interface_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -216,7 +216,7 @@ TypedValue * fg1_interface_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_interface_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_interface_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -257,8 +257,8 @@ autoload => rsi bool fh_trait_exists(Value* trait_name, bool autoload) asm("_ZN4HPHP14f_trait_existsERKNS_6StringEb"); -TypedValue * fg1_trait_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_trait_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_trait_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_trait_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -276,7 +276,7 @@ TypedValue * fg1_trait_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_trait_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_trait_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -317,7 +317,7 @@ class_or_object => rsi Value* fh_get_class_methods(Value* _rv, TypedValue* class_or_object) asm("_ZN4HPHP19f_get_class_methodsERKNS_7VariantE"); -TypedValue* fg_get_class_methods(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_class_methods(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -352,8 +352,8 @@ class_name => rsi Value* fh_get_class_vars(Value* _rv, Value* class_name) asm("_ZN4HPHP16f_get_class_varsERKNS_6StringE"); -TypedValue * fg1_get_class_vars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_class_vars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_class_vars(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_class_vars(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -362,7 +362,7 @@ TypedValue * fg1_get_class_vars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_get_class_vars(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_class_vars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -404,8 +404,8 @@ class_name => rsi Value* fh_get_class_constants(Value* _rv, Value* class_name) asm("_ZN4HPHP21f_get_class_constantsERKNS_6StringE"); -TypedValue * fg1_get_class_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_class_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_class_constants(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_class_constants(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -414,7 +414,7 @@ TypedValue * fg1_get_class_constants(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_get_class_constants(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_class_constants(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -456,7 +456,7 @@ object => rsi TypedValue* fh_get_class(TypedValue* _rv, TypedValue* object) asm("_ZN4HPHP11f_get_classERKNS_7VariantE"); -TypedValue* fg_get_class(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_class(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -490,7 +490,7 @@ object => rsi TypedValue* fh_get_parent_class(TypedValue* _rv, TypedValue* object) asm("_ZN4HPHP18f_get_parent_classERKNS_7VariantE"); -TypedValue* fg_get_parent_class(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_parent_class(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -525,8 +525,8 @@ allow_string => rdx bool fh_is_a(TypedValue* class_or_object, Value* class_name, bool allow_string) asm("_ZN4HPHP6f_is_aERKNS_7VariantERKNS_6StringEb"); -TypedValue * fg1_is_a(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_a(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_a(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_a(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -544,7 +544,7 @@ TypedValue * fg1_is_a(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_is_a(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_a(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -586,8 +586,8 @@ allow_string => rdx bool fh_is_subclass_of(TypedValue* class_or_object, Value* class_name, bool allow_string) asm("_ZN4HPHP16f_is_subclass_ofERKNS_7VariantERKNS_6StringEb"); -TypedValue * fg1_is_subclass_of(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_subclass_of(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_subclass_of(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_subclass_of(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -605,7 +605,7 @@ TypedValue * fg1_is_subclass_of(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_is_subclass_of(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_subclass_of(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -646,8 +646,8 @@ method_name => rsi bool fh_method_exists(TypedValue* class_or_object, Value* method_name) asm("_ZN4HPHP15f_method_existsERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_method_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_method_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_method_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_method_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-1); @@ -655,7 +655,7 @@ TypedValue * fg1_method_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_method_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_method_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -697,8 +697,8 @@ property => rdx TypedValue* fh_property_exists(TypedValue* _rv, TypedValue* class_or_object, Value* property) asm("_ZN4HPHP17f_property_existsERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_property_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_property_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_property_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_property_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_property_exists((rv), (args-0), &args[-1].m_data); @@ -706,7 +706,7 @@ TypedValue * fg1_property_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_property_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_property_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -747,7 +747,7 @@ object => rsi TypedValue* fh_get_object_vars(TypedValue* _rv, TypedValue* object) asm("_ZN4HPHP17f_get_object_varsERKNS_7VariantE"); -TypedValue* fg_get_object_vars(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_object_vars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -783,8 +783,8 @@ paramarr => rcx TypedValue* fh_call_user_method_array(TypedValue* _rv, Value* method_name, TypedValue* obj, Value* paramarr) asm("_ZN4HPHP24f_call_user_method_arrayERKNS_6StringERKNS_14VRefParamValueERKNS_5ArrayE"); -TypedValue * fg1_call_user_method_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_call_user_method_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_call_user_method_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_call_user_method_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfArray) { tvCastToArrayInPlace(args-2); @@ -797,7 +797,7 @@ TypedValue * fg1_call_user_method_array(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_call_user_method_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_method_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -841,8 +841,8 @@ _argv => r8 TypedValue* fh_call_user_method(TypedValue* _rv, int64_t _argc, Value* method_name, TypedValue* obj, Value* _argv) asm("_ZN4HPHP18f_call_user_methodEiRKNS_6StringERKNS_14VRefParamValueERKNS_5ArrayE"); -TypedValue * fg1_call_user_method(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_call_user_method(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_call_user_method(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_call_user_method(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Array extraArgs; @@ -863,7 +863,7 @@ TypedValue * fg1_call_user_method(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_call_user_method(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_method(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_closure.cpp b/hphp/runtime/ext/ext_closure.cpp index 0917c7be7..37078228b 100644 --- a/hphp/runtime/ext/ext_closure.cpp +++ b/hphp/runtime/ext/ext_closure.cpp @@ -39,11 +39,11 @@ void c_Closure::t___construct() { * sp points to the last use variable on the stack. * returns the closure so that translator-x64 can just return "rax". */ -c_Closure* c_Closure::init(int numArgs, VM::ActRec* ar, TypedValue* sp) { +c_Closure* c_Closure::init(int numArgs, ActRec* ar, TypedValue* sp) { static StringData* invokeName = StringData::GetStaticString("__invoke"); VM::Func* invokeFunc = getVMClass()->lookupMethod(invokeName); - if (invokeFunc->attrs() & VM::AttrStatic) { + if (invokeFunc->attrs() & AttrStatic) { // Only set the class for static closures m_thisOrClass = (ObjectData*)(intptr_t(ar->m_func->cls()) | 1LL); } else { diff --git a/hphp/runtime/ext/ext_closure.ext_hhvm.cpp b/hphp/runtime/ext/ext_closure.ext_hhvm.cpp index e1f712563..458168d72 100644 --- a/hphp/runtime/ext/ext_closure.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_closure.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_7Closure___construct(ObjectData* this_) asm("_ZN4HPHP9c_Closure13t___constructEv"); -TypedValue* tg_7Closure___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_7Closure___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -89,7 +89,7 @@ this_ => rdi void th_12DummyClosure___construct(ObjectData* this_) asm("_ZN4HPHP14c_DummyClosure13t___constructEv"); -TypedValue* tg_12DummyClosure___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DummyClosure___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_closure.h b/hphp/runtime/ext/ext_closure.h index de0eaccd5..915f067bb 100644 --- a/hphp/runtime/ext/ext_closure.h +++ b/hphp/runtime/ext/ext_closure.h @@ -45,7 +45,7 @@ class c_Closure : public ExtObjectData { public: public: ObjectData* clone(); - c_Closure* init(int numArgs, VM::ActRec* ar, TypedValue* sp); + c_Closure* init(int numArgs, ActRec* ar, TypedValue* sp); ObjectData* getThisOrClass() { return m_thisOrClass; } const VM::Func* getInvokeFunc() { return m_func; } HphpArray* getStaticLocals(); diff --git a/hphp/runtime/ext/ext_collections.cpp b/hphp/runtime/ext/ext_collections.cpp index f668a2074..16f24c971 100644 --- a/hphp/runtime/ext/ext_collections.cpp +++ b/hphp/runtime/ext/ext_collections.cpp @@ -503,7 +503,7 @@ Object c_Vector::t_getiterator() { } Object c_Vector::t_map(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( @@ -527,7 +527,7 @@ Object c_Vector::t_map(CVarRef callback) { } Object c_Vector::t_filter(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( @@ -1429,7 +1429,7 @@ Object c_Map::t_getiterator() { } Object c_Map::t_map(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( @@ -1472,7 +1472,7 @@ Object c_Map::t_map(CVarRef callback) { } Object c_Map::t_filter(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( @@ -2615,7 +2615,7 @@ Object c_StableMap::t_getiterator() { } Object c_StableMap::t_map(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( @@ -2662,7 +2662,7 @@ Object c_StableMap::t_map(CVarRef callback) { } Object c_StableMap::t_filter(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( @@ -3564,7 +3564,7 @@ Object c_Pair::t_getiterator() { } Object c_Pair::t_map(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( @@ -3583,7 +3583,7 @@ Object c_Pair::t_map(CVarRef callback) { } Object c_Pair::t_filter(CVarRef callback) { - HPHP::VM::CallCtx ctx; + CallCtx ctx; vm_decode_function(callback, nullptr, false, ctx); if (!ctx.func) { Object e(SystemLib::AllocInvalidArgumentExceptionObject( diff --git a/hphp/runtime/ext/ext_collections.ext_hhvm.cpp b/hphp/runtime/ext/ext_collections.ext_hhvm.cpp index 163633214..8e20b89c4 100644 --- a/hphp/runtime/ext/ext_collections.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_collections.ext_hhvm.cpp @@ -44,7 +44,7 @@ iterable => rsi void th_6Vector___construct(ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP8c_Vector13t___constructERKNS_7VariantE"); -TypedValue* tg_6Vector___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -82,7 +82,7 @@ this_ => rdi bool th_6Vector_isEmpty(ObjectData* this_) asm("_ZN4HPHP8c_Vector9t_isemptyEv"); -TypedValue* tg_6Vector_isEmpty(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_isEmpty(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -118,7 +118,7 @@ this_ => rdi long th_6Vector_count(ObjectData* this_) asm("_ZN4HPHP8c_Vector7t_countEv"); -TypedValue* tg_6Vector_count(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -155,7 +155,7 @@ this_ => rsi Value* th_6Vector_items(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector7t_itemsEv"); -TypedValue* tg_6Vector_items(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_items(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -193,7 +193,7 @@ this_ => rsi Value* th_6Vector_keys(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector6t_keysEv"); -TypedValue* tg_6Vector_keys(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_keys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -231,7 +231,7 @@ this_ => rsi Value* th_6Vector_view(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector6t_viewEv"); -TypedValue* tg_6Vector_view(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_view(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -269,7 +269,7 @@ this_ => rsi Value* th_6Vector_kvzip(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector7t_kvzipEv"); -TypedValue* tg_6Vector_kvzip(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_kvzip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -308,7 +308,7 @@ key => rdx TypedValue* th_6Vector_at(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP8c_Vector4t_atERKNS_7VariantE"); -TypedValue* tg_6Vector_at(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_at(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -346,7 +346,7 @@ key => rdx TypedValue* th_6Vector_get(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP8c_Vector5t_getERKNS_7VariantE"); -TypedValue* tg_6Vector_get(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -385,7 +385,7 @@ value => rcx Value* th_6Vector_set(Value* _rv, ObjectData* this_, TypedValue* key, TypedValue* value) asm("_ZN4HPHP8c_Vector5t_setERKNS_7VariantES3_"); -TypedValue* tg_6Vector_set(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -424,7 +424,7 @@ iterable => rdx Value* th_6Vector_setAll(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP8c_Vector8t_setallERKNS_7VariantE"); -TypedValue* tg_6Vector_setAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_setAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -464,7 +464,7 @@ value => rcx Value* th_6Vector_put(Value* _rv, ObjectData* this_, TypedValue* key, TypedValue* value) asm("_ZN4HPHP8c_Vector5t_putERKNS_7VariantES3_"); -TypedValue* tg_6Vector_put(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_put(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -502,7 +502,7 @@ this_ => rsi Value* th_6Vector_clear(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector7t_clearEv"); -TypedValue* tg_6Vector_clear(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_clear(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -540,7 +540,7 @@ key => rsi bool th_6Vector_contains(ObjectData* this_, TypedValue* key) asm("_ZN4HPHP8c_Vector10t_containsERKNS_7VariantE"); -TypedValue* tg_6Vector_contains(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_contains(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -577,7 +577,7 @@ key => rsi bool th_6Vector_containsKey(ObjectData* this_, TypedValue* key) asm("_ZN4HPHP8c_Vector13t_containskeyERKNS_7VariantE"); -TypedValue* tg_6Vector_containsKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_containsKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -615,7 +615,7 @@ key => rdx Value* th_6Vector_removeKey(Value* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP8c_Vector11t_removekeyERKNS_7VariantE"); -TypedValue* tg_6Vector_removeKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_removeKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -654,7 +654,7 @@ val => rdx Value* th_6Vector_append(Value* _rv, ObjectData* this_, TypedValue* val) asm("_ZN4HPHP8c_Vector8t_appendERKNS_7VariantE"); -TypedValue* tg_6Vector_append(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_append(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -693,7 +693,7 @@ val => rdx Value* th_6Vector_add(Value* _rv, ObjectData* this_, TypedValue* val) asm("_ZN4HPHP8c_Vector5t_addERKNS_7VariantE"); -TypedValue* tg_6Vector_add(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -732,7 +732,7 @@ iterable => rdx Value* th_6Vector_addAll(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP8c_Vector8t_addallERKNS_7VariantE"); -TypedValue* tg_6Vector_addAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_addAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -770,7 +770,7 @@ this_ => rsi TypedValue* th_6Vector_pop(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector5t_popEv"); -TypedValue* tg_6Vector_pop(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_pop(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -807,7 +807,7 @@ value => rdx void th_6Vector_resize(ObjectData* this_, TypedValue* sz, TypedValue* value) asm("_ZN4HPHP8c_Vector8t_resizeERKNS_7VariantES3_"); -TypedValue* tg_6Vector_resize(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_resize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -845,7 +845,7 @@ this_ => rsi Value* th_6Vector_toArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector9t_toarrayEv"); -TypedValue* tg_6Vector_toArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_toArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -883,7 +883,7 @@ this_ => rsi Value* th_6Vector_getIterator(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector13t_getiteratorEv"); -TypedValue* tg_6Vector_getIterator(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_getIterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -922,7 +922,7 @@ callback => rdx Value* th_6Vector_map(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP8c_Vector5t_mapERKNS_7VariantE"); -TypedValue* tg_6Vector_map(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_map(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -961,7 +961,7 @@ callback => rdx Value* th_6Vector_filter(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP8c_Vector8t_filterERKNS_7VariantE"); -TypedValue* tg_6Vector_filter(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_filter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1000,7 +1000,7 @@ iterable => rdx Value* th_6Vector_zip(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP8c_Vector5t_zipERKNS_7VariantE"); -TypedValue* tg_6Vector_zip(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_zip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1037,7 +1037,7 @@ col => rsi void th_6Vector_sort(ObjectData* this_, TypedValue* col) asm("_ZN4HPHP8c_Vector6t_sortERKNS_7VariantE"); -TypedValue* tg_6Vector_sort(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_sort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1074,7 +1074,7 @@ this_ => rdi void th_6Vector_reverse(ObjectData* this_) asm("_ZN4HPHP8c_Vector9t_reverseEv"); -TypedValue* tg_6Vector_reverse(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_reverse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1113,7 +1113,7 @@ replacement => rcx void th_6Vector_splice(ObjectData* this_, TypedValue* offset, TypedValue* len, TypedValue* replacement) asm("_ZN4HPHP8c_Vector8t_spliceERKNS_7VariantES3_S3_"); -TypedValue* tg_6Vector_splice(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_splice(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1153,7 +1153,7 @@ search_value => rsi long th_6Vector_linearSearch(ObjectData* this_, TypedValue* search_value) asm("_ZN4HPHP8c_Vector14t_linearsearchERKNS_7VariantE"); -TypedValue* tg_6Vector_linearSearch(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_linearSearch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1188,7 +1188,7 @@ this_ => rdi void th_6Vector_shuffle(ObjectData* this_) asm("_ZN4HPHP8c_Vector9t_shuffleEv"); -TypedValue* tg_6Vector_shuffle(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_shuffle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1226,7 +1226,7 @@ this_ => rsi Value* th_6Vector___toString(Value* _rv, ObjectData* this_) asm("_ZN4HPHP8c_Vector12t___tostringEv"); -TypedValue* tg_6Vector___toString(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector___toString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1265,7 +1265,7 @@ name => rdx TypedValue* th_6Vector___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP8c_Vector7t___getENS_7VariantE"); -TypedValue* tg_6Vector___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1304,7 +1304,7 @@ value => rcx TypedValue* th_6Vector___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP8c_Vector7t___setENS_7VariantES1_"); -TypedValue* tg_6Vector___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1341,7 +1341,7 @@ name => rsi bool th_6Vector___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP8c_Vector9t___issetENS_7VariantE"); -TypedValue* tg_6Vector___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1379,7 +1379,7 @@ name => rdx TypedValue* th_6Vector___unset(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP8c_Vector9t___unsetENS_7VariantE"); -TypedValue* tg_6Vector___unset(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector___unset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1417,7 +1417,7 @@ iterable => rdx Value* th_6Vector_fromItems(Value* _rv, char const* cls_, TypedValue* iterable) asm("_ZN4HPHP8c_Vector12ti_fromitemsEPKcRKNS_7VariantE"); -TypedValue* tg_6Vector_fromItems(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_fromItems(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1451,7 +1451,7 @@ arr => rdx Value* th_6Vector_fromArray(Value* _rv, char const* cls_, TypedValue* arr) asm("_ZN4HPHP8c_Vector12ti_fromarrayEPKcRKNS_7VariantE"); -TypedValue* tg_6Vector_fromArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_fromArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1485,7 +1485,7 @@ vec => rdx Value* th_6Vector_fromVector(Value* _rv, char const* cls_, TypedValue* vec) asm("_ZN4HPHP8c_Vector13ti_fromvectorEPKcRKNS_7VariantE"); -TypedValue* tg_6Vector_fromVector(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_fromVector(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1521,7 +1521,7 @@ len => r8 Value* th_6Vector_slice(Value* _rv, char const* cls_, TypedValue* vec, TypedValue* offset, TypedValue* len) asm("_ZN4HPHP8c_Vector8ti_sliceEPKcRKNS_7VariantES5_S5_"); -TypedValue* tg_6Vector_slice(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Vector_slice(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1563,7 +1563,7 @@ this_ => rdi void th_14VectorIterator___construct(ObjectData* this_) asm("_ZN4HPHP16c_VectorIterator13t___constructEv"); -TypedValue* tg_14VectorIterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_14VectorIterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1601,7 +1601,7 @@ this_ => rsi TypedValue* th_14VectorIterator_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP16c_VectorIterator9t_currentEv"); -TypedValue* tg_14VectorIterator_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_14VectorIterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1638,7 +1638,7 @@ this_ => rsi TypedValue* th_14VectorIterator_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP16c_VectorIterator5t_keyEv"); -TypedValue* tg_14VectorIterator_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_14VectorIterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1674,7 +1674,7 @@ this_ => rdi bool th_14VectorIterator_valid(ObjectData* this_) asm("_ZN4HPHP16c_VectorIterator7t_validEv"); -TypedValue* tg_14VectorIterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_14VectorIterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1709,7 +1709,7 @@ this_ => rdi void th_14VectorIterator_next(ObjectData* this_) asm("_ZN4HPHP16c_VectorIterator6t_nextEv"); -TypedValue* tg_14VectorIterator_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_14VectorIterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1745,7 +1745,7 @@ this_ => rdi void th_14VectorIterator_rewind(ObjectData* this_) asm("_ZN4HPHP16c_VectorIterator8t_rewindEv"); -TypedValue* tg_14VectorIterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_14VectorIterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1792,7 +1792,7 @@ iterable => rsi void th_3Map___construct(ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP5c_Map13t___constructERKNS_7VariantE"); -TypedValue* tg_3Map___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1830,7 +1830,7 @@ this_ => rdi bool th_3Map_isEmpty(ObjectData* this_) asm("_ZN4HPHP5c_Map9t_isemptyEv"); -TypedValue* tg_3Map_isEmpty(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_isEmpty(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1866,7 +1866,7 @@ this_ => rdi long th_3Map_count(ObjectData* this_) asm("_ZN4HPHP5c_Map7t_countEv"); -TypedValue* tg_3Map_count(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1903,7 +1903,7 @@ this_ => rsi Value* th_3Map_items(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map7t_itemsEv"); -TypedValue* tg_3Map_items(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_items(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1941,7 +1941,7 @@ this_ => rsi Value* th_3Map_keys(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map6t_keysEv"); -TypedValue* tg_3Map_keys(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_keys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1979,7 +1979,7 @@ this_ => rsi Value* th_3Map_view(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map6t_viewEv"); -TypedValue* tg_3Map_view(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_view(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2017,7 +2017,7 @@ this_ => rsi Value* th_3Map_kvzip(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map7t_kvzipEv"); -TypedValue* tg_3Map_kvzip(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_kvzip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2056,7 +2056,7 @@ key => rdx TypedValue* th_3Map_at(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP5c_Map4t_atERKNS_7VariantE"); -TypedValue* tg_3Map_at(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_at(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2094,7 +2094,7 @@ key => rdx TypedValue* th_3Map_get(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP5c_Map5t_getERKNS_7VariantE"); -TypedValue* tg_3Map_get(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2133,7 +2133,7 @@ value => rcx Value* th_3Map_set(Value* _rv, ObjectData* this_, TypedValue* key, TypedValue* value) asm("_ZN4HPHP5c_Map5t_setERKNS_7VariantES3_"); -TypedValue* tg_3Map_set(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2172,7 +2172,7 @@ iterable => rdx Value* th_3Map_setAll(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP5c_Map8t_setallERKNS_7VariantE"); -TypedValue* tg_3Map_setAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_setAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2212,7 +2212,7 @@ value => rcx Value* th_3Map_put(Value* _rv, ObjectData* this_, TypedValue* key, TypedValue* value) asm("_ZN4HPHP5c_Map5t_putERKNS_7VariantES3_"); -TypedValue* tg_3Map_put(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_put(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2250,7 +2250,7 @@ this_ => rsi Value* th_3Map_clear(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map7t_clearEv"); -TypedValue* tg_3Map_clear(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_clear(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2288,7 +2288,7 @@ key => rsi bool th_3Map_contains(ObjectData* this_, TypedValue* key) asm("_ZN4HPHP5c_Map10t_containsERKNS_7VariantE"); -TypedValue* tg_3Map_contains(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_contains(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2325,7 +2325,7 @@ key => rsi bool th_3Map_containsKey(ObjectData* this_, TypedValue* key) asm("_ZN4HPHP5c_Map13t_containskeyERKNS_7VariantE"); -TypedValue* tg_3Map_containsKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_containsKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2363,7 +2363,7 @@ key => rdx Value* th_3Map_remove(Value* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP5c_Map8t_removeERKNS_7VariantE"); -TypedValue* tg_3Map_remove(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_remove(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2402,7 +2402,7 @@ key => rdx Value* th_3Map_removeKey(Value* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP5c_Map11t_removekeyERKNS_7VariantE"); -TypedValue* tg_3Map_removeKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_removeKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2441,7 +2441,7 @@ key => rdx Value* th_3Map_discard(Value* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP5c_Map9t_discardERKNS_7VariantE"); -TypedValue* tg_3Map_discard(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_discard(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2480,7 +2480,7 @@ val => rdx Value* th_3Map_add(Value* _rv, ObjectData* this_, TypedValue* val) asm("_ZN4HPHP5c_Map5t_addERKNS_7VariantE"); -TypedValue* tg_3Map_add(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2519,7 +2519,7 @@ iterable => rdx Value* th_3Map_addAll(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP5c_Map8t_addallERKNS_7VariantE"); -TypedValue* tg_3Map_addAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_addAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2557,7 +2557,7 @@ this_ => rsi Value* th_3Map_toArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map9t_toarrayEv"); -TypedValue* tg_3Map_toArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_toArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2595,7 +2595,7 @@ this_ => rsi Value* th_3Map_copyAsArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map13t_copyasarrayEv"); -TypedValue* tg_3Map_copyAsArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_copyAsArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2633,7 +2633,7 @@ this_ => rsi Value* th_3Map_toKeysArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map13t_tokeysarrayEv"); -TypedValue* tg_3Map_toKeysArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_toKeysArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2671,7 +2671,7 @@ this_ => rsi Value* th_3Map_values(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map8t_valuesEv"); -TypedValue* tg_3Map_values(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_values(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2709,7 +2709,7 @@ this_ => rsi Value* th_3Map_toValuesArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map15t_tovaluesarrayEv"); -TypedValue* tg_3Map_toValuesArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_toValuesArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2748,7 +2748,7 @@ arr => rdx Value* th_3Map_updateFromArray(Value* _rv, ObjectData* this_, TypedValue* arr) asm("_ZN4HPHP5c_Map17t_updatefromarrayERKNS_7VariantE"); -TypedValue* tg_3Map_updateFromArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_updateFromArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2787,7 +2787,7 @@ it => rdx Value* th_3Map_updateFromIterable(Value* _rv, ObjectData* this_, TypedValue* it) asm("_ZN4HPHP5c_Map20t_updatefromiterableERKNS_7VariantE"); -TypedValue* tg_3Map_updateFromIterable(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_updateFromIterable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2826,7 +2826,7 @@ it => rdx Value* th_3Map_differenceByKey(Value* _rv, ObjectData* this_, TypedValue* it) asm("_ZN4HPHP5c_Map17t_differencebykeyERKNS_7VariantE"); -TypedValue* tg_3Map_differenceByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_differenceByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2864,7 +2864,7 @@ this_ => rsi Value* th_3Map_getIterator(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map13t_getiteratorEv"); -TypedValue* tg_3Map_getIterator(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_getIterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2903,7 +2903,7 @@ callback => rdx Value* th_3Map_map(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP5c_Map5t_mapERKNS_7VariantE"); -TypedValue* tg_3Map_map(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_map(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2942,7 +2942,7 @@ callback => rdx Value* th_3Map_filter(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP5c_Map8t_filterERKNS_7VariantE"); -TypedValue* tg_3Map_filter(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_filter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2981,7 +2981,7 @@ iterable => rdx Value* th_3Map_zip(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP5c_Map5t_zipERKNS_7VariantE"); -TypedValue* tg_3Map_zip(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_zip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3019,7 +3019,7 @@ this_ => rsi Value* th_3Map___toString(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_Map12t___tostringEv"); -TypedValue* tg_3Map___toString(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map___toString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3058,7 +3058,7 @@ name => rdx TypedValue* th_3Map___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP5c_Map7t___getENS_7VariantE"); -TypedValue* tg_3Map___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3097,7 +3097,7 @@ value => rcx TypedValue* th_3Map___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP5c_Map7t___setENS_7VariantES1_"); -TypedValue* tg_3Map___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3134,7 +3134,7 @@ name => rsi bool th_3Map___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP5c_Map9t___issetENS_7VariantE"); -TypedValue* tg_3Map___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3172,7 +3172,7 @@ name => rdx TypedValue* th_3Map___unset(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP5c_Map9t___unsetENS_7VariantE"); -TypedValue* tg_3Map___unset(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map___unset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3210,7 +3210,7 @@ iterable => rdx Value* th_3Map_fromItems(Value* _rv, char const* cls_, TypedValue* iterable) asm("_ZN4HPHP5c_Map12ti_fromitemsEPKcRKNS_7VariantE"); -TypedValue* tg_3Map_fromItems(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_fromItems(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3244,7 +3244,7 @@ mp => rdx Value* th_3Map_fromArray(Value* _rv, char const* cls_, TypedValue* mp) asm("_ZN4HPHP5c_Map12ti_fromarrayEPKcRKNS_7VariantE"); -TypedValue* tg_3Map_fromArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_fromArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3278,7 +3278,7 @@ mp => rdx Value* th_3Map_fromIterable(Value* _rv, char const* cls_, TypedValue* mp) asm("_ZN4HPHP5c_Map15ti_fromiterableEPKcRKNS_7VariantE"); -TypedValue* tg_3Map_fromIterable(HPHP::VM::ActRec *ar) { +TypedValue* tg_3Map_fromIterable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3319,7 +3319,7 @@ this_ => rdi void th_11MapIterator___construct(ObjectData* this_) asm("_ZN4HPHP13c_MapIterator13t___constructEv"); -TypedValue* tg_11MapIterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11MapIterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3357,7 +3357,7 @@ this_ => rsi TypedValue* th_11MapIterator_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP13c_MapIterator9t_currentEv"); -TypedValue* tg_11MapIterator_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_11MapIterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3394,7 +3394,7 @@ this_ => rsi TypedValue* th_11MapIterator_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP13c_MapIterator5t_keyEv"); -TypedValue* tg_11MapIterator_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_11MapIterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3430,7 +3430,7 @@ this_ => rdi bool th_11MapIterator_valid(ObjectData* this_) asm("_ZN4HPHP13c_MapIterator7t_validEv"); -TypedValue* tg_11MapIterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_11MapIterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3465,7 +3465,7 @@ this_ => rdi void th_11MapIterator_next(ObjectData* this_) asm("_ZN4HPHP13c_MapIterator6t_nextEv"); -TypedValue* tg_11MapIterator_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_11MapIterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3501,7 +3501,7 @@ this_ => rdi void th_11MapIterator_rewind(ObjectData* this_) asm("_ZN4HPHP13c_MapIterator8t_rewindEv"); -TypedValue* tg_11MapIterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_11MapIterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3548,7 +3548,7 @@ iterable => rsi void th_9StableMap___construct(ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP11c_StableMap13t___constructERKNS_7VariantE"); -TypedValue* tg_9StableMap___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3586,7 +3586,7 @@ this_ => rdi bool th_9StableMap_isEmpty(ObjectData* this_) asm("_ZN4HPHP11c_StableMap9t_isemptyEv"); -TypedValue* tg_9StableMap_isEmpty(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_isEmpty(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3622,7 +3622,7 @@ this_ => rdi long th_9StableMap_count(ObjectData* this_) asm("_ZN4HPHP11c_StableMap7t_countEv"); -TypedValue* tg_9StableMap_count(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3659,7 +3659,7 @@ this_ => rsi Value* th_9StableMap_items(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap7t_itemsEv"); -TypedValue* tg_9StableMap_items(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_items(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3697,7 +3697,7 @@ this_ => rsi Value* th_9StableMap_keys(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap6t_keysEv"); -TypedValue* tg_9StableMap_keys(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_keys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3735,7 +3735,7 @@ this_ => rsi Value* th_9StableMap_view(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap6t_viewEv"); -TypedValue* tg_9StableMap_view(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_view(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3773,7 +3773,7 @@ this_ => rsi Value* th_9StableMap_kvzip(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap7t_kvzipEv"); -TypedValue* tg_9StableMap_kvzip(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_kvzip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3812,7 +3812,7 @@ key => rdx TypedValue* th_9StableMap_at(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP11c_StableMap4t_atERKNS_7VariantE"); -TypedValue* tg_9StableMap_at(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_at(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3850,7 +3850,7 @@ key => rdx TypedValue* th_9StableMap_get(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP11c_StableMap5t_getERKNS_7VariantE"); -TypedValue* tg_9StableMap_get(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3889,7 +3889,7 @@ value => rcx Value* th_9StableMap_set(Value* _rv, ObjectData* this_, TypedValue* key, TypedValue* value) asm("_ZN4HPHP11c_StableMap5t_setERKNS_7VariantES3_"); -TypedValue* tg_9StableMap_set(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3928,7 +3928,7 @@ iterable => rdx Value* th_9StableMap_setAll(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP11c_StableMap8t_setallERKNS_7VariantE"); -TypedValue* tg_9StableMap_setAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_setAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3968,7 +3968,7 @@ value => rcx Value* th_9StableMap_put(Value* _rv, ObjectData* this_, TypedValue* key, TypedValue* value) asm("_ZN4HPHP11c_StableMap5t_putERKNS_7VariantES3_"); -TypedValue* tg_9StableMap_put(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_put(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4006,7 +4006,7 @@ this_ => rsi Value* th_9StableMap_clear(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap7t_clearEv"); -TypedValue* tg_9StableMap_clear(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_clear(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4044,7 +4044,7 @@ key => rsi bool th_9StableMap_contains(ObjectData* this_, TypedValue* key) asm("_ZN4HPHP11c_StableMap10t_containsERKNS_7VariantE"); -TypedValue* tg_9StableMap_contains(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_contains(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4081,7 +4081,7 @@ key => rsi bool th_9StableMap_containsKey(ObjectData* this_, TypedValue* key) asm("_ZN4HPHP11c_StableMap13t_containskeyERKNS_7VariantE"); -TypedValue* tg_9StableMap_containsKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_containsKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4119,7 +4119,7 @@ key => rdx Value* th_9StableMap_remove(Value* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP11c_StableMap8t_removeERKNS_7VariantE"); -TypedValue* tg_9StableMap_remove(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_remove(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4158,7 +4158,7 @@ key => rdx Value* th_9StableMap_removeKey(Value* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP11c_StableMap11t_removekeyERKNS_7VariantE"); -TypedValue* tg_9StableMap_removeKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_removeKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4197,7 +4197,7 @@ key => rdx Value* th_9StableMap_discard(Value* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP11c_StableMap9t_discardERKNS_7VariantE"); -TypedValue* tg_9StableMap_discard(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_discard(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4236,7 +4236,7 @@ val => rdx Value* th_9StableMap_add(Value* _rv, ObjectData* this_, TypedValue* val) asm("_ZN4HPHP11c_StableMap5t_addERKNS_7VariantE"); -TypedValue* tg_9StableMap_add(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4275,7 +4275,7 @@ iterable => rdx Value* th_9StableMap_addAll(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP11c_StableMap8t_addallERKNS_7VariantE"); -TypedValue* tg_9StableMap_addAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_addAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4313,7 +4313,7 @@ this_ => rsi Value* th_9StableMap_toArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap9t_toarrayEv"); -TypedValue* tg_9StableMap_toArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_toArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4351,7 +4351,7 @@ this_ => rsi Value* th_9StableMap_copyAsArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap13t_copyasarrayEv"); -TypedValue* tg_9StableMap_copyAsArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_copyAsArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4389,7 +4389,7 @@ this_ => rsi Value* th_9StableMap_toKeysArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap13t_tokeysarrayEv"); -TypedValue* tg_9StableMap_toKeysArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_toKeysArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4427,7 +4427,7 @@ this_ => rsi Value* th_9StableMap_values(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap8t_valuesEv"); -TypedValue* tg_9StableMap_values(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_values(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4465,7 +4465,7 @@ this_ => rsi Value* th_9StableMap_toValuesArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap15t_tovaluesarrayEv"); -TypedValue* tg_9StableMap_toValuesArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_toValuesArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4504,7 +4504,7 @@ arr => rdx Value* th_9StableMap_updateFromArray(Value* _rv, ObjectData* this_, TypedValue* arr) asm("_ZN4HPHP11c_StableMap17t_updatefromarrayERKNS_7VariantE"); -TypedValue* tg_9StableMap_updateFromArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_updateFromArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4543,7 +4543,7 @@ it => rdx Value* th_9StableMap_updateFromIterable(Value* _rv, ObjectData* this_, TypedValue* it) asm("_ZN4HPHP11c_StableMap20t_updatefromiterableERKNS_7VariantE"); -TypedValue* tg_9StableMap_updateFromIterable(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_updateFromIterable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4582,7 +4582,7 @@ it => rdx Value* th_9StableMap_differenceByKey(Value* _rv, ObjectData* this_, TypedValue* it) asm("_ZN4HPHP11c_StableMap17t_differencebykeyERKNS_7VariantE"); -TypedValue* tg_9StableMap_differenceByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_differenceByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4620,7 +4620,7 @@ this_ => rsi Value* th_9StableMap_getIterator(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap13t_getiteratorEv"); -TypedValue* tg_9StableMap_getIterator(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_getIterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4659,7 +4659,7 @@ callback => rdx Value* th_9StableMap_map(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP11c_StableMap5t_mapERKNS_7VariantE"); -TypedValue* tg_9StableMap_map(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_map(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4698,7 +4698,7 @@ callback => rdx Value* th_9StableMap_filter(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP11c_StableMap8t_filterERKNS_7VariantE"); -TypedValue* tg_9StableMap_filter(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_filter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4737,7 +4737,7 @@ iterable => rdx Value* th_9StableMap_zip(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP11c_StableMap5t_zipERKNS_7VariantE"); -TypedValue* tg_9StableMap_zip(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_zip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4776,7 +4776,7 @@ name => rdx TypedValue* th_9StableMap___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP11c_StableMap7t___getENS_7VariantE"); -TypedValue* tg_9StableMap___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4815,7 +4815,7 @@ value => rcx TypedValue* th_9StableMap___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP11c_StableMap7t___setENS_7VariantES1_"); -TypedValue* tg_9StableMap___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4852,7 +4852,7 @@ name => rsi bool th_9StableMap___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP11c_StableMap9t___issetENS_7VariantE"); -TypedValue* tg_9StableMap___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4890,7 +4890,7 @@ name => rdx TypedValue* th_9StableMap___unset(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP11c_StableMap9t___unsetENS_7VariantE"); -TypedValue* tg_9StableMap___unset(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap___unset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4928,7 +4928,7 @@ iterable => rdx Value* th_9StableMap_fromItems(Value* _rv, char const* cls_, TypedValue* iterable) asm("_ZN4HPHP11c_StableMap12ti_fromitemsEPKcRKNS_7VariantE"); -TypedValue* tg_9StableMap_fromItems(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_fromItems(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4961,7 +4961,7 @@ this_ => rsi Value* th_9StableMap___toString(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_StableMap12t___tostringEv"); -TypedValue* tg_9StableMap___toString(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap___toString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5000,7 +5000,7 @@ mp => rdx Value* th_9StableMap_fromArray(Value* _rv, char const* cls_, TypedValue* mp) asm("_ZN4HPHP11c_StableMap12ti_fromarrayEPKcRKNS_7VariantE"); -TypedValue* tg_9StableMap_fromArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_fromArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5034,7 +5034,7 @@ mp => rdx Value* th_9StableMap_fromIterable(Value* _rv, char const* cls_, TypedValue* mp) asm("_ZN4HPHP11c_StableMap15ti_fromiterableEPKcRKNS_7VariantE"); -TypedValue* tg_9StableMap_fromIterable(HPHP::VM::ActRec *ar) { +TypedValue* tg_9StableMap_fromIterable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5075,7 +5075,7 @@ this_ => rdi void th_17StableMapIterator___construct(ObjectData* this_) asm("_ZN4HPHP19c_StableMapIterator13t___constructEv"); -TypedValue* tg_17StableMapIterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_17StableMapIterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5113,7 +5113,7 @@ this_ => rsi TypedValue* th_17StableMapIterator_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP19c_StableMapIterator9t_currentEv"); -TypedValue* tg_17StableMapIterator_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_17StableMapIterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5150,7 +5150,7 @@ this_ => rsi TypedValue* th_17StableMapIterator_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP19c_StableMapIterator5t_keyEv"); -TypedValue* tg_17StableMapIterator_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_17StableMapIterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5186,7 +5186,7 @@ this_ => rdi bool th_17StableMapIterator_valid(ObjectData* this_) asm("_ZN4HPHP19c_StableMapIterator7t_validEv"); -TypedValue* tg_17StableMapIterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_17StableMapIterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5221,7 +5221,7 @@ this_ => rdi void th_17StableMapIterator_next(ObjectData* this_) asm("_ZN4HPHP19c_StableMapIterator6t_nextEv"); -TypedValue* tg_17StableMapIterator_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_17StableMapIterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5257,7 +5257,7 @@ this_ => rdi void th_17StableMapIterator_rewind(ObjectData* this_) asm("_ZN4HPHP19c_StableMapIterator8t_rewindEv"); -TypedValue* tg_17StableMapIterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_17StableMapIterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5303,7 +5303,7 @@ this_ => rdi void th_4Pair___construct(ObjectData* this_) asm("_ZN4HPHP6c_Pair13t___constructEv"); -TypedValue* tg_4Pair___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5340,7 +5340,7 @@ this_ => rdi bool th_4Pair_isEmpty(ObjectData* this_) asm("_ZN4HPHP6c_Pair9t_isemptyEv"); -TypedValue* tg_4Pair_isEmpty(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_isEmpty(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5376,7 +5376,7 @@ this_ => rdi long th_4Pair_count(ObjectData* this_) asm("_ZN4HPHP6c_Pair7t_countEv"); -TypedValue* tg_4Pair_count(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5413,7 +5413,7 @@ this_ => rsi Value* th_4Pair_items(Value* _rv, ObjectData* this_) asm("_ZN4HPHP6c_Pair7t_itemsEv"); -TypedValue* tg_4Pair_items(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_items(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5451,7 +5451,7 @@ this_ => rsi Value* th_4Pair_keys(Value* _rv, ObjectData* this_) asm("_ZN4HPHP6c_Pair6t_keysEv"); -TypedValue* tg_4Pair_keys(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_keys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5489,7 +5489,7 @@ this_ => rsi Value* th_4Pair_view(Value* _rv, ObjectData* this_) asm("_ZN4HPHP6c_Pair6t_viewEv"); -TypedValue* tg_4Pair_view(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_view(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5527,7 +5527,7 @@ this_ => rsi Value* th_4Pair_kvzip(Value* _rv, ObjectData* this_) asm("_ZN4HPHP6c_Pair7t_kvzipEv"); -TypedValue* tg_4Pair_kvzip(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_kvzip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5565,7 +5565,7 @@ this_ => rsi Value* th_4Pair_toArray(Value* _rv, ObjectData* this_) asm("_ZN4HPHP6c_Pair9t_toarrayEv"); -TypedValue* tg_4Pair_toArray(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_toArray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5603,7 +5603,7 @@ this_ => rsi Value* th_4Pair_getIterator(Value* _rv, ObjectData* this_) asm("_ZN4HPHP6c_Pair13t_getiteratorEv"); -TypedValue* tg_4Pair_getIterator(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_getIterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5642,7 +5642,7 @@ callback => rdx Value* th_4Pair_map(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP6c_Pair5t_mapERKNS_7VariantE"); -TypedValue* tg_4Pair_map(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_map(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5681,7 +5681,7 @@ callback => rdx Value* th_4Pair_filter(Value* _rv, ObjectData* this_, TypedValue* callback) asm("_ZN4HPHP6c_Pair8t_filterERKNS_7VariantE"); -TypedValue* tg_4Pair_filter(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_filter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5720,7 +5720,7 @@ iterable => rdx Value* th_4Pair_zip(Value* _rv, ObjectData* this_, TypedValue* iterable) asm("_ZN4HPHP6c_Pair5t_zipERKNS_7VariantE"); -TypedValue* tg_4Pair_zip(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_zip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5759,7 +5759,7 @@ key => rdx TypedValue* th_4Pair_at(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP6c_Pair4t_atERKNS_7VariantE"); -TypedValue* tg_4Pair_at(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_at(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5797,7 +5797,7 @@ key => rdx TypedValue* th_4Pair_get(TypedValue* _rv, ObjectData* this_, TypedValue* key) asm("_ZN4HPHP6c_Pair5t_getERKNS_7VariantE"); -TypedValue* tg_4Pair_get(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5834,7 +5834,7 @@ key => rsi bool th_4Pair_containsKey(ObjectData* this_, TypedValue* key) asm("_ZN4HPHP6c_Pair13t_containskeyERKNS_7VariantE"); -TypedValue* tg_4Pair_containsKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_4Pair_containsKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5879,7 +5879,7 @@ this_ => rdi void th_12PairIterator___construct(ObjectData* this_) asm("_ZN4HPHP14c_PairIterator13t___constructEv"); -TypedValue* tg_12PairIterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PairIterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5917,7 +5917,7 @@ this_ => rsi TypedValue* th_12PairIterator_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PairIterator9t_currentEv"); -TypedValue* tg_12PairIterator_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PairIterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5954,7 +5954,7 @@ this_ => rsi TypedValue* th_12PairIterator_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PairIterator5t_keyEv"); -TypedValue* tg_12PairIterator_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PairIterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5990,7 +5990,7 @@ this_ => rdi bool th_12PairIterator_valid(ObjectData* this_) asm("_ZN4HPHP14c_PairIterator7t_validEv"); -TypedValue* tg_12PairIterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PairIterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6025,7 +6025,7 @@ this_ => rdi void th_12PairIterator_next(ObjectData* this_) asm("_ZN4HPHP14c_PairIterator6t_nextEv"); -TypedValue* tg_12PairIterator_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PairIterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6061,7 +6061,7 @@ this_ => rdi void th_12PairIterator_rewind(ObjectData* this_) asm("_ZN4HPHP14c_PairIterator8t_rewindEv"); -TypedValue* tg_12PairIterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PairIterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_continuation.cpp b/hphp/runtime/ext/ext_continuation.cpp index c00d55d5e..a9d1e5515 100644 --- a/hphp/runtime/ext/ext_continuation.cpp +++ b/hphp/runtime/ext/ext_continuation.cpp @@ -27,7 +27,7 @@ #include #include #include -#include +#include namespace HPHP { /////////////////////////////////////////////////////////////////////////////// @@ -53,7 +53,7 @@ c_Continuation::c_Continuation(VM::Class* cb) : } c_Continuation::~c_Continuation() { - VM::ActRec* ar = actRec(); + ActRec* ar = actRec(); // The first local is the object itself, and it wasn't increffed at creation // time (see createContinuation()). Overwrite its type to exempt it from diff --git a/hphp/runtime/ext/ext_continuation.ext_hhvm.cpp b/hphp/runtime/ext/ext_continuation.ext_hhvm.cpp index bec956dd2..5acce6f9e 100644 --- a/hphp/runtime/ext/ext_continuation.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_continuation.ext_hhvm.cpp @@ -38,8 +38,8 @@ args => r8 Value* fh_hphp_create_continuation(Value* _rv, Value* clsname, Value* funcname, Value* origFuncName, Value* args) asm("_ZN4HPHP26f_hphp_create_continuationERKNS_6StringES2_S2_RKNS_5ArrayE"); -TypedValue * fg1_hphp_create_continuation(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_create_continuation(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_create_continuation(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_create_continuation(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -64,7 +64,7 @@ TypedValue * fg1_hphp_create_continuation(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_create_continuation(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_create_continuation(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -118,8 +118,8 @@ args => r8 void th_12Continuation___construct(ObjectData* this_, long func, Value* origFuncName, TypedValue* obj, Value* args) asm("_ZN4HPHP14c_Continuation13t___constructElRKNS_6StringERKNS_7VariantERKNS_5ArrayE"); -TypedValue* tg1_12Continuation___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12Continuation___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12Continuation___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12Continuation___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -143,7 +143,7 @@ TypedValue* tg1_12Continuation___construct(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_12Continuation___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -189,8 +189,8 @@ value => rdx void th_12Continuation_update(ObjectData* this_, long label, TypedValue* value) asm("_ZN4HPHP14c_Continuation8t_updateElRKNS_7VariantE"); -TypedValue* tg1_12Continuation_update(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12Continuation_update(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12Continuation_update(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12Continuation_update(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -199,7 +199,7 @@ TypedValue* tg1_12Continuation_update(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_12Continuation_update(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_update(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -244,7 +244,7 @@ this_ => rsi Value* th_12Continuation_getWaitHandle(Value* _rv, ObjectData* this_) asm("_ZN4HPHP14c_Continuation15t_getwaithandleEv"); -TypedValue* tg_12Continuation_getWaitHandle(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_getWaitHandle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -281,7 +281,7 @@ this_ => rdi long th_12Continuation_getLabel(ObjectData* this_) asm("_ZN4HPHP14c_Continuation10t_getlabelEv"); -TypedValue* tg_12Continuation_getLabel(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_getLabel(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -317,7 +317,7 @@ this_ => rdi long th_12Continuation_num_args(ObjectData* this_) asm("_ZN4HPHP14c_Continuation10t_num_argsEv"); -TypedValue* tg_12Continuation_num_args(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_num_args(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -354,7 +354,7 @@ this_ => rsi Value* th_12Continuation_get_args(Value* _rv, ObjectData* this_) asm("_ZN4HPHP14c_Continuation10t_get_argsEv"); -TypedValue* tg_12Continuation_get_args(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_get_args(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -393,8 +393,8 @@ id => rdx TypedValue* th_12Continuation_get_arg(TypedValue* _rv, ObjectData* this_, long id) asm("_ZN4HPHP14c_Continuation9t_get_argEl"); -TypedValue* tg1_12Continuation_get_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12Continuation_get_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12Continuation_get_arg(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12Continuation_get_arg(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_12Continuation_get_arg((rv), (this_), (long)(args[-0].m_data.num)); @@ -402,7 +402,7 @@ TypedValue* tg1_12Continuation_get_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_12Continuation_get_arg(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_get_arg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -446,7 +446,7 @@ this_ => rsi TypedValue* th_12Continuation_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_Continuation9t_currentEv"); -TypedValue* tg_12Continuation_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -482,7 +482,7 @@ this_ => rdi long th_12Continuation_key(ObjectData* this_) asm("_ZN4HPHP14c_Continuation5t_keyEv"); -TypedValue* tg_12Continuation_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -517,7 +517,7 @@ this_ => rdi void th_12Continuation_next(ObjectData* this_) asm("_ZN4HPHP14c_Continuation6t_nextEv"); -TypedValue* tg_12Continuation_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -553,7 +553,7 @@ this_ => rdi void th_12Continuation_rewind(ObjectData* this_) asm("_ZN4HPHP14c_Continuation8t_rewindEv"); -TypedValue* tg_12Continuation_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -590,7 +590,7 @@ this_ => rdi bool th_12Continuation_valid(ObjectData* this_) asm("_ZN4HPHP14c_Continuation7t_validEv"); -TypedValue* tg_12Continuation_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -626,7 +626,7 @@ v => rsi void th_12Continuation_send(ObjectData* this_, TypedValue* v) asm("_ZN4HPHP14c_Continuation6t_sendERKNS_7VariantE"); -TypedValue* tg_12Continuation_send(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_send(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -663,7 +663,7 @@ v => rsi void th_12Continuation_raise(ObjectData* this_, TypedValue* v) asm("_ZN4HPHP14c_Continuation7t_raiseERKNS_7VariantE"); -TypedValue* tg_12Continuation_raise(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_raise(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -701,7 +701,7 @@ this_ => rsi Value* th_12Continuation_getOrigFuncName(Value* _rv, ObjectData* this_) asm("_ZN4HPHP14c_Continuation17t_getorigfuncnameEv"); -TypedValue* tg_12Continuation_getOrigFuncName(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation_getOrigFuncName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -739,7 +739,7 @@ this_ => rsi TypedValue* th_12Continuation___clone(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_Continuation9t___cloneEv"); -TypedValue* tg_12Continuation___clone(HPHP::VM::ActRec *ar) { +TypedValue* tg_12Continuation___clone(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -784,7 +784,7 @@ this_ => rdi void th_17DummyContinuation___construct(ObjectData* this_) asm("_ZN4HPHP19c_DummyContinuation13t___constructEv"); -TypedValue* tg_17DummyContinuation___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DummyContinuation___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -822,7 +822,7 @@ this_ => rsi TypedValue* th_17DummyContinuation_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP19c_DummyContinuation9t_currentEv"); -TypedValue* tg_17DummyContinuation_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DummyContinuation_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -858,7 +858,7 @@ this_ => rdi long th_17DummyContinuation_key(ObjectData* this_) asm("_ZN4HPHP19c_DummyContinuation5t_keyEv"); -TypedValue* tg_17DummyContinuation_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DummyContinuation_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -893,7 +893,7 @@ this_ => rdi void th_17DummyContinuation_next(ObjectData* this_) asm("_ZN4HPHP19c_DummyContinuation6t_nextEv"); -TypedValue* tg_17DummyContinuation_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DummyContinuation_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -929,7 +929,7 @@ this_ => rdi void th_17DummyContinuation_rewind(ObjectData* this_) asm("_ZN4HPHP19c_DummyContinuation8t_rewindEv"); -TypedValue* tg_17DummyContinuation_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DummyContinuation_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -966,7 +966,7 @@ this_ => rdi bool th_17DummyContinuation_valid(ObjectData* this_) asm("_ZN4HPHP19c_DummyContinuation7t_validEv"); -TypedValue* tg_17DummyContinuation_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DummyContinuation_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_continuation.h b/hphp/runtime/ext/ext_continuation.h index 281339ba3..34840da4c 100644 --- a/hphp/runtime/ext/ext_continuation.h +++ b/hphp/runtime/ext/ext_continuation.h @@ -43,35 +43,36 @@ class c_Continuation : public ExtObjectData { } // need to implement - public: c_Continuation(VM::Class* cls = c_Continuation::s_cls); - public: ~c_Continuation(); - public: void t___construct(int64_t func, CStrRef origFuncName, CVarRef obj = uninit_null(), CArrRef args = null_array); - public: void t_update(int64_t label, CVarRef value); - public: Object t_getwaithandle(); - public: int64_t t_getlabel(); - public: int64_t t_num_args(); - public: Array t_get_args(); - public: Variant t_get_arg(int64_t id); - public: Variant t_current(); - public: int64_t t_key(); - public: void t_next(); - public: void t_rewind(); - public: bool t_valid(); - public: void t_send(CVarRef v); - public: void t_raise(CVarRef v); - public: void t_raised(); - public: String t_getorigfuncname(); - public: Variant t___clone(); + public: + explicit c_Continuation(VM::Class* cls = c_Continuation::s_cls); + ~c_Continuation(); + void t___construct(int64_t func, CStrRef origFuncName, CVarRef obj = uninit_null(), CArrRef args = null_array); + void t_update(int64_t label, CVarRef value); + Object t_getwaithandle(); + int64_t t_getlabel(); + int64_t t_num_args(); + Array t_get_args(); + Variant t_get_arg(int64_t id); + Variant t_current(); + int64_t t_key(); + void t_next(); + void t_rewind(); + bool t_valid(); + void t_send(CVarRef v); + void t_raise(CVarRef v); + void t_raised(); + String t_getorigfuncname(); + Variant t___clone(); static c_Continuation* alloc(VM::Class* cls, int nLocals, int nIters) { c_Continuation* cont = (c_Continuation*)ALLOCOBJSZ(sizeForLocalsAndIters(nLocals, nIters)); new ((void *)cont) c_Continuation(cls); - cont->m_localsOffset = sizeof(c_Continuation) + sizeof(VM::Iter) * nIters; - cont->m_arPtr = (VM::ActRec*)(cont->locals() + nLocals); + cont->m_localsOffset = sizeof(c_Continuation) + sizeof(Iter) * nIters; + cont->m_arPtr = (ActRec*)(cont->locals() + nLocals); memset((void*)((uintptr_t)cont + sizeof(c_Continuation)), 0, - sizeof(TypedValue) * nLocals + sizeof(VM::Iter) * nIters); + sizeof(TypedValue) * nLocals + sizeof(Iter) * nIters); return cont; } @@ -115,7 +116,7 @@ public: int m_localsOffset; VM::Func *m_vmFunc; int64_t m_label; - VM::ActRec* m_arPtr; + ActRec* m_arPtr; p_ContinuationWaitHandle m_waitHandle; @@ -126,9 +127,9 @@ public: HphpArray* getStaticLocals(); static size_t sizeForLocalsAndIters(int nLocals, int nIters) { return (sizeof(c_Continuation) + sizeof(TypedValue) * nLocals + - sizeof(VM::Iter) * nIters + sizeof(VM::ActRec)); + sizeof(Iter) * nIters + sizeof(ActRec)); } - VM::ActRec* actRec() { + ActRec* actRec() { return m_arPtr; } TypedValue* locals() { diff --git a/hphp/runtime/ext/ext_ctype.ext_hhvm.cpp b/hphp/runtime/ext/ext_ctype.ext_hhvm.cpp index b2540e5a7..64aa33806 100644 --- a/hphp/runtime/ext/ext_ctype.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_ctype.ext_hhvm.cpp @@ -34,7 +34,7 @@ text => rdi bool fh_ctype_alnum(TypedValue* text) asm("_ZN4HPHP13f_ctype_alnumERKNS_7VariantE"); -TypedValue* fg_ctype_alnum(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_alnum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -67,7 +67,7 @@ text => rdi bool fh_ctype_alpha(TypedValue* text) asm("_ZN4HPHP13f_ctype_alphaERKNS_7VariantE"); -TypedValue* fg_ctype_alpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_alpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -100,7 +100,7 @@ text => rdi bool fh_ctype_cntrl(TypedValue* text) asm("_ZN4HPHP13f_ctype_cntrlERKNS_7VariantE"); -TypedValue* fg_ctype_cntrl(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_cntrl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -133,7 +133,7 @@ text => rdi bool fh_ctype_digit(TypedValue* text) asm("_ZN4HPHP13f_ctype_digitERKNS_7VariantE"); -TypedValue* fg_ctype_digit(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_digit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -166,7 +166,7 @@ text => rdi bool fh_ctype_graph(TypedValue* text) asm("_ZN4HPHP13f_ctype_graphERKNS_7VariantE"); -TypedValue* fg_ctype_graph(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_graph(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -199,7 +199,7 @@ text => rdi bool fh_ctype_lower(TypedValue* text) asm("_ZN4HPHP13f_ctype_lowerERKNS_7VariantE"); -TypedValue* fg_ctype_lower(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_lower(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -232,7 +232,7 @@ text => rdi bool fh_ctype_print(TypedValue* text) asm("_ZN4HPHP13f_ctype_printERKNS_7VariantE"); -TypedValue* fg_ctype_print(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_print(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -265,7 +265,7 @@ text => rdi bool fh_ctype_punct(TypedValue* text) asm("_ZN4HPHP13f_ctype_punctERKNS_7VariantE"); -TypedValue* fg_ctype_punct(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_punct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -298,7 +298,7 @@ text => rdi bool fh_ctype_space(TypedValue* text) asm("_ZN4HPHP13f_ctype_spaceERKNS_7VariantE"); -TypedValue* fg_ctype_space(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_space(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -331,7 +331,7 @@ text => rdi bool fh_ctype_upper(TypedValue* text) asm("_ZN4HPHP13f_ctype_upperERKNS_7VariantE"); -TypedValue* fg_ctype_upper(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_upper(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -364,7 +364,7 @@ text => rdi bool fh_ctype_xdigit(TypedValue* text) asm("_ZN4HPHP14f_ctype_xdigitERKNS_7VariantE"); -TypedValue* fg_ctype_xdigit(HPHP::VM::ActRec *ar) { +TypedValue* fg_ctype_xdigit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_curl.ext_hhvm.cpp b/hphp/runtime/ext/ext_curl.ext_hhvm.cpp index 8ac3c481e..e7db1ce01 100644 --- a/hphp/runtime/ext/ext_curl.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_curl.ext_hhvm.cpp @@ -35,8 +35,8 @@ url => rsi TypedValue* fh_curl_init(TypedValue* _rv, Value* url) asm("_ZN4HPHP11f_curl_initERKNS_6StringE"); -TypedValue * fg1_curl_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_init(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_init(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_curl_init((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -44,7 +44,7 @@ TypedValue * fg1_curl_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_curl_init(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_init(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -85,8 +85,8 @@ ch => rsi TypedValue* fh_curl_copy_handle(TypedValue* _rv, Value* ch) asm("_ZN4HPHP18f_curl_copy_handleERKNS_6ObjectE"); -TypedValue * fg1_curl_copy_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_copy_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_copy_handle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_copy_handle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_copy_handle((rv), &args[-0].m_data); @@ -94,7 +94,7 @@ TypedValue * fg1_curl_copy_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_curl_copy_handle(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_copy_handle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -135,8 +135,8 @@ uversion => rsi TypedValue* fh_curl_version(TypedValue* _rv, int uversion) asm("_ZN4HPHP14f_curl_versionEi"); -TypedValue * fg1_curl_version(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_version(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_version(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_version(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_curl_version((rv), (count > 0) ? (int)(args[-0].m_data.num) : (int)(k_CURLVERSION_NOW)); @@ -144,7 +144,7 @@ TypedValue * fg1_curl_version(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_curl_version(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_version(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -186,8 +186,8 @@ value => rdx bool fh_curl_setopt(Value* ch, int option, TypedValue* value) asm("_ZN4HPHP13f_curl_setoptERKNS_6ObjectEiRKNS_7VariantE"); -TypedValue * fg1_curl_setopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_setopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_setopt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_setopt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -200,7 +200,7 @@ TypedValue * fg1_curl_setopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_curl_setopt(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_setopt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -241,8 +241,8 @@ options => rsi bool fh_curl_setopt_array(Value* ch, Value* options) asm("_ZN4HPHP19f_curl_setopt_arrayERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_curl_setopt_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_setopt_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_setopt_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_setopt_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfArray) { @@ -255,7 +255,7 @@ TypedValue * fg1_curl_setopt_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_curl_setopt_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_setopt_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -297,8 +297,8 @@ opt => rdx TypedValue* fh_fb_curl_getopt(TypedValue* _rv, Value* ch, int opt) asm("_ZN4HPHP16f_fb_curl_getoptERKNS_6ObjectEi"); -TypedValue * fg1_fb_curl_getopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_curl_getopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_curl_getopt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_curl_getopt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -316,7 +316,7 @@ TypedValue * fg1_fb_curl_getopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_fb_curl_getopt(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_curl_getopt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -357,8 +357,8 @@ ch => rsi TypedValue* fh_curl_exec(TypedValue* _rv, Value* ch) asm("_ZN4HPHP11f_curl_execERKNS_6ObjectE"); -TypedValue * fg1_curl_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_exec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_exec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_exec((rv), &args[-0].m_data); @@ -366,7 +366,7 @@ TypedValue * fg1_curl_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_curl_exec(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_exec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -408,8 +408,8 @@ opt => rdx TypedValue* fh_curl_getinfo(TypedValue* _rv, Value* ch, int opt) asm("_ZN4HPHP14f_curl_getinfoERKNS_6ObjectEi"); -TypedValue * fg1_curl_getinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_getinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_getinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_getinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -427,7 +427,7 @@ TypedValue * fg1_curl_getinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_curl_getinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_getinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -468,8 +468,8 @@ ch => rsi TypedValue* fh_curl_errno(TypedValue* _rv, Value* ch) asm("_ZN4HPHP12f_curl_errnoERKNS_6ObjectE"); -TypedValue * fg1_curl_errno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_errno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_errno(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_errno(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_errno((rv), &args[-0].m_data); @@ -477,7 +477,7 @@ TypedValue * fg1_curl_errno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_curl_errno(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_errno(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -518,8 +518,8 @@ ch => rsi TypedValue* fh_curl_error(TypedValue* _rv, Value* ch) asm("_ZN4HPHP12f_curl_errorERKNS_6ObjectE"); -TypedValue * fg1_curl_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_error(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_error(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_error((rv), &args[-0].m_data); @@ -527,7 +527,7 @@ TypedValue * fg1_curl_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_curl_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -568,8 +568,8 @@ ch => rsi TypedValue* fh_curl_close(TypedValue* _rv, Value* ch) asm("_ZN4HPHP12f_curl_closeERKNS_6ObjectE"); -TypedValue * fg1_curl_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_close((rv), &args[-0].m_data); @@ -577,7 +577,7 @@ TypedValue * fg1_curl_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_curl_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -617,7 +617,7 @@ _rv => rdi Value* fh_curl_multi_init(Value* _rv) asm("_ZN4HPHP17f_curl_multi_initEv"); -TypedValue* fg_curl_multi_init(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_init(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -653,8 +653,8 @@ ch => rdx TypedValue* fh_curl_multi_add_handle(TypedValue* _rv, Value* mh, Value* ch) asm("_ZN4HPHP23f_curl_multi_add_handleERKNS_6ObjectES2_"); -TypedValue * fg1_curl_multi_add_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_multi_add_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_multi_add_handle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_multi_add_handle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -667,7 +667,7 @@ TypedValue * fg1_curl_multi_add_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_curl_multi_add_handle(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_add_handle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -709,8 +709,8 @@ ch => rdx TypedValue* fh_curl_multi_remove_handle(TypedValue* _rv, Value* mh, Value* ch) asm("_ZN4HPHP26f_curl_multi_remove_handleERKNS_6ObjectES2_"); -TypedValue * fg1_curl_multi_remove_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_multi_remove_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_multi_remove_handle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_multi_remove_handle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -723,7 +723,7 @@ TypedValue * fg1_curl_multi_remove_handle(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_curl_multi_remove_handle(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_remove_handle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -765,8 +765,8 @@ still_running => rdx TypedValue* fh_curl_multi_exec(TypedValue* _rv, Value* mh, TypedValue* still_running) asm("_ZN4HPHP17f_curl_multi_execERKNS_6ObjectERKNS_14VRefParamValueE"); -TypedValue * fg1_curl_multi_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_multi_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_multi_exec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_multi_exec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_multi_exec((rv), &args[-0].m_data, (args-1)); @@ -774,7 +774,7 @@ TypedValue * fg1_curl_multi_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_curl_multi_exec(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_exec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -816,8 +816,8 @@ timeout => xmm0 TypedValue* fh_curl_multi_select(TypedValue* _rv, Value* mh, double timeout) asm("_ZN4HPHP19f_curl_multi_selectERKNS_6ObjectEd"); -TypedValue * fg1_curl_multi_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_multi_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_multi_select(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_multi_select(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -835,7 +835,7 @@ TypedValue * fg1_curl_multi_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_curl_multi_select(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_select(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -880,8 +880,8 @@ max_fd => r9 TypedValue* fh_fb_curl_multi_fdset(TypedValue* _rv, Value* mh, TypedValue* read_fd_set, TypedValue* write_fd_set, TypedValue* exc_fd_set, TypedValue* max_fd) asm("_ZN4HPHP21f_fb_curl_multi_fdsetERKNS_6ObjectERKNS_14VRefParamValueES5_S5_S5_"); -TypedValue * fg1_fb_curl_multi_fdset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_curl_multi_fdset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_curl_multi_fdset(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_curl_multi_fdset(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); VRefParamValue defVal4 = null_object; @@ -890,7 +890,7 @@ TypedValue * fg1_fb_curl_multi_fdset(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_fb_curl_multi_fdset(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_curl_multi_fdset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -932,8 +932,8 @@ ch => rsi TypedValue* fh_curl_multi_getcontent(TypedValue* _rv, Value* ch) asm("_ZN4HPHP23f_curl_multi_getcontentERKNS_6ObjectE"); -TypedValue * fg1_curl_multi_getcontent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_multi_getcontent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_multi_getcontent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_multi_getcontent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_multi_getcontent((rv), &args[-0].m_data); @@ -941,7 +941,7 @@ TypedValue * fg1_curl_multi_getcontent(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_curl_multi_getcontent(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_getcontent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -983,8 +983,8 @@ msgs_in_queue => rdx TypedValue* fh_curl_multi_info_read(TypedValue* _rv, Value* mh, TypedValue* msgs_in_queue) asm("_ZN4HPHP22f_curl_multi_info_readERKNS_6ObjectERKNS_14VRefParamValueE"); -TypedValue * fg1_curl_multi_info_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_multi_info_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_multi_info_read(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_multi_info_read(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); VRefParamValue defVal1 = uninit_null(); @@ -993,7 +993,7 @@ TypedValue * fg1_curl_multi_info_read(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_curl_multi_info_read(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_info_read(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1035,8 +1035,8 @@ mh => rsi TypedValue* fh_curl_multi_close(TypedValue* _rv, Value* mh) asm("_ZN4HPHP18f_curl_multi_closeERKNS_6ObjectE"); -TypedValue * fg1_curl_multi_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_curl_multi_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_curl_multi_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_curl_multi_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_curl_multi_close((rv), &args[-0].m_data); @@ -1044,7 +1044,7 @@ TypedValue * fg1_curl_multi_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_curl_multi_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_curl_multi_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1085,8 +1085,8 @@ port => rdx void fh_evhttp_set_cache(Value* address, int max_conn, int port) asm("_ZN4HPHP18f_evhttp_set_cacheERKNS_6StringEii"); -TypedValue * fg1_evhttp_set_cache(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_evhttp_set_cache(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_evhttp_set_cache(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_evhttp_set_cache(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1108,7 +1108,7 @@ TypedValue * fg1_evhttp_set_cache(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_evhttp_set_cache(HPHP::VM::ActRec *ar) { +TypedValue* fg_evhttp_set_cache(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1152,8 +1152,8 @@ timeout => rcx TypedValue* fh_evhttp_get(TypedValue* _rv, Value* url, Value* headers, int timeout) asm("_ZN4HPHP12f_evhttp_getERKNS_6StringERKNS_5ArrayEi"); -TypedValue * fg1_evhttp_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_evhttp_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_evhttp_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_evhttp_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1175,7 +1175,7 @@ TypedValue * fg1_evhttp_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_evhttp_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_evhttp_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1219,8 +1219,8 @@ timeout => r8 TypedValue* fh_evhttp_post(TypedValue* _rv, Value* url, Value* data, Value* headers, int timeout) asm("_ZN4HPHP13f_evhttp_postERKNS_6StringES2_RKNS_5ArrayEi"); -TypedValue * fg1_evhttp_post(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_evhttp_post(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_evhttp_post(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_evhttp_post(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1245,7 +1245,7 @@ TypedValue * fg1_evhttp_post(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_evhttp_post(HPHP::VM::ActRec *ar) { +TypedValue* fg_evhttp_post(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1288,8 +1288,8 @@ timeout => rcx TypedValue* fh_evhttp_async_get(TypedValue* _rv, Value* url, Value* headers, int timeout) asm("_ZN4HPHP18f_evhttp_async_getERKNS_6StringERKNS_5ArrayEi"); -TypedValue * fg1_evhttp_async_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_evhttp_async_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_evhttp_async_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_evhttp_async_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1311,7 +1311,7 @@ TypedValue * fg1_evhttp_async_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_evhttp_async_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_evhttp_async_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1355,8 +1355,8 @@ timeout => r8 TypedValue* fh_evhttp_async_post(TypedValue* _rv, Value* url, Value* data, Value* headers, int timeout) asm("_ZN4HPHP19f_evhttp_async_postERKNS_6StringES2_RKNS_5ArrayEi"); -TypedValue * fg1_evhttp_async_post(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_evhttp_async_post(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_evhttp_async_post(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_evhttp_async_post(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1381,7 +1381,7 @@ TypedValue * fg1_evhttp_async_post(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_evhttp_async_post(HPHP::VM::ActRec *ar) { +TypedValue* fg_evhttp_async_post(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1422,8 +1422,8 @@ handle => rsi TypedValue* fh_evhttp_recv(TypedValue* _rv, Value* handle) asm("_ZN4HPHP13f_evhttp_recvERKNS_6ObjectE"); -TypedValue * fg1_evhttp_recv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_evhttp_recv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_evhttp_recv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_evhttp_recv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_evhttp_recv((rv), &args[-0].m_data); @@ -1431,7 +1431,7 @@ TypedValue * fg1_evhttp_recv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_evhttp_recv(HPHP::VM::ActRec *ar) { +TypedValue* fg_evhttp_recv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_datetime.ext_hhvm.cpp b/hphp/runtime/ext/ext_datetime.ext_hhvm.cpp index 531329b43..0f6f57ffb 100644 --- a/hphp/runtime/ext/ext_datetime.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_datetime.ext_hhvm.cpp @@ -36,8 +36,8 @@ year => rdx bool fh_checkdate(int month, int day, int year) asm("_ZN4HPHP11f_checkdateEiii"); -TypedValue * fg1_checkdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_checkdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_checkdate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_checkdate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -53,7 +53,7 @@ TypedValue * fg1_checkdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_checkdate(HPHP::VM::ActRec *ar) { +TypedValue* fg_checkdate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -95,8 +95,8 @@ interval => rdx Value* fh_date_add(Value* _rv, Value* datetime, Value* interval) asm("_ZN4HPHP10f_date_addERKNS_6ObjectES2_"); -TypedValue * fg1_date_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_add(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_add(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfObject) { @@ -110,7 +110,7 @@ TypedValue * fg1_date_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_date_add(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -154,8 +154,8 @@ timezone => rcx Value* fh_date_create_from_format(Value* _rv, Value* format, Value* time, Value* timezone) asm("_ZN4HPHP25f_date_create_from_formatERKNS_6StringES2_RKNS_6ObjectE"); -TypedValue * fg1_date_create_from_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_create_from_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_create_from_format(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_create_from_format(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -177,7 +177,7 @@ TypedValue * fg1_date_create_from_format(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_date_create_from_format(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_create_from_format(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -220,8 +220,8 @@ timezone => rdx Value* fh_date_create(Value* _rv, Value* time, Value* timezone) asm("_ZN4HPHP13f_date_createERKNS_6StringERKNS_6ObjectE"); -TypedValue * fg1_date_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -241,7 +241,7 @@ TypedValue * fg1_date_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_date_create(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -284,8 +284,8 @@ day => rcx void fh_date_date_set(Value* object, int year, int month, int day) asm("_ZN4HPHP15f_date_date_setERKNS_6ObjectEiii"); -TypedValue * fg1_date_date_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_date_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_date_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_date_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -305,7 +305,7 @@ TypedValue * fg1_date_date_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_date_date_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_date_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -346,7 +346,7 @@ _rv => rdi Value* fh_date_default_timezone_get(Value* _rv) asm("_ZN4HPHP27f_date_default_timezone_getEv"); -TypedValue* fg_date_default_timezone_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_default_timezone_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -380,8 +380,8 @@ name => rdi bool fh_date_default_timezone_set(Value* name) asm("_ZN4HPHP27f_date_default_timezone_setERKNS_6StringE"); -TypedValue * fg1_date_default_timezone_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_default_timezone_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_default_timezone_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_default_timezone_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -389,7 +389,7 @@ TypedValue * fg1_date_default_timezone_set(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_date_default_timezone_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_default_timezone_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -432,8 +432,8 @@ absolute => rcx Value* fh_date_diff(Value* _rv, Value* datetime, Value* datetime2, bool absolute) asm("_ZN4HPHP11f_date_diffERKNS_6ObjectES2_b"); -TypedValue * fg1_date_diff(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_diff(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_diff(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_diff(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -455,7 +455,7 @@ TypedValue * fg1_date_diff(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_date_diff(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_diff(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -498,8 +498,8 @@ format => rdx Value* fh_date_format(Value* _rv, Value* object, Value* format) asm("_ZN4HPHP13f_date_formatERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_date_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_format(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_format(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -513,7 +513,7 @@ TypedValue * fg1_date_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_date_format(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_format(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -554,7 +554,7 @@ _rv => rdi Value* fh_date_get_last_errors(Value* _rv) asm("_ZN4HPHP22f_date_get_last_errorsEv"); -TypedValue* fg_date_get_last_errors(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_get_last_errors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -589,8 +589,8 @@ time => rsi Value* fh_date_interval_create_from_date_string(Value* _rv, Value* time) asm("_ZN4HPHP39f_date_interval_create_from_date_stringERKNS_6StringE"); -TypedValue * fg1_date_interval_create_from_date_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_interval_create_from_date_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_interval_create_from_date_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_interval_create_from_date_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -599,7 +599,7 @@ TypedValue * fg1_date_interval_create_from_date_string(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* fg_date_interval_create_from_date_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_interval_create_from_date_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -642,8 +642,8 @@ format_spec => rdx Value* fh_date_interval_format(Value* _rv, Value* interval, Value* format_spec) asm("_ZN4HPHP22f_date_interval_formatERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_date_interval_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_interval_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_interval_format(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_interval_format(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -657,7 +657,7 @@ TypedValue * fg1_date_interval_format(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_date_interval_format(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_interval_format(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -700,8 +700,8 @@ day => rcx void fh_date_isodate_set(Value* object, int year, int week, int day) asm("_ZN4HPHP18f_date_isodate_setERKNS_6ObjectEiii"); -TypedValue * fg1_date_isodate_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_isodate_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_isodate_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_isodate_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -726,7 +726,7 @@ TypedValue * fg1_date_isodate_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_date_isodate_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_isodate_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -767,8 +767,8 @@ modify => rsi void fh_date_modify(Value* object, Value* modify) asm("_ZN4HPHP13f_date_modifyERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_date_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_modify(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_modify(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -782,7 +782,7 @@ TypedValue * fg1_date_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_date_modify(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_modify(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -823,8 +823,8 @@ object => rdi long fh_date_offset_get(Value* object) asm("_ZN4HPHP17f_date_offset_getERKNS_6ObjectE"); -TypedValue * fg1_date_offset_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_offset_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_offset_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_offset_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -832,7 +832,7 @@ TypedValue * fg1_date_offset_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_date_offset_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_offset_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -873,8 +873,8 @@ date => rsi TypedValue* fh_date_parse(TypedValue* _rv, Value* date) asm("_ZN4HPHP12f_date_parseERKNS_6StringE"); -TypedValue * fg1_date_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_parse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_parse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_date_parse((rv), &args[-0].m_data); @@ -882,7 +882,7 @@ TypedValue * fg1_date_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_date_parse(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_parse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -924,8 +924,8 @@ interval => rdx Value* fh_date_sub(Value* _rv, Value* datetime, Value* interval) asm("_ZN4HPHP10f_date_subERKNS_6ObjectES2_"); -TypedValue * fg1_date_sub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_sub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_sub(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_sub(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfObject) { @@ -939,7 +939,7 @@ TypedValue * fg1_date_sub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_date_sub(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_sub(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -983,8 +983,8 @@ longitude => xmm1 Value* fh_date_sun_info(Value* _rv, long ts, double latitude, double longitude) asm("_ZN4HPHP15f_date_sun_infoEldd"); -TypedValue * fg1_date_sun_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_sun_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_sun_info(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_sun_info(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; if ((args-2)->m_type != KindOfDouble) { @@ -1001,7 +1001,7 @@ TypedValue * fg1_date_sun_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_date_sun_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_sun_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1048,8 +1048,8 @@ gmt_offset => xmm3 TypedValue* fh_date_sunrise(TypedValue* _rv, long timestamp, int format, double latitude, double longitude, double zenith, double gmt_offset) asm("_ZN4HPHP14f_date_sunriseElidddd"); -TypedValue * fg1_date_sunrise(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_sunrise(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_sunrise(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_sunrise(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1083,7 +1083,7 @@ TypedValue * fg1_date_sunrise(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_date_sunrise(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_sunrise(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1129,8 +1129,8 @@ gmt_offset => xmm3 TypedValue* fh_date_sunset(TypedValue* _rv, long timestamp, int format, double latitude, double longitude, double zenith, double gmt_offset) asm("_ZN4HPHP13f_date_sunsetElidddd"); -TypedValue * fg1_date_sunset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_sunset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_sunset(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_sunset(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1164,7 +1164,7 @@ TypedValue * fg1_date_sunset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_date_sunset(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_sunset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1206,8 +1206,8 @@ second => rcx void fh_date_time_set(Value* object, int hour, int minute, int second) asm("_ZN4HPHP15f_date_time_setERKNS_6ObjectEiii"); -TypedValue * fg1_date_time_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_time_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_time_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_time_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1232,7 +1232,7 @@ TypedValue * fg1_date_time_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_date_time_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_time_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1273,8 +1273,8 @@ datetime => rdi long fh_date_timestamp_get(Value* datetime) asm("_ZN4HPHP20f_date_timestamp_getERKNS_6ObjectE"); -TypedValue * fg1_date_timestamp_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_timestamp_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_timestamp_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_timestamp_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1282,7 +1282,7 @@ TypedValue * fg1_date_timestamp_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_date_timestamp_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_timestamp_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1324,8 +1324,8 @@ timestamp => rdx Value* fh_date_timestamp_set(Value* _rv, Value* datetime, long timestamp) asm("_ZN4HPHP20f_date_timestamp_setERKNS_6ObjectEl"); -TypedValue * fg1_date_timestamp_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_timestamp_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_timestamp_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_timestamp_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfInt64) { @@ -1339,7 +1339,7 @@ TypedValue * fg1_date_timestamp_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_date_timestamp_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_timestamp_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1381,8 +1381,8 @@ object => rsi TypedValue* fh_date_timezone_get(TypedValue* _rv, Value* object) asm("_ZN4HPHP19f_date_timezone_getERKNS_6ObjectE"); -TypedValue * fg1_date_timezone_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_timezone_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_timezone_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_timezone_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_date_timezone_get((rv), &args[-0].m_data); @@ -1390,7 +1390,7 @@ TypedValue * fg1_date_timezone_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_date_timezone_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_timezone_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1430,8 +1430,8 @@ timezone => rsi void fh_date_timezone_set(Value* object, Value* timezone) asm("_ZN4HPHP19f_date_timezone_setERKNS_6ObjectES2_"); -TypedValue * fg1_date_timezone_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date_timezone_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date_timezone_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date_timezone_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1445,7 +1445,7 @@ TypedValue * fg1_date_timezone_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_date_timezone_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_date_timezone_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1488,8 +1488,8 @@ timestamp => rdx TypedValue* fh_date(TypedValue* _rv, Value* format, long timestamp) asm("_ZN4HPHP6f_dateERKNS_6StringEl"); -TypedValue * fg1_date(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_date(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_date(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_date(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1507,7 +1507,7 @@ TypedValue * fg1_date(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_date(HPHP::VM::ActRec *ar) { +TypedValue* fg_date(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1548,8 +1548,8 @@ timestamp => rsi Value* fh_getdate(Value* _rv, long timestamp) asm("_ZN4HPHP9f_getdateEl"); -TypedValue * fg1_getdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getdate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getdate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToInt64InPlace(args-0); @@ -1558,7 +1558,7 @@ TypedValue * fg1_getdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_getdate(HPHP::VM::ActRec *ar) { +TypedValue* fg_getdate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1600,8 +1600,8 @@ return_float => rsi TypedValue* fh_gettimeofday(TypedValue* _rv, bool return_float) asm("_ZN4HPHP14f_gettimeofdayEb"); -TypedValue * fg1_gettimeofday(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gettimeofday(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gettimeofday(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gettimeofday(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-0); fh_gettimeofday((rv), (count > 0) ? (bool)(args[-0].m_data.num) : (bool)(false)); @@ -1609,7 +1609,7 @@ TypedValue * fg1_gettimeofday(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_gettimeofday(HPHP::VM::ActRec *ar) { +TypedValue* fg_gettimeofday(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1651,8 +1651,8 @@ timestamp => rdx TypedValue* fh_gmdate(TypedValue* _rv, Value* format, long timestamp) asm("_ZN4HPHP8f_gmdateERKNS_6StringEl"); -TypedValue * fg1_gmdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gmdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gmdate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gmdate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1670,7 +1670,7 @@ TypedValue * fg1_gmdate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gmdate(HPHP::VM::ActRec *ar) { +TypedValue* fg_gmdate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1716,8 +1716,8 @@ year => st0 TypedValue* fh_gmmktime(TypedValue* _rv, int hour, int minute, int second, int month, int day, int year) asm("_ZN4HPHP10f_gmmktimeEiiiiii"); -TypedValue * fg1_gmmktime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gmmktime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gmmktime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gmmktime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1752,7 +1752,7 @@ TypedValue * fg1_gmmktime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gmmktime(HPHP::VM::ActRec *ar) { +TypedValue* fg_gmmktime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1794,8 +1794,8 @@ timestamp => rdx Value* fh_gmstrftime(Value* _rv, Value* format, long timestamp) asm("_ZN4HPHP12f_gmstrftimeERKNS_6StringEl"); -TypedValue * fg1_gmstrftime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gmstrftime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gmstrftime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gmstrftime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1814,7 +1814,7 @@ TypedValue * fg1_gmstrftime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_gmstrftime(HPHP::VM::ActRec *ar) { +TypedValue* fg_gmstrftime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1857,8 +1857,8 @@ timestamp => rdx TypedValue* fh_idate(TypedValue* _rv, Value* format, long timestamp) asm("_ZN4HPHP7f_idateERKNS_6StringEl"); -TypedValue * fg1_idate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_idate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_idate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_idate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1876,7 +1876,7 @@ TypedValue * fg1_idate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_idate(HPHP::VM::ActRec *ar) { +TypedValue* fg_idate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1918,8 +1918,8 @@ is_associative => rdx Value* fh_localtime(Value* _rv, long timestamp, bool is_associative) asm("_ZN4HPHP11f_localtimeElb"); -TypedValue * fg1_localtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_localtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_localtime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_localtime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -1939,7 +1939,7 @@ TypedValue * fg1_localtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_localtime(HPHP::VM::ActRec *ar) { +TypedValue* fg_localtime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1981,8 +1981,8 @@ get_as_float => rsi TypedValue* fh_microtime(TypedValue* _rv, bool get_as_float) asm("_ZN4HPHP11f_microtimeEb"); -TypedValue * fg1_microtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_microtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_microtime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_microtime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-0); fh_microtime((rv), (count > 0) ? (bool)(args[-0].m_data.num) : (bool)(false)); @@ -1990,7 +1990,7 @@ TypedValue * fg1_microtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_microtime(HPHP::VM::ActRec *ar) { +TypedValue* fg_microtime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2036,8 +2036,8 @@ year => st0 TypedValue* fh_mktime(TypedValue* _rv, int hour, int minute, int second, int month, int day, int year) asm("_ZN4HPHP8f_mktimeEiiiiii"); -TypedValue * fg1_mktime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mktime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mktime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mktime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -2072,7 +2072,7 @@ TypedValue * fg1_mktime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_mktime(HPHP::VM::ActRec *ar) { +TypedValue* fg_mktime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2114,8 +2114,8 @@ timestamp => rdx TypedValue* fh_strftime(TypedValue* _rv, Value* format, long timestamp) asm("_ZN4HPHP10f_strftimeERKNS_6StringEl"); -TypedValue * fg1_strftime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strftime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strftime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strftime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2133,7 +2133,7 @@ TypedValue * fg1_strftime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strftime(HPHP::VM::ActRec *ar) { +TypedValue* fg_strftime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2175,8 +2175,8 @@ format => rdx TypedValue* fh_strptime(TypedValue* _rv, Value* date, Value* format) asm("_ZN4HPHP10f_strptimeERKNS_6StringES2_"); -TypedValue * fg1_strptime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strptime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strptime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strptime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -2189,7 +2189,7 @@ TypedValue * fg1_strptime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strptime(HPHP::VM::ActRec *ar) { +TypedValue* fg_strptime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2231,8 +2231,8 @@ timestamp => rdx TypedValue* fh_strtotime(TypedValue* _rv, Value* input, long timestamp) asm("_ZN4HPHP11f_strtotimeERKNS_6StringEl"); -TypedValue * fg1_strtotime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strtotime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strtotime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strtotime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2250,7 +2250,7 @@ TypedValue * fg1_strtotime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_strtotime(HPHP::VM::ActRec *ar) { +TypedValue* fg_strtotime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2289,7 +2289,7 @@ _ZN4HPHP6f_timeEv long fh_time() asm("_ZN4HPHP6f_timeEv"); -TypedValue* fg_time(HPHP::VM::ActRec *ar) { +TypedValue* fg_time(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2322,7 +2322,7 @@ _rv => rdi Value* fh_timezone_abbreviations_list(Value* _rv) asm("_ZN4HPHP29f_timezone_abbreviations_listEv"); -TypedValue* fg_timezone_abbreviations_list(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_abbreviations_list(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2356,7 +2356,7 @@ _rv => rdi Value* fh_timezone_identifiers_list(Value* _rv) asm("_ZN4HPHP27f_timezone_identifiers_listEv"); -TypedValue* fg_timezone_identifiers_list(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_identifiers_list(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2391,8 +2391,8 @@ timezone => rsi Value* fh_timezone_location_get(Value* _rv, Value* timezone) asm("_ZN4HPHP23f_timezone_location_getERKNS_6ObjectE"); -TypedValue * fg1_timezone_location_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_timezone_location_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_timezone_location_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_timezone_location_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -2401,7 +2401,7 @@ TypedValue * fg1_timezone_location_get(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_timezone_location_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_location_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2445,8 +2445,8 @@ isdst => rcx TypedValue* fh_timezone_name_from_abbr(TypedValue* _rv, Value* abbr, int gmtoffset, bool isdst) asm("_ZN4HPHP25f_timezone_name_from_abbrERKNS_6StringEib"); -TypedValue * fg1_timezone_name_from_abbr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_timezone_name_from_abbr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_timezone_name_from_abbr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_timezone_name_from_abbr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -2468,7 +2468,7 @@ TypedValue * fg1_timezone_name_from_abbr(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_timezone_name_from_abbr(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_name_from_abbr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2509,8 +2509,8 @@ object => rsi Value* fh_timezone_name_get(Value* _rv, Value* object) asm("_ZN4HPHP19f_timezone_name_getERKNS_6ObjectE"); -TypedValue * fg1_timezone_name_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_timezone_name_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_timezone_name_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_timezone_name_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -2519,7 +2519,7 @@ TypedValue * fg1_timezone_name_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_timezone_name_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_name_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2561,8 +2561,8 @@ dt => rsi long fh_timezone_offset_get(Value* object, Value* dt) asm("_ZN4HPHP21f_timezone_offset_getERKNS_6ObjectES2_"); -TypedValue * fg1_timezone_offset_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_timezone_offset_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_timezone_offset_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_timezone_offset_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-1)->m_type != KindOfObject) { @@ -2575,7 +2575,7 @@ TypedValue * fg1_timezone_offset_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_timezone_offset_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_offset_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2616,8 +2616,8 @@ timezone => rsi Value* fh_timezone_open(Value* _rv, Value* timezone) asm("_ZN4HPHP15f_timezone_openERKNS_6StringE"); -TypedValue * fg1_timezone_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_timezone_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_timezone_open(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_timezone_open(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -2626,7 +2626,7 @@ TypedValue * fg1_timezone_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_timezone_open(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_open(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2668,8 +2668,8 @@ object => rsi Value* fh_timezone_transitions_get(Value* _rv, Value* object) asm("_ZN4HPHP26f_timezone_transitions_getERKNS_6ObjectE"); -TypedValue * fg1_timezone_transitions_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_timezone_transitions_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_timezone_transitions_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_timezone_transitions_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -2678,7 +2678,7 @@ TypedValue * fg1_timezone_transitions_get(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_timezone_transitions_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_transitions_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2719,7 +2719,7 @@ _rv => rdi Value* fh_timezone_version_get(Value* _rv) asm("_ZN4HPHP22f_timezone_version_getEv"); -TypedValue* fg_timezone_version_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_timezone_version_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2755,8 +2755,8 @@ interval => rdx Value* th_8DateTime_add(Value* _rv, ObjectData* this_, Value* interval) asm("_ZN4HPHP10c_DateTime5t_addERKNS_6ObjectE"); -TypedValue* tg1_8DateTime_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_add(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_add(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -2765,7 +2765,7 @@ TypedValue* tg1_8DateTime_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* tg_8DateTime_add(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2820,8 +2820,8 @@ timezone => rdx void th_8DateTime___construct(ObjectData* this_, Value* time, Value* timezone) asm("_ZN4HPHP10c_DateTime13t___constructERKNS_6StringERKNS_6ObjectE"); -TypedValue* tg1_8DateTime___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2842,7 +2842,7 @@ TypedValue* tg1_8DateTime___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_8DateTime___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2891,8 +2891,8 @@ timezone => r8 Value* th_8DateTime_createFromFormat(Value* _rv, char const* cls_, Value* format, Value* time, Value* timezone) asm("_ZN4HPHP10c_DateTime19ti_createfromformatEPKcRKNS_6StringES5_RKNS_6ObjectE"); -TypedValue* tg1_8DateTime_createFromFormat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_createFromFormat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_8DateTime_createFromFormat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_createFromFormat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -2914,7 +2914,7 @@ TypedValue* tg1_8DateTime_createFromFormat(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_8DateTime_createFromFormat(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_createFromFormat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2956,8 +2956,8 @@ absolute => rcx Value* th_8DateTime_diff(Value* _rv, ObjectData* this_, Value* datetime2, bool absolute) asm("_ZN4HPHP10c_DateTime6t_diffERKNS_6ObjectEb"); -TypedValue* tg1_8DateTime_diff(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_diff(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_diff(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_diff(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -2976,7 +2976,7 @@ TypedValue* tg1_8DateTime_diff(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_8DateTime_diff(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_diff(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3022,8 +3022,8 @@ format => rdx Value* th_8DateTime_format(Value* _rv, ObjectData* this_, Value* format) asm("_ZN4HPHP10c_DateTime8t_formatERKNS_6StringE"); -TypedValue* tg1_8DateTime_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_format(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_format(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -3032,7 +3032,7 @@ TypedValue* tg1_8DateTime_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_8DateTime_format(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_format(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3077,7 +3077,7 @@ cls_ => rsi Value* th_8DateTime_getLastErrors(Value* _rv, char const* cls_) asm("_ZN4HPHP10c_DateTime16ti_getlasterrorsEPKc"); -TypedValue* tg_8DateTime_getLastErrors(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_getLastErrors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3109,7 +3109,7 @@ this_ => rdi long th_8DateTime_getOffset(ObjectData* this_) asm("_ZN4HPHP10c_DateTime11t_getoffsetEv"); -TypedValue* tg_8DateTime_getOffset(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_getOffset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3145,7 +3145,7 @@ this_ => rdi long th_8DateTime_getTimestamp(ObjectData* this_) asm("_ZN4HPHP10c_DateTime14t_gettimestampEv"); -TypedValue* tg_8DateTime_getTimestamp(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_getTimestamp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3182,7 +3182,7 @@ this_ => rsi TypedValue* th_8DateTime_getTimezone(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP10c_DateTime13t_gettimezoneEv"); -TypedValue* tg_8DateTime_getTimezone(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_getTimezone(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3220,8 +3220,8 @@ modify => rdx Value* th_8DateTime_modify(Value* _rv, ObjectData* this_, Value* modify) asm("_ZN4HPHP10c_DateTime8t_modifyERKNS_6StringE"); -TypedValue* tg1_8DateTime_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_modify(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_modify(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -3230,7 +3230,7 @@ TypedValue* tg1_8DateTime_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_8DateTime_modify(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_modify(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3278,8 +3278,8 @@ day => r8 Value* th_8DateTime_setDate(Value* _rv, ObjectData* this_, long year, long month, long day) asm("_ZN4HPHP10c_DateTime9t_setdateElll"); -TypedValue* tg1_8DateTime_setDate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_setDate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_setDate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_setDate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-2)->m_type != KindOfInt64) { @@ -3296,7 +3296,7 @@ TypedValue* tg1_8DateTime_setDate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8DateTime_setDate(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_setDate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3344,8 +3344,8 @@ day => r8 Value* th_8DateTime_setISODate(Value* _rv, ObjectData* this_, long year, long week, long day) asm("_ZN4HPHP10c_DateTime12t_setisodateElll"); -TypedValue* tg1_8DateTime_setISODate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_setISODate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_setISODate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_setISODate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -3367,7 +3367,7 @@ TypedValue* tg1_8DateTime_setISODate(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_8DateTime_setISODate(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_setISODate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3415,8 +3415,8 @@ second => r8 Value* th_8DateTime_setTime(Value* _rv, ObjectData* this_, long hour, long minute, long second) asm("_ZN4HPHP10c_DateTime9t_settimeElll"); -TypedValue* tg1_8DateTime_setTime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_setTime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_setTime(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_setTime(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -3438,7 +3438,7 @@ TypedValue* tg1_8DateTime_setTime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8DateTime_setTime(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_setTime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3484,8 +3484,8 @@ unixtimestamp => rdx Value* th_8DateTime_setTimestamp(Value* _rv, ObjectData* this_, long unixtimestamp) asm("_ZN4HPHP10c_DateTime14t_settimestampEl"); -TypedValue* tg1_8DateTime_setTimestamp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_setTimestamp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_setTimestamp(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_setTimestamp(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToInt64InPlace(args-0); @@ -3494,7 +3494,7 @@ TypedValue* tg1_8DateTime_setTimestamp(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_8DateTime_setTimestamp(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_setTimestamp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3540,8 +3540,8 @@ timezone => rdx Value* th_8DateTime_setTimezone(Value* _rv, ObjectData* this_, Value* timezone) asm("_ZN4HPHP10c_DateTime13t_settimezoneERKNS_6ObjectE"); -TypedValue* tg1_8DateTime_setTimezone(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_setTimezone(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_setTimezone(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_setTimezone(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -3550,7 +3550,7 @@ TypedValue* tg1_8DateTime_setTimezone(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_8DateTime_setTimezone(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_setTimezone(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3596,8 +3596,8 @@ interval => rdx Value* th_8DateTime_sub(Value* _rv, ObjectData* this_, Value* interval) asm("_ZN4HPHP10c_DateTime5t_subERKNS_6ObjectE"); -TypedValue* tg1_8DateTime_sub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DateTime_sub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DateTime_sub(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DateTime_sub(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -3606,7 +3606,7 @@ TypedValue* tg1_8DateTime_sub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* tg_8DateTime_sub(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DateTime_sub(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3660,8 +3660,8 @@ timezone => rsi void th_12DateTimeZone___construct(ObjectData* this_, Value* timezone) asm("_ZN4HPHP14c_DateTimeZone13t___constructERKNS_6StringE"); -TypedValue* tg1_12DateTimeZone___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12DateTimeZone___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12DateTimeZone___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12DateTimeZone___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -3670,7 +3670,7 @@ TypedValue* tg1_12DateTimeZone___construct(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_12DateTimeZone___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateTimeZone___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3715,7 +3715,7 @@ this_ => rsi Value* th_12DateTimeZone_getLocation(Value* _rv, ObjectData* this_) asm("_ZN4HPHP14c_DateTimeZone13t_getlocationEv"); -TypedValue* tg_12DateTimeZone_getLocation(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateTimeZone_getLocation(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3753,7 +3753,7 @@ this_ => rsi Value* th_12DateTimeZone_getName(Value* _rv, ObjectData* this_) asm("_ZN4HPHP14c_DateTimeZone9t_getnameEv"); -TypedValue* tg_12DateTimeZone_getName(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateTimeZone_getName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3791,8 +3791,8 @@ datetime => rsi long th_12DateTimeZone_getOffset(ObjectData* this_, Value* datetime) asm("_ZN4HPHP14c_DateTimeZone11t_getoffsetERKNS_6ObjectE"); -TypedValue* tg1_12DateTimeZone_getOffset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12DateTimeZone_getOffset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12DateTimeZone_getOffset(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12DateTimeZone_getOffset(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3800,7 +3800,7 @@ TypedValue* tg1_12DateTimeZone_getOffset(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_12DateTimeZone_getOffset(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateTimeZone_getOffset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3844,7 +3844,7 @@ this_ => rsi Value* th_12DateTimeZone_getTransitions(Value* _rv, ObjectData* this_) asm("_ZN4HPHP14c_DateTimeZone16t_gettransitionsEv"); -TypedValue* tg_12DateTimeZone_getTransitions(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateTimeZone_getTransitions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3882,7 +3882,7 @@ cls_ => rsi Value* th_12DateTimeZone_listAbbreviations(Value* _rv, char const* cls_) asm("_ZN4HPHP14c_DateTimeZone20ti_listabbreviationsEPKc"); -TypedValue* tg_12DateTimeZone_listAbbreviations(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateTimeZone_listAbbreviations(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3915,7 +3915,7 @@ cls_ => rsi Value* th_12DateTimeZone_listIdentifiers(Value* _rv, char const* cls_) asm("_ZN4HPHP14c_DateTimeZone18ti_listidentifiersEPKc"); -TypedValue* tg_12DateTimeZone_listIdentifiers(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateTimeZone_listIdentifiers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3957,8 +3957,8 @@ interval_spec => rsi void th_12DateInterval___construct(ObjectData* this_, Value* interval_spec) asm("_ZN4HPHP14c_DateInterval13t___constructERKNS_6StringE"); -TypedValue* tg1_12DateInterval___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12DateInterval___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12DateInterval___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12DateInterval___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -3967,7 +3967,7 @@ TypedValue* tg1_12DateInterval___construct(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_12DateInterval___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateInterval___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4013,7 +4013,7 @@ member => rdx TypedValue* th_12DateInterval___get(TypedValue* _rv, ObjectData* this_, TypedValue* member) asm("_ZN4HPHP14c_DateInterval7t___getENS_7VariantE"); -TypedValue* tg_12DateInterval___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateInterval___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4052,7 +4052,7 @@ value => rcx TypedValue* th_12DateInterval___set(TypedValue* _rv, ObjectData* this_, TypedValue* member, TypedValue* value) asm("_ZN4HPHP14c_DateInterval7t___setENS_7VariantES1_"); -TypedValue* tg_12DateInterval___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateInterval___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4090,8 +4090,8 @@ time => rdx Value* th_12DateInterval_createFromDateString(Value* _rv, char const* cls_, Value* time) asm("_ZN4HPHP14c_DateInterval23ti_createfromdatestringEPKcRKNS_6StringE"); -TypedValue* tg1_12DateInterval_createFromDateString(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_12DateInterval_createFromDateString(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_12DateInterval_createFromDateString(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_12DateInterval_createFromDateString(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -4100,7 +4100,7 @@ TypedValue* tg1_12DateInterval_createFromDateString(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* tg_12DateInterval_createFromDateString(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateInterval_createFromDateString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4141,8 +4141,8 @@ format => rdx Value* th_12DateInterval_format(Value* _rv, ObjectData* this_, Value* format) asm("_ZN4HPHP14c_DateInterval8t_formatERKNS_6StringE"); -TypedValue* tg1_12DateInterval_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12DateInterval_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12DateInterval_format(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12DateInterval_format(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -4151,7 +4151,7 @@ TypedValue* tg1_12DateInterval_format(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_12DateInterval_format(HPHP::VM::ActRec *ar) { +TypedValue* tg_12DateInterval_format(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_debugger.ext_hhvm.cpp b/hphp/runtime/ext/ext_debugger.ext_hhvm.cpp index a84b54415..47599a2c1 100644 --- a/hphp/runtime/ext/ext_debugger.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_debugger.ext_hhvm.cpp @@ -35,8 +35,8 @@ clsname => rsi bool fh_hphpd_install_user_command(Value* cmd, Value* clsname) asm("_ZN4HPHP28f_hphpd_install_user_commandERKNS_6StringES2_"); -TypedValue * fg1_hphpd_install_user_command(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphpd_install_user_command(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphpd_install_user_command(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphpd_install_user_command(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -49,7 +49,7 @@ TypedValue * fg1_hphpd_install_user_command(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_hphpd_install_user_command(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphpd_install_user_command(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -89,7 +89,7 @@ _rv => rdi Value* fh_hphpd_get_user_commands(Value* _rv) asm("_ZN4HPHP25f_hphpd_get_user_commandsEv"); -TypedValue* fg_hphpd_get_user_commands(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphpd_get_user_commands(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -122,8 +122,8 @@ condition => rdi void fh_hphpd_break(bool condition) asm("_ZN4HPHP13f_hphpd_breakEb"); -TypedValue * fg1_hphpd_break(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphpd_break(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphpd_break(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphpd_break(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -132,7 +132,7 @@ TypedValue * fg1_hphpd_break(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_hphpd_break(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphpd_break(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -174,8 +174,8 @@ name => rsi TypedValue* fh_hphpd_get_client(TypedValue* _rv, Value* name) asm("_ZN4HPHP18f_hphpd_get_clientERKNS_6StringE"); -TypedValue * fg1_hphpd_get_client(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphpd_get_client(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphpd_get_client(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphpd_get_client(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); String defVal0 = uninit_null(); @@ -184,7 +184,7 @@ TypedValue * fg1_hphpd_get_client(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_hphpd_get_client(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphpd_get_client(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -227,8 +227,8 @@ op => rdx TypedValue* fh_hphpd_client_ctrl(TypedValue* _rv, Value* name, Value* op) asm("_ZN4HPHP19f_hphpd_client_ctrlERKNS_6StringES2_"); -TypedValue * fg1_hphpd_client_ctrl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphpd_client_ctrl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphpd_client_ctrl(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphpd_client_ctrl(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -241,7 +241,7 @@ TypedValue * fg1_hphpd_client_ctrl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_hphpd_client_ctrl(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphpd_client_ctrl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -290,7 +290,7 @@ this_ => rdi void th_20DebuggerProxyCmdUser___construct(ObjectData* this_) asm("_ZN4HPHP22c_DebuggerProxyCmdUser13t___constructEv"); -TypedValue* tg_20DebuggerProxyCmdUser___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_20DebuggerProxyCmdUser___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -327,7 +327,7 @@ this_ => rdi bool th_20DebuggerProxyCmdUser_isLocal(ObjectData* this_) asm("_ZN4HPHP22c_DebuggerProxyCmdUser9t_islocalEv"); -TypedValue* tg_20DebuggerProxyCmdUser_isLocal(HPHP::VM::ActRec *ar) { +TypedValue* tg_20DebuggerProxyCmdUser_isLocal(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -365,8 +365,8 @@ cmd => rdx TypedValue* th_20DebuggerProxyCmdUser_send(TypedValue* _rv, ObjectData* this_, Value* cmd) asm("_ZN4HPHP22c_DebuggerProxyCmdUser6t_sendERKNS_6ObjectE"); -TypedValue* tg1_20DebuggerProxyCmdUser_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_20DebuggerProxyCmdUser_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_20DebuggerProxyCmdUser_send(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_20DebuggerProxyCmdUser_send(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_20DebuggerProxyCmdUser_send((rv), (this_), &args[-0].m_data); @@ -374,7 +374,7 @@ TypedValue* tg1_20DebuggerProxyCmdUser_send(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_20DebuggerProxyCmdUser_send(HPHP::VM::ActRec *ar) { +TypedValue* tg_20DebuggerProxyCmdUser_send(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -426,7 +426,7 @@ this_ => rdi void th_21DebuggerClientCmdUser___construct(ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser13t___constructEv"); -TypedValue* tg_21DebuggerClientCmdUser___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -462,7 +462,7 @@ this_ => rdi void th_21DebuggerClientCmdUser_quit(ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_quitEv"); -TypedValue* tg_21DebuggerClientCmdUser_quit(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_quit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -501,8 +501,8 @@ _argv => rcx void th_21DebuggerClientCmdUser_print(ObjectData* this_, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP23c_DebuggerClientCmdUser7t_printEiRKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_21DebuggerClientCmdUser_print(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_print(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_print(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_print(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -524,7 +524,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_print(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_21DebuggerClientCmdUser_print(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_print(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -583,8 +583,8 @@ _argv => rcx void th_21DebuggerClientCmdUser_help(ObjectData* this_, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_helpEiRKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_21DebuggerClientCmdUser_help(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_help(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_help(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_help(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -606,7 +606,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_help(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_21DebuggerClientCmdUser_help(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_help(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -665,8 +665,8 @@ _argv => rcx void th_21DebuggerClientCmdUser_info(ObjectData* this_, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_infoEiRKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_21DebuggerClientCmdUser_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_info(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_info(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -688,7 +688,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_info(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_21DebuggerClientCmdUser_info(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -747,8 +747,8 @@ _argv => rcx void th_21DebuggerClientCmdUser_output(ObjectData* this_, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP23c_DebuggerClientCmdUser8t_outputEiRKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_21DebuggerClientCmdUser_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_output(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_output(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -770,7 +770,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_output(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_21DebuggerClientCmdUser_output(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_output(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -829,8 +829,8 @@ _argv => rcx void th_21DebuggerClientCmdUser_error(ObjectData* this_, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP23c_DebuggerClientCmdUser7t_errorEiRKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_21DebuggerClientCmdUser_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_error(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_error(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -852,7 +852,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_error(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_21DebuggerClientCmdUser_error(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -912,8 +912,8 @@ end_line_no => r8 void th_21DebuggerClientCmdUser_code(ObjectData* this_, Value* source, int highlight_line, int start_line_no, int end_line_no) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_codeERKNS_6StringEiii"); -TypedValue* tg1_21DebuggerClientCmdUser_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_code(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_code(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -940,7 +940,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_code(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_21DebuggerClientCmdUser_code(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_code(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -988,8 +988,8 @@ _argv => r8 TypedValue* th_21DebuggerClientCmdUser_ask(TypedValue* _rv, ObjectData* this_, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP23c_DebuggerClientCmdUser5t_askEiRKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_21DebuggerClientCmdUser_ask(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_ask(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_ask(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_ask(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Array extraArgs; @@ -1010,7 +1010,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_ask(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_21DebuggerClientCmdUser_ask(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_ask(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1068,8 +1068,8 @@ str => rdx Value* th_21DebuggerClientCmdUser_wrap(Value* _rv, ObjectData* this_, Value* str) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_wrapERKNS_6StringE"); -TypedValue* tg1_21DebuggerClientCmdUser_wrap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_wrap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_wrap(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_wrap(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1078,7 +1078,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_wrap(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_21DebuggerClientCmdUser_wrap(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_wrap(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1122,8 +1122,8 @@ str => rsi void th_21DebuggerClientCmdUser_helpTitle(ObjectData* this_, Value* str) asm("_ZN4HPHP23c_DebuggerClientCmdUser11t_helptitleERKNS_6StringE"); -TypedValue* tg1_21DebuggerClientCmdUser_helpTitle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_helpTitle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_helpTitle(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_helpTitle(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1132,7 +1132,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_helpTitle(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* tg_21DebuggerClientCmdUser_helpTitle(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_helpTitle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1179,8 +1179,8 @@ _argv => r8 void th_21DebuggerClientCmdUser_helpCmds(ObjectData* this_, int64_t _argc, Value* cmd, Value* desc, Value* _argv) asm("_ZN4HPHP23c_DebuggerClientCmdUser10t_helpcmdsEiRKNS_6StringES3_RKNS_5ArrayE"); -TypedValue* tg1_21DebuggerClientCmdUser_helpCmds(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_helpCmds(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_helpCmds(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_helpCmds(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1207,7 +1207,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_helpCmds(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_21DebuggerClientCmdUser_helpCmds(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_helpCmds(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1264,8 +1264,8 @@ str => rsi void th_21DebuggerClientCmdUser_helpBody(ObjectData* this_, Value* str) asm("_ZN4HPHP23c_DebuggerClientCmdUser10t_helpbodyERKNS_6StringE"); -TypedValue* tg1_21DebuggerClientCmdUser_helpBody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_helpBody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_helpBody(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_helpBody(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1274,7 +1274,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_helpBody(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_21DebuggerClientCmdUser_helpBody(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_helpBody(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1318,8 +1318,8 @@ str => rsi void th_21DebuggerClientCmdUser_helpSection(ObjectData* this_, Value* str) asm("_ZN4HPHP23c_DebuggerClientCmdUser13t_helpsectionERKNS_6StringE"); -TypedValue* tg1_21DebuggerClientCmdUser_helpSection(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_helpSection(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_helpSection(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_helpSection(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1328,7 +1328,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_helpSection(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* tg_21DebuggerClientCmdUser_helpSection(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_helpSection(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1372,8 +1372,8 @@ str => rsi void th_21DebuggerClientCmdUser_tutorial(ObjectData* this_, Value* str) asm("_ZN4HPHP23c_DebuggerClientCmdUser10t_tutorialERKNS_6StringE"); -TypedValue* tg1_21DebuggerClientCmdUser_tutorial(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_tutorial(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_tutorial(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_tutorial(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1382,7 +1382,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_tutorial(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_21DebuggerClientCmdUser_tutorial(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_tutorial(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1427,7 +1427,7 @@ this_ => rsi Value* th_21DebuggerClientCmdUser_getCode(Value* _rv, ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser9t_getcodeEv"); -TypedValue* tg_21DebuggerClientCmdUser_getCode(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_getCode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1465,7 +1465,7 @@ this_ => rsi Value* th_21DebuggerClientCmdUser_getCommand(Value* _rv, ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser12t_getcommandEv"); -TypedValue* tg_21DebuggerClientCmdUser_getCommand(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_getCommand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1504,8 +1504,8 @@ str => rdx bool th_21DebuggerClientCmdUser_arg(ObjectData* this_, int index, Value* str) asm("_ZN4HPHP23c_DebuggerClientCmdUser5t_argEiRKNS_6StringE"); -TypedValue* tg1_21DebuggerClientCmdUser_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_arg(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_arg(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1518,7 +1518,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_arg(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_21DebuggerClientCmdUser_arg(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_arg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1561,7 +1561,7 @@ this_ => rdi long th_21DebuggerClientCmdUser_argCount(ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser10t_argcountEv"); -TypedValue* tg_21DebuggerClientCmdUser_argCount(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_argCount(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1599,8 +1599,8 @@ index => rdx Value* th_21DebuggerClientCmdUser_argValue(Value* _rv, ObjectData* this_, int index) asm("_ZN4HPHP23c_DebuggerClientCmdUser10t_argvalueEi"); -TypedValue* tg1_21DebuggerClientCmdUser_argValue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_argValue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_argValue(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_argValue(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1609,7 +1609,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_argValue(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_21DebuggerClientCmdUser_argValue(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_argValue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1655,8 +1655,8 @@ index => rdx Value* th_21DebuggerClientCmdUser_lineRest(Value* _rv, ObjectData* this_, int index) asm("_ZN4HPHP23c_DebuggerClientCmdUser10t_linerestEi"); -TypedValue* tg1_21DebuggerClientCmdUser_lineRest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_lineRest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_lineRest(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_lineRest(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1665,7 +1665,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_lineRest(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_21DebuggerClientCmdUser_lineRest(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_lineRest(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1710,7 +1710,7 @@ this_ => rsi Value* th_21DebuggerClientCmdUser_args(Value* _rv, ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_argsEv"); -TypedValue* tg_21DebuggerClientCmdUser_args(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_args(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1749,8 +1749,8 @@ cmd => rdx TypedValue* th_21DebuggerClientCmdUser_send(TypedValue* _rv, ObjectData* this_, Value* cmd) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_sendERKNS_6ObjectE"); -TypedValue* tg1_21DebuggerClientCmdUser_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_send(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_send(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_21DebuggerClientCmdUser_send((rv), (this_), &args[-0].m_data); @@ -1758,7 +1758,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_send(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_21DebuggerClientCmdUser_send(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_send(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1803,8 +1803,8 @@ cmd => rdx TypedValue* th_21DebuggerClientCmdUser_xend(TypedValue* _rv, ObjectData* this_, Value* cmd) asm("_ZN4HPHP23c_DebuggerClientCmdUser6t_xendERKNS_6ObjectE"); -TypedValue* tg1_21DebuggerClientCmdUser_xend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_xend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_xend(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_xend(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_21DebuggerClientCmdUser_xend((rv), (this_), &args[-0].m_data); @@ -1812,7 +1812,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_xend(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_21DebuggerClientCmdUser_xend(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_xend(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1856,7 +1856,7 @@ this_ => rsi TypedValue* th_21DebuggerClientCmdUser_getCurrentLocation(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser20t_getcurrentlocationEv"); -TypedValue* tg_21DebuggerClientCmdUser_getCurrentLocation(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_getCurrentLocation(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1893,7 +1893,7 @@ this_ => rsi TypedValue* th_21DebuggerClientCmdUser_getStackTrace(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser15t_getstacktraceEv"); -TypedValue* tg_21DebuggerClientCmdUser_getStackTrace(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_getStackTrace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1929,7 +1929,7 @@ this_ => rdi long th_21DebuggerClientCmdUser_getFrame(ObjectData* this_) asm("_ZN4HPHP23c_DebuggerClientCmdUser10t_getframeEv"); -TypedValue* tg_21DebuggerClientCmdUser_getFrame(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_getFrame(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1965,8 +1965,8 @@ index => rsi void th_21DebuggerClientCmdUser_printFrame(ObjectData* this_, int index) asm("_ZN4HPHP23c_DebuggerClientCmdUser12t_printframeEi"); -TypedValue* tg1_21DebuggerClientCmdUser_printFrame(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_21DebuggerClientCmdUser_printFrame(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_21DebuggerClientCmdUser_printFrame(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_21DebuggerClientCmdUser_printFrame(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1975,7 +1975,7 @@ TypedValue* tg1_21DebuggerClientCmdUser_printFrame(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* tg_21DebuggerClientCmdUser_printFrame(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_printFrame(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2019,7 +2019,7 @@ list => rsi void th_21DebuggerClientCmdUser_addCompletion(ObjectData* this_, TypedValue* list) asm("_ZN4HPHP23c_DebuggerClientCmdUser15t_addcompletionERKNS_7VariantE"); -TypedValue* tg_21DebuggerClientCmdUser_addCompletion(HPHP::VM::ActRec *ar) { +TypedValue* tg_21DebuggerClientCmdUser_addCompletion(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2065,7 +2065,7 @@ this_ => rdi void th_14DebuggerClient___construct(ObjectData* this_) asm("_ZN4HPHP16c_DebuggerClient13t___constructEv"); -TypedValue* tg_14DebuggerClient___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_14DebuggerClient___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2102,7 +2102,7 @@ this_ => rdi long th_14DebuggerClient_getState(ObjectData* this_) asm("_ZN4HPHP16c_DebuggerClient10t_getstateEv"); -TypedValue* tg_14DebuggerClient_getState(HPHP::VM::ActRec *ar) { +TypedValue* tg_14DebuggerClient_getState(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2140,7 +2140,7 @@ options => rdx TypedValue* th_14DebuggerClient_init(TypedValue* _rv, ObjectData* this_, TypedValue* options) asm("_ZN4HPHP16c_DebuggerClient6t_initERKNS_7VariantE"); -TypedValue* tg_14DebuggerClient_init(HPHP::VM::ActRec *ar) { +TypedValue* tg_14DebuggerClient_init(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2179,7 +2179,7 @@ args => rcx TypedValue* th_14DebuggerClient_processCmd(TypedValue* _rv, ObjectData* this_, TypedValue* cmdName, TypedValue* args) asm("_ZN4HPHP16c_DebuggerClient12t_processcmdERKNS_7VariantES3_"); -TypedValue* tg_14DebuggerClient_processCmd(HPHP::VM::ActRec *ar) { +TypedValue* tg_14DebuggerClient_processCmd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_domdocument.ext_hhvm.cpp b/hphp/runtime/ext/ext_domdocument.ext_hhvm.cpp index 78c763c62..06c6b9313 100644 --- a/hphp/runtime/ext/ext_domdocument.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_domdocument.ext_hhvm.cpp @@ -37,8 +37,8 @@ value => rcx TypedValue* fh_dom_document_create_element(TypedValue* _rv, TypedValue* obj, Value* name, Value* value) asm("_ZN4HPHP29f_dom_document_create_elementERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_document_create_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -56,7 +56,7 @@ TypedValue * fg1_dom_document_create_element(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_dom_document_create_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -97,7 +97,7 @@ obj => rsi TypedValue* fh_dom_document_create_document_fragment(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP39f_dom_document_create_document_fragmentERKNS_7VariantE"); -TypedValue* fg_dom_document_create_document_fragment(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_document_fragment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -132,8 +132,8 @@ data => rdx TypedValue* fh_dom_document_create_text_node(TypedValue* _rv, TypedValue* obj, Value* data) asm("_ZN4HPHP31f_dom_document_create_text_nodeERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_create_text_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_text_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_text_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_text_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_create_text_node((rv), (args-0), &args[-1].m_data); @@ -141,7 +141,7 @@ TypedValue * fg1_dom_document_create_text_node(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_document_create_text_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_text_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -183,8 +183,8 @@ data => rdx TypedValue* fh_dom_document_create_comment(TypedValue* _rv, TypedValue* obj, Value* data) asm("_ZN4HPHP29f_dom_document_create_commentERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_create_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_comment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_comment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_create_comment((rv), (args-0), &args[-1].m_data); @@ -192,7 +192,7 @@ TypedValue * fg1_dom_document_create_comment(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_dom_document_create_comment(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_comment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -234,8 +234,8 @@ data => rdx TypedValue* fh_dom_document_create_cdatasection(TypedValue* _rv, TypedValue* obj, Value* data) asm("_ZN4HPHP34f_dom_document_create_cdatasectionERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_create_cdatasection(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_cdatasection(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_cdatasection(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_cdatasection(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_create_cdatasection((rv), (args-0), &args[-1].m_data); @@ -243,7 +243,7 @@ TypedValue * fg1_dom_document_create_cdatasection(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_dom_document_create_cdatasection(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_cdatasection(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -286,8 +286,8 @@ data => rcx TypedValue* fh_dom_document_create_processing_instruction(TypedValue* _rv, TypedValue* obj, Value* target, Value* data) asm("_ZN4HPHP44f_dom_document_create_processing_instructionERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_document_create_processing_instruction(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_processing_instruction(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_processing_instruction(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_processing_instruction(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -305,7 +305,7 @@ TypedValue * fg1_dom_document_create_processing_instruction(TypedValue* rv, HPHP return rv; } -TypedValue* fg_dom_document_create_processing_instruction(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_processing_instruction(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -347,8 +347,8 @@ name => rdx TypedValue* fh_dom_document_create_attribute(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP31f_dom_document_create_attributeERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_create_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_create_attribute((rv), (args-0), &args[-1].m_data); @@ -356,7 +356,7 @@ TypedValue * fg1_dom_document_create_attribute(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_document_create_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -398,8 +398,8 @@ name => rdx TypedValue* fh_dom_document_create_entity_reference(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP38f_dom_document_create_entity_referenceERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_create_entity_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_entity_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_entity_reference(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_entity_reference(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_create_entity_reference((rv), (args-0), &args[-1].m_data); @@ -407,7 +407,7 @@ TypedValue * fg1_dom_document_create_entity_reference(TypedValue* rv, HPHP::VM:: return rv; } -TypedValue* fg_dom_document_create_entity_reference(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_entity_reference(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -449,8 +449,8 @@ name => rdx TypedValue* fh_dom_document_get_elements_by_tag_name(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP39f_dom_document_get_elements_by_tag_nameERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_get_elements_by_tag_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_get_elements_by_tag_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_get_elements_by_tag_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_get_elements_by_tag_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_get_elements_by_tag_name((rv), (args-0), &args[-1].m_data); @@ -458,7 +458,7 @@ TypedValue * fg1_dom_document_get_elements_by_tag_name(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* fg_dom_document_get_elements_by_tag_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_get_elements_by_tag_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -501,8 +501,8 @@ deep => rcx TypedValue* fh_dom_document_import_node(TypedValue* _rv, TypedValue* obj, Value* importednode, bool deep) asm("_ZN4HPHP26f_dom_document_import_nodeERKNS_7VariantERKNS_6ObjectEb"); -TypedValue * fg1_dom_document_import_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_import_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_import_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_import_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -520,7 +520,7 @@ TypedValue * fg1_dom_document_import_node(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_dom_document_import_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_import_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -564,8 +564,8 @@ value => r8 TypedValue* fh_dom_document_create_element_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* qualifiedname, Value* value) asm("_ZN4HPHP32f_dom_document_create_element_nsERKNS_7VariantERKNS_6StringES5_S5_"); -TypedValue * fg1_dom_document_create_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_element_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_element_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -586,7 +586,7 @@ TypedValue * fg1_dom_document_create_element_ns(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_dom_document_create_element_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_element_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -629,8 +629,8 @@ qualifiedname => rcx TypedValue* fh_dom_document_create_attribute_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* qualifiedname) asm("_ZN4HPHP34f_dom_document_create_attribute_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_document_create_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_create_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_create_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_create_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -643,7 +643,7 @@ TypedValue * fg1_dom_document_create_attribute_ns(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_dom_document_create_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_create_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -686,8 +686,8 @@ localname => rcx TypedValue* fh_dom_document_get_elements_by_tag_name_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname) asm("_ZN4HPHP42f_dom_document_get_elements_by_tag_name_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_document_get_elements_by_tag_name_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_get_elements_by_tag_name_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_get_elements_by_tag_name_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_get_elements_by_tag_name_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -700,7 +700,7 @@ TypedValue * fg1_dom_document_get_elements_by_tag_name_ns(TypedValue* rv, HPHP:: return rv; } -TypedValue* fg_dom_document_get_elements_by_tag_name_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_get_elements_by_tag_name_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -742,8 +742,8 @@ elementid => rdx TypedValue* fh_dom_document_get_element_by_id(TypedValue* _rv, TypedValue* obj, Value* elementid) asm("_ZN4HPHP32f_dom_document_get_element_by_idERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_get_element_by_id(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_get_element_by_id(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_get_element_by_id(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_get_element_by_id(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_get_element_by_id((rv), (args-0), &args[-1].m_data); @@ -751,7 +751,7 @@ TypedValue * fg1_dom_document_get_element_by_id(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_dom_document_get_element_by_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_get_element_by_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -792,7 +792,7 @@ obj => rsi TypedValue* fh_dom_document_normalize_document(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP33f_dom_document_normalize_documentERKNS_7VariantE"); -TypedValue* fg_dom_document_normalize_document(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_normalize_document(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -828,8 +828,8 @@ options => rcx TypedValue* fh_dom_document_save(TypedValue* _rv, TypedValue* obj, Value* file, long options) asm("_ZN4HPHP19f_dom_document_saveERKNS_7VariantERKNS_6StringEl"); -TypedValue * fg1_dom_document_save(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_save(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_save(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_save(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -847,7 +847,7 @@ TypedValue * fg1_dom_document_save(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_dom_document_save(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_save(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -890,8 +890,8 @@ options => rcx TypedValue* fh_dom_document_savexml(TypedValue* _rv, TypedValue* obj, Value* node, long options) asm("_ZN4HPHP22f_dom_document_savexmlERKNS_7VariantERKNS_6ObjectEl"); -TypedValue * fg1_dom_document_savexml(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_savexml(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_savexml(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_savexml(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -910,7 +910,7 @@ TypedValue * fg1_dom_document_savexml(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_dom_document_savexml(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_savexml(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -951,7 +951,7 @@ obj => rsi TypedValue* fh_dom_document_validate(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP23f_dom_document_validateERKNS_7VariantE"); -TypedValue* fg_dom_document_validate(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_validate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -986,8 +986,8 @@ options => rdx TypedValue* fh_dom_document_xinclude(TypedValue* _rv, TypedValue* obj, long options) asm("_ZN4HPHP23f_dom_document_xincludeERKNS_7VariantEl"); -TypedValue * fg1_dom_document_xinclude(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_xinclude(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_xinclude(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_xinclude(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_dom_document_xinclude((rv), (args-0), (count > 1) ? (long)(args[-1].m_data.num) : (long)(0)); @@ -995,7 +995,7 @@ TypedValue * fg1_dom_document_xinclude(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_dom_document_xinclude(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_xinclude(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1036,7 +1036,7 @@ obj => rsi TypedValue* fh_dom_document_save_html(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP24f_dom_document_save_htmlERKNS_7VariantE"); -TypedValue* fg_dom_document_save_html(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_save_html(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1071,8 +1071,8 @@ file => rdx TypedValue* fh_dom_document_save_html_file(TypedValue* _rv, TypedValue* obj, Value* file) asm("_ZN4HPHP29f_dom_document_save_html_fileERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_save_html_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_save_html_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_save_html_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_save_html_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_save_html_file((rv), (args-0), &args[-1].m_data); @@ -1080,7 +1080,7 @@ TypedValue * fg1_dom_document_save_html_file(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_dom_document_save_html_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_save_html_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1122,8 +1122,8 @@ filename => rdx TypedValue* fh_dom_document_schema_validate_file(TypedValue* _rv, TypedValue* obj, Value* filename) asm("_ZN4HPHP35f_dom_document_schema_validate_fileERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_schema_validate_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_schema_validate_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_schema_validate_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_schema_validate_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_schema_validate_file((rv), (args-0), &args[-1].m_data); @@ -1131,7 +1131,7 @@ TypedValue * fg1_dom_document_schema_validate_file(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_dom_document_schema_validate_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_schema_validate_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1173,8 +1173,8 @@ source => rdx TypedValue* fh_dom_document_schema_validate_xml(TypedValue* _rv, TypedValue* obj, Value* source) asm("_ZN4HPHP34f_dom_document_schema_validate_xmlERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_schema_validate_xml(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_schema_validate_xml(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_schema_validate_xml(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_schema_validate_xml(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_schema_validate_xml((rv), (args-0), &args[-1].m_data); @@ -1182,7 +1182,7 @@ TypedValue * fg1_dom_document_schema_validate_xml(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_dom_document_schema_validate_xml(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_schema_validate_xml(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1224,8 +1224,8 @@ filename => rdx TypedValue* fh_dom_document_relaxng_validate_file(TypedValue* _rv, TypedValue* obj, Value* filename) asm("_ZN4HPHP36f_dom_document_relaxng_validate_fileERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_relaxng_validate_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_relaxng_validate_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_relaxng_validate_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_relaxng_validate_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_relaxng_validate_file((rv), (args-0), &args[-1].m_data); @@ -1233,7 +1233,7 @@ TypedValue * fg1_dom_document_relaxng_validate_file(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* fg_dom_document_relaxng_validate_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_relaxng_validate_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1275,8 +1275,8 @@ source => rdx TypedValue* fh_dom_document_relaxng_validate_xml(TypedValue* _rv, TypedValue* obj, Value* source) asm("_ZN4HPHP35f_dom_document_relaxng_validate_xmlERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_document_relaxng_validate_xml(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_document_relaxng_validate_xml(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_document_relaxng_validate_xml(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_document_relaxng_validate_xml(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_document_relaxng_validate_xml((rv), (args-0), &args[-1].m_data); @@ -1284,7 +1284,7 @@ TypedValue * fg1_dom_document_relaxng_validate_xml(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_dom_document_relaxng_validate_xml(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_document_relaxng_validate_xml(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1327,8 +1327,8 @@ refnode => rcx TypedValue* fh_dom_node_insert_before(TypedValue* _rv, TypedValue* obj, Value* newnode, Value* refnode) asm("_ZN4HPHP24f_dom_node_insert_beforeERKNS_7VariantERKNS_6ObjectES5_"); -TypedValue * fg1_dom_node_insert_before(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_insert_before(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_insert_before(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_insert_before(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1347,7 +1347,7 @@ TypedValue * fg1_dom_node_insert_before(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_dom_node_insert_before(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_insert_before(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1391,8 +1391,8 @@ oldchildobj => rcx TypedValue* fh_dom_node_replace_child(TypedValue* _rv, TypedValue* obj, Value* newchildobj, Value* oldchildobj) asm("_ZN4HPHP24f_dom_node_replace_childERKNS_7VariantERKNS_6ObjectES5_"); -TypedValue * fg1_dom_node_replace_child(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_replace_child(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_replace_child(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_replace_child(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfObject) { tvCastToObjectInPlace(args-2); @@ -1405,7 +1405,7 @@ TypedValue * fg1_dom_node_replace_child(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_dom_node_replace_child(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_replace_child(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1447,8 +1447,8 @@ node => rdx TypedValue* fh_dom_node_remove_child(TypedValue* _rv, TypedValue* obj, Value* node) asm("_ZN4HPHP23f_dom_node_remove_childERKNS_7VariantERKNS_6ObjectE"); -TypedValue * fg1_dom_node_remove_child(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_remove_child(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_remove_child(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_remove_child(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-1); fh_dom_node_remove_child((rv), (args-0), &args[-1].m_data); @@ -1456,7 +1456,7 @@ TypedValue * fg1_dom_node_remove_child(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_dom_node_remove_child(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_remove_child(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1498,8 +1498,8 @@ newnode => rdx TypedValue* fh_dom_node_append_child(TypedValue* _rv, TypedValue* obj, Value* newnode) asm("_ZN4HPHP23f_dom_node_append_childERKNS_7VariantERKNS_6ObjectE"); -TypedValue * fg1_dom_node_append_child(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_append_child(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_append_child(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_append_child(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-1); fh_dom_node_append_child((rv), (args-0), &args[-1].m_data); @@ -1507,7 +1507,7 @@ TypedValue * fg1_dom_node_append_child(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_dom_node_append_child(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_append_child(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1548,7 +1548,7 @@ obj => rsi TypedValue* fh_dom_node_has_child_nodes(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP26f_dom_node_has_child_nodesERKNS_7VariantE"); -TypedValue* fg_dom_node_has_child_nodes(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_has_child_nodes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1583,8 +1583,8 @@ deep => rdx TypedValue* fh_dom_node_clone_node(TypedValue* _rv, TypedValue* obj, bool deep) asm("_ZN4HPHP21f_dom_node_clone_nodeERKNS_7VariantEb"); -TypedValue * fg1_dom_node_clone_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_clone_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_clone_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_clone_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_dom_node_clone_node((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(false)); @@ -1592,7 +1592,7 @@ TypedValue * fg1_dom_node_clone_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_dom_node_clone_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_clone_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1633,7 +1633,7 @@ obj => rsi TypedValue* fh_dom_node_normalize(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP20f_dom_node_normalizeERKNS_7VariantE"); -TypedValue* fg_dom_node_normalize(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_normalize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1669,8 +1669,8 @@ version => rcx TypedValue* fh_dom_node_is_supported(TypedValue* _rv, TypedValue* obj, Value* feature, Value* version) asm("_ZN4HPHP23f_dom_node_is_supportedERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_node_is_supported(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_is_supported(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_is_supported(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_is_supported(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -1683,7 +1683,7 @@ TypedValue * fg1_dom_node_is_supported(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_dom_node_is_supported(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_is_supported(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1724,7 +1724,7 @@ obj => rsi TypedValue* fh_dom_node_has_attributes(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP25f_dom_node_has_attributesERKNS_7VariantE"); -TypedValue* fg_dom_node_has_attributes(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_has_attributes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1759,8 +1759,8 @@ node => rdx TypedValue* fh_dom_node_is_same_node(TypedValue* _rv, TypedValue* obj, Value* node) asm("_ZN4HPHP23f_dom_node_is_same_nodeERKNS_7VariantERKNS_6ObjectE"); -TypedValue * fg1_dom_node_is_same_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_is_same_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_is_same_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_is_same_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-1); fh_dom_node_is_same_node((rv), (args-0), &args[-1].m_data); @@ -1768,7 +1768,7 @@ TypedValue * fg1_dom_node_is_same_node(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_dom_node_is_same_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_is_same_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1810,8 +1810,8 @@ prefix => rdx TypedValue* fh_dom_node_lookup_prefix(TypedValue* _rv, TypedValue* obj, Value* prefix) asm("_ZN4HPHP24f_dom_node_lookup_prefixERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_node_lookup_prefix(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_lookup_prefix(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_lookup_prefix(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_lookup_prefix(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_node_lookup_prefix((rv), (args-0), &args[-1].m_data); @@ -1819,7 +1819,7 @@ TypedValue * fg1_dom_node_lookup_prefix(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_dom_node_lookup_prefix(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_lookup_prefix(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1861,8 +1861,8 @@ namespaceuri => rdx TypedValue* fh_dom_node_is_default_namespace(TypedValue* _rv, TypedValue* obj, Value* namespaceuri) asm("_ZN4HPHP31f_dom_node_is_default_namespaceERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_node_is_default_namespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_is_default_namespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_is_default_namespace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_is_default_namespace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_node_is_default_namespace((rv), (args-0), &args[-1].m_data); @@ -1870,7 +1870,7 @@ TypedValue * fg1_dom_node_is_default_namespace(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_node_is_default_namespace(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_is_default_namespace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1912,8 +1912,8 @@ namespaceuri => rdx TypedValue* fh_dom_node_lookup_namespace_uri(TypedValue* _rv, TypedValue* obj, Value* namespaceuri) asm("_ZN4HPHP31f_dom_node_lookup_namespace_uriERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_node_lookup_namespace_uri(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_node_lookup_namespace_uri(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_node_lookup_namespace_uri(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_node_lookup_namespace_uri(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_node_lookup_namespace_uri((rv), (args-0), &args[-1].m_data); @@ -1921,7 +1921,7 @@ TypedValue * fg1_dom_node_lookup_namespace_uri(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_node_lookup_namespace_uri(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_node_lookup_namespace_uri(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1963,8 +1963,8 @@ index => rdx TypedValue* fh_dom_nodelist_item(TypedValue* _rv, TypedValue* obj, long index) asm("_ZN4HPHP19f_dom_nodelist_itemERKNS_7VariantEl"); -TypedValue * fg1_dom_nodelist_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_nodelist_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_nodelist_item(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_nodelist_item(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_dom_nodelist_item((rv), (args-0), (long)(args[-1].m_data.num)); @@ -1972,7 +1972,7 @@ TypedValue * fg1_dom_nodelist_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_dom_nodelist_item(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_nodelist_item(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2014,8 +2014,8 @@ name => rdx TypedValue* fh_dom_namednodemap_get_named_item(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP33f_dom_namednodemap_get_named_itemERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_namednodemap_get_named_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_namednodemap_get_named_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_namednodemap_get_named_item(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_namednodemap_get_named_item(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_namednodemap_get_named_item((rv), (args-0), &args[-1].m_data); @@ -2023,7 +2023,7 @@ TypedValue * fg1_dom_namednodemap_get_named_item(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* fg_dom_namednodemap_get_named_item(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_namednodemap_get_named_item(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2065,8 +2065,8 @@ index => rdx TypedValue* fh_dom_namednodemap_item(TypedValue* _rv, TypedValue* obj, long index) asm("_ZN4HPHP23f_dom_namednodemap_itemERKNS_7VariantEl"); -TypedValue * fg1_dom_namednodemap_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_namednodemap_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_namednodemap_item(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_namednodemap_item(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_dom_namednodemap_item((rv), (args-0), (long)(args[-1].m_data.num)); @@ -2074,7 +2074,7 @@ TypedValue * fg1_dom_namednodemap_item(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_dom_namednodemap_item(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_namednodemap_item(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2117,8 +2117,8 @@ localname => rcx TypedValue* fh_dom_namednodemap_get_named_item_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname) asm("_ZN4HPHP36f_dom_namednodemap_get_named_item_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_namednodemap_get_named_item_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_namednodemap_get_named_item_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_namednodemap_get_named_item_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_namednodemap_get_named_item_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2131,7 +2131,7 @@ TypedValue * fg1_dom_namednodemap_get_named_item_ns(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* fg_dom_namednodemap_get_named_item_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_namednodemap_get_named_item_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2174,8 +2174,8 @@ count => rcx TypedValue* fh_dom_characterdata_substring_data(TypedValue* _rv, TypedValue* obj, long offset, long count) asm("_ZN4HPHP34f_dom_characterdata_substring_dataERKNS_7VariantEll"); -TypedValue * fg1_dom_characterdata_substring_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_characterdata_substring_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_characterdata_substring_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_characterdata_substring_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -2188,7 +2188,7 @@ TypedValue * fg1_dom_characterdata_substring_data(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_dom_characterdata_substring_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_characterdata_substring_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2230,8 +2230,8 @@ arg => rdx TypedValue* fh_dom_characterdata_append_data(TypedValue* _rv, TypedValue* obj, Value* arg) asm("_ZN4HPHP31f_dom_characterdata_append_dataERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_characterdata_append_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_characterdata_append_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_characterdata_append_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_characterdata_append_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_characterdata_append_data((rv), (args-0), &args[-1].m_data); @@ -2239,7 +2239,7 @@ TypedValue * fg1_dom_characterdata_append_data(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_characterdata_append_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_characterdata_append_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2282,8 +2282,8 @@ data => rcx TypedValue* fh_dom_characterdata_insert_data(TypedValue* _rv, TypedValue* obj, long offset, Value* data) asm("_ZN4HPHP31f_dom_characterdata_insert_dataERKNS_7VariantElRKNS_6StringE"); -TypedValue * fg1_dom_characterdata_insert_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_characterdata_insert_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_characterdata_insert_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_characterdata_insert_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2296,7 +2296,7 @@ TypedValue * fg1_dom_characterdata_insert_data(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_characterdata_insert_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_characterdata_insert_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2339,8 +2339,8 @@ count => rcx TypedValue* fh_dom_characterdata_delete_data(TypedValue* _rv, TypedValue* obj, long offset, long count) asm("_ZN4HPHP31f_dom_characterdata_delete_dataERKNS_7VariantEll"); -TypedValue * fg1_dom_characterdata_delete_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_characterdata_delete_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_characterdata_delete_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_characterdata_delete_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -2353,7 +2353,7 @@ TypedValue * fg1_dom_characterdata_delete_data(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_characterdata_delete_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_characterdata_delete_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2397,8 +2397,8 @@ data => r8 TypedValue* fh_dom_characterdata_replace_data(TypedValue* _rv, TypedValue* obj, long offset, long count, Value* data) asm("_ZN4HPHP32f_dom_characterdata_replace_dataERKNS_7VariantEllRKNS_6StringE"); -TypedValue * fg1_dom_characterdata_replace_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_characterdata_replace_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_characterdata_replace_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_characterdata_replace_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -2414,7 +2414,7 @@ TypedValue * fg1_dom_characterdata_replace_data(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_dom_characterdata_replace_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_characterdata_replace_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2455,7 +2455,7 @@ obj => rsi TypedValue* fh_dom_attr_is_id(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP16f_dom_attr_is_idERKNS_7VariantE"); -TypedValue* fg_dom_attr_is_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_attr_is_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2490,8 +2490,8 @@ name => rdx TypedValue* fh_dom_element_get_attribute(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP27f_dom_element_get_attributeERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_element_get_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_get_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_get_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_get_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_element_get_attribute((rv), (args-0), &args[-1].m_data); @@ -2499,7 +2499,7 @@ TypedValue * fg1_dom_element_get_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_dom_element_get_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_get_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2542,8 +2542,8 @@ value => rcx TypedValue* fh_dom_element_set_attribute(TypedValue* _rv, TypedValue* obj, Value* name, Value* value) asm("_ZN4HPHP27f_dom_element_set_attributeERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_element_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_set_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_set_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2556,7 +2556,7 @@ TypedValue * fg1_dom_element_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_dom_element_set_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_set_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2598,8 +2598,8 @@ name => rdx TypedValue* fh_dom_element_remove_attribute(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP30f_dom_element_remove_attributeERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_element_remove_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_remove_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_remove_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_remove_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_element_remove_attribute((rv), (args-0), &args[-1].m_data); @@ -2607,7 +2607,7 @@ TypedValue * fg1_dom_element_remove_attribute(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_element_remove_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_remove_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2649,8 +2649,8 @@ name => rdx TypedValue* fh_dom_element_get_attribute_node(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP32f_dom_element_get_attribute_nodeERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_element_get_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_get_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_get_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_get_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_element_get_attribute_node((rv), (args-0), &args[-1].m_data); @@ -2658,7 +2658,7 @@ TypedValue * fg1_dom_element_get_attribute_node(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_dom_element_get_attribute_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_get_attribute_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2700,8 +2700,8 @@ newattr => rdx TypedValue* fh_dom_element_set_attribute_node(TypedValue* _rv, TypedValue* obj, Value* newattr) asm("_ZN4HPHP32f_dom_element_set_attribute_nodeERKNS_7VariantERKNS_6ObjectE"); -TypedValue * fg1_dom_element_set_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_set_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_set_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_set_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-1); fh_dom_element_set_attribute_node((rv), (args-0), &args[-1].m_data); @@ -2709,7 +2709,7 @@ TypedValue * fg1_dom_element_set_attribute_node(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_dom_element_set_attribute_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_set_attribute_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2751,8 +2751,8 @@ oldattr => rdx TypedValue* fh_dom_element_remove_attribute_node(TypedValue* _rv, TypedValue* obj, Value* oldattr) asm("_ZN4HPHP35f_dom_element_remove_attribute_nodeERKNS_7VariantERKNS_6ObjectE"); -TypedValue * fg1_dom_element_remove_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_remove_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_remove_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_remove_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-1); fh_dom_element_remove_attribute_node((rv), (args-0), &args[-1].m_data); @@ -2760,7 +2760,7 @@ TypedValue * fg1_dom_element_remove_attribute_node(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_dom_element_remove_attribute_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_remove_attribute_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2802,8 +2802,8 @@ name => rdx TypedValue* fh_dom_element_get_elements_by_tag_name(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP38f_dom_element_get_elements_by_tag_nameERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_element_get_elements_by_tag_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_get_elements_by_tag_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_get_elements_by_tag_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_get_elements_by_tag_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_element_get_elements_by_tag_name((rv), (args-0), &args[-1].m_data); @@ -2811,7 +2811,7 @@ TypedValue * fg1_dom_element_get_elements_by_tag_name(TypedValue* rv, HPHP::VM:: return rv; } -TypedValue* fg_dom_element_get_elements_by_tag_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_get_elements_by_tag_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2854,8 +2854,8 @@ localname => rcx TypedValue* fh_dom_element_get_attribute_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname) asm("_ZN4HPHP30f_dom_element_get_attribute_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_element_get_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_get_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_get_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_get_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2868,7 +2868,7 @@ TypedValue * fg1_dom_element_get_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_element_get_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_get_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2912,8 +2912,8 @@ value => r8 TypedValue* fh_dom_element_set_attribute_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* name, Value* value) asm("_ZN4HPHP30f_dom_element_set_attribute_nsERKNS_7VariantERKNS_6StringES5_S5_"); -TypedValue * fg1_dom_element_set_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_set_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_set_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_set_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -2929,7 +2929,7 @@ TypedValue * fg1_dom_element_set_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_element_set_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_set_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2972,8 +2972,8 @@ localname => rcx TypedValue* fh_dom_element_remove_attribute_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname) asm("_ZN4HPHP33f_dom_element_remove_attribute_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_element_remove_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_remove_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_remove_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_remove_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2986,7 +2986,7 @@ TypedValue * fg1_dom_element_remove_attribute_ns(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* fg_dom_element_remove_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_remove_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3029,8 +3029,8 @@ localname => rcx TypedValue* fh_dom_element_get_attribute_node_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname) asm("_ZN4HPHP35f_dom_element_get_attribute_node_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_element_get_attribute_node_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_get_attribute_node_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_get_attribute_node_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_get_attribute_node_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -3043,7 +3043,7 @@ TypedValue * fg1_dom_element_get_attribute_node_ns(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_dom_element_get_attribute_node_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_get_attribute_node_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3085,8 +3085,8 @@ newattr => rdx TypedValue* fh_dom_element_set_attribute_node_ns(TypedValue* _rv, TypedValue* obj, Value* newattr) asm("_ZN4HPHP35f_dom_element_set_attribute_node_nsERKNS_7VariantERKNS_6ObjectE"); -TypedValue * fg1_dom_element_set_attribute_node_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_set_attribute_node_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_set_attribute_node_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_set_attribute_node_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-1); fh_dom_element_set_attribute_node_ns((rv), (args-0), &args[-1].m_data); @@ -3094,7 +3094,7 @@ TypedValue * fg1_dom_element_set_attribute_node_ns(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_dom_element_set_attribute_node_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_set_attribute_node_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3137,8 +3137,8 @@ localname => rcx TypedValue* fh_dom_element_get_elements_by_tag_name_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname) asm("_ZN4HPHP41f_dom_element_get_elements_by_tag_name_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_element_get_elements_by_tag_name_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_get_elements_by_tag_name_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_get_elements_by_tag_name_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_get_elements_by_tag_name_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -3151,7 +3151,7 @@ TypedValue * fg1_dom_element_get_elements_by_tag_name_ns(TypedValue* rv, HPHP::V return rv; } -TypedValue* fg_dom_element_get_elements_by_tag_name_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_get_elements_by_tag_name_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3193,8 +3193,8 @@ name => rdx TypedValue* fh_dom_element_has_attribute(TypedValue* _rv, TypedValue* obj, Value* name) asm("_ZN4HPHP27f_dom_element_has_attributeERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_dom_element_has_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_has_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_has_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_has_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_dom_element_has_attribute((rv), (args-0), &args[-1].m_data); @@ -3202,7 +3202,7 @@ TypedValue * fg1_dom_element_has_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_dom_element_has_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_has_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3245,8 +3245,8 @@ localname => rcx TypedValue* fh_dom_element_has_attribute_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname) asm("_ZN4HPHP30f_dom_element_has_attribute_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_element_has_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_has_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_has_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_has_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -3259,7 +3259,7 @@ TypedValue * fg1_dom_element_has_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_element_has_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_has_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3302,8 +3302,8 @@ isid => rcx TypedValue* fh_dom_element_set_id_attribute(TypedValue* _rv, TypedValue* obj, Value* name, bool isid) asm("_ZN4HPHP30f_dom_element_set_id_attributeERKNS_7VariantERKNS_6StringEb"); -TypedValue * fg1_dom_element_set_id_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_set_id_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_set_id_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_set_id_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-2); @@ -3316,7 +3316,7 @@ TypedValue * fg1_dom_element_set_id_attribute(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_dom_element_set_id_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_set_id_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3360,8 +3360,8 @@ isid => r8 TypedValue* fh_dom_element_set_id_attribute_ns(TypedValue* _rv, TypedValue* obj, Value* namespaceuri, Value* localname, bool isid) asm("_ZN4HPHP33f_dom_element_set_id_attribute_nsERKNS_7VariantERKNS_6StringES5_b"); -TypedValue * fg1_dom_element_set_id_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_set_id_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_set_id_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_set_id_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-3); @@ -3377,7 +3377,7 @@ TypedValue * fg1_dom_element_set_id_attribute_ns(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* fg_dom_element_set_id_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_set_id_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3420,8 +3420,8 @@ isid => rcx TypedValue* fh_dom_element_set_id_attribute_node(TypedValue* _rv, TypedValue* obj, Value* idattr, bool isid) asm("_ZN4HPHP35f_dom_element_set_id_attribute_nodeERKNS_7VariantERKNS_6ObjectEb"); -TypedValue * fg1_dom_element_set_id_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_element_set_id_attribute_node(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_element_set_id_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_element_set_id_attribute_node(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-2); @@ -3434,7 +3434,7 @@ TypedValue * fg1_dom_element_set_id_attribute_node(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_dom_element_set_id_attribute_node(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_element_set_id_attribute_node(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3476,8 +3476,8 @@ offset => rdx TypedValue* fh_dom_text_split_text(TypedValue* _rv, TypedValue* obj, long offset) asm("_ZN4HPHP21f_dom_text_split_textERKNS_7VariantEl"); -TypedValue * fg1_dom_text_split_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_text_split_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_text_split_text(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_text_split_text(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_dom_text_split_text((rv), (args-0), (long)(args[-1].m_data.num)); @@ -3485,7 +3485,7 @@ TypedValue * fg1_dom_text_split_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_dom_text_split_text(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_text_split_text(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3526,7 +3526,7 @@ obj => rsi TypedValue* fh_dom_text_is_whitespace_in_element_content(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP43f_dom_text_is_whitespace_in_element_contentERKNS_7VariantE"); -TypedValue* fg_dom_text_is_whitespace_in_element_content(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_text_is_whitespace_in_element_content(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3562,8 +3562,8 @@ uri => rcx TypedValue* fh_dom_xpath_register_ns(TypedValue* _rv, TypedValue* obj, Value* prefix, Value* uri) asm("_ZN4HPHP23f_dom_xpath_register_nsERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_dom_xpath_register_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_xpath_register_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_xpath_register_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_xpath_register_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -3576,7 +3576,7 @@ TypedValue * fg1_dom_xpath_register_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_dom_xpath_register_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_xpath_register_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3619,8 +3619,8 @@ context => rcx TypedValue* fh_dom_xpath_query(TypedValue* _rv, TypedValue* obj, Value* expr, Value* context) asm("_ZN4HPHP17f_dom_xpath_queryERKNS_7VariantERKNS_6StringERKNS_6ObjectE"); -TypedValue * fg1_dom_xpath_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_xpath_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_xpath_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_xpath_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -3638,7 +3638,7 @@ TypedValue * fg1_dom_xpath_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_dom_xpath_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_xpath_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3681,8 +3681,8 @@ context => rcx TypedValue* fh_dom_xpath_evaluate(TypedValue* _rv, TypedValue* obj, Value* expr, Value* context) asm("_ZN4HPHP20f_dom_xpath_evaluateERKNS_7VariantERKNS_6StringERKNS_6ObjectE"); -TypedValue * fg1_dom_xpath_evaluate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dom_xpath_evaluate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dom_xpath_evaluate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dom_xpath_evaluate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -3700,7 +3700,7 @@ TypedValue * fg1_dom_xpath_evaluate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_dom_xpath_evaluate(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_xpath_evaluate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3742,7 +3742,7 @@ funcs => rdx TypedValue* fh_dom_xpath_register_php_functions(TypedValue* _rv, TypedValue* obj, TypedValue* funcs) asm("_ZN4HPHP34f_dom_xpath_register_php_functionsERKNS_7VariantES2_"); -TypedValue* fg_dom_xpath_register_php_functions(HPHP::VM::ActRec *ar) { +TypedValue* fg_dom_xpath_register_php_functions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3785,7 +3785,7 @@ this_ => rdi void th_7DOMNode___construct(ObjectData* this_) asm("_ZN4HPHP9c_DOMNode13t___constructEv"); -TypedValue* tg_7DOMNode___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3824,8 +3824,8 @@ newnode => rdx TypedValue* th_7DOMNode_appendChild(TypedValue* _rv, ObjectData* this_, Value* newnode) asm("_ZN4HPHP9c_DOMNode13t_appendchildERKNS_6ObjectE"); -TypedValue* tg1_7DOMNode_appendChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_appendChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_appendChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_appendChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_7DOMNode_appendChild((rv), (this_), &args[-0].m_data); @@ -3833,7 +3833,7 @@ TypedValue* tg1_7DOMNode_appendChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7DOMNode_appendChild(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_appendChild(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3878,8 +3878,8 @@ deep => rdx TypedValue* th_7DOMNode_cloneNode(TypedValue* _rv, ObjectData* this_, bool deep) asm("_ZN4HPHP9c_DOMNode11t_clonenodeEb"); -TypedValue* tg1_7DOMNode_cloneNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_cloneNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_cloneNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_cloneNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-0); th_7DOMNode_cloneNode((rv), (this_), (count > 0) ? (bool)(args[-0].m_data.num) : (bool)(false)); @@ -3887,7 +3887,7 @@ TypedValue* tg1_7DOMNode_cloneNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_7DOMNode_cloneNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_cloneNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3930,7 +3930,7 @@ this_ => rdi long th_7DOMNode_getLineNo(ObjectData* this_) asm("_ZN4HPHP9c_DOMNode11t_getlinenoEv"); -TypedValue* tg_7DOMNode_getLineNo(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_getLineNo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3966,7 +3966,7 @@ this_ => rdi bool th_7DOMNode_hasAttributes(ObjectData* this_) asm("_ZN4HPHP9c_DOMNode15t_hasattributesEv"); -TypedValue* tg_7DOMNode_hasAttributes(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_hasAttributes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4002,7 +4002,7 @@ this_ => rdi bool th_7DOMNode_hasChildNodes(ObjectData* this_) asm("_ZN4HPHP9c_DOMNode15t_haschildnodesEv"); -TypedValue* tg_7DOMNode_hasChildNodes(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_hasChildNodes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4041,8 +4041,8 @@ refnode => rcx TypedValue* th_7DOMNode_insertBefore(TypedValue* _rv, ObjectData* this_, Value* newnode, Value* refnode) asm("_ZN4HPHP9c_DOMNode14t_insertbeforeERKNS_6ObjectES3_"); -TypedValue* tg1_7DOMNode_insertBefore(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_insertBefore(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_insertBefore(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_insertBefore(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -4061,7 +4061,7 @@ TypedValue* tg1_7DOMNode_insertBefore(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_7DOMNode_insertBefore(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_insertBefore(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4106,8 +4106,8 @@ namespaceuri => rsi bool th_7DOMNode_isDefaultNamespace(ObjectData* this_, Value* namespaceuri) asm("_ZN4HPHP9c_DOMNode20t_isdefaultnamespaceERKNS_6StringE"); -TypedValue* tg1_7DOMNode_isDefaultNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_isDefaultNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_isDefaultNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_isDefaultNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4115,7 +4115,7 @@ TypedValue* tg1_7DOMNode_isDefaultNamespace(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_7DOMNode_isDefaultNamespace(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_isDefaultNamespace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4159,8 +4159,8 @@ node => rsi bool th_7DOMNode_isSameNode(ObjectData* this_, Value* node) asm("_ZN4HPHP9c_DOMNode12t_issamenodeERKNS_6ObjectE"); -TypedValue* tg1_7DOMNode_isSameNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_isSameNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_isSameNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_isSameNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -4168,7 +4168,7 @@ TypedValue* tg1_7DOMNode_isSameNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_7DOMNode_isSameNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_isSameNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4213,8 +4213,8 @@ version => rdx bool th_7DOMNode_isSupported(ObjectData* this_, Value* feature, Value* version) asm("_ZN4HPHP9c_DOMNode13t_issupportedERKNS_6StringES3_"); -TypedValue* tg1_7DOMNode_isSupported(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_isSupported(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_isSupported(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_isSupported(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -4227,7 +4227,7 @@ TypedValue* tg1_7DOMNode_isSupported(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7DOMNode_isSupported(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_isSupported(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4272,8 +4272,8 @@ namespaceuri => rdx TypedValue* th_7DOMNode_lookupNamespaceUri(TypedValue* _rv, ObjectData* this_, Value* namespaceuri) asm("_ZN4HPHP9c_DOMNode20t_lookupnamespaceuriERKNS_6StringE"); -TypedValue* tg1_7DOMNode_lookupNamespaceUri(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_lookupNamespaceUri(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_lookupNamespaceUri(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_lookupNamespaceUri(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_7DOMNode_lookupNamespaceUri((rv), (this_), &args[-0].m_data); @@ -4281,7 +4281,7 @@ TypedValue* tg1_7DOMNode_lookupNamespaceUri(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_7DOMNode_lookupNamespaceUri(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_lookupNamespaceUri(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4326,8 +4326,8 @@ prefix => rdx TypedValue* th_7DOMNode_lookupPrefix(TypedValue* _rv, ObjectData* this_, Value* prefix) asm("_ZN4HPHP9c_DOMNode14t_lookupprefixERKNS_6StringE"); -TypedValue* tg1_7DOMNode_lookupPrefix(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_lookupPrefix(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_lookupPrefix(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_lookupPrefix(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_7DOMNode_lookupPrefix((rv), (this_), &args[-0].m_data); @@ -4335,7 +4335,7 @@ TypedValue* tg1_7DOMNode_lookupPrefix(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_7DOMNode_lookupPrefix(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_lookupPrefix(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4377,7 +4377,7 @@ this_ => rdi void th_7DOMNode_normalize(ObjectData* this_) asm("_ZN4HPHP9c_DOMNode11t_normalizeEv"); -TypedValue* tg_7DOMNode_normalize(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_normalize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4416,8 +4416,8 @@ node => rdx TypedValue* th_7DOMNode_removeChild(TypedValue* _rv, ObjectData* this_, Value* node) asm("_ZN4HPHP9c_DOMNode13t_removechildERKNS_6ObjectE"); -TypedValue* tg1_7DOMNode_removeChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_removeChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_removeChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_removeChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_7DOMNode_removeChild((rv), (this_), &args[-0].m_data); @@ -4425,7 +4425,7 @@ TypedValue* tg1_7DOMNode_removeChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7DOMNode_removeChild(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_removeChild(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4471,8 +4471,8 @@ oldchildobj => rcx TypedValue* th_7DOMNode_replaceChild(TypedValue* _rv, ObjectData* this_, Value* newchildobj, Value* oldchildobj) asm("_ZN4HPHP9c_DOMNode14t_replacechildERKNS_6ObjectES3_"); -TypedValue* tg1_7DOMNode_replaceChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_replaceChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_replaceChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_replaceChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -4485,7 +4485,7 @@ TypedValue* tg1_7DOMNode_replaceChild(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_7DOMNode_replaceChild(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_replaceChild(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4533,8 +4533,8 @@ ns_prefixes => r9 TypedValue* th_7DOMNode_c14n(TypedValue* _rv, ObjectData* this_, bool exclusive, bool with_comments, TypedValue* xpath, TypedValue* ns_prefixes) asm("_ZN4HPHP9c_DOMNode6t_c14nEbbRKNS_7VariantES3_"); -TypedValue* tg1_7DOMNode_c14n(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_c14n(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_c14n(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_c14n(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -4557,7 +4557,7 @@ TypedValue* tg1_7DOMNode_c14n(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* tg_7DOMNode_c14n(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_c14n(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4608,8 +4608,8 @@ ns_prefixes => st0 TypedValue* th_7DOMNode_c14nfile(TypedValue* _rv, ObjectData* this_, Value* uri, bool exclusive, bool with_comments, TypedValue* xpath, TypedValue* ns_prefixes) asm("_ZN4HPHP9c_DOMNode10t_c14nfileERKNS_6StringEbbRKNS_7VariantES6_"); -TypedValue* tg1_7DOMNode_c14nfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMNode_c14nfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMNode_c14nfile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMNode_c14nfile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -4635,7 +4635,7 @@ TypedValue* tg1_7DOMNode_c14nfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_7DOMNode_c14nfile(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_c14nfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4681,7 +4681,7 @@ this_ => rsi TypedValue* th_7DOMNode_getNodePath(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP9c_DOMNode13t_getnodepathEv"); -TypedValue* tg_7DOMNode_getNodePath(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode_getNodePath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4719,7 +4719,7 @@ name => rdx TypedValue* th_7DOMNode___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP9c_DOMNode7t___getENS_7VariantE"); -TypedValue* tg_7DOMNode___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4758,7 +4758,7 @@ value => rcx TypedValue* th_7DOMNode___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP9c_DOMNode7t___setENS_7VariantES1_"); -TypedValue* tg_7DOMNode___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4795,7 +4795,7 @@ name => rsi bool th_7DOMNode___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP9c_DOMNode9t___issetENS_7VariantE"); -TypedValue* tg_7DOMNode___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMNode___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4842,8 +4842,8 @@ value => rdx void th_7DOMAttr___construct(ObjectData* this_, Value* name, Value* value) asm("_ZN4HPHP9c_DOMAttr13t___constructERKNS_6StringES3_"); -TypedValue* tg1_7DOMAttr___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMAttr___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMAttr___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMAttr___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4862,7 +4862,7 @@ TypedValue* tg1_7DOMAttr___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7DOMAttr___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMAttr___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4906,7 +4906,7 @@ this_ => rdi bool th_7DOMAttr_isId(ObjectData* this_) asm("_ZN4HPHP9c_DOMAttr6t_isidEv"); -TypedValue* tg_7DOMAttr_isId(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMAttr_isId(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4944,7 +4944,7 @@ name => rdx TypedValue* th_7DOMAttr___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP9c_DOMAttr7t___getENS_7VariantE"); -TypedValue* tg_7DOMAttr___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMAttr___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4983,7 +4983,7 @@ value => rcx TypedValue* th_7DOMAttr___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP9c_DOMAttr7t___setENS_7VariantES1_"); -TypedValue* tg_7DOMAttr___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMAttr___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5020,7 +5020,7 @@ name => rsi bool th_7DOMAttr___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP9c_DOMAttr9t___issetENS_7VariantE"); -TypedValue* tg_7DOMAttr___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMAttr___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5065,7 +5065,7 @@ this_ => rdi void th_16DOMCharacterData___construct(ObjectData* this_) asm("_ZN4HPHP18c_DOMCharacterData13t___constructEv"); -TypedValue* tg_16DOMCharacterData___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5103,8 +5103,8 @@ arg => rsi bool th_16DOMCharacterData_appendData(ObjectData* this_, Value* arg) asm("_ZN4HPHP18c_DOMCharacterData12t_appenddataERKNS_6StringE"); -TypedValue* tg1_16DOMCharacterData_appendData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16DOMCharacterData_appendData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16DOMCharacterData_appendData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16DOMCharacterData_appendData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -5112,7 +5112,7 @@ TypedValue* tg1_16DOMCharacterData_appendData(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_16DOMCharacterData_appendData(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData_appendData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5157,8 +5157,8 @@ count => rdx bool th_16DOMCharacterData_deleteData(ObjectData* this_, long offset, long count) asm("_ZN4HPHP18c_DOMCharacterData12t_deletedataEll"); -TypedValue* tg1_16DOMCharacterData_deleteData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16DOMCharacterData_deleteData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16DOMCharacterData_deleteData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16DOMCharacterData_deleteData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -5171,7 +5171,7 @@ TypedValue* tg1_16DOMCharacterData_deleteData(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_16DOMCharacterData_deleteData(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData_deleteData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5216,8 +5216,8 @@ data => rdx bool th_16DOMCharacterData_insertData(ObjectData* this_, long offset, Value* data) asm("_ZN4HPHP18c_DOMCharacterData12t_insertdataElRKNS_6StringE"); -TypedValue* tg1_16DOMCharacterData_insertData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16DOMCharacterData_insertData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16DOMCharacterData_insertData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16DOMCharacterData_insertData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -5230,7 +5230,7 @@ TypedValue* tg1_16DOMCharacterData_insertData(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_16DOMCharacterData_insertData(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData_insertData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5276,8 +5276,8 @@ data => rcx bool th_16DOMCharacterData_replaceData(ObjectData* this_, long offset, long count, Value* data) asm("_ZN4HPHP18c_DOMCharacterData13t_replacedataEllRKNS_6StringE"); -TypedValue* tg1_16DOMCharacterData_replaceData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16DOMCharacterData_replaceData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16DOMCharacterData_replaceData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16DOMCharacterData_replaceData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -5293,7 +5293,7 @@ TypedValue* tg1_16DOMCharacterData_replaceData(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_16DOMCharacterData_replaceData(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData_replaceData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5339,8 +5339,8 @@ count => rcx Value* th_16DOMCharacterData_substringData(Value* _rv, ObjectData* this_, long offset, long count) asm("_ZN4HPHP18c_DOMCharacterData15t_substringdataEll"); -TypedValue* tg1_16DOMCharacterData_substringData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16DOMCharacterData_substringData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16DOMCharacterData_substringData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16DOMCharacterData_substringData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if ((args-1)->m_type != KindOfInt64) { @@ -5354,7 +5354,7 @@ TypedValue* tg1_16DOMCharacterData_substringData(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_16DOMCharacterData_substringData(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData_substringData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5400,7 +5400,7 @@ name => rdx TypedValue* th_16DOMCharacterData___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP18c_DOMCharacterData7t___getENS_7VariantE"); -TypedValue* tg_16DOMCharacterData___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5439,7 +5439,7 @@ value => rcx TypedValue* th_16DOMCharacterData___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP18c_DOMCharacterData7t___setENS_7VariantES1_"); -TypedValue* tg_16DOMCharacterData___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5476,7 +5476,7 @@ name => rsi bool th_16DOMCharacterData___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP18c_DOMCharacterData9t___issetENS_7VariantE"); -TypedValue* tg_16DOMCharacterData___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_16DOMCharacterData___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5522,8 +5522,8 @@ value => rsi void th_10DOMComment___construct(ObjectData* this_, Value* value) asm("_ZN4HPHP12c_DOMComment13t___constructERKNS_6StringE"); -TypedValue* tg1_10DOMComment___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMComment___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMComment___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMComment___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5532,7 +5532,7 @@ TypedValue* tg1_10DOMComment___construct(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10DOMComment___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMComment___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5586,8 +5586,8 @@ value => rsi void th_7DOMText___construct(ObjectData* this_, Value* value) asm("_ZN4HPHP9c_DOMText13t___constructERKNS_6StringE"); -TypedValue* tg1_7DOMText___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMText___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMText___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMText___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5596,7 +5596,7 @@ TypedValue* tg1_7DOMText___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7DOMText___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMText___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5640,7 +5640,7 @@ this_ => rdi bool th_7DOMText_isWhitespaceInElementContent(ObjectData* this_) asm("_ZN4HPHP9c_DOMText30t_iswhitespaceinelementcontentEv"); -TypedValue* tg_7DOMText_isWhitespaceInElementContent(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMText_isWhitespaceInElementContent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5678,8 +5678,8 @@ offset => rdx TypedValue* th_7DOMText_splitText(TypedValue* _rv, ObjectData* this_, long offset) asm("_ZN4HPHP9c_DOMText11t_splittextEl"); -TypedValue* tg1_7DOMText_splitText(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7DOMText_splitText(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7DOMText_splitText(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7DOMText_splitText(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_7DOMText_splitText((rv), (this_), (long)(args[-0].m_data.num)); @@ -5687,7 +5687,7 @@ TypedValue* tg1_7DOMText_splitText(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_7DOMText_splitText(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMText_splitText(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5732,7 +5732,7 @@ name => rdx TypedValue* th_7DOMText___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP9c_DOMText7t___getENS_7VariantE"); -TypedValue* tg_7DOMText___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMText___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5771,7 +5771,7 @@ value => rcx TypedValue* th_7DOMText___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP9c_DOMText7t___setENS_7VariantES1_"); -TypedValue* tg_7DOMText___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMText___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5808,7 +5808,7 @@ name => rsi bool th_7DOMText___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP9c_DOMText9t___issetENS_7VariantE"); -TypedValue* tg_7DOMText___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_7DOMText___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5854,8 +5854,8 @@ value => rsi void th_15DOMCDATASection___construct(ObjectData* this_, Value* value) asm("_ZN4HPHP17c_DOMCDATASection13t___constructERKNS_6StringE"); -TypedValue* tg1_15DOMCDATASection___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_15DOMCDATASection___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_15DOMCDATASection___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_15DOMCDATASection___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5864,7 +5864,7 @@ TypedValue* tg1_15DOMCDATASection___construct(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_15DOMCDATASection___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMCDATASection___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5919,8 +5919,8 @@ encoding => rdx void th_11DOMDocument___construct(ObjectData* this_, Value* version, Value* encoding) asm("_ZN4HPHP13c_DOMDocument13t___constructERKNS_6StringES3_"); -TypedValue* tg1_11DOMDocument___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5940,7 +5940,7 @@ TypedValue* tg1_11DOMDocument___construct(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_11DOMDocument___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5986,8 +5986,8 @@ name => rdx TypedValue* th_11DOMDocument_createAttribute(TypedValue* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP13c_DOMDocument17t_createattributeERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_createAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_createAttribute((rv), (this_), &args[-0].m_data); @@ -5995,7 +5995,7 @@ TypedValue* tg1_11DOMDocument_createAttribute(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_11DOMDocument_createAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6041,8 +6041,8 @@ qualifiedname => rcx TypedValue* th_11DOMDocument_createAttributens(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* qualifiedname) asm("_ZN4HPHP13c_DOMDocument19t_createattributensERKNS_6StringES3_"); -TypedValue* tg1_11DOMDocument_createAttributens(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createAttributens(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createAttributens(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createAttributens(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -6055,7 +6055,7 @@ TypedValue* tg1_11DOMDocument_createAttributens(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* tg_11DOMDocument_createAttributens(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createAttributens(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6100,8 +6100,8 @@ data => rdx TypedValue* th_11DOMDocument_createCDATASection(TypedValue* _rv, ObjectData* this_, Value* data) asm("_ZN4HPHP13c_DOMDocument20t_createcdatasectionERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_createCDATASection(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createCDATASection(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createCDATASection(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createCDATASection(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_createCDATASection((rv), (this_), &args[-0].m_data); @@ -6109,7 +6109,7 @@ TypedValue* tg1_11DOMDocument_createCDATASection(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_11DOMDocument_createCDATASection(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createCDATASection(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6154,8 +6154,8 @@ data => rdx TypedValue* th_11DOMDocument_createComment(TypedValue* _rv, ObjectData* this_, Value* data) asm("_ZN4HPHP13c_DOMDocument15t_createcommentERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_createComment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createComment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createComment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createComment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_createComment((rv), (this_), &args[-0].m_data); @@ -6163,7 +6163,7 @@ TypedValue* tg1_11DOMDocument_createComment(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_11DOMDocument_createComment(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createComment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6207,7 +6207,7 @@ this_ => rsi TypedValue* th_11DOMDocument_createDocumentFragment(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP13c_DOMDocument24t_createdocumentfragmentEv"); -TypedValue* tg_11DOMDocument_createDocumentFragment(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createDocumentFragment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6246,8 +6246,8 @@ value => rcx TypedValue* th_11DOMDocument_createElement(TypedValue* _rv, ObjectData* this_, Value* name, Value* value) asm("_ZN4HPHP13c_DOMDocument15t_createelementERKNS_6StringES3_"); -TypedValue* tg1_11DOMDocument_createElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -6265,7 +6265,7 @@ TypedValue* tg1_11DOMDocument_createElement(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_11DOMDocument_createElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6312,8 +6312,8 @@ value => r8 TypedValue* th_11DOMDocument_createElementNS(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* qualifiedname, Value* value) asm("_ZN4HPHP13c_DOMDocument17t_createelementnsERKNS_6StringES3_S3_"); -TypedValue* tg1_11DOMDocument_createElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createElementNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createElementNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -6334,7 +6334,7 @@ TypedValue* tg1_11DOMDocument_createElementNS(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_11DOMDocument_createElementNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createElementNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6379,8 +6379,8 @@ name => rdx TypedValue* th_11DOMDocument_createEntityReference(TypedValue* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP13c_DOMDocument23t_createentityreferenceERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_createEntityReference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createEntityReference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createEntityReference(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createEntityReference(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_createEntityReference((rv), (this_), &args[-0].m_data); @@ -6388,7 +6388,7 @@ TypedValue* tg1_11DOMDocument_createEntityReference(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* tg_11DOMDocument_createEntityReference(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createEntityReference(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6434,8 +6434,8 @@ data => rcx TypedValue* th_11DOMDocument_createProcessingInstruction(TypedValue* _rv, ObjectData* this_, Value* target, Value* data) asm("_ZN4HPHP13c_DOMDocument29t_createprocessinginstructionERKNS_6StringES3_"); -TypedValue* tg1_11DOMDocument_createProcessingInstruction(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createProcessingInstruction(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createProcessingInstruction(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createProcessingInstruction(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -6453,7 +6453,7 @@ TypedValue* tg1_11DOMDocument_createProcessingInstruction(TypedValue* rv, HPHP:: return rv; } -TypedValue* tg_11DOMDocument_createProcessingInstruction(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createProcessingInstruction(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6498,8 +6498,8 @@ data => rdx TypedValue* th_11DOMDocument_createTextNode(TypedValue* _rv, ObjectData* this_, Value* data) asm("_ZN4HPHP13c_DOMDocument16t_createtextnodeERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_createTextNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_createTextNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_createTextNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_createTextNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_createTextNode((rv), (this_), &args[-0].m_data); @@ -6507,7 +6507,7 @@ TypedValue* tg1_11DOMDocument_createTextNode(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_11DOMDocument_createTextNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_createTextNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6552,8 +6552,8 @@ elementid => rdx TypedValue* th_11DOMDocument_getElementById(TypedValue* _rv, ObjectData* this_, Value* elementid) asm("_ZN4HPHP13c_DOMDocument16t_getelementbyidERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_getElementById(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_getElementById(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_getElementById(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_getElementById(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_getElementById((rv), (this_), &args[-0].m_data); @@ -6561,7 +6561,7 @@ TypedValue* tg1_11DOMDocument_getElementById(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_11DOMDocument_getElementById(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_getElementById(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6606,8 +6606,8 @@ name => rdx TypedValue* th_11DOMDocument_getElementsByTagName(TypedValue* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP13c_DOMDocument22t_getelementsbytagnameERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_getElementsByTagName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_getElementsByTagName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_getElementsByTagName(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_getElementsByTagName(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_getElementsByTagName((rv), (this_), &args[-0].m_data); @@ -6615,7 +6615,7 @@ TypedValue* tg1_11DOMDocument_getElementsByTagName(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* tg_11DOMDocument_getElementsByTagName(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_getElementsByTagName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6661,8 +6661,8 @@ localname => rcx TypedValue* th_11DOMDocument_getElementsByTagNameNS(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* localname) asm("_ZN4HPHP13c_DOMDocument24t_getelementsbytagnamensERKNS_6StringES3_"); -TypedValue* tg1_11DOMDocument_getElementsByTagNameNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_getElementsByTagNameNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_getElementsByTagNameNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_getElementsByTagNameNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -6675,7 +6675,7 @@ TypedValue* tg1_11DOMDocument_getElementsByTagNameNS(TypedValue* rv, HPHP::VM::A return rv; } -TypedValue* tg_11DOMDocument_getElementsByTagNameNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_getElementsByTagNameNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6721,8 +6721,8 @@ deep => rcx TypedValue* th_11DOMDocument_importNode(TypedValue* _rv, ObjectData* this_, Value* importednode, bool deep) asm("_ZN4HPHP13c_DOMDocument12t_importnodeERKNS_6ObjectEb"); -TypedValue* tg1_11DOMDocument_importNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_importNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_importNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_importNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -6740,7 +6740,7 @@ TypedValue* tg1_11DOMDocument_importNode(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_11DOMDocument_importNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_importNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6786,8 +6786,8 @@ options => rcx TypedValue* th_11DOMDocument_load(TypedValue* _rv, ObjectData* this_, Value* filename, long options) asm("_ZN4HPHP13c_DOMDocument6t_loadERKNS_6StringEl"); -TypedValue* tg1_11DOMDocument_load(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_load(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_load(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_load(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -6805,7 +6805,7 @@ TypedValue* tg1_11DOMDocument_load(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_11DOMDocument_load(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_load(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6850,8 +6850,8 @@ source => rdx TypedValue* th_11DOMDocument_loadHTML(TypedValue* _rv, ObjectData* this_, Value* source) asm("_ZN4HPHP13c_DOMDocument10t_loadhtmlERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_loadHTML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_loadHTML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_loadHTML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_loadHTML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_loadHTML((rv), (this_), &args[-0].m_data); @@ -6859,7 +6859,7 @@ TypedValue* tg1_11DOMDocument_loadHTML(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_11DOMDocument_loadHTML(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_loadHTML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6904,8 +6904,8 @@ filename => rdx TypedValue* th_11DOMDocument_loadHTMLFile(TypedValue* _rv, ObjectData* this_, Value* filename) asm("_ZN4HPHP13c_DOMDocument14t_loadhtmlfileERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_loadHTMLFile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_loadHTMLFile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_loadHTMLFile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_loadHTMLFile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_loadHTMLFile((rv), (this_), &args[-0].m_data); @@ -6913,7 +6913,7 @@ TypedValue* tg1_11DOMDocument_loadHTMLFile(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_11DOMDocument_loadHTMLFile(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_loadHTMLFile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6959,8 +6959,8 @@ options => rcx TypedValue* th_11DOMDocument_loadXML(TypedValue* _rv, ObjectData* this_, Value* source, long options) asm("_ZN4HPHP13c_DOMDocument9t_loadxmlERKNS_6StringEl"); -TypedValue* tg1_11DOMDocument_loadXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_loadXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_loadXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_loadXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -6978,7 +6978,7 @@ TypedValue* tg1_11DOMDocument_loadXML(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_11DOMDocument_loadXML(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_loadXML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7020,7 +7020,7 @@ this_ => rdi void th_11DOMDocument_normalizeDocument(ObjectData* this_) asm("_ZN4HPHP13c_DOMDocument19t_normalizedocumentEv"); -TypedValue* tg_11DOMDocument_normalizeDocument(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_normalizeDocument(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7059,8 +7059,8 @@ extendedclass => rdx bool th_11DOMDocument_registerNodeClass(ObjectData* this_, Value* baseclass, Value* extendedclass) asm("_ZN4HPHP13c_DOMDocument19t_registernodeclassERKNS_6StringES3_"); -TypedValue* tg1_11DOMDocument_registerNodeClass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_registerNodeClass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_registerNodeClass(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_registerNodeClass(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -7073,7 +7073,7 @@ TypedValue* tg1_11DOMDocument_registerNodeClass(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* tg_11DOMDocument_registerNodeClass(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_registerNodeClass(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7117,8 +7117,8 @@ filename => rsi bool th_11DOMDocument_relaxNGValidate(ObjectData* this_, Value* filename) asm("_ZN4HPHP13c_DOMDocument17t_relaxngvalidateERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_relaxNGValidate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_relaxNGValidate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_relaxNGValidate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_relaxNGValidate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -7126,7 +7126,7 @@ TypedValue* tg1_11DOMDocument_relaxNGValidate(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_11DOMDocument_relaxNGValidate(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_relaxNGValidate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7170,8 +7170,8 @@ source => rsi bool th_11DOMDocument_relaxNGValidateSource(ObjectData* this_, Value* source) asm("_ZN4HPHP13c_DOMDocument23t_relaxngvalidatesourceERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_relaxNGValidateSource(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_relaxNGValidateSource(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_relaxNGValidateSource(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_relaxNGValidateSource(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -7179,7 +7179,7 @@ TypedValue* tg1_11DOMDocument_relaxNGValidateSource(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* tg_11DOMDocument_relaxNGValidateSource(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_relaxNGValidateSource(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7225,8 +7225,8 @@ options => rcx TypedValue* th_11DOMDocument_save(TypedValue* _rv, ObjectData* this_, Value* file, long options) asm("_ZN4HPHP13c_DOMDocument6t_saveERKNS_6StringEl"); -TypedValue* tg1_11DOMDocument_save(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_save(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_save(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_save(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -7244,7 +7244,7 @@ TypedValue* tg1_11DOMDocument_save(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_11DOMDocument_save(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_save(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7288,7 +7288,7 @@ this_ => rsi TypedValue* th_11DOMDocument_saveHTML(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP13c_DOMDocument10t_savehtmlEv"); -TypedValue* tg_11DOMDocument_saveHTML(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_saveHTML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7326,8 +7326,8 @@ file => rdx TypedValue* th_11DOMDocument_saveHTMLFile(TypedValue* _rv, ObjectData* this_, Value* file) asm("_ZN4HPHP13c_DOMDocument14t_savehtmlfileERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_saveHTMLFile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_saveHTMLFile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_saveHTMLFile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_saveHTMLFile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_11DOMDocument_saveHTMLFile((rv), (this_), &args[-0].m_data); @@ -7335,7 +7335,7 @@ TypedValue* tg1_11DOMDocument_saveHTMLFile(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_11DOMDocument_saveHTMLFile(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_saveHTMLFile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7381,8 +7381,8 @@ options => rcx TypedValue* th_11DOMDocument_saveXML(TypedValue* _rv, ObjectData* this_, Value* node, long options) asm("_ZN4HPHP13c_DOMDocument9t_savexmlERKNS_6ObjectEl"); -TypedValue* tg1_11DOMDocument_saveXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_saveXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_saveXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_saveXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -7401,7 +7401,7 @@ TypedValue* tg1_11DOMDocument_saveXML(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_11DOMDocument_saveXML(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_saveXML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7445,8 +7445,8 @@ filename => rsi bool th_11DOMDocument_schemaValidate(ObjectData* this_, Value* filename) asm("_ZN4HPHP13c_DOMDocument16t_schemavalidateERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_schemaValidate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_schemaValidate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_schemaValidate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_schemaValidate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -7454,7 +7454,7 @@ TypedValue* tg1_11DOMDocument_schemaValidate(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_11DOMDocument_schemaValidate(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_schemaValidate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7498,8 +7498,8 @@ source => rsi bool th_11DOMDocument_schemaValidateSource(ObjectData* this_, Value* source) asm("_ZN4HPHP13c_DOMDocument22t_schemavalidatesourceERKNS_6StringE"); -TypedValue* tg1_11DOMDocument_schemaValidateSource(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_schemaValidateSource(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_schemaValidateSource(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_schemaValidateSource(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -7507,7 +7507,7 @@ TypedValue* tg1_11DOMDocument_schemaValidateSource(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* tg_11DOMDocument_schemaValidateSource(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_schemaValidateSource(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7550,7 +7550,7 @@ this_ => rdi bool th_11DOMDocument_validate(ObjectData* this_) asm("_ZN4HPHP13c_DOMDocument10t_validateEv"); -TypedValue* tg_11DOMDocument_validate(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_validate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7588,8 +7588,8 @@ options => rdx TypedValue* th_11DOMDocument_xinclude(TypedValue* _rv, ObjectData* this_, long options) asm("_ZN4HPHP13c_DOMDocument10t_xincludeEl"); -TypedValue* tg1_11DOMDocument_xinclude(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMDocument_xinclude(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMDocument_xinclude(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMDocument_xinclude(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_11DOMDocument_xinclude((rv), (this_), (count > 0) ? (long)(args[-0].m_data.num) : (long)(0)); @@ -7597,7 +7597,7 @@ TypedValue* tg1_11DOMDocument_xinclude(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_11DOMDocument_xinclude(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument_xinclude(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7642,7 +7642,7 @@ name => rdx TypedValue* th_11DOMDocument___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP13c_DOMDocument7t___getENS_7VariantE"); -TypedValue* tg_11DOMDocument___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7681,7 +7681,7 @@ value => rcx TypedValue* th_11DOMDocument___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP13c_DOMDocument7t___setENS_7VariantES1_"); -TypedValue* tg_11DOMDocument___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7718,7 +7718,7 @@ name => rsi bool th_11DOMDocument___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP13c_DOMDocument9t___issetENS_7VariantE"); -TypedValue* tg_11DOMDocument___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMDocument___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7763,7 +7763,7 @@ this_ => rdi void th_19DOMDocumentFragment___construct(ObjectData* this_) asm("_ZN4HPHP21c_DOMDocumentFragment13t___constructEv"); -TypedValue* tg_19DOMDocumentFragment___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_19DOMDocumentFragment___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7801,8 +7801,8 @@ data => rsi bool th_19DOMDocumentFragment_appendXML(ObjectData* this_, Value* data) asm("_ZN4HPHP21c_DOMDocumentFragment11t_appendxmlERKNS_6StringE"); -TypedValue* tg1_19DOMDocumentFragment_appendXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_19DOMDocumentFragment_appendXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_19DOMDocumentFragment_appendXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_19DOMDocumentFragment_appendXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -7810,7 +7810,7 @@ TypedValue* tg1_19DOMDocumentFragment_appendXML(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* tg_19DOMDocumentFragment_appendXML(HPHP::VM::ActRec *ar) { +TypedValue* tg_19DOMDocumentFragment_appendXML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7862,7 +7862,7 @@ this_ => rdi void th_15DOMDocumentType___construct(ObjectData* this_) asm("_ZN4HPHP17c_DOMDocumentType13t___constructEv"); -TypedValue* tg_15DOMDocumentType___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMDocumentType___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7901,7 +7901,7 @@ name => rdx TypedValue* th_15DOMDocumentType___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP17c_DOMDocumentType7t___getENS_7VariantE"); -TypedValue* tg_15DOMDocumentType___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMDocumentType___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7940,7 +7940,7 @@ value => rcx TypedValue* th_15DOMDocumentType___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP17c_DOMDocumentType7t___setENS_7VariantES1_"); -TypedValue* tg_15DOMDocumentType___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMDocumentType___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7977,7 +7977,7 @@ name => rsi bool th_15DOMDocumentType___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP17c_DOMDocumentType9t___issetENS_7VariantE"); -TypedValue* tg_15DOMDocumentType___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMDocumentType___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8025,8 +8025,8 @@ namespaceuri => rcx void th_10DOMElement___construct(ObjectData* this_, Value* name, Value* value, Value* namespaceuri) asm("_ZN4HPHP12c_DOMElement13t___constructERKNS_6StringES3_S3_"); -TypedValue* tg1_10DOMElement___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8049,7 +8049,7 @@ TypedValue* tg1_10DOMElement___construct(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10DOMElement___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8095,8 +8095,8 @@ name => rdx Value* th_10DOMElement_getAttribute(Value* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP12c_DOMElement14t_getattributeERKNS_6StringE"); -TypedValue* tg1_10DOMElement_getAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_getAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_getAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_getAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -8105,7 +8105,7 @@ TypedValue* tg1_10DOMElement_getAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10DOMElement_getAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_getAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8151,8 +8151,8 @@ name => rdx TypedValue* th_10DOMElement_getAttributeNode(TypedValue* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP12c_DOMElement18t_getattributenodeERKNS_6StringE"); -TypedValue* tg1_10DOMElement_getAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_getAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_getAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_getAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_10DOMElement_getAttributeNode((rv), (this_), &args[-0].m_data); @@ -8160,7 +8160,7 @@ TypedValue* tg1_10DOMElement_getAttributeNode(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_10DOMElement_getAttributeNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_getAttributeNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8206,8 +8206,8 @@ localname => rcx Value* th_10DOMElement_getAttributeNodeNS(Value* _rv, ObjectData* this_, Value* namespaceuri, Value* localname) asm("_ZN4HPHP12c_DOMElement20t_getattributenodensERKNS_6StringES3_"); -TypedValue* tg1_10DOMElement_getAttributeNodeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_getAttributeNodeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_getAttributeNodeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_getAttributeNodeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -8221,7 +8221,7 @@ TypedValue* tg1_10DOMElement_getAttributeNodeNS(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* tg_10DOMElement_getAttributeNodeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_getAttributeNodeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8268,8 +8268,8 @@ localname => rcx Value* th_10DOMElement_getAttributeNS(Value* _rv, ObjectData* this_, Value* namespaceuri, Value* localname) asm("_ZN4HPHP12c_DOMElement16t_getattributensERKNS_6StringES3_"); -TypedValue* tg1_10DOMElement_getAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_getAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_getAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_getAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -8283,7 +8283,7 @@ TypedValue* tg1_10DOMElement_getAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_10DOMElement_getAttributeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_getAttributeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8329,8 +8329,8 @@ name => rdx Value* th_10DOMElement_getElementsByTagName(Value* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP12c_DOMElement22t_getelementsbytagnameERKNS_6StringE"); -TypedValue* tg1_10DOMElement_getElementsByTagName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_getElementsByTagName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_getElementsByTagName(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_getElementsByTagName(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -8339,7 +8339,7 @@ TypedValue* tg1_10DOMElement_getElementsByTagName(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* tg_10DOMElement_getElementsByTagName(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_getElementsByTagName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8386,8 +8386,8 @@ localname => rcx Value* th_10DOMElement_getElementsByTagNameNS(Value* _rv, ObjectData* this_, Value* namespaceuri, Value* localname) asm("_ZN4HPHP12c_DOMElement24t_getelementsbytagnamensERKNS_6StringES3_"); -TypedValue* tg1_10DOMElement_getElementsByTagNameNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_getElementsByTagNameNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_getElementsByTagNameNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_getElementsByTagNameNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -8401,7 +8401,7 @@ TypedValue* tg1_10DOMElement_getElementsByTagNameNS(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* tg_10DOMElement_getElementsByTagNameNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_getElementsByTagNameNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8446,8 +8446,8 @@ name => rsi bool th_10DOMElement_hasAttribute(ObjectData* this_, Value* name) asm("_ZN4HPHP12c_DOMElement14t_hasattributeERKNS_6StringE"); -TypedValue* tg1_10DOMElement_hasAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_hasAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_hasAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_hasAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -8455,7 +8455,7 @@ TypedValue* tg1_10DOMElement_hasAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10DOMElement_hasAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_hasAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8500,8 +8500,8 @@ localname => rdx bool th_10DOMElement_hasAttributeNS(ObjectData* this_, Value* namespaceuri, Value* localname) asm("_ZN4HPHP12c_DOMElement16t_hasattributensERKNS_6StringES3_"); -TypedValue* tg1_10DOMElement_hasAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_hasAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_hasAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_hasAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -8514,7 +8514,7 @@ TypedValue* tg1_10DOMElement_hasAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_10DOMElement_hasAttributeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_hasAttributeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8558,8 +8558,8 @@ name => rsi bool th_10DOMElement_removeAttribute(ObjectData* this_, Value* name) asm("_ZN4HPHP12c_DOMElement17t_removeattributeERKNS_6StringE"); -TypedValue* tg1_10DOMElement_removeAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_removeAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_removeAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_removeAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -8567,7 +8567,7 @@ TypedValue* tg1_10DOMElement_removeAttribute(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_10DOMElement_removeAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_removeAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8612,8 +8612,8 @@ oldattr => rdx TypedValue* th_10DOMElement_removeAttributeNode(TypedValue* _rv, ObjectData* this_, Value* oldattr) asm("_ZN4HPHP12c_DOMElement21t_removeattributenodeERKNS_6ObjectE"); -TypedValue* tg1_10DOMElement_removeAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_removeAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_removeAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_removeAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_10DOMElement_removeAttributeNode((rv), (this_), &args[-0].m_data); @@ -8621,7 +8621,7 @@ TypedValue* tg1_10DOMElement_removeAttributeNode(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_10DOMElement_removeAttributeNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_removeAttributeNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8667,8 +8667,8 @@ localname => rcx TypedValue* th_10DOMElement_removeAttributeNS(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* localname) asm("_ZN4HPHP12c_DOMElement19t_removeattributensERKNS_6StringES3_"); -TypedValue* tg1_10DOMElement_removeAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_removeAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_removeAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_removeAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -8681,7 +8681,7 @@ TypedValue* tg1_10DOMElement_removeAttributeNS(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_10DOMElement_removeAttributeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_removeAttributeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8727,8 +8727,8 @@ value => rcx TypedValue* th_10DOMElement_setAttribute(TypedValue* _rv, ObjectData* this_, Value* name, Value* value) asm("_ZN4HPHP12c_DOMElement14t_setattributeERKNS_6StringES3_"); -TypedValue* tg1_10DOMElement_setAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_setAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_setAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_setAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -8741,7 +8741,7 @@ TypedValue* tg1_10DOMElement_setAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10DOMElement_setAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_setAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8786,8 +8786,8 @@ newattr => rdx TypedValue* th_10DOMElement_setAttributeNode(TypedValue* _rv, ObjectData* this_, Value* newattr) asm("_ZN4HPHP12c_DOMElement18t_setattributenodeERKNS_6ObjectE"); -TypedValue* tg1_10DOMElement_setAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_setAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_setAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_setAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_10DOMElement_setAttributeNode((rv), (this_), &args[-0].m_data); @@ -8795,7 +8795,7 @@ TypedValue* tg1_10DOMElement_setAttributeNode(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_10DOMElement_setAttributeNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_setAttributeNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8840,8 +8840,8 @@ newattr => rdx TypedValue* th_10DOMElement_setAttributeNodeNS(TypedValue* _rv, ObjectData* this_, Value* newattr) asm("_ZN4HPHP12c_DOMElement20t_setattributenodensERKNS_6ObjectE"); -TypedValue* tg1_10DOMElement_setAttributeNodeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_setAttributeNodeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_setAttributeNodeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_setAttributeNodeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); th_10DOMElement_setAttributeNodeNS((rv), (this_), &args[-0].m_data); @@ -8849,7 +8849,7 @@ TypedValue* tg1_10DOMElement_setAttributeNodeNS(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* tg_10DOMElement_setAttributeNodeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_setAttributeNodeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8896,8 +8896,8 @@ value => r8 TypedValue* th_10DOMElement_setAttributeNS(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* name, Value* value) asm("_ZN4HPHP12c_DOMElement16t_setattributensERKNS_6StringES3_S3_"); -TypedValue* tg1_10DOMElement_setAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_setAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_setAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_setAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -8913,7 +8913,7 @@ TypedValue* tg1_10DOMElement_setAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_10DOMElement_setAttributeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_setAttributeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8959,8 +8959,8 @@ isid => rcx TypedValue* th_10DOMElement_setIDAttribute(TypedValue* _rv, ObjectData* this_, Value* name, bool isid) asm("_ZN4HPHP12c_DOMElement16t_setidattributeERKNS_6StringEb"); -TypedValue* tg1_10DOMElement_setIDAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_setIDAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_setIDAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_setIDAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-1); @@ -8973,7 +8973,7 @@ TypedValue* tg1_10DOMElement_setIDAttribute(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_10DOMElement_setIDAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_setIDAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9019,8 +9019,8 @@ isid => rcx TypedValue* th_10DOMElement_setIDAttributeNode(TypedValue* _rv, ObjectData* this_, Value* idattr, bool isid) asm("_ZN4HPHP12c_DOMElement20t_setidattributenodeERKNS_6ObjectEb"); -TypedValue* tg1_10DOMElement_setIDAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_setIDAttributeNode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_setIDAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_setIDAttributeNode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-1); @@ -9033,7 +9033,7 @@ TypedValue* tg1_10DOMElement_setIDAttributeNode(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* tg_10DOMElement_setIDAttributeNode(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_setIDAttributeNode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9080,8 +9080,8 @@ isid => r8 TypedValue* th_10DOMElement_setIDAttributeNS(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* localname, bool isid) asm("_ZN4HPHP12c_DOMElement18t_setidattributensERKNS_6StringES3_b"); -TypedValue* tg1_10DOMElement_setIDAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10DOMElement_setIDAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10DOMElement_setIDAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10DOMElement_setIDAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-2); @@ -9097,7 +9097,7 @@ TypedValue* tg1_10DOMElement_setIDAttributeNS(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_10DOMElement_setIDAttributeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement_setIDAttributeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9142,7 +9142,7 @@ name => rdx TypedValue* th_10DOMElement___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP12c_DOMElement7t___getENS_7VariantE"); -TypedValue* tg_10DOMElement___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9181,7 +9181,7 @@ value => rcx TypedValue* th_10DOMElement___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP12c_DOMElement7t___setENS_7VariantES1_"); -TypedValue* tg_10DOMElement___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9218,7 +9218,7 @@ name => rsi bool th_10DOMElement___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP12c_DOMElement9t___issetENS_7VariantE"); -TypedValue* tg_10DOMElement___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_10DOMElement___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9263,7 +9263,7 @@ this_ => rdi void th_9DOMEntity___construct(ObjectData* this_) asm("_ZN4HPHP11c_DOMEntity13t___constructEv"); -TypedValue* tg_9DOMEntity___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_9DOMEntity___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9302,7 +9302,7 @@ name => rdx TypedValue* th_9DOMEntity___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP11c_DOMEntity7t___getENS_7VariantE"); -TypedValue* tg_9DOMEntity___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_9DOMEntity___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9341,7 +9341,7 @@ value => rcx TypedValue* th_9DOMEntity___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP11c_DOMEntity7t___setENS_7VariantES1_"); -TypedValue* tg_9DOMEntity___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_9DOMEntity___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9378,7 +9378,7 @@ name => rsi bool th_9DOMEntity___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP11c_DOMEntity9t___issetENS_7VariantE"); -TypedValue* tg_9DOMEntity___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_9DOMEntity___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9424,8 +9424,8 @@ name => rsi void th_18DOMEntityReference___construct(ObjectData* this_, Value* name) asm("_ZN4HPHP20c_DOMEntityReference13t___constructERKNS_6StringE"); -TypedValue* tg1_18DOMEntityReference___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_18DOMEntityReference___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_18DOMEntityReference___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_18DOMEntityReference___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -9434,7 +9434,7 @@ TypedValue* tg1_18DOMEntityReference___construct(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_18DOMEntityReference___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_18DOMEntityReference___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9487,7 +9487,7 @@ this_ => rdi void th_11DOMNotation___construct(ObjectData* this_) asm("_ZN4HPHP13c_DOMNotation13t___constructEv"); -TypedValue* tg_11DOMNotation___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNotation___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9526,7 +9526,7 @@ name => rdx TypedValue* th_11DOMNotation___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP13c_DOMNotation7t___getENS_7VariantE"); -TypedValue* tg_11DOMNotation___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNotation___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9565,7 +9565,7 @@ value => rcx TypedValue* th_11DOMNotation___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP13c_DOMNotation7t___setENS_7VariantES1_"); -TypedValue* tg_11DOMNotation___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNotation___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9602,7 +9602,7 @@ name => rsi bool th_11DOMNotation___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP13c_DOMNotation9t___issetENS_7VariantE"); -TypedValue* tg_11DOMNotation___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNotation___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9649,8 +9649,8 @@ value => rdx void th_24DOMProcessingInstruction___construct(ObjectData* this_, Value* name, Value* value) asm("_ZN4HPHP26c_DOMProcessingInstruction13t___constructERKNS_6StringES3_"); -TypedValue* tg1_24DOMProcessingInstruction___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_24DOMProcessingInstruction___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_24DOMProcessingInstruction___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_24DOMProcessingInstruction___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -9669,7 +9669,7 @@ TypedValue* tg1_24DOMProcessingInstruction___construct(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* tg_24DOMProcessingInstruction___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_24DOMProcessingInstruction___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9715,7 +9715,7 @@ name => rdx TypedValue* th_24DOMProcessingInstruction___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP26c_DOMProcessingInstruction7t___getENS_7VariantE"); -TypedValue* tg_24DOMProcessingInstruction___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_24DOMProcessingInstruction___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9754,7 +9754,7 @@ value => rcx TypedValue* th_24DOMProcessingInstruction___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP26c_DOMProcessingInstruction7t___setENS_7VariantES1_"); -TypedValue* tg_24DOMProcessingInstruction___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_24DOMProcessingInstruction___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9791,7 +9791,7 @@ name => rsi bool th_24DOMProcessingInstruction___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP26c_DOMProcessingInstruction9t___issetENS_7VariantE"); -TypedValue* tg_24DOMProcessingInstruction___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_24DOMProcessingInstruction___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9836,7 +9836,7 @@ this_ => rdi void th_15DOMNodeIterator___construct(ObjectData* this_) asm("_ZN4HPHP17c_DOMNodeIterator13t___constructEv"); -TypedValue* tg_15DOMNodeIterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNodeIterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9874,7 +9874,7 @@ this_ => rsi TypedValue* th_15DOMNodeIterator_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP17c_DOMNodeIterator9t_currentEv"); -TypedValue* tg_15DOMNodeIterator_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNodeIterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9911,7 +9911,7 @@ this_ => rsi TypedValue* th_15DOMNodeIterator_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP17c_DOMNodeIterator5t_keyEv"); -TypedValue* tg_15DOMNodeIterator_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNodeIterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9948,7 +9948,7 @@ this_ => rsi TypedValue* th_15DOMNodeIterator_next(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP17c_DOMNodeIterator6t_nextEv"); -TypedValue* tg_15DOMNodeIterator_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNodeIterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9985,7 +9985,7 @@ this_ => rsi TypedValue* th_15DOMNodeIterator_rewind(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP17c_DOMNodeIterator8t_rewindEv"); -TypedValue* tg_15DOMNodeIterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNodeIterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10022,7 +10022,7 @@ this_ => rsi TypedValue* th_15DOMNodeIterator_valid(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP17c_DOMNodeIterator7t_validEv"); -TypedValue* tg_15DOMNodeIterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNodeIterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10067,7 +10067,7 @@ this_ => rdi void th_15DOMNamedNodeMap___construct(ObjectData* this_) asm("_ZN4HPHP17c_DOMNamedNodeMap13t___constructEv"); -TypedValue* tg_15DOMNamedNodeMap___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10106,8 +10106,8 @@ name => rdx TypedValue* th_15DOMNamedNodeMap_getNamedItem(TypedValue* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP17c_DOMNamedNodeMap14t_getnameditemERKNS_6StringE"); -TypedValue* tg1_15DOMNamedNodeMap_getNamedItem(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_15DOMNamedNodeMap_getNamedItem(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_15DOMNamedNodeMap_getNamedItem(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_15DOMNamedNodeMap_getNamedItem(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_15DOMNamedNodeMap_getNamedItem((rv), (this_), &args[-0].m_data); @@ -10115,7 +10115,7 @@ TypedValue* tg1_15DOMNamedNodeMap_getNamedItem(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_15DOMNamedNodeMap_getNamedItem(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap_getNamedItem(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10161,8 +10161,8 @@ localname => rcx TypedValue* th_15DOMNamedNodeMap_getNamedItemNS(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* localname) asm("_ZN4HPHP17c_DOMNamedNodeMap16t_getnameditemnsERKNS_6StringES3_"); -TypedValue* tg1_15DOMNamedNodeMap_getNamedItemNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_15DOMNamedNodeMap_getNamedItemNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_15DOMNamedNodeMap_getNamedItemNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_15DOMNamedNodeMap_getNamedItemNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -10175,7 +10175,7 @@ TypedValue* tg1_15DOMNamedNodeMap_getNamedItemNS(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_15DOMNamedNodeMap_getNamedItemNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap_getNamedItemNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10220,8 +10220,8 @@ index => rdx TypedValue* th_15DOMNamedNodeMap_item(TypedValue* _rv, ObjectData* this_, long index) asm("_ZN4HPHP17c_DOMNamedNodeMap6t_itemEl"); -TypedValue* tg1_15DOMNamedNodeMap_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_15DOMNamedNodeMap_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_15DOMNamedNodeMap_item(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_15DOMNamedNodeMap_item(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_15DOMNamedNodeMap_item((rv), (this_), (long)(args[-0].m_data.num)); @@ -10229,7 +10229,7 @@ TypedValue* tg1_15DOMNamedNodeMap_item(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_15DOMNamedNodeMap_item(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap_item(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10274,7 +10274,7 @@ name => rdx TypedValue* th_15DOMNamedNodeMap___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP17c_DOMNamedNodeMap7t___getENS_7VariantE"); -TypedValue* tg_15DOMNamedNodeMap___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10313,7 +10313,7 @@ value => rcx TypedValue* th_15DOMNamedNodeMap___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP17c_DOMNamedNodeMap7t___setENS_7VariantES1_"); -TypedValue* tg_15DOMNamedNodeMap___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10350,7 +10350,7 @@ name => rsi bool th_15DOMNamedNodeMap___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP17c_DOMNamedNodeMap9t___issetENS_7VariantE"); -TypedValue* tg_15DOMNamedNodeMap___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10387,7 +10387,7 @@ this_ => rsi TypedValue* th_15DOMNamedNodeMap_getIterator(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP17c_DOMNamedNodeMap13t_getiteratorEv"); -TypedValue* tg_15DOMNamedNodeMap_getIterator(HPHP::VM::ActRec *ar) { +TypedValue* tg_15DOMNamedNodeMap_getIterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10432,7 +10432,7 @@ this_ => rdi void th_11DOMNodeList___construct(ObjectData* this_) asm("_ZN4HPHP13c_DOMNodeList13t___constructEv"); -TypedValue* tg_11DOMNodeList___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNodeList___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10471,8 +10471,8 @@ index => rdx TypedValue* th_11DOMNodeList_item(TypedValue* _rv, ObjectData* this_, long index) asm("_ZN4HPHP13c_DOMNodeList6t_itemEl"); -TypedValue* tg1_11DOMNodeList_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11DOMNodeList_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11DOMNodeList_item(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11DOMNodeList_item(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_11DOMNodeList_item((rv), (this_), (long)(args[-0].m_data.num)); @@ -10480,7 +10480,7 @@ TypedValue* tg1_11DOMNodeList_item(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_11DOMNodeList_item(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNodeList_item(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10525,7 +10525,7 @@ name => rdx TypedValue* th_11DOMNodeList___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP13c_DOMNodeList7t___getENS_7VariantE"); -TypedValue* tg_11DOMNodeList___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNodeList___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10564,7 +10564,7 @@ value => rcx TypedValue* th_11DOMNodeList___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP13c_DOMNodeList7t___setENS_7VariantES1_"); -TypedValue* tg_11DOMNodeList___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNodeList___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10601,7 +10601,7 @@ name => rsi bool th_11DOMNodeList___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP13c_DOMNodeList9t___issetENS_7VariantE"); -TypedValue* tg_11DOMNodeList___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNodeList___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10638,7 +10638,7 @@ this_ => rsi TypedValue* th_11DOMNodeList_getIterator(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP13c_DOMNodeList13t_getiteratorEv"); -TypedValue* tg_11DOMNodeList_getIterator(HPHP::VM::ActRec *ar) { +TypedValue* tg_11DOMNodeList_getIterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10683,7 +10683,7 @@ this_ => rdi void th_17DOMImplementation___construct(ObjectData* this_) asm("_ZN4HPHP19c_DOMImplementation13t___constructEv"); -TypedValue* tg_17DOMImplementation___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DOMImplementation___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10724,8 +10724,8 @@ doctypeobj => r8 TypedValue* th_17DOMImplementation_createDocument(TypedValue* _rv, ObjectData* this_, Value* namespaceuri, Value* qualifiedname, Value* doctypeobj) asm("_ZN4HPHP19c_DOMImplementation16t_createdocumentERKNS_6StringES3_RKNS_6ObjectE"); -TypedValue* tg1_17DOMImplementation_createDocument(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_17DOMImplementation_createDocument(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_17DOMImplementation_createDocument(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_17DOMImplementation_createDocument(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -10748,7 +10748,7 @@ TypedValue* tg1_17DOMImplementation_createDocument(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* tg_17DOMImplementation_createDocument(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DOMImplementation_createDocument(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10795,8 +10795,8 @@ systemid => r8 TypedValue* th_17DOMImplementation_createDocumentType(TypedValue* _rv, ObjectData* this_, Value* qualifiedname, Value* publicid, Value* systemid) asm("_ZN4HPHP19c_DOMImplementation20t_createdocumenttypeERKNS_6StringES3_S3_"); -TypedValue* tg1_17DOMImplementation_createDocumentType(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_17DOMImplementation_createDocumentType(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_17DOMImplementation_createDocumentType(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_17DOMImplementation_createDocumentType(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -10819,7 +10819,7 @@ TypedValue* tg1_17DOMImplementation_createDocumentType(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* tg_17DOMImplementation_createDocumentType(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DOMImplementation_createDocumentType(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10864,8 +10864,8 @@ version => rdx bool th_17DOMImplementation_hasFeature(ObjectData* this_, Value* feature, Value* version) asm("_ZN4HPHP19c_DOMImplementation12t_hasfeatureERKNS_6StringES3_"); -TypedValue* tg1_17DOMImplementation_hasFeature(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_17DOMImplementation_hasFeature(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_17DOMImplementation_hasFeature(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_17DOMImplementation_hasFeature(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -10878,7 +10878,7 @@ TypedValue* tg1_17DOMImplementation_hasFeature(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_17DOMImplementation_hasFeature(HPHP::VM::ActRec *ar) { +TypedValue* tg_17DOMImplementation_hasFeature(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10931,7 +10931,7 @@ doc => rsi void th_8DOMXPath___construct(ObjectData* this_, TypedValue* doc) asm("_ZN4HPHP10c_DOMXPath13t___constructERKNS_7VariantE"); -TypedValue* tg_8DOMXPath___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10971,8 +10971,8 @@ context => rcx TypedValue* th_8DOMXPath_evaluate(TypedValue* _rv, ObjectData* this_, Value* expr, Value* context) asm("_ZN4HPHP10c_DOMXPath10t_evaluateERKNS_6StringERKNS_6ObjectE"); -TypedValue* tg1_8DOMXPath_evaluate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DOMXPath_evaluate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DOMXPath_evaluate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DOMXPath_evaluate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -10990,7 +10990,7 @@ TypedValue* tg1_8DOMXPath_evaluate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8DOMXPath_evaluate(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath_evaluate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11036,8 +11036,8 @@ context => rcx TypedValue* th_8DOMXPath_query(TypedValue* _rv, ObjectData* this_, Value* expr, Value* context) asm("_ZN4HPHP10c_DOMXPath7t_queryERKNS_6StringERKNS_6ObjectE"); -TypedValue* tg1_8DOMXPath_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DOMXPath_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DOMXPath_query(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DOMXPath_query(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -11055,7 +11055,7 @@ TypedValue* tg1_8DOMXPath_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* tg_8DOMXPath_query(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11100,8 +11100,8 @@ uri => rdx bool th_8DOMXPath_registerNamespace(ObjectData* this_, Value* prefix, Value* uri) asm("_ZN4HPHP10c_DOMXPath19t_registernamespaceERKNS_6StringES3_"); -TypedValue* tg1_8DOMXPath_registerNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8DOMXPath_registerNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8DOMXPath_registerNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8DOMXPath_registerNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -11114,7 +11114,7 @@ TypedValue* tg1_8DOMXPath_registerNamespace(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_8DOMXPath_registerNamespace(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath_registerNamespace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11159,7 +11159,7 @@ funcs => rdx TypedValue* th_8DOMXPath_registerPHPFunctions(TypedValue* _rv, ObjectData* this_, TypedValue* funcs) asm("_ZN4HPHP10c_DOMXPath22t_registerphpfunctionsERKNS_7VariantE"); -TypedValue* tg_8DOMXPath_registerPHPFunctions(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath_registerPHPFunctions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11198,7 +11198,7 @@ name => rdx TypedValue* th_8DOMXPath___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP10c_DOMXPath7t___getENS_7VariantE"); -TypedValue* tg_8DOMXPath___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11237,7 +11237,7 @@ value => rcx TypedValue* th_8DOMXPath___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP10c_DOMXPath7t___setENS_7VariantES1_"); -TypedValue* tg_8DOMXPath___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11274,7 +11274,7 @@ name => rsi bool th_8DOMXPath___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP10c_DOMXPath9t___issetENS_7VariantE"); -TypedValue* tg_8DOMXPath___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_8DOMXPath___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_error.ext_hhvm.cpp b/hphp/runtime/ext/ext_error.ext_hhvm.cpp index badc37757..217071da4 100644 --- a/hphp/runtime/ext/ext_error.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_error.ext_hhvm.cpp @@ -35,8 +35,8 @@ provide_object => rsi Value* fh_debug_backtrace(Value* _rv, bool provide_object) asm("_ZN4HPHP17f_debug_backtraceEb"); -TypedValue * fg1_debug_backtrace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_debug_backtrace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_debug_backtrace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_debug_backtrace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -45,7 +45,7 @@ TypedValue * fg1_debug_backtrace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_debug_backtrace(HPHP::VM::ActRec *ar) { +TypedValue* fg_debug_backtrace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -84,7 +84,7 @@ _ZN4HPHP23f_debug_print_backtraceEv void fh_debug_print_backtrace() asm("_ZN4HPHP23f_debug_print_backtraceEv"); -TypedValue* fg_debug_print_backtrace(HPHP::VM::ActRec *ar) { +TypedValue* fg_debug_print_backtrace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -118,7 +118,7 @@ _rv => rdi Value* fh_error_get_last(Value* _rv) asm("_ZN4HPHP16f_error_get_lastEv"); -TypedValue* fg_error_get_last(HPHP::VM::ActRec *ar) { +TypedValue* fg_error_get_last(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -155,8 +155,8 @@ extra_headers => rcx bool fh_error_log(Value* message, int message_type, Value* destination, Value* extra_headers) asm("_ZN4HPHP11f_error_logERKNS_6StringEiS2_S2_"); -TypedValue * fg1_error_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_error_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_error_log(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_error_log(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -182,7 +182,7 @@ TypedValue * fg1_error_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_error_log(HPHP::VM::ActRec *ar) { +TypedValue* fg_error_log(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -222,7 +222,7 @@ level => rdi long fh_error_reporting(TypedValue* level) asm("_ZN4HPHP17f_error_reportingERKNS_7VariantE"); -TypedValue* fg_error_reporting(HPHP::VM::ActRec *ar) { +TypedValue* fg_error_reporting(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -255,7 +255,7 @@ _ZN4HPHP23f_restore_error_handlerEv bool fh_restore_error_handler() asm("_ZN4HPHP23f_restore_error_handlerEv"); -TypedValue* fg_restore_error_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_restore_error_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -287,7 +287,7 @@ _ZN4HPHP27f_restore_exception_handlerEv bool fh_restore_exception_handler() asm("_ZN4HPHP27f_restore_exception_handlerEv"); -TypedValue* fg_restore_exception_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_restore_exception_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -322,8 +322,8 @@ error_types => rdx TypedValue* fh_set_error_handler(TypedValue* _rv, TypedValue* error_handler, int error_types) asm("_ZN4HPHP19f_set_error_handlerERKNS_7VariantEi"); -TypedValue * fg1_set_error_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_set_error_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_set_error_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_set_error_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_set_error_handler((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(k_E_ALL)); @@ -331,7 +331,7 @@ TypedValue * fg1_set_error_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_set_error_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_set_error_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -372,7 +372,7 @@ exception_handler => rsi TypedValue* fh_set_exception_handler(TypedValue* _rv, TypedValue* exception_handler) asm("_ZN4HPHP23f_set_exception_handlerERKNS_7VariantE"); -TypedValue* fg_set_exception_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_set_exception_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -404,8 +404,8 @@ page => rdi void fh_hphp_set_error_page(Value* page) asm("_ZN4HPHP21f_hphp_set_error_pageERKNS_6StringE"); -TypedValue * fg1_hphp_set_error_page(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_set_error_page(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_set_error_page(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_set_error_page(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -414,7 +414,7 @@ TypedValue * fg1_hphp_set_error_page(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_hphp_set_error_page(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_set_error_page(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -454,8 +454,8 @@ error_msg => rdi void fh_hphp_throw_fatal_error(Value* error_msg) asm("_ZN4HPHP24f_hphp_throw_fatal_errorERKNS_6StringE"); -TypedValue * fg1_hphp_throw_fatal_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_throw_fatal_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_throw_fatal_error(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_throw_fatal_error(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -464,7 +464,7 @@ TypedValue * fg1_hphp_throw_fatal_error(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_hphp_throw_fatal_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_throw_fatal_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -503,7 +503,7 @@ _ZN4HPHP22f_hphp_clear_unflushedEv void fh_hphp_clear_unflushed() asm("_ZN4HPHP22f_hphp_clear_unflushedEv"); -TypedValue* fg_hphp_clear_unflushed(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_clear_unflushed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -537,7 +537,7 @@ _rv => rdi Value* fh_hphp_debug_caller_info(Value* _rv) asm("_ZN4HPHP24f_hphp_debug_caller_infoEv"); -TypedValue* fg_hphp_debug_caller_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_debug_caller_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -572,8 +572,8 @@ error_type => rsi bool fh_trigger_error(Value* error_msg, int error_type) asm("_ZN4HPHP15f_trigger_errorERKNS_6StringEi"); -TypedValue * fg1_trigger_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_trigger_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_trigger_error(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_trigger_error(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -591,7 +591,7 @@ TypedValue * fg1_trigger_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_trigger_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_trigger_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -632,8 +632,8 @@ error_type => rsi bool fh_user_error(Value* error_msg, int error_type) asm("_ZN4HPHP12f_user_errorERKNS_6StringEi"); -TypedValue * fg1_user_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_user_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_user_error(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_user_error(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -651,7 +651,7 @@ TypedValue * fg1_user_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_user_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_user_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_fb.ext_hhvm.cpp b/hphp/runtime/ext/ext_fb.ext_hhvm.cpp index 60bd01c6e..df3ba71ed 100644 --- a/hphp/runtime/ext/ext_fb.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_fb.ext_hhvm.cpp @@ -35,7 +35,7 @@ thing => rsi TypedValue* fh_fb_thrift_serialize(TypedValue* _rv, TypedValue* thing) asm("_ZN4HPHP21f_fb_thrift_serializeERKNS_7VariantE"); -TypedValue* fg_fb_thrift_serialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_thrift_serialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -71,7 +71,7 @@ errcode => rcx TypedValue* fh_fb_thrift_unserialize(TypedValue* _rv, TypedValue* thing, TypedValue* success, TypedValue* errcode) asm("_ZN4HPHP23f_fb_thrift_unserializeERKNS_7VariantERKNS_14VRefParamValueES5_"); -TypedValue* fg_fb_thrift_unserialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_thrift_unserialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -106,7 +106,7 @@ thing => rsi TypedValue* fh_fb_serialize(TypedValue* _rv, TypedValue* thing) asm("_ZN4HPHP14f_fb_serializeERKNS_7VariantE"); -TypedValue* fg_fb_serialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_serialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -142,7 +142,7 @@ errcode => rcx TypedValue* fh_fb_unserialize(TypedValue* _rv, TypedValue* thing, TypedValue* success, TypedValue* errcode) asm("_ZN4HPHP16f_fb_unserializeERKNS_7VariantERKNS_14VRefParamValueES5_"); -TypedValue* fg_fb_unserialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_unserialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -177,7 +177,7 @@ thing => rsi TypedValue* fh_fb_compact_serialize(TypedValue* _rv, TypedValue* thing) asm("_ZN4HPHP22f_fb_compact_serializeERKNS_7VariantE"); -TypedValue* fg_fb_compact_serialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_compact_serialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -213,7 +213,7 @@ errcode => rcx TypedValue* fh_fb_compact_unserialize(TypedValue* _rv, TypedValue* thing, TypedValue* success, TypedValue* errcode) asm("_ZN4HPHP24f_fb_compact_unserializeERKNS_7VariantERKNS_14VRefParamValueES5_"); -TypedValue* fg_fb_compact_unserialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_compact_unserialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -247,8 +247,8 @@ file => rdi bool fh_fb_could_include(Value* file) asm("_ZN4HPHP18f_fb_could_includeERKNS_6StringE"); -TypedValue * fg1_fb_could_include(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_could_include(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_could_include(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_could_include(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -256,7 +256,7 @@ TypedValue * fg1_fb_could_include(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_fb_could_include(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_could_include(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -298,8 +298,8 @@ data => rdx bool fh_fb_intercept(Value* name, TypedValue* handler, TypedValue* data) asm("_ZN4HPHP14f_fb_interceptERKNS_6StringERKNS_7VariantES5_"); -TypedValue * fg1_fb_intercept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_intercept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_intercept(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_intercept(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -307,7 +307,7 @@ TypedValue * fg1_fb_intercept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_fb_intercept(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_intercept(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -352,8 +352,8 @@ done => r9 TypedValue* fh_fb_stubout_intercept_handler(TypedValue* _rv, Value* name, TypedValue* obj, Value* params, TypedValue* data, TypedValue* done) asm("_ZN4HPHP30f_fb_stubout_intercept_handlerERKNS_6StringERKNS_7VariantERKNS_5ArrayES5_RKNS_14VRefParamValueE"); -TypedValue * fg1_fb_stubout_intercept_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_stubout_intercept_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_stubout_intercept_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_stubout_intercept_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfArray) { tvCastToArrayInPlace(args-2); @@ -366,7 +366,7 @@ TypedValue * fg1_fb_stubout_intercept_handler(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_fb_stubout_intercept_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_stubout_intercept_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -411,8 +411,8 @@ done => r9 TypedValue* fh_fb_rpc_intercept_handler(TypedValue* _rv, Value* name, TypedValue* obj, Value* params, TypedValue* data, TypedValue* done) asm("_ZN4HPHP26f_fb_rpc_intercept_handlerERKNS_6StringERKNS_7VariantERKNS_5ArrayES5_RKNS_14VRefParamValueE"); -TypedValue * fg1_fb_rpc_intercept_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_rpc_intercept_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_rpc_intercept_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_rpc_intercept_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfArray) { tvCastToArrayInPlace(args-2); @@ -425,7 +425,7 @@ TypedValue * fg1_fb_rpc_intercept_handler(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_fb_rpc_intercept_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_rpc_intercept_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -464,8 +464,8 @@ names => rdi void fh_fb_renamed_functions(Value* names) asm("_ZN4HPHP22f_fb_renamed_functionsERKNS_5ArrayE"); -TypedValue * fg1_fb_renamed_functions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_renamed_functions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_renamed_functions(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_renamed_functions(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -474,7 +474,7 @@ TypedValue * fg1_fb_renamed_functions(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_fb_renamed_functions(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_renamed_functions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -516,8 +516,8 @@ new_func_name => rsi bool fh_fb_rename_function(Value* orig_func_name, Value* new_func_name) asm("_ZN4HPHP20f_fb_rename_functionERKNS_6StringES2_"); -TypedValue * fg1_fb_rename_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_rename_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_rename_function(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_rename_function(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -530,7 +530,7 @@ TypedValue * fg1_fb_rename_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_fb_rename_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_rename_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -571,8 +571,8 @@ root => rsi bool fh_fb_autoload_map(TypedValue* map, Value* root) asm("_ZN4HPHP17f_fb_autoload_mapERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_fb_autoload_map(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_autoload_map(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_autoload_map(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_autoload_map(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-1); @@ -580,7 +580,7 @@ TypedValue * fg1_fb_autoload_map(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_fb_autoload_map(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_autoload_map(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -620,7 +620,7 @@ input => rdi bool fh_fb_utf8ize(TypedValue* input) asm("_ZN4HPHP12f_fb_utf8izeERKNS_14VRefParamValueE"); -TypedValue* fg_fb_utf8ize(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_utf8ize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -653,8 +653,8 @@ input => rdi long fh_fb_utf8_strlen_deprecated(Value* input) asm("_ZN4HPHP27f_fb_utf8_strlen_deprecatedERKNS_6StringE"); -TypedValue * fg1_fb_utf8_strlen_deprecated(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_utf8_strlen_deprecated(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_utf8_strlen_deprecated(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_utf8_strlen_deprecated(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -662,7 +662,7 @@ TypedValue * fg1_fb_utf8_strlen_deprecated(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_fb_utf8_strlen_deprecated(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_utf8_strlen_deprecated(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -702,8 +702,8 @@ input => rdi long fh_fb_utf8_strlen(Value* input) asm("_ZN4HPHP16f_fb_utf8_strlenERKNS_6StringE"); -TypedValue * fg1_fb_utf8_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_utf8_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_utf8_strlen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_utf8_strlen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -711,7 +711,7 @@ TypedValue * fg1_fb_utf8_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_fb_utf8_strlen(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_utf8_strlen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -754,8 +754,8 @@ length => rcx TypedValue* fh_fb_utf8_substr(TypedValue* _rv, Value* str, int start, int length) asm("_ZN4HPHP16f_fb_utf8_substrERKNS_6StringEii"); -TypedValue * fg1_fb_utf8_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_utf8_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_utf8_substr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_utf8_substr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -776,7 +776,7 @@ TypedValue * fg1_fb_utf8_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_fb_utf8_substr(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_utf8_substr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -819,7 +819,7 @@ _argv => rcx Value* fh_fb_call_user_func_safe(Value* _rv, int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP24f_fb_call_user_func_safeEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_fb_call_user_func_safe(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_call_user_func_safe(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -870,7 +870,7 @@ _argv => r8 TypedValue* fh_fb_call_user_func_safe_return(TypedValue* _rv, int64_t _argc, TypedValue* function, TypedValue* def, Value* _argv) asm("_ZN4HPHP31f_fb_call_user_func_safe_returnEiRKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue* fg_fb_call_user_func_safe_return(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_call_user_func_safe_return(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -918,8 +918,8 @@ params => rdx Value* fh_fb_call_user_func_array_safe(Value* _rv, TypedValue* function, Value* params) asm("_ZN4HPHP30f_fb_call_user_func_array_safeERKNS_7VariantERKNS_5ArrayE"); -TypedValue * fg1_fb_call_user_func_array_safe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_call_user_func_array_safe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_call_user_func_array_safe(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_call_user_func_array_safe(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToArrayInPlace(args-1); @@ -928,7 +928,7 @@ TypedValue * fg1_fb_call_user_func_array_safe(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_fb_call_user_func_array_safe(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_call_user_func_array_safe(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -970,8 +970,8 @@ flush => rsi TypedValue* fh_fb_get_code_coverage(TypedValue* _rv, bool flush) asm("_ZN4HPHP22f_fb_get_code_coverageEb"); -TypedValue * fg1_fb_get_code_coverage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_get_code_coverage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_get_code_coverage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_get_code_coverage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-0); fh_fb_get_code_coverage((rv), (bool)(args[-0].m_data.num)); @@ -979,7 +979,7 @@ TypedValue * fg1_fb_get_code_coverage(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_fb_get_code_coverage(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_get_code_coverage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1017,7 +1017,7 @@ _ZN4HPHP25f_fb_enable_code_coverageEv void fh_fb_enable_code_coverage() asm("_ZN4HPHP25f_fb_enable_code_coverageEv"); -TypedValue* fg_fb_enable_code_coverage(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_enable_code_coverage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1051,7 +1051,7 @@ _rv => rdi TypedValue* fh_fb_disable_code_coverage(TypedValue* _rv) asm("_ZN4HPHP26f_fb_disable_code_coverageEv"); -TypedValue* fg_fb_disable_code_coverage(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_disable_code_coverage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1083,8 +1083,8 @@ servers => rdi void fh_fb_load_local_databases(Value* servers) asm("_ZN4HPHP25f_fb_load_local_databasesERKNS_5ArrayE"); -TypedValue * fg1_fb_load_local_databases(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_load_local_databases(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_load_local_databases(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_load_local_databases(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1093,7 +1093,7 @@ TypedValue * fg1_fb_load_local_databases(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_fb_load_local_databases(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_load_local_databases(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1141,8 +1141,8 @@ timeout_in_ms => st8 Value* fh_fb_parallel_query(Value* _rv, Value* sql_map, int max_thread, bool combine_result, bool retry_query_on_fail, int connect_timeout, int read_timeout, bool timeout_in_ms) asm("_ZN4HPHP19f_fb_parallel_queryERKNS_5ArrayEibbiib"); -TypedValue * fg1_fb_parallel_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_parallel_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_parallel_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_parallel_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -1181,7 +1181,7 @@ TypedValue * fg1_fb_parallel_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_fb_parallel_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_parallel_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1228,8 +1228,8 @@ timeout_in_ms => st0 Value* fh_fb_crossall_query(Value* _rv, Value* sql, int max_thread, bool retry_query_on_fail, int connect_timeout, int read_timeout, bool timeout_in_ms) asm("_ZN4HPHP19f_fb_crossall_queryERKNS_6StringEibiib"); -TypedValue * fg1_fb_crossall_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_crossall_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_crossall_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_crossall_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -1264,7 +1264,7 @@ TypedValue * fg1_fb_crossall_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_fb_crossall_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_crossall_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1306,7 +1306,7 @@ key => rsi TypedValue* fh_fb_const_fetch(TypedValue* _rv, TypedValue* key) asm("_ZN4HPHP16f_fb_const_fetchERKNS_7VariantE"); -TypedValue* fg_fb_const_fetch(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_const_fetch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1339,8 +1339,8 @@ new_value => rdi bool fh_fb_output_compression(bool new_value) asm("_ZN4HPHP23f_fb_output_compressionEb"); -TypedValue * fg1_fb_output_compression(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_output_compression(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_output_compression(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_output_compression(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-0); @@ -1348,7 +1348,7 @@ TypedValue * fg1_fb_output_compression(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_fb_output_compression(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_output_compression(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1387,7 +1387,7 @@ function => rdi void fh_fb_set_exit_callback(TypedValue* function) asm("_ZN4HPHP22f_fb_set_exit_callbackERKNS_7VariantE"); -TypedValue* fg_fb_set_exit_callback(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_set_exit_callback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1421,7 +1421,7 @@ _rv => rdi Value* fh_fb_get_flush_stat(Value* _rv) asm("_ZN4HPHP19f_fb_get_flush_statEv"); -TypedValue* fg_fb_get_flush_stat(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_get_flush_stat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1454,7 +1454,7 @@ _ZN4HPHP24f_fb_get_last_flush_sizeEv long fh_fb_get_last_flush_size() asm("_ZN4HPHP24f_fb_get_last_flush_sizeEv"); -TypedValue* fg_fb_get_last_flush_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_get_last_flush_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1488,8 +1488,8 @@ filename => rsi TypedValue* fh_fb_lazy_stat(TypedValue* _rv, Value* filename) asm("_ZN4HPHP14f_fb_lazy_statERKNS_6StringE"); -TypedValue * fg1_fb_lazy_stat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_lazy_stat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_lazy_stat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_lazy_stat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_fb_lazy_stat((rv), &args[-0].m_data); @@ -1497,7 +1497,7 @@ TypedValue * fg1_fb_lazy_stat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_fb_lazy_stat(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_lazy_stat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1538,8 +1538,8 @@ filename => rsi TypedValue* fh_fb_lazy_lstat(TypedValue* _rv, Value* filename) asm("_ZN4HPHP15f_fb_lazy_lstatERKNS_6StringE"); -TypedValue * fg1_fb_lazy_lstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_lazy_lstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_lazy_lstat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_lazy_lstat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_fb_lazy_lstat((rv), &args[-0].m_data); @@ -1547,7 +1547,7 @@ TypedValue * fg1_fb_lazy_lstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_fb_lazy_lstat(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_lazy_lstat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1588,8 +1588,8 @@ filename => rsi Value* fh_fb_lazy_realpath(Value* _rv, Value* filename) asm("_ZN4HPHP18f_fb_lazy_realpathERKNS_6StringE"); -TypedValue * fg1_fb_lazy_realpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_lazy_realpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_lazy_realpath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_lazy_realpath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1598,7 +1598,7 @@ TypedValue * fg1_fb_lazy_realpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_fb_lazy_realpath(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_lazy_realpath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1639,7 +1639,7 @@ _rv => rdi Value* fh_fb_gc_collect_cycles(Value* _rv) asm("_ZN4HPHP22f_fb_gc_collect_cyclesEv"); -TypedValue* fg_fb_gc_collect_cycles(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_gc_collect_cycles(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1672,8 +1672,8 @@ filename => rdi void fh_fb_gc_detect_cycles(Value* filename) asm("_ZN4HPHP21f_fb_gc_detect_cyclesERKNS_6StringE"); -TypedValue * fg1_fb_gc_detect_cycles(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_gc_detect_cycles(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_gc_detect_cycles(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_gc_detect_cycles(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1682,7 +1682,7 @@ TypedValue * fg1_fb_gc_detect_cycles(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_fb_gc_detect_cycles(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_gc_detect_cycles(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_file.ext_hhvm.cpp b/hphp/runtime/ext/ext_file.ext_hhvm.cpp index 13b71fb50..4a9ab4b7f 100644 --- a/hphp/runtime/ext/ext_file.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_file.ext_hhvm.cpp @@ -38,8 +38,8 @@ context => r8 TypedValue* fh_fopen(TypedValue* _rv, Value* filename, Value* mode, bool use_include_path, TypedValue* context) asm("_ZN4HPHP7f_fopenERKNS_6StringES2_bRKNS_7VariantE"); -TypedValue * fg1_fopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fopen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fopen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -62,7 +62,7 @@ TypedValue * fg1_fopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fopen(HPHP::VM::ActRec *ar) { +TypedValue* fg_fopen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -105,8 +105,8 @@ mode => rdx TypedValue* fh_popen(TypedValue* _rv, Value* command, Value* mode) asm("_ZN4HPHP7f_popenERKNS_6StringES2_"); -TypedValue * fg1_popen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_popen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_popen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_popen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -119,7 +119,7 @@ TypedValue * fg1_popen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_popen(HPHP::VM::ActRec *ar) { +TypedValue* fg_popen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -159,8 +159,8 @@ handle => rdi bool fh_fclose(Value* handle) asm("_ZN4HPHP8f_fcloseERKNS_6ObjectE"); -TypedValue * fg1_fclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fclose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fclose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -168,7 +168,7 @@ TypedValue * fg1_fclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fclose(HPHP::VM::ActRec *ar) { +TypedValue* fg_fclose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -209,8 +209,8 @@ handle => rsi TypedValue* fh_pclose(TypedValue* _rv, Value* handle) asm("_ZN4HPHP8f_pcloseERKNS_6ObjectE"); -TypedValue * fg1_pclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pclose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pclose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_pclose((rv), &args[-0].m_data); @@ -218,7 +218,7 @@ TypedValue * fg1_pclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_pclose(HPHP::VM::ActRec *ar) { +TypedValue* fg_pclose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -261,8 +261,8 @@ whence => rcx TypedValue* fh_fseek(TypedValue* _rv, Value* handle, long offset, long whence) asm("_ZN4HPHP7f_fseekERKNS_6ObjectEll"); -TypedValue * fg1_fseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fseek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fseek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -283,7 +283,7 @@ TypedValue * fg1_fseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fseek(HPHP::VM::ActRec *ar) { +TypedValue* fg_fseek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -323,8 +323,8 @@ handle => rdi bool fh_rewind(Value* handle) asm("_ZN4HPHP8f_rewindERKNS_6ObjectE"); -TypedValue * fg1_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rewind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rewind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -332,7 +332,7 @@ TypedValue * fg1_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_rewind(HPHP::VM::ActRec *ar) { +TypedValue* fg_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -373,8 +373,8 @@ handle => rsi TypedValue* fh_ftell(TypedValue* _rv, Value* handle) asm("_ZN4HPHP7f_ftellERKNS_6ObjectE"); -TypedValue * fg1_ftell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ftell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ftell(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ftell(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_ftell((rv), &args[-0].m_data); @@ -382,7 +382,7 @@ TypedValue * fg1_ftell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ftell(HPHP::VM::ActRec *ar) { +TypedValue* fg_ftell(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -422,8 +422,8 @@ handle => rdi bool fh_feof(Value* handle) asm("_ZN4HPHP6f_feofERKNS_6ObjectE"); -TypedValue * fg1_feof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_feof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_feof(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_feof(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -431,7 +431,7 @@ TypedValue * fg1_feof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_feof(HPHP::VM::ActRec *ar) { +TypedValue* fg_feof(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -472,8 +472,8 @@ handle => rsi TypedValue* fh_fstat(TypedValue* _rv, Value* handle) asm("_ZN4HPHP7f_fstatERKNS_6ObjectE"); -TypedValue * fg1_fstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fstat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fstat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_fstat((rv), &args[-0].m_data); @@ -481,7 +481,7 @@ TypedValue * fg1_fstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fstat(HPHP::VM::ActRec *ar) { +TypedValue* fg_fstat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -523,8 +523,8 @@ length => rdx TypedValue* fh_fread(TypedValue* _rv, Value* handle, long length) asm("_ZN4HPHP7f_freadERKNS_6ObjectEl"); -TypedValue * fg1_fread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fread(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fread(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -537,7 +537,7 @@ TypedValue * fg1_fread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fread(HPHP::VM::ActRec *ar) { +TypedValue* fg_fread(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -578,8 +578,8 @@ handle => rsi TypedValue* fh_fgetc(TypedValue* _rv, Value* handle) asm("_ZN4HPHP7f_fgetcERKNS_6ObjectE"); -TypedValue * fg1_fgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fgetc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fgetc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_fgetc((rv), &args[-0].m_data); @@ -587,7 +587,7 @@ TypedValue * fg1_fgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fgetc(HPHP::VM::ActRec *ar) { +TypedValue* fg_fgetc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -629,8 +629,8 @@ length => rdx TypedValue* fh_fgets(TypedValue* _rv, Value* handle, long length) asm("_ZN4HPHP7f_fgetsERKNS_6ObjectEl"); -TypedValue * fg1_fgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fgets(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fgets(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -648,7 +648,7 @@ TypedValue * fg1_fgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fgets(HPHP::VM::ActRec *ar) { +TypedValue* fg_fgets(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -691,8 +691,8 @@ allowable_tags => rcx TypedValue* fh_fgetss(TypedValue* _rv, Value* handle, long length, Value* allowable_tags) asm("_ZN4HPHP8f_fgetssERKNS_6ObjectElRKNS_6StringE"); -TypedValue * fg1_fgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fgetss(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fgetss(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -714,7 +714,7 @@ TypedValue * fg1_fgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fgetss(HPHP::VM::ActRec *ar) { +TypedValue* fg_fgetss(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -758,8 +758,8 @@ _argv => r8 TypedValue* fh_fscanf(TypedValue* _rv, int64_t _argc, Value* handle, Value* format, Value* _argv) asm("_ZN4HPHP8f_fscanfEiRKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_fscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fscanf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fscanf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -785,7 +785,7 @@ TypedValue * fg1_fscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fscanf(HPHP::VM::ActRec *ar) { +TypedValue* fg_fscanf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -839,8 +839,8 @@ handle => rsi TypedValue* fh_fpassthru(TypedValue* _rv, Value* handle) asm("_ZN4HPHP11f_fpassthruERKNS_6ObjectE"); -TypedValue * fg1_fpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fpassthru(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fpassthru(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_fpassthru((rv), &args[-0].m_data); @@ -848,7 +848,7 @@ TypedValue * fg1_fpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_fpassthru(HPHP::VM::ActRec *ar) { +TypedValue* fg_fpassthru(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -891,8 +891,8 @@ length => rcx TypedValue* fh_fwrite(TypedValue* _rv, Value* handle, Value* data, long length) asm("_ZN4HPHP8f_fwriteERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_fwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fwrite(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fwrite(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -913,7 +913,7 @@ TypedValue * fg1_fwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fwrite(HPHP::VM::ActRec *ar) { +TypedValue* fg_fwrite(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -956,8 +956,8 @@ length => rcx TypedValue* fh_fputs(TypedValue* _rv, Value* handle, Value* data, long length) asm("_ZN4HPHP7f_fputsERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_fputs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fputs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fputs(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fputs(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -978,7 +978,7 @@ TypedValue * fg1_fputs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fputs(HPHP::VM::ActRec *ar) { +TypedValue* fg_fputs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1022,8 +1022,8 @@ _argv => r8 TypedValue* fh_fprintf(TypedValue* _rv, int64_t _argc, Value* handle, Value* format, Value* _argv) asm("_ZN4HPHP9f_fprintfEiRKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_fprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fprintf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fprintf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1049,7 +1049,7 @@ TypedValue * fg1_fprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fprintf(HPHP::VM::ActRec *ar) { +TypedValue* fg_fprintf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1105,8 +1105,8 @@ args => rcx TypedValue* fh_vfprintf(TypedValue* _rv, Value* handle, Value* format, Value* args) asm("_ZN4HPHP10f_vfprintfERKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_vfprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_vfprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_vfprintf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_vfprintf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfArray) { tvCastToArrayInPlace(args-2); @@ -1122,7 +1122,7 @@ TypedValue * fg1_vfprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_vfprintf(HPHP::VM::ActRec *ar) { +TypedValue* fg_vfprintf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1162,8 +1162,8 @@ handle => rdi bool fh_fflush(Value* handle) asm("_ZN4HPHP8f_fflushERKNS_6ObjectE"); -TypedValue * fg1_fflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fflush(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fflush(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1171,7 +1171,7 @@ TypedValue * fg1_fflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fflush(HPHP::VM::ActRec *ar) { +TypedValue* fg_fflush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1212,8 +1212,8 @@ size => rsi bool fh_ftruncate(Value* handle, long size) asm("_ZN4HPHP11f_ftruncateERKNS_6ObjectEl"); -TypedValue * fg1_ftruncate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ftruncate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ftruncate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ftruncate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1226,7 +1226,7 @@ TypedValue * fg1_ftruncate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ftruncate(HPHP::VM::ActRec *ar) { +TypedValue* fg_ftruncate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1268,8 +1268,8 @@ wouldblock => rdx bool fh_flock(Value* handle, int operation, TypedValue* wouldblock) asm("_ZN4HPHP7f_flockERKNS_6ObjectEiRKNS_14VRefParamValueE"); -TypedValue * fg1_flock(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_flock(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_flock(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_flock(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1288,7 +1288,7 @@ TypedValue * fg1_flock(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_flock(HPHP::VM::ActRec *ar) { +TypedValue* fg_flock(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1333,8 +1333,8 @@ enclosure => r8 TypedValue* fh_fputcsv(TypedValue* _rv, Value* handle, Value* fields, Value* delimiter, Value* enclosure) asm("_ZN4HPHP9f_fputcsvERKNS_6ObjectERKNS_5ArrayERKNS_6StringES8_"); -TypedValue * fg1_fputcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fputcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fputcsv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fputcsv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1361,7 +1361,7 @@ TypedValue * fg1_fputcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fputcsv(HPHP::VM::ActRec *ar) { +TypedValue* fg_fputcsv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1407,8 +1407,8 @@ enclosure => r8 TypedValue* fh_fgetcsv(TypedValue* _rv, Value* handle, long length, Value* delimiter, Value* enclosure) asm("_ZN4HPHP9f_fgetcsvERKNS_6ObjectElRKNS_6StringES5_"); -TypedValue * fg1_fgetcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fgetcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fgetcsv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fgetcsv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1436,7 +1436,7 @@ TypedValue * fg1_fgetcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fgetcsv(HPHP::VM::ActRec *ar) { +TypedValue* fg_fgetcsv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1483,8 +1483,8 @@ maxlen => r9 TypedValue* fh_file_get_contents(TypedValue* _rv, Value* filename, bool use_include_path, TypedValue* context, long offset, long maxlen) asm("_ZN4HPHP19f_file_get_contentsERKNS_6StringEbRKNS_7VariantEll"); -TypedValue * fg1_file_get_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_file_get_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_file_get_contents(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_file_get_contents(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1512,7 +1512,7 @@ TypedValue * fg1_file_get_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_file_get_contents(HPHP::VM::ActRec *ar) { +TypedValue* fg_file_get_contents(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1557,8 +1557,8 @@ context => r8 TypedValue* fh_file_put_contents(TypedValue* _rv, Value* filename, TypedValue* data, int flags, TypedValue* context) asm("_ZN4HPHP19f_file_put_contentsERKNS_6StringERKNS_7VariantEiS5_"); -TypedValue * fg1_file_put_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_file_put_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_file_put_contents(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_file_put_contents(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1578,7 +1578,7 @@ TypedValue * fg1_file_put_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_file_put_contents(HPHP::VM::ActRec *ar) { +TypedValue* fg_file_put_contents(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1622,8 +1622,8 @@ context => rcx TypedValue* fh_file(TypedValue* _rv, Value* filename, int flags, TypedValue* context) asm("_ZN4HPHP6f_fileERKNS_6StringEiRKNS_7VariantE"); -TypedValue * fg1_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1643,7 +1643,7 @@ TypedValue * fg1_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1687,8 +1687,8 @@ context => rcx TypedValue* fh_readfile(TypedValue* _rv, Value* filename, bool use_include_path, TypedValue* context) asm("_ZN4HPHP10f_readfileERKNS_6StringEbRKNS_7VariantE"); -TypedValue * fg1_readfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_readfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_readfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_readfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1708,7 +1708,7 @@ TypedValue * fg1_readfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_readfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_readfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1750,8 +1750,8 @@ destination => rsi bool fh_move_uploaded_file(Value* filename, Value* destination) asm("_ZN4HPHP20f_move_uploaded_fileERKNS_6StringES2_"); -TypedValue * fg1_move_uploaded_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_move_uploaded_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_move_uploaded_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_move_uploaded_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1764,7 +1764,7 @@ TypedValue * fg1_move_uploaded_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_move_uploaded_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_move_uploaded_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1807,8 +1807,8 @@ scanner_mode => rcx TypedValue* fh_parse_ini_file(TypedValue* _rv, Value* filename, bool process_sections, int scanner_mode) asm("_ZN4HPHP16f_parse_ini_fileERKNS_6StringEbi"); -TypedValue * fg1_parse_ini_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_parse_ini_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_parse_ini_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_parse_ini_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1830,7 +1830,7 @@ TypedValue * fg1_parse_ini_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_parse_ini_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_parse_ini_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1873,8 +1873,8 @@ scanner_mode => rcx TypedValue* fh_parse_ini_string(TypedValue* _rv, Value* ini, bool process_sections, int scanner_mode) asm("_ZN4HPHP18f_parse_ini_stringERKNS_6StringEbi"); -TypedValue * fg1_parse_ini_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_parse_ini_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_parse_ini_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_parse_ini_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1896,7 +1896,7 @@ TypedValue * fg1_parse_ini_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_parse_ini_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_parse_ini_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1937,8 +1937,8 @@ filename => rsi TypedValue* fh_parse_hdf_file(TypedValue* _rv, Value* filename) asm("_ZN4HPHP16f_parse_hdf_fileERKNS_6StringE"); -TypedValue * fg1_parse_hdf_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_parse_hdf_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_parse_hdf_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_parse_hdf_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_parse_hdf_file((rv), &args[-0].m_data); @@ -1946,7 +1946,7 @@ TypedValue * fg1_parse_hdf_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_parse_hdf_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_parse_hdf_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1987,8 +1987,8 @@ input => rsi TypedValue* fh_parse_hdf_string(TypedValue* _rv, Value* input) asm("_ZN4HPHP18f_parse_hdf_stringERKNS_6StringE"); -TypedValue * fg1_parse_hdf_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_parse_hdf_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_parse_hdf_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_parse_hdf_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_parse_hdf_string((rv), &args[-0].m_data); @@ -1996,7 +1996,7 @@ TypedValue * fg1_parse_hdf_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_parse_hdf_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_parse_hdf_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2037,8 +2037,8 @@ filename => rsi bool fh_write_hdf_file(Value* data, Value* filename) asm("_ZN4HPHP16f_write_hdf_fileERKNS_5ArrayERKNS_6StringE"); -TypedValue * fg1_write_hdf_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_write_hdf_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_write_hdf_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_write_hdf_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -2051,7 +2051,7 @@ TypedValue * fg1_write_hdf_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_write_hdf_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_write_hdf_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2092,8 +2092,8 @@ data => rsi Value* fh_write_hdf_string(Value* _rv, Value* data) asm("_ZN4HPHP18f_write_hdf_stringERKNS_5ArrayE"); -TypedValue * fg1_write_hdf_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_write_hdf_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_write_hdf_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_write_hdf_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToArrayInPlace(args-0); @@ -2102,7 +2102,7 @@ TypedValue * fg1_write_hdf_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_write_hdf_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_write_hdf_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2145,8 +2145,8 @@ raw_output => rdx TypedValue* fh_md5_file(TypedValue* _rv, Value* filename, bool raw_output) asm("_ZN4HPHP10f_md5_fileERKNS_6StringEb"); -TypedValue * fg1_md5_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_md5_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_md5_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_md5_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2164,7 +2164,7 @@ TypedValue * fg1_md5_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_md5_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_md5_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2206,8 +2206,8 @@ raw_output => rdx TypedValue* fh_sha1_file(TypedValue* _rv, Value* filename, bool raw_output) asm("_ZN4HPHP11f_sha1_fileERKNS_6StringEb"); -TypedValue * fg1_sha1_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sha1_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sha1_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sha1_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2225,7 +2225,7 @@ TypedValue * fg1_sha1_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_sha1_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_sha1_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2266,8 +2266,8 @@ mode => rsi bool fh_chmod(Value* filename, long mode) asm("_ZN4HPHP7f_chmodERKNS_6StringEl"); -TypedValue * fg1_chmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chmod(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chmod(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -2280,7 +2280,7 @@ TypedValue * fg1_chmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_chmod(HPHP::VM::ActRec *ar) { +TypedValue* fg_chmod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2321,8 +2321,8 @@ user => rsi bool fh_chown(Value* filename, TypedValue* user) asm("_ZN4HPHP7f_chownERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_chown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chown(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chown(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2330,7 +2330,7 @@ TypedValue * fg1_chown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_chown(HPHP::VM::ActRec *ar) { +TypedValue* fg_chown(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2371,8 +2371,8 @@ user => rsi bool fh_lchown(Value* filename, TypedValue* user) asm("_ZN4HPHP8f_lchownERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_lchown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_lchown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_lchown(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_lchown(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2380,7 +2380,7 @@ TypedValue * fg1_lchown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_lchown(HPHP::VM::ActRec *ar) { +TypedValue* fg_lchown(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2421,8 +2421,8 @@ group => rsi bool fh_chgrp(Value* filename, TypedValue* group) asm("_ZN4HPHP7f_chgrpERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_chgrp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chgrp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chgrp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chgrp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2430,7 +2430,7 @@ TypedValue * fg1_chgrp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_chgrp(HPHP::VM::ActRec *ar) { +TypedValue* fg_chgrp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2471,8 +2471,8 @@ group => rsi bool fh_lchgrp(Value* filename, TypedValue* group) asm("_ZN4HPHP8f_lchgrpERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_lchgrp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_lchgrp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_lchgrp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_lchgrp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2480,7 +2480,7 @@ TypedValue * fg1_lchgrp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_lchgrp(HPHP::VM::ActRec *ar) { +TypedValue* fg_lchgrp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2522,8 +2522,8 @@ atime => rdx bool fh_touch(Value* filename, long mtime, long atime) asm("_ZN4HPHP7f_touchERKNS_6StringEll"); -TypedValue * fg1_touch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_touch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_touch(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_touch(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2545,7 +2545,7 @@ TypedValue * fg1_touch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_touch(HPHP::VM::ActRec *ar) { +TypedValue* fg_touch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2587,8 +2587,8 @@ context => rdx bool fh_copy(Value* source, Value* dest, TypedValue* context) asm("_ZN4HPHP6f_copyERKNS_6StringES2_RKNS_7VariantE"); -TypedValue * fg1_copy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_copy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_copy(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_copy(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2607,7 +2607,7 @@ TypedValue * fg1_copy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_copy(HPHP::VM::ActRec *ar) { +TypedValue* fg_copy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2650,8 +2650,8 @@ context => rdx bool fh_rename(Value* oldname, Value* newname, TypedValue* context) asm("_ZN4HPHP8f_renameERKNS_6StringES2_RKNS_7VariantE"); -TypedValue * fg1_rename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2670,7 +2670,7 @@ TypedValue * fg1_rename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_rename(HPHP::VM::ActRec *ar) { +TypedValue* fg_rename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2711,7 +2711,7 @@ mask => rdi long fh_umask(TypedValue* mask) asm("_ZN4HPHP7f_umaskERKNS_7VariantE"); -TypedValue* fg_umask(HPHP::VM::ActRec *ar) { +TypedValue* fg_umask(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2745,8 +2745,8 @@ context => rsi bool fh_unlink(Value* filename, TypedValue* context) asm("_ZN4HPHP8f_unlinkERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_unlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_unlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_unlink(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_unlink(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2755,7 +2755,7 @@ TypedValue * fg1_unlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_unlink(HPHP::VM::ActRec *ar) { +TypedValue* fg_unlink(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2797,8 +2797,8 @@ link => rsi bool fh_link(Value* target, Value* link) asm("_ZN4HPHP6f_linkERKNS_6StringES2_"); -TypedValue * fg1_link(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_link(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_link(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_link(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -2811,7 +2811,7 @@ TypedValue * fg1_link(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_link(HPHP::VM::ActRec *ar) { +TypedValue* fg_link(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2852,8 +2852,8 @@ link => rsi bool fh_symlink(Value* target, Value* link) asm("_ZN4HPHP9f_symlinkERKNS_6StringES2_"); -TypedValue * fg1_symlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_symlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_symlink(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_symlink(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -2866,7 +2866,7 @@ TypedValue * fg1_symlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_symlink(HPHP::VM::ActRec *ar) { +TypedValue* fg_symlink(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2908,8 +2908,8 @@ suffix => rdx Value* fh_basename(Value* _rv, Value* path, Value* suffix) asm("_ZN4HPHP10f_basenameERKNS_6StringES2_"); -TypedValue * fg1_basename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_basename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_basename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_basename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2928,7 +2928,7 @@ TypedValue * fg1_basename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_basename(HPHP::VM::ActRec *ar) { +TypedValue* fg_basename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2971,8 +2971,8 @@ flags => rdx bool fh_fnmatch(Value* pattern, Value* filename, int flags) asm("_ZN4HPHP9f_fnmatchERKNS_6StringES2_i"); -TypedValue * fg1_fnmatch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fnmatch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fnmatch(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fnmatch(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2993,7 +2993,7 @@ TypedValue * fg1_fnmatch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fnmatch(HPHP::VM::ActRec *ar) { +TypedValue* fg_fnmatch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3035,8 +3035,8 @@ flags => rdx TypedValue* fh_glob(TypedValue* _rv, Value* pattern, int flags) asm("_ZN4HPHP6f_globERKNS_6StringEi"); -TypedValue * fg1_glob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_glob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_glob(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_glob(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -3054,7 +3054,7 @@ TypedValue * fg1_glob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_glob(HPHP::VM::ActRec *ar) { +TypedValue* fg_glob(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3096,8 +3096,8 @@ prefix => rdx TypedValue* fh_tempnam(TypedValue* _rv, Value* dir, Value* prefix) asm("_ZN4HPHP9f_tempnamERKNS_6StringES2_"); -TypedValue * fg1_tempnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_tempnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_tempnam(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_tempnam(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -3110,7 +3110,7 @@ TypedValue * fg1_tempnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_tempnam(HPHP::VM::ActRec *ar) { +TypedValue* fg_tempnam(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3150,7 +3150,7 @@ _rv => rdi TypedValue* fh_tmpfile(TypedValue* _rv) asm("_ZN4HPHP9f_tmpfileEv"); -TypedValue* fg_tmpfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_tmpfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3184,8 +3184,8 @@ filename => rsi TypedValue* fh_fileperms(TypedValue* _rv, Value* filename) asm("_ZN4HPHP11f_filepermsERKNS_6StringE"); -TypedValue * fg1_fileperms(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fileperms(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fileperms(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fileperms(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_fileperms((rv), &args[-0].m_data); @@ -3193,7 +3193,7 @@ TypedValue * fg1_fileperms(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_fileperms(HPHP::VM::ActRec *ar) { +TypedValue* fg_fileperms(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3234,8 +3234,8 @@ filename => rsi TypedValue* fh_fileinode(TypedValue* _rv, Value* filename) asm("_ZN4HPHP11f_fileinodeERKNS_6StringE"); -TypedValue * fg1_fileinode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fileinode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fileinode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fileinode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_fileinode((rv), &args[-0].m_data); @@ -3243,7 +3243,7 @@ TypedValue * fg1_fileinode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_fileinode(HPHP::VM::ActRec *ar) { +TypedValue* fg_fileinode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3284,8 +3284,8 @@ filename => rsi TypedValue* fh_filesize(TypedValue* _rv, Value* filename) asm("_ZN4HPHP10f_filesizeERKNS_6StringE"); -TypedValue * fg1_filesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_filesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_filesize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_filesize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_filesize((rv), &args[-0].m_data); @@ -3293,7 +3293,7 @@ TypedValue * fg1_filesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_filesize(HPHP::VM::ActRec *ar) { +TypedValue* fg_filesize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3334,8 +3334,8 @@ filename => rsi TypedValue* fh_fileowner(TypedValue* _rv, Value* filename) asm("_ZN4HPHP11f_fileownerERKNS_6StringE"); -TypedValue * fg1_fileowner(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fileowner(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fileowner(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fileowner(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_fileowner((rv), &args[-0].m_data); @@ -3343,7 +3343,7 @@ TypedValue * fg1_fileowner(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_fileowner(HPHP::VM::ActRec *ar) { +TypedValue* fg_fileowner(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3384,8 +3384,8 @@ filename => rsi TypedValue* fh_filegroup(TypedValue* _rv, Value* filename) asm("_ZN4HPHP11f_filegroupERKNS_6StringE"); -TypedValue * fg1_filegroup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_filegroup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_filegroup(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_filegroup(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_filegroup((rv), &args[-0].m_data); @@ -3393,7 +3393,7 @@ TypedValue * fg1_filegroup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_filegroup(HPHP::VM::ActRec *ar) { +TypedValue* fg_filegroup(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3434,8 +3434,8 @@ filename => rsi TypedValue* fh_fileatime(TypedValue* _rv, Value* filename) asm("_ZN4HPHP11f_fileatimeERKNS_6StringE"); -TypedValue * fg1_fileatime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fileatime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fileatime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fileatime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_fileatime((rv), &args[-0].m_data); @@ -3443,7 +3443,7 @@ TypedValue * fg1_fileatime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_fileatime(HPHP::VM::ActRec *ar) { +TypedValue* fg_fileatime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3484,8 +3484,8 @@ filename => rsi TypedValue* fh_filemtime(TypedValue* _rv, Value* filename) asm("_ZN4HPHP11f_filemtimeERKNS_6StringE"); -TypedValue * fg1_filemtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_filemtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_filemtime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_filemtime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_filemtime((rv), &args[-0].m_data); @@ -3493,7 +3493,7 @@ TypedValue * fg1_filemtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_filemtime(HPHP::VM::ActRec *ar) { +TypedValue* fg_filemtime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3534,8 +3534,8 @@ filename => rsi TypedValue* fh_filectime(TypedValue* _rv, Value* filename) asm("_ZN4HPHP11f_filectimeERKNS_6StringE"); -TypedValue * fg1_filectime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_filectime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_filectime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_filectime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_filectime((rv), &args[-0].m_data); @@ -3543,7 +3543,7 @@ TypedValue * fg1_filectime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_filectime(HPHP::VM::ActRec *ar) { +TypedValue* fg_filectime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3584,8 +3584,8 @@ filename => rsi TypedValue* fh_filetype(TypedValue* _rv, Value* filename) asm("_ZN4HPHP10f_filetypeERKNS_6StringE"); -TypedValue * fg1_filetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_filetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_filetype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_filetype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_filetype((rv), &args[-0].m_data); @@ -3593,7 +3593,7 @@ TypedValue * fg1_filetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_filetype(HPHP::VM::ActRec *ar) { +TypedValue* fg_filetype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3634,8 +3634,8 @@ filename => rsi TypedValue* fh_linkinfo(TypedValue* _rv, Value* filename) asm("_ZN4HPHP10f_linkinfoERKNS_6StringE"); -TypedValue * fg1_linkinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_linkinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_linkinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_linkinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_linkinfo((rv), &args[-0].m_data); @@ -3643,7 +3643,7 @@ TypedValue * fg1_linkinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_linkinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_linkinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3683,8 +3683,8 @@ filename => rdi bool fh_is_writable(Value* filename) asm("_ZN4HPHP13f_is_writableERKNS_6StringE"); -TypedValue * fg1_is_writable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_writable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_writable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_writable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3692,7 +3692,7 @@ TypedValue * fg1_is_writable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_is_writable(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_writable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3732,8 +3732,8 @@ filename => rdi bool fh_is_writeable(Value* filename) asm("_ZN4HPHP14f_is_writeableERKNS_6StringE"); -TypedValue * fg1_is_writeable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_writeable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_writeable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_writeable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3741,7 +3741,7 @@ TypedValue * fg1_is_writeable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_is_writeable(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_writeable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3781,8 +3781,8 @@ filename => rdi bool fh_is_readable(Value* filename) asm("_ZN4HPHP13f_is_readableERKNS_6StringE"); -TypedValue * fg1_is_readable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_readable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_readable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_readable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3790,7 +3790,7 @@ TypedValue * fg1_is_readable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_is_readable(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_readable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3830,8 +3830,8 @@ filename => rdi bool fh_is_executable(Value* filename) asm("_ZN4HPHP15f_is_executableERKNS_6StringE"); -TypedValue * fg1_is_executable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_executable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_executable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_executable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3839,7 +3839,7 @@ TypedValue * fg1_is_executable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_is_executable(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_executable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3879,8 +3879,8 @@ filename => rdi bool fh_is_file(Value* filename) asm("_ZN4HPHP9f_is_fileERKNS_6StringE"); -TypedValue * fg1_is_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3888,7 +3888,7 @@ TypedValue * fg1_is_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_is_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3928,8 +3928,8 @@ filename => rdi bool fh_is_dir(Value* filename) asm("_ZN4HPHP8f_is_dirERKNS_6StringE"); -TypedValue * fg1_is_dir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_dir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_dir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_dir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3937,7 +3937,7 @@ TypedValue * fg1_is_dir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_is_dir(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_dir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3977,8 +3977,8 @@ filename => rdi bool fh_is_link(Value* filename) asm("_ZN4HPHP9f_is_linkERKNS_6StringE"); -TypedValue * fg1_is_link(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_link(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_link(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_link(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3986,7 +3986,7 @@ TypedValue * fg1_is_link(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_is_link(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_link(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4026,8 +4026,8 @@ filename => rdi bool fh_is_uploaded_file(Value* filename) asm("_ZN4HPHP18f_is_uploaded_fileERKNS_6StringE"); -TypedValue * fg1_is_uploaded_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_uploaded_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_uploaded_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_uploaded_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4035,7 +4035,7 @@ TypedValue * fg1_is_uploaded_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_is_uploaded_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_uploaded_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4075,8 +4075,8 @@ filename => rdi bool fh_file_exists(Value* filename) asm("_ZN4HPHP13f_file_existsERKNS_6StringE"); -TypedValue * fg1_file_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_file_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_file_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_file_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4084,7 +4084,7 @@ TypedValue * fg1_file_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_file_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_file_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4125,8 +4125,8 @@ filename => rsi TypedValue* fh_stat(TypedValue* _rv, Value* filename) asm("_ZN4HPHP6f_statERKNS_6StringE"); -TypedValue * fg1_stat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_stat((rv), &args[-0].m_data); @@ -4134,7 +4134,7 @@ TypedValue * fg1_stat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_stat(HPHP::VM::ActRec *ar) { +TypedValue* fg_stat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4175,8 +4175,8 @@ filename => rsi TypedValue* fh_lstat(TypedValue* _rv, Value* filename) asm("_ZN4HPHP7f_lstatERKNS_6StringE"); -TypedValue * fg1_lstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_lstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_lstat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_lstat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_lstat((rv), &args[-0].m_data); @@ -4184,7 +4184,7 @@ TypedValue * fg1_lstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_lstat(HPHP::VM::ActRec *ar) { +TypedValue* fg_lstat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4222,7 +4222,7 @@ _ZN4HPHP16f_clearstatcacheEv void fh_clearstatcache() asm("_ZN4HPHP16f_clearstatcacheEv"); -TypedValue* fg_clearstatcache(HPHP::VM::ActRec *ar) { +TypedValue* fg_clearstatcache(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4257,8 +4257,8 @@ path => rsi TypedValue* fh_readlink(TypedValue* _rv, Value* path) asm("_ZN4HPHP10f_readlinkERKNS_6StringE"); -TypedValue * fg1_readlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_readlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_readlink(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_readlink(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_readlink((rv), &args[-0].m_data); @@ -4266,7 +4266,7 @@ TypedValue * fg1_readlink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_readlink(HPHP::VM::ActRec *ar) { +TypedValue* fg_readlink(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4307,8 +4307,8 @@ path => rsi TypedValue* fh_realpath(TypedValue* _rv, Value* path) asm("_ZN4HPHP10f_realpathERKNS_6StringE"); -TypedValue * fg1_realpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_realpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_realpath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_realpath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_realpath((rv), &args[-0].m_data); @@ -4316,7 +4316,7 @@ TypedValue * fg1_realpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_realpath(HPHP::VM::ActRec *ar) { +TypedValue* fg_realpath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4358,8 +4358,8 @@ opt => rdx TypedValue* fh_pathinfo(TypedValue* _rv, Value* path, int opt) asm("_ZN4HPHP10f_pathinfoERKNS_6StringEi"); -TypedValue * fg1_pathinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pathinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pathinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pathinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -4377,7 +4377,7 @@ TypedValue * fg1_pathinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_pathinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_pathinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4418,8 +4418,8 @@ directory => rsi TypedValue* fh_disk_free_space(TypedValue* _rv, Value* directory) asm("_ZN4HPHP17f_disk_free_spaceERKNS_6StringE"); -TypedValue * fg1_disk_free_space(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_disk_free_space(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_disk_free_space(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_disk_free_space(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_disk_free_space((rv), &args[-0].m_data); @@ -4427,7 +4427,7 @@ TypedValue * fg1_disk_free_space(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_disk_free_space(HPHP::VM::ActRec *ar) { +TypedValue* fg_disk_free_space(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4468,8 +4468,8 @@ directory => rsi TypedValue* fh_diskfreespace(TypedValue* _rv, Value* directory) asm("_ZN4HPHP15f_diskfreespaceERKNS_6StringE"); -TypedValue * fg1_diskfreespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_diskfreespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_diskfreespace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_diskfreespace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_diskfreespace((rv), &args[-0].m_data); @@ -4477,7 +4477,7 @@ TypedValue * fg1_diskfreespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_diskfreespace(HPHP::VM::ActRec *ar) { +TypedValue* fg_diskfreespace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4518,8 +4518,8 @@ directory => rsi TypedValue* fh_disk_total_space(TypedValue* _rv, Value* directory) asm("_ZN4HPHP18f_disk_total_spaceERKNS_6StringE"); -TypedValue * fg1_disk_total_space(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_disk_total_space(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_disk_total_space(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_disk_total_space(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_disk_total_space((rv), &args[-0].m_data); @@ -4527,7 +4527,7 @@ TypedValue * fg1_disk_total_space(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_disk_total_space(HPHP::VM::ActRec *ar) { +TypedValue* fg_disk_total_space(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4570,8 +4570,8 @@ context => rcx bool fh_mkdir(Value* pathname, long mode, bool recursive, TypedValue* context) asm("_ZN4HPHP7f_mkdirERKNS_6StringElbRKNS_7VariantE"); -TypedValue * fg1_mkdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mkdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mkdir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mkdir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -4595,7 +4595,7 @@ TypedValue * fg1_mkdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_mkdir(HPHP::VM::ActRec *ar) { +TypedValue* fg_mkdir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4637,8 +4637,8 @@ context => rsi bool fh_rmdir(Value* dirname, TypedValue* context) asm("_ZN4HPHP7f_rmdirERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_rmdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rmdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rmdir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rmdir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4647,7 +4647,7 @@ TypedValue * fg1_rmdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_rmdir(HPHP::VM::ActRec *ar) { +TypedValue* fg_rmdir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4689,8 +4689,8 @@ path => rsi Value* fh_dirname(Value* _rv, Value* path) asm("_ZN4HPHP9f_dirnameERKNS_6StringE"); -TypedValue * fg1_dirname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dirname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dirname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dirname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -4699,7 +4699,7 @@ TypedValue * fg1_dirname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_dirname(HPHP::VM::ActRec *ar) { +TypedValue* fg_dirname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4740,7 +4740,7 @@ _rv => rdi TypedValue* fh_getcwd(TypedValue* _rv) asm("_ZN4HPHP8f_getcwdEv"); -TypedValue* fg_getcwd(HPHP::VM::ActRec *ar) { +TypedValue* fg_getcwd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4773,8 +4773,8 @@ directory => rdi bool fh_chdir(Value* directory) asm("_ZN4HPHP7f_chdirERKNS_6StringE"); -TypedValue * fg1_chdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chdir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chdir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4782,7 +4782,7 @@ TypedValue * fg1_chdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_chdir(HPHP::VM::ActRec *ar) { +TypedValue* fg_chdir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4822,8 +4822,8 @@ directory => rdi bool fh_chroot(Value* directory) asm("_ZN4HPHP8f_chrootERKNS_6StringE"); -TypedValue * fg1_chroot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chroot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chroot(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chroot(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4831,7 +4831,7 @@ TypedValue * fg1_chroot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_chroot(HPHP::VM::ActRec *ar) { +TypedValue* fg_chroot(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4872,8 +4872,8 @@ directory => rsi TypedValue* fh_dir(TypedValue* _rv, Value* directory) asm("_ZN4HPHP5f_dirERKNS_6StringE"); -TypedValue * fg1_dir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_dir((rv), &args[-0].m_data); @@ -4881,7 +4881,7 @@ TypedValue * fg1_dir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_dir(HPHP::VM::ActRec *ar) { +TypedValue* fg_dir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4923,8 +4923,8 @@ context => rdx TypedValue* fh_opendir(TypedValue* _rv, Value* path, TypedValue* context) asm("_ZN4HPHP9f_opendirERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_opendir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_opendir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_opendir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_opendir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -4933,7 +4933,7 @@ TypedValue * fg1_opendir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_opendir(HPHP::VM::ActRec *ar) { +TypedValue* fg_opendir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4975,8 +4975,8 @@ dir_handle => rsi TypedValue* fh_readdir(TypedValue* _rv, Value* dir_handle) asm("_ZN4HPHP9f_readdirERKNS_6ObjectE"); -TypedValue * fg1_readdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_readdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_readdir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_readdir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_readdir((rv), &args[-0].m_data); @@ -4984,7 +4984,7 @@ TypedValue * fg1_readdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_readdir(HPHP::VM::ActRec *ar) { +TypedValue* fg_readdir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5023,8 +5023,8 @@ dir_handle => rdi void fh_rewinddir(Value* dir_handle) asm("_ZN4HPHP11f_rewinddirERKNS_6ObjectE"); -TypedValue * fg1_rewinddir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rewinddir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rewinddir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rewinddir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5033,7 +5033,7 @@ TypedValue * fg1_rewinddir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_rewinddir(HPHP::VM::ActRec *ar) { +TypedValue* fg_rewinddir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5077,8 +5077,8 @@ context => rcx TypedValue* fh_scandir(TypedValue* _rv, Value* directory, bool descending, TypedValue* context) asm("_ZN4HPHP9f_scandirERKNS_6StringEbRKNS_7VariantE"); -TypedValue * fg1_scandir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_scandir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_scandir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_scandir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -5098,7 +5098,7 @@ TypedValue * fg1_scandir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_scandir(HPHP::VM::ActRec *ar) { +TypedValue* fg_scandir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5138,8 +5138,8 @@ dir_handle => rdi void fh_closedir(Value* dir_handle) asm("_ZN4HPHP10f_closedirERKNS_6ObjectE"); -TypedValue * fg1_closedir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_closedir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_closedir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_closedir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5148,7 +5148,7 @@ TypedValue * fg1_closedir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_closedir(HPHP::VM::ActRec *ar) { +TypedValue* fg_closedir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_function.cpp b/hphp/runtime/ext/ext_function.cpp index e1ce1288b..400ab97bd 100644 --- a/hphp/runtime/ext/ext_function.cpp +++ b/hphp/runtime/ext/ext_function.cpp @@ -31,7 +31,6 @@ namespace HPHP { /////////////////////////////////////////////////////////////////////////////// -using HPHP::VM::ActRec; using HPHP::VM::Transl::CallerFrame; static const StaticString s_internal("internal"); diff --git a/hphp/runtime/ext/ext_function.ext_hhvm.cpp b/hphp/runtime/ext/ext_function.ext_hhvm.cpp index 39a64c553..07b6bcb19 100644 --- a/hphp/runtime/ext/ext_function.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_function.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi Value* fh_get_defined_functions(Value* _rv) asm("_ZN4HPHP23f_get_defined_functionsEv"); -TypedValue* fg_get_defined_functions(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_defined_functions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -69,8 +69,8 @@ autoload => rsi bool fh_function_exists(Value* function_name, bool autoload) asm("_ZN4HPHP17f_function_existsERKNS_6StringEb"); -TypedValue * fg1_function_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_function_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_function_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_function_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -88,7 +88,7 @@ TypedValue * fg1_function_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_function_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_function_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -130,8 +130,8 @@ name => rdx bool fh_is_callable(TypedValue* v, bool syntax, TypedValue* name) asm("_ZN4HPHP13f_is_callableERKNS_7VariantEbRKNS_14VRefParamValueE"); -TypedValue * fg1_is_callable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_callable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_callable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_callable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-1); @@ -140,7 +140,7 @@ TypedValue * fg1_is_callable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_is_callable(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_callable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -183,8 +183,8 @@ params => rdx TypedValue* fh_call_user_func_array(TypedValue* _rv, TypedValue* function, Value* params) asm("_ZN4HPHP22f_call_user_func_arrayERKNS_7VariantERKNS_5ArrayE"); -TypedValue * fg1_call_user_func_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_call_user_func_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_call_user_func_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_call_user_func_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToArrayInPlace(args-1); fh_call_user_func_array((rv), (args-0), &args[-1].m_data); @@ -192,7 +192,7 @@ TypedValue * fg1_call_user_func_array(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_call_user_func_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_func_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -235,7 +235,7 @@ _argv => rcx TypedValue* fh_call_user_func(TypedValue* _rv, int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP16f_call_user_funcEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_call_user_func(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_func(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -283,8 +283,8 @@ params => rdx Value* fh_call_user_func_array_async(Value* _rv, TypedValue* function, Value* params) asm("_ZN4HPHP28f_call_user_func_array_asyncERKNS_7VariantERKNS_5ArrayE"); -TypedValue * fg1_call_user_func_array_async(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_call_user_func_array_async(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_call_user_func_array_async(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_call_user_func_array_async(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToArrayInPlace(args-1); @@ -293,7 +293,7 @@ TypedValue * fg1_call_user_func_array_async(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_call_user_func_array_async(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_func_array_async(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -337,7 +337,7 @@ _argv => rcx Value* fh_call_user_func_async(Value* _rv, int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP22f_call_user_func_asyncEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_call_user_func_async(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_func_async(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -386,8 +386,8 @@ timeout => rdx TypedValue* fh_check_user_func_async(TypedValue* _rv, TypedValue* handles, int timeout) asm("_ZN4HPHP23f_check_user_func_asyncERKNS_7VariantEi"); -TypedValue * fg1_check_user_func_async(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_check_user_func_async(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_check_user_func_async(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_check_user_func_async(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_check_user_func_async((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(-1)); @@ -395,7 +395,7 @@ TypedValue * fg1_check_user_func_async(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_check_user_func_async(HPHP::VM::ActRec *ar) { +TypedValue* fg_check_user_func_async(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -438,8 +438,8 @@ additional_strategies => rcx TypedValue* fh_end_user_func_async(TypedValue* _rv, Value* handle, int default_strategy, TypedValue* additional_strategies) asm("_ZN4HPHP21f_end_user_func_asyncERKNS_6ObjectEiRKNS_7VariantE"); -TypedValue * fg1_end_user_func_async(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_end_user_func_async(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_end_user_func_async(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_end_user_func_async(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -459,7 +459,7 @@ TypedValue * fg1_end_user_func_async(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_end_user_func_async(HPHP::VM::ActRec *ar) { +TypedValue* fg_end_user_func_async(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -501,8 +501,8 @@ input => rsi Value* fh_call_user_func_serialized(Value* _rv, Value* input) asm("_ZN4HPHP27f_call_user_func_serializedERKNS_6StringE"); -TypedValue * fg1_call_user_func_serialized(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_call_user_func_serialized(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_call_user_func_serialized(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_call_user_func_serialized(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -511,7 +511,7 @@ TypedValue * fg1_call_user_func_serialized(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_call_user_func_serialized(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_func_serialized(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -558,8 +558,8 @@ params => st0 TypedValue* fh_call_user_func_array_rpc(TypedValue* _rv, Value* host, int port, Value* auth, int timeout, TypedValue* function, Value* params) asm("_ZN4HPHP26f_call_user_func_array_rpcERKNS_6StringEiS2_iRKNS_7VariantERKNS_5ArrayE"); -TypedValue * fg1_call_user_func_array_rpc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_call_user_func_array_rpc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_call_user_func_array_rpc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_call_user_func_array_rpc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-5)->m_type != KindOfArray) { tvCastToArrayInPlace(args-5); @@ -581,7 +581,7 @@ TypedValue * fg1_call_user_func_array_rpc(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_call_user_func_array_rpc(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_func_array_rpc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -628,8 +628,8 @@ _argv => st8 TypedValue* fh_call_user_func_rpc(TypedValue* _rv, int64_t _argc, Value* host, int port, Value* auth, int timeout, TypedValue* function, Value* _argv) asm("_ZN4HPHP20f_call_user_func_rpcEiRKNS_6StringEiS2_iRKNS_7VariantERKNS_5ArrayE"); -TypedValue * fg1_call_user_func_rpc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_call_user_func_rpc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_call_user_func_rpc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_call_user_func_rpc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -661,7 +661,7 @@ TypedValue * fg1_call_user_func_rpc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_call_user_func_rpc(HPHP::VM::ActRec *ar) { +TypedValue* fg_call_user_func_rpc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -716,8 +716,8 @@ params => rdx TypedValue* fh_forward_static_call_array(TypedValue* _rv, TypedValue* function, Value* params) asm("_ZN4HPHP27f_forward_static_call_arrayERKNS_7VariantERKNS_5ArrayE"); -TypedValue * fg1_forward_static_call_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_forward_static_call_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_forward_static_call_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_forward_static_call_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToArrayInPlace(args-1); fh_forward_static_call_array((rv), (args-0), &args[-1].m_data); @@ -725,7 +725,7 @@ TypedValue * fg1_forward_static_call_array(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_forward_static_call_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_forward_static_call_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -768,7 +768,7 @@ _argv => rcx TypedValue* fh_forward_static_call(TypedValue* _rv, int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP21f_forward_static_callEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_forward_static_call(HPHP::VM::ActRec *ar) { +TypedValue* fg_forward_static_call(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -814,7 +814,7 @@ _rv => rdi TypedValue* fh_get_called_class(TypedValue* _rv) asm("_ZN4HPHP18f_get_called_classEv"); -TypedValue* fg_get_called_class(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_called_class(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -849,8 +849,8 @@ code => rdx Value* fh_create_function(Value* _rv, Value* args, Value* code) asm("_ZN4HPHP17f_create_functionERKNS_6StringES2_"); -TypedValue * fg1_create_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_create_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_create_function(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_create_function(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -864,7 +864,7 @@ TypedValue * fg1_create_function(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_create_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_create_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -906,8 +906,8 @@ arg_num => rsi TypedValue* fh_func_get_arg(TypedValue* _rv, int arg_num) asm("_ZN4HPHP14f_func_get_argEi"); -TypedValue * fg1_func_get_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_func_get_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_func_get_arg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_func_get_arg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_func_get_arg((rv), (int)(args[-0].m_data.num)); @@ -915,7 +915,7 @@ TypedValue * fg1_func_get_arg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_func_get_arg(HPHP::VM::ActRec *ar) { +TypedValue* fg_func_get_arg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -955,7 +955,7 @@ _rv => rdi TypedValue* fh_func_get_args(TypedValue* _rv) asm("_ZN4HPHP15f_func_get_argsEv"); -TypedValue* fg_func_get_args(HPHP::VM::ActRec *ar) { +TypedValue* fg_func_get_args(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -987,7 +987,7 @@ _ZN4HPHP15f_func_num_argsEv long fh_func_num_args() asm("_ZN4HPHP15f_func_num_argsEv"); -TypedValue* fg_func_num_args(HPHP::VM::ActRec *ar) { +TypedValue* fg_func_num_args(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1021,7 +1021,7 @@ _argv => rdx void fh_register_postsend_function(int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP28f_register_postsend_functionEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_register_postsend_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_register_postsend_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1069,7 +1069,7 @@ _argv => rdx void fh_register_shutdown_function(int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP28f_register_shutdown_functionEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_register_shutdown_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_register_shutdown_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1117,7 +1117,7 @@ _argv => rdx void fh_register_cleanup_function(int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP27f_register_cleanup_functionEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_register_cleanup_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_register_cleanup_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1166,7 +1166,7 @@ _argv => rdx bool fh_register_tick_function(int64_t _argc, TypedValue* function, Value* _argv) asm("_ZN4HPHP24f_register_tick_functionEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_register_tick_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_register_tick_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1211,7 +1211,7 @@ function_name => rdi void fh_unregister_tick_function(TypedValue* function_name) asm("_ZN4HPHP26f_unregister_tick_functionERKNS_7VariantE"); -TypedValue* fg_unregister_tick_function(HPHP::VM::ActRec *ar) { +TypedValue* fg_unregister_tick_function(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_function.h b/hphp/runtime/ext/ext_function.h index 651647189..e6cb3aee5 100644 --- a/hphp/runtime/ext/ext_function.h +++ b/hphp/runtime/ext/ext_function.h @@ -55,7 +55,7 @@ Variant func_get_arg(int num_args, CArrRef params, CArrRef args, int pos); * parameters to help the implementation. */ Variant f_func_get_args(); -Array hhvm_get_frame_args(const VM::ActRec* ar); +Array hhvm_get_frame_args(const ActRec* ar); Array func_get_args(int num_args, CArrRef params, CArrRef args); /** diff --git a/hphp/runtime/ext/ext_hash.ext_hhvm.cpp b/hphp/runtime/ext/ext_hash.ext_hhvm.cpp index 5216c6781..cf5dbbd58 100644 --- a/hphp/runtime/ext/ext_hash.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_hash.ext_hhvm.cpp @@ -37,8 +37,8 @@ raw_output => rcx TypedValue* fh_hash(TypedValue* _rv, Value* algo, Value* data, bool raw_output) asm("_ZN4HPHP6f_hashERKNS_6StringES2_b"); -TypedValue * fg1_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -59,7 +59,7 @@ TypedValue * fg1_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_hash(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -99,7 +99,7 @@ _rv => rdi Value* fh_hash_algos(Value* _rv) asm("_ZN4HPHP12f_hash_algosEv"); -TypedValue* fg_hash_algos(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_algos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -136,8 +136,8 @@ key => rcx TypedValue* fh_hash_init(TypedValue* _rv, Value* algo, int options, Value* key) asm("_ZN4HPHP11f_hash_initERKNS_6StringEiS2_"); -TypedValue * fg1_hash_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_init(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_init(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -159,7 +159,7 @@ TypedValue * fg1_hash_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_hash_init(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_init(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -202,8 +202,8 @@ raw_output => rcx TypedValue* fh_hash_file(TypedValue* _rv, Value* algo, Value* filename, bool raw_output) asm("_ZN4HPHP11f_hash_fileERKNS_6StringES2_b"); -TypedValue * fg1_hash_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -224,7 +224,7 @@ TypedValue * fg1_hash_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_hash_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -266,8 +266,8 @@ raw_output => rdx Value* fh_hash_final(Value* _rv, Value* context, bool raw_output) asm("_ZN4HPHP12f_hash_finalERKNS_6ObjectEb"); -TypedValue * fg1_hash_final(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_final(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_final(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_final(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -286,7 +286,7 @@ TypedValue * fg1_hash_final(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_hash_final(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_final(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -331,8 +331,8 @@ raw_output => r8 TypedValue* fh_hash_hmac_file(TypedValue* _rv, Value* algo, Value* filename, Value* key, bool raw_output) asm("_ZN4HPHP16f_hash_hmac_fileERKNS_6StringES2_S2_b"); -TypedValue * fg1_hash_hmac_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_hmac_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_hmac_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_hmac_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -356,7 +356,7 @@ TypedValue * fg1_hash_hmac_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_hash_hmac_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_hmac_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -400,8 +400,8 @@ raw_output => r8 TypedValue* fh_hash_hmac(TypedValue* _rv, Value* algo, Value* data, Value* key, bool raw_output) asm("_ZN4HPHP11f_hash_hmacERKNS_6StringES2_S2_b"); -TypedValue * fg1_hash_hmac(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_hmac(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_hmac(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_hmac(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -425,7 +425,7 @@ TypedValue * fg1_hash_hmac(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_hash_hmac(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_hmac(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -467,8 +467,8 @@ stream_context => rdx bool fh_hash_update_file(Value* init_context, Value* filename, Value* stream_context) asm("_ZN4HPHP18f_hash_update_fileERKNS_6ObjectERKNS_6StringES2_"); -TypedValue * fg1_hash_update_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_update_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_update_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_update_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -490,7 +490,7 @@ TypedValue * fg1_hash_update_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_hash_update_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_update_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -533,8 +533,8 @@ length => rdx long fh_hash_update_stream(Value* context, Value* handle, int length) asm("_ZN4HPHP20f_hash_update_streamERKNS_6ObjectES2_i"); -TypedValue * fg1_hash_update_stream(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_update_stream(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_update_stream(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_update_stream(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -555,7 +555,7 @@ TypedValue * fg1_hash_update_stream(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_hash_update_stream(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_update_stream(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -596,8 +596,8 @@ data => rsi bool fh_hash_update(Value* context, Value* data) asm("_ZN4HPHP13f_hash_updateERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hash_update(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hash_update(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hash_update(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hash_update(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -610,7 +610,7 @@ TypedValue * fg1_hash_update(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_hash_update(HPHP::VM::ActRec *ar) { +TypedValue* fg_hash_update(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -652,8 +652,8 @@ nPart => rdx long fh_furchash_hphp_ext(Value* key, int len, int nPart) asm("_ZN4HPHP19f_furchash_hphp_extERKNS_6StringEii"); -TypedValue * fg1_furchash_hphp_ext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_furchash_hphp_ext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_furchash_hphp_ext(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_furchash_hphp_ext(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-2)->m_type != KindOfInt64) { @@ -669,7 +669,7 @@ TypedValue * fg1_furchash_hphp_ext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_furchash_hphp_ext(HPHP::VM::ActRec *ar) { +TypedValue* fg_furchash_hphp_ext(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -708,7 +708,7 @@ _ZN4HPHP29f_furchash_hphp_ext_supportedEv bool fh_furchash_hphp_ext_supported() asm("_ZN4HPHP29f_furchash_hphp_ext_supportedEv"); -TypedValue* fg_furchash_hphp_ext_supported(HPHP::VM::ActRec *ar) { +TypedValue* fg_furchash_hphp_ext_supported(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -743,8 +743,8 @@ seed => rdx long fh_hphp_murmurhash(Value* key, int len, int seed) asm("_ZN4HPHP17f_hphp_murmurhashERKNS_6StringEii"); -TypedValue * fg1_hphp_murmurhash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_murmurhash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_murmurhash(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_murmurhash(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-2)->m_type != KindOfInt64) { @@ -760,7 +760,7 @@ TypedValue * fg1_hphp_murmurhash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_hphp_murmurhash(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_murmurhash(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_hotprofiler.ext_hhvm.cpp b/hphp/runtime/ext/ext_hotprofiler.ext_hhvm.cpp index c8c9507f2..d9fbc66ee 100644 --- a/hphp/runtime/ext/ext_hotprofiler.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_hotprofiler.ext_hhvm.cpp @@ -34,8 +34,8 @@ args => rsi void fh_xhprof_enable(int flags, Value* args) asm("_ZN4HPHP15f_xhprof_enableEiRKNS_5ArrayE"); -TypedValue * fg1_xhprof_enable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xhprof_enable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xhprof_enable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xhprof_enable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -55,7 +55,7 @@ TypedValue * fg1_xhprof_enable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_xhprof_enable(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_enable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -96,7 +96,7 @@ _rv => rdi TypedValue* fh_xhprof_disable(TypedValue* _rv) asm("_ZN4HPHP16f_xhprof_disableEv"); -TypedValue* fg_xhprof_disable(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_disable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -127,7 +127,7 @@ _ZN4HPHP23f_xhprof_network_enableEv void fh_xhprof_network_enable() asm("_ZN4HPHP23f_xhprof_network_enableEv"); -TypedValue* fg_xhprof_network_enable(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_network_enable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -161,7 +161,7 @@ _rv => rdi TypedValue* fh_xhprof_network_disable(TypedValue* _rv) asm("_ZN4HPHP24f_xhprof_network_disableEv"); -TypedValue* fg_xhprof_network_disable(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_network_disable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -193,8 +193,8 @@ name => rdi void fh_xhprof_frame_begin(Value* name) asm("_ZN4HPHP20f_xhprof_frame_beginERKNS_6StringE"); -TypedValue * fg1_xhprof_frame_begin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xhprof_frame_begin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xhprof_frame_begin(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xhprof_frame_begin(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -203,7 +203,7 @@ TypedValue * fg1_xhprof_frame_begin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_xhprof_frame_begin(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_frame_begin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -242,7 +242,7 @@ _ZN4HPHP18f_xhprof_frame_endEv void fh_xhprof_frame_end() asm("_ZN4HPHP18f_xhprof_frame_endEv"); -TypedValue* fg_xhprof_frame_end(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_frame_end(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -278,8 +278,8 @@ flags => rdx TypedValue* fh_xhprof_run_trace(TypedValue* _rv, Value* packedTrace, int flags) asm("_ZN4HPHP18f_xhprof_run_traceERKNS_6StringEi"); -TypedValue * fg1_xhprof_run_trace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xhprof_run_trace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xhprof_run_trace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xhprof_run_trace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -292,7 +292,7 @@ TypedValue * fg1_xhprof_run_trace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xhprof_run_trace(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_run_trace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -330,7 +330,7 @@ _ZN4HPHP22f_xhprof_sample_enableEv void fh_xhprof_sample_enable() asm("_ZN4HPHP22f_xhprof_sample_enableEv"); -TypedValue* fg_xhprof_sample_enable(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_sample_enable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -364,7 +364,7 @@ _rv => rdi TypedValue* fh_xhprof_sample_disable(TypedValue* _rv) asm("_ZN4HPHP23f_xhprof_sample_disableEv"); -TypedValue* fg_xhprof_sample_disable(HPHP::VM::ActRec *ar) { +TypedValue* fg_xhprof_sample_disable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -396,7 +396,7 @@ callback => rdi void fh_fb_setprofile(TypedValue* callback) asm("_ZN4HPHP15f_fb_setprofileERKNS_7VariantE"); -TypedValue* fg_fb_setprofile(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_setprofile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_iconv.ext_hhvm.cpp b/hphp/runtime/ext/ext_iconv.ext_hhvm.cpp index 5ea7d5ce6..02e233ddf 100644 --- a/hphp/runtime/ext/ext_iconv.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_iconv.ext_hhvm.cpp @@ -37,8 +37,8 @@ preferences => rcx TypedValue* fh_iconv_mime_encode(TypedValue* _rv, Value* field_name, Value* field_value, TypedValue* preferences) asm("_ZN4HPHP19f_iconv_mime_encodeERKNS_6StringES2_RKNS_7VariantE"); -TypedValue * fg1_iconv_mime_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_mime_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_mime_encode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_mime_encode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -56,7 +56,7 @@ TypedValue * fg1_iconv_mime_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_iconv_mime_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_mime_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -99,8 +99,8 @@ charset => rcx TypedValue* fh_iconv_mime_decode(TypedValue* _rv, Value* encoded_string, int mode, Value* charset) asm("_ZN4HPHP19f_iconv_mime_decodeERKNS_6StringEiS2_"); -TypedValue * fg1_iconv_mime_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_mime_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_mime_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_mime_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -122,7 +122,7 @@ TypedValue * fg1_iconv_mime_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_iconv_mime_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_mime_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -165,8 +165,8 @@ charset => rcx TypedValue* fh_iconv_mime_decode_headers(TypedValue* _rv, Value* encoded_headers, int mode, Value* charset) asm("_ZN4HPHP27f_iconv_mime_decode_headersERKNS_6StringEiS2_"); -TypedValue * fg1_iconv_mime_decode_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_mime_decode_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_mime_decode_headers(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_mime_decode_headers(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -188,7 +188,7 @@ TypedValue * fg1_iconv_mime_decode_headers(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_iconv_mime_decode_headers(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_mime_decode_headers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -229,8 +229,8 @@ type => rsi TypedValue* fh_iconv_get_encoding(TypedValue* _rv, Value* type) asm("_ZN4HPHP20f_iconv_get_encodingERKNS_6StringE"); -TypedValue * fg1_iconv_get_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_get_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_get_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_get_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); String defVal0 = "all"; @@ -239,7 +239,7 @@ TypedValue * fg1_iconv_get_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_iconv_get_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_get_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -281,8 +281,8 @@ charset => rsi bool fh_iconv_set_encoding(Value* type, Value* charset) asm("_ZN4HPHP20f_iconv_set_encodingERKNS_6StringES2_"); -TypedValue * fg1_iconv_set_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_set_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_set_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_set_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -295,7 +295,7 @@ TypedValue * fg1_iconv_set_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_iconv_set_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_set_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -338,8 +338,8 @@ str => rcx TypedValue* fh_iconv(TypedValue* _rv, Value* in_charset, Value* out_charset, Value* str) asm("_ZN4HPHP7f_iconvERKNS_6StringES2_S2_"); -TypedValue * fg1_iconv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -355,7 +355,7 @@ TypedValue * fg1_iconv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_iconv(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -397,8 +397,8 @@ charset => rdx TypedValue* fh_iconv_strlen(TypedValue* _rv, Value* str, Value* charset) asm("_ZN4HPHP14f_iconv_strlenERKNS_6StringES2_"); -TypedValue * fg1_iconv_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_strlen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_strlen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -416,7 +416,7 @@ TypedValue * fg1_iconv_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_iconv_strlen(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_strlen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -460,8 +460,8 @@ charset => r8 TypedValue* fh_iconv_strpos(TypedValue* _rv, Value* haystack, Value* needle, int offset, Value* charset) asm("_ZN4HPHP14f_iconv_strposERKNS_6StringES2_iS2_"); -TypedValue * fg1_iconv_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_strpos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_strpos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -486,7 +486,7 @@ TypedValue * fg1_iconv_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_iconv_strpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_strpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -529,8 +529,8 @@ charset => rcx TypedValue* fh_iconv_strrpos(TypedValue* _rv, Value* haystack, Value* needle, Value* charset) asm("_ZN4HPHP15f_iconv_strrposERKNS_6StringES2_S2_"); -TypedValue * fg1_iconv_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_strrpos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_strrpos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -551,7 +551,7 @@ TypedValue * fg1_iconv_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_iconv_strrpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_strrpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -595,8 +595,8 @@ charset => r8 TypedValue* fh_iconv_substr(TypedValue* _rv, Value* str, int offset, int length, Value* charset) asm("_ZN4HPHP14f_iconv_substrERKNS_6StringEiiS2_"); -TypedValue * fg1_iconv_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iconv_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iconv_substr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iconv_substr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -621,7 +621,7 @@ TypedValue * fg1_iconv_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_iconv_substr(HPHP::VM::ActRec *ar) { +TypedValue* fg_iconv_substr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -663,8 +663,8 @@ status => rdx Value* fh_ob_iconv_handler(Value* _rv, Value* contents, int status) asm("_ZN4HPHP18f_ob_iconv_handlerERKNS_6StringEi"); -TypedValue * fg1_ob_iconv_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ob_iconv_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ob_iconv_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ob_iconv_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if ((args-1)->m_type != KindOfInt64) { @@ -678,7 +678,7 @@ TypedValue * fg1_ob_iconv_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ob_iconv_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_iconv_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_icu.ext_hhvm.cpp b/hphp/runtime/ext/ext_icu.ext_hhvm.cpp index 2c7709190..e4ef06a63 100644 --- a/hphp/runtime/ext/ext_icu.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_icu.ext_hhvm.cpp @@ -38,8 +38,8 @@ flags => r8 TypedValue* fh_icu_match(TypedValue* _rv, Value* pattern, Value* subject, TypedValue* matches, long flags) asm("_ZN4HPHP11f_icu_matchERKNS_6StringES2_RKNS_14VRefParamValueEl"); -TypedValue * fg1_icu_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_icu_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_icu_match(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_icu_match(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -62,7 +62,7 @@ TypedValue * fg1_icu_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_icu_match(HPHP::VM::ActRec *ar) { +TypedValue* fg_icu_match(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -105,8 +105,8 @@ remove_accents => rdx Value* fh_icu_transliterate(Value* _rv, Value* str, bool remove_accents) asm("_ZN4HPHP19f_icu_transliterateERKNS_6StringEb"); -TypedValue * fg1_icu_transliterate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_icu_transliterate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_icu_transliterate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_icu_transliterate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if ((args-1)->m_type != KindOfBoolean) { @@ -120,7 +120,7 @@ TypedValue * fg1_icu_transliterate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_icu_transliterate(HPHP::VM::ActRec *ar) { +TypedValue* fg_icu_transliterate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -162,8 +162,8 @@ text => rsi Value* fh_icu_tokenize(Value* _rv, Value* text) asm("_ZN4HPHP14f_icu_tokenizeERKNS_6StringE"); -TypedValue * fg1_icu_tokenize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_icu_tokenize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_icu_tokenize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_icu_tokenize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -172,7 +172,7 @@ TypedValue * fg1_icu_tokenize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_icu_tokenize(HPHP::VM::ActRec *ar) { +TypedValue* fg_icu_tokenize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_icu_ucnv.ext_hhvm.cpp b/hphp/runtime/ext/ext_icu_ucnv.ext_hhvm.cpp index 8d7c2f2fd..8c2c73818 100644 --- a/hphp/runtime/ext/ext_icu_ucnv.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_icu_ucnv.ext_hhvm.cpp @@ -45,8 +45,8 @@ fromEncoding => rdx void th_10UConverter___construct(ObjectData* this_, Value* toEncoding, Value* fromEncoding) asm("_ZN4HPHP12c_UConverter13t___constructERKNS_6StringES3_"); -TypedValue* tg1_10UConverter___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10UConverter___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -68,7 +68,7 @@ TypedValue* tg1_10UConverter___construct(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10UConverter___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -115,7 +115,7 @@ this_ => rsi TypedValue* th_10UConverter___destruct(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_UConverter12t___destructEv"); -TypedValue* tg_10UConverter___destruct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter___destruct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -152,7 +152,7 @@ this_ => rsi Value* th_10UConverter_getSourceEncoding(Value* _rv, ObjectData* this_) asm("_ZN4HPHP12c_UConverter19t_getsourceencodingEv"); -TypedValue* tg_10UConverter_getSourceEncoding(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getSourceEncoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -189,8 +189,8 @@ encoding => rsi void th_10UConverter_setSourceEncoding(ObjectData* this_, Value* encoding) asm("_ZN4HPHP12c_UConverter19t_setsourceencodingERKNS_6StringE"); -TypedValue* tg1_10UConverter_setSourceEncoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_setSourceEncoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10UConverter_setSourceEncoding(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_setSourceEncoding(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -199,7 +199,7 @@ TypedValue* tg1_10UConverter_setSourceEncoding(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_10UConverter_setSourceEncoding(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_setSourceEncoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -244,7 +244,7 @@ this_ => rsi Value* th_10UConverter_getDestinationEncoding(Value* _rv, ObjectData* this_) asm("_ZN4HPHP12c_UConverter24t_getdestinationencodingEv"); -TypedValue* tg_10UConverter_getDestinationEncoding(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getDestinationEncoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -281,8 +281,8 @@ encoding => rsi void th_10UConverter_setDestinationEncoding(ObjectData* this_, Value* encoding) asm("_ZN4HPHP12c_UConverter24t_setdestinationencodingERKNS_6StringE"); -TypedValue* tg1_10UConverter_setDestinationEncoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_setDestinationEncoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10UConverter_setDestinationEncoding(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_setDestinationEncoding(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -291,7 +291,7 @@ TypedValue* tg1_10UConverter_setDestinationEncoding(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* tg_10UConverter_setDestinationEncoding(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_setDestinationEncoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -335,7 +335,7 @@ this_ => rdi long th_10UConverter_getSourceType(ObjectData* this_) asm("_ZN4HPHP12c_UConverter15t_getsourcetypeEv"); -TypedValue* tg_10UConverter_getSourceType(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getSourceType(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -371,7 +371,7 @@ this_ => rdi long th_10UConverter_getDestinationType(ObjectData* this_) asm("_ZN4HPHP12c_UConverter20t_getdestinationtypeEv"); -TypedValue* tg_10UConverter_getDestinationType(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getDestinationType(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -408,7 +408,7 @@ this_ => rsi Value* th_10UConverter_getSubstChars(Value* _rv, ObjectData* this_) asm("_ZN4HPHP12c_UConverter15t_getsubstcharsEv"); -TypedValue* tg_10UConverter_getSubstChars(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getSubstChars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -446,8 +446,8 @@ chars => rsi bool th_10UConverter_setSubstChars(ObjectData* this_, Value* chars) asm("_ZN4HPHP12c_UConverter15t_setsubstcharsERKNS_6StringE"); -TypedValue* tg1_10UConverter_setSubstChars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_setSubstChars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10UConverter_setSubstChars(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_setSubstChars(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -455,7 +455,7 @@ TypedValue* tg1_10UConverter_setSubstChars(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10UConverter_setSubstChars(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_setSubstChars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -503,8 +503,8 @@ error => r9 TypedValue* th_10UConverter_fromUCallback(TypedValue* _rv, ObjectData* this_, long reason, Value* source, long codepoint, TypedValue* error) asm("_ZN4HPHP12c_UConverter15t_fromucallbackElRKNS_5ArrayElRKNS_14VRefParamValueE"); -TypedValue* tg1_10UConverter_fromUCallback(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_fromUCallback(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10UConverter_fromUCallback(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_fromUCallback(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -520,7 +520,7 @@ TypedValue* tg1_10UConverter_fromUCallback(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10UConverter_fromUCallback(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_fromUCallback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -568,8 +568,8 @@ error => r9 TypedValue* th_10UConverter_toUCallback(TypedValue* _rv, ObjectData* this_, long reason, Value* source, Value* codeunits, TypedValue* error) asm("_ZN4HPHP12c_UConverter13t_toucallbackElRKNS_6StringES3_RKNS_14VRefParamValueE"); -TypedValue* tg1_10UConverter_toUCallback(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_toUCallback(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10UConverter_toUCallback(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_toUCallback(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -585,7 +585,7 @@ TypedValue* tg1_10UConverter_toUCallback(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10UConverter_toUCallback(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_toUCallback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -631,8 +631,8 @@ reverse => rcx TypedValue* th_10UConverter_convert(TypedValue* _rv, ObjectData* this_, Value* str, bool reverse) asm("_ZN4HPHP12c_UConverter9t_convertERKNS_6StringEb"); -TypedValue* tg1_10UConverter_convert(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_convert(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10UConverter_convert(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_convert(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -650,7 +650,7 @@ TypedValue* tg1_10UConverter_convert(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_10UConverter_convert(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_convert(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -698,8 +698,8 @@ options => r9 TypedValue* th_10UConverter_transcode(TypedValue* _rv, char const* cls_, Value* str, Value* toEncoding, Value* fromEncoding, Value* options) asm("_ZN4HPHP12c_UConverter12ti_transcodeEPKcRKNS_6StringES5_S5_RKNS_5ArrayE"); -TypedValue* tg1_10UConverter_transcode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_transcode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_10UConverter_transcode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_transcode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -724,7 +724,7 @@ TypedValue* tg1_10UConverter_transcode(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_10UConverter_transcode(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_transcode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -763,7 +763,7 @@ this_ => rdi long th_10UConverter_getErrorCode(ObjectData* this_) asm("_ZN4HPHP12c_UConverter14t_geterrorcodeEv"); -TypedValue* tg_10UConverter_getErrorCode(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getErrorCode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -800,7 +800,7 @@ this_ => rsi Value* th_10UConverter_getErrorMessage(Value* _rv, ObjectData* this_) asm("_ZN4HPHP12c_UConverter17t_geterrormessageEv"); -TypedValue* tg_10UConverter_getErrorMessage(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getErrorMessage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -839,8 +839,8 @@ reason => rdx Value* th_10UConverter_reasonText(Value* _rv, char const* cls_, long reason) asm("_ZN4HPHP12c_UConverter13ti_reasontextEPKcl"); -TypedValue* tg1_10UConverter_reasonText(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_reasonText(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_10UConverter_reasonText(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_reasonText(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -849,7 +849,7 @@ TypedValue* tg1_10UConverter_reasonText(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_10UConverter_reasonText(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_reasonText(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -889,7 +889,7 @@ cls_ => rsi Value* th_10UConverter_getAvailable(Value* _rv, char const* cls_) asm("_ZN4HPHP12c_UConverter15ti_getavailableEPKc"); -TypedValue* tg_10UConverter_getAvailable(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getAvailable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -923,8 +923,8 @@ encoding => rdx Value* th_10UConverter_getAliases(Value* _rv, char const* cls_, Value* encoding) asm("_ZN4HPHP12c_UConverter13ti_getaliasesEPKcRKNS_6StringE"); -TypedValue* tg1_10UConverter_getAliases(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_getAliases(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_10UConverter_getAliases(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_getAliases(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -933,7 +933,7 @@ TypedValue* tg1_10UConverter_getAliases(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_10UConverter_getAliases(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getAliases(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -973,7 +973,7 @@ cls_ => rsi Value* th_10UConverter_getStandards(Value* _rv, char const* cls_) asm("_ZN4HPHP12c_UConverter15ti_getstandardsEPKc"); -TypedValue* tg_10UConverter_getStandards(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getStandards(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1008,8 +1008,8 @@ standard => rcx Value* th_10UConverter_getStandardName(Value* _rv, char const* cls_, Value* name, Value* standard) asm("_ZN4HPHP12c_UConverter18ti_getstandardnameEPKcRKNS_6StringES5_"); -TypedValue* tg1_10UConverter_getStandardName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_getStandardName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_10UConverter_getStandardName(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_getStandardName(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1023,7 +1023,7 @@ TypedValue* tg1_10UConverter_getStandardName(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_10UConverter_getStandardName(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getStandardName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1064,8 +1064,8 @@ name => rdx Value* th_10UConverter_getMIMEName(Value* _rv, char const* cls_, Value* name) asm("_ZN4HPHP12c_UConverter14ti_getmimenameEPKcRKNS_6StringE"); -TypedValue* tg1_10UConverter_getMIMEName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_10UConverter_getMIMEName(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_10UConverter_getMIMEName(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_10UConverter_getMIMEName(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1074,7 +1074,7 @@ TypedValue* tg1_10UConverter_getMIMEName(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10UConverter_getMIMEName(HPHP::VM::ActRec *ar) { +TypedValue* tg_10UConverter_getMIMEName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_icu_ucsdet.ext_hhvm.cpp b/hphp/runtime/ext/ext_icu_ucsdet.ext_hhvm.cpp index 92a59d7b0..7707151ce 100644 --- a/hphp/runtime/ext/ext_icu_ucsdet.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_icu_ucsdet.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_16EncodingDetector___construct(ObjectData* this_) asm("_ZN4HPHP18c_EncodingDetector13t___constructEv"); -TypedValue* tg_16EncodingDetector___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_16EncodingDetector___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -80,8 +80,8 @@ text => rsi void th_16EncodingDetector_setText(ObjectData* this_, Value* text) asm("_ZN4HPHP18c_EncodingDetector9t_settextERKNS_6StringE"); -TypedValue* tg1_16EncodingDetector_setText(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16EncodingDetector_setText(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16EncodingDetector_setText(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16EncodingDetector_setText(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -90,7 +90,7 @@ TypedValue* tg1_16EncodingDetector_setText(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_16EncodingDetector_setText(HPHP::VM::ActRec *ar) { +TypedValue* tg_16EncodingDetector_setText(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -134,8 +134,8 @@ text => rsi void th_16EncodingDetector_setDeclaredEncoding(ObjectData* this_, Value* text) asm("_ZN4HPHP18c_EncodingDetector21t_setdeclaredencodingERKNS_6StringE"); -TypedValue* tg1_16EncodingDetector_setDeclaredEncoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16EncodingDetector_setDeclaredEncoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16EncodingDetector_setDeclaredEncoding(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16EncodingDetector_setDeclaredEncoding(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -144,7 +144,7 @@ TypedValue* tg1_16EncodingDetector_setDeclaredEncoding(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* tg_16EncodingDetector_setDeclaredEncoding(HPHP::VM::ActRec *ar) { +TypedValue* tg_16EncodingDetector_setDeclaredEncoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -189,7 +189,7 @@ this_ => rsi Value* th_16EncodingDetector_detect(Value* _rv, ObjectData* this_) asm("_ZN4HPHP18c_EncodingDetector8t_detectEv"); -TypedValue* tg_16EncodingDetector_detect(HPHP::VM::ActRec *ar) { +TypedValue* tg_16EncodingDetector_detect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -227,7 +227,7 @@ this_ => rsi Value* th_16EncodingDetector_detectAll(Value* _rv, ObjectData* this_) asm("_ZN4HPHP18c_EncodingDetector11t_detectallEv"); -TypedValue* tg_16EncodingDetector_detectAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_16EncodingDetector_detectAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -273,7 +273,7 @@ this_ => rdi void th_13EncodingMatch___construct(ObjectData* this_) asm("_ZN4HPHP15c_EncodingMatch13t___constructEv"); -TypedValue* tg_13EncodingMatch___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_13EncodingMatch___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -310,7 +310,7 @@ this_ => rdi bool th_13EncodingMatch_isValid(ObjectData* this_) asm("_ZN4HPHP15c_EncodingMatch9t_isvalidEv"); -TypedValue* tg_13EncodingMatch_isValid(HPHP::VM::ActRec *ar) { +TypedValue* tg_13EncodingMatch_isValid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -347,7 +347,7 @@ this_ => rsi Value* th_13EncodingMatch_getEncoding(Value* _rv, ObjectData* this_) asm("_ZN4HPHP15c_EncodingMatch13t_getencodingEv"); -TypedValue* tg_13EncodingMatch_getEncoding(HPHP::VM::ActRec *ar) { +TypedValue* tg_13EncodingMatch_getEncoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -384,7 +384,7 @@ this_ => rdi long th_13EncodingMatch_getConfidence(ObjectData* this_) asm("_ZN4HPHP15c_EncodingMatch15t_getconfidenceEv"); -TypedValue* tg_13EncodingMatch_getConfidence(HPHP::VM::ActRec *ar) { +TypedValue* tg_13EncodingMatch_getConfidence(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -421,7 +421,7 @@ this_ => rsi Value* th_13EncodingMatch_getLanguage(Value* _rv, ObjectData* this_) asm("_ZN4HPHP15c_EncodingMatch13t_getlanguageEv"); -TypedValue* tg_13EncodingMatch_getLanguage(HPHP::VM::ActRec *ar) { +TypedValue* tg_13EncodingMatch_getLanguage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -459,7 +459,7 @@ this_ => rsi Value* th_13EncodingMatch_getUTF8(Value* _rv, ObjectData* this_) asm("_ZN4HPHP15c_EncodingMatch9t_getutf8Ev"); -TypedValue* tg_13EncodingMatch_getUTF8(HPHP::VM::ActRec *ar) { +TypedValue* tg_13EncodingMatch_getUTF8(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_icu_uspoof.ext_hhvm.cpp b/hphp/runtime/ext/ext_icu_uspoof.ext_hhvm.cpp index 7de0a6e3b..392f8cd6d 100644 --- a/hphp/runtime/ext/ext_icu_uspoof.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_icu_uspoof.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_12SpoofChecker___construct(ObjectData* this_) asm("_ZN4HPHP14c_SpoofChecker13t___constructEv"); -TypedValue* tg_12SpoofChecker___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_12SpoofChecker___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -82,8 +82,8 @@ issuesFound => rdx bool th_12SpoofChecker_isSuspicious(ObjectData* this_, Value* text, TypedValue* issuesFound) asm("_ZN4HPHP14c_SpoofChecker14t_issuspiciousERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue* tg1_12SpoofChecker_isSuspicious(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12SpoofChecker_isSuspicious(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12SpoofChecker_isSuspicious(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12SpoofChecker_isSuspicious(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -92,7 +92,7 @@ TypedValue* tg1_12SpoofChecker_isSuspicious(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_12SpoofChecker_isSuspicious(HPHP::VM::ActRec *ar) { +TypedValue* tg_12SpoofChecker_isSuspicious(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -139,8 +139,8 @@ issuesFound => rcx bool th_12SpoofChecker_areConfusable(ObjectData* this_, Value* s1, Value* s2, TypedValue* issuesFound) asm("_ZN4HPHP14c_SpoofChecker15t_areconfusableERKNS_6StringES3_RKNS_14VRefParamValueE"); -TypedValue* tg1_12SpoofChecker_areConfusable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12SpoofChecker_areConfusable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12SpoofChecker_areConfusable(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12SpoofChecker_areConfusable(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -159,7 +159,7 @@ TypedValue* tg1_12SpoofChecker_areConfusable(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_12SpoofChecker_areConfusable(HPHP::VM::ActRec *ar) { +TypedValue* tg_12SpoofChecker_areConfusable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -203,8 +203,8 @@ localesList => rsi void th_12SpoofChecker_setAllowedLocales(ObjectData* this_, Value* localesList) asm("_ZN4HPHP14c_SpoofChecker19t_setallowedlocalesERKNS_6StringE"); -TypedValue* tg1_12SpoofChecker_setAllowedLocales(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12SpoofChecker_setAllowedLocales(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12SpoofChecker_setAllowedLocales(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12SpoofChecker_setAllowedLocales(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -213,7 +213,7 @@ TypedValue* tg1_12SpoofChecker_setAllowedLocales(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_12SpoofChecker_setAllowedLocales(HPHP::VM::ActRec *ar) { +TypedValue* tg_12SpoofChecker_setAllowedLocales(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -257,8 +257,8 @@ checks => rsi void th_12SpoofChecker_setChecks(ObjectData* this_, int checks) asm("_ZN4HPHP14c_SpoofChecker11t_setchecksEi"); -TypedValue* tg1_12SpoofChecker_setChecks(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12SpoofChecker_setChecks(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12SpoofChecker_setChecks(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12SpoofChecker_setChecks(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -267,7 +267,7 @@ TypedValue* tg1_12SpoofChecker_setChecks(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_12SpoofChecker_setChecks(HPHP::VM::ActRec *ar) { +TypedValue* tg_12SpoofChecker_setChecks(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_image.ext_hhvm.cpp b/hphp/runtime/ext/ext_image.ext_hhvm.cpp index 20ec9558f..6af8f3c87 100644 --- a/hphp/runtime/ext/ext_image.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_image.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi Value* fh_gd_info(Value* _rv) asm("_ZN4HPHP9f_gd_infoEv"); -TypedValue* fg_gd_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_gd_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -70,8 +70,8 @@ imageinfo => rdx TypedValue* fh_getimagesize(TypedValue* _rv, Value* filename, TypedValue* imageinfo) asm("_ZN4HPHP14f_getimagesizeERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_getimagesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getimagesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getimagesize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getimagesize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); VRefParamValue defVal1 = uninit_null(); @@ -80,7 +80,7 @@ TypedValue * fg1_getimagesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_getimagesize(HPHP::VM::ActRec *ar) { +TypedValue* fg_getimagesize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -123,8 +123,8 @@ include_dot => rdx Value* fh_image_type_to_extension(Value* _rv, int imagetype, bool include_dot) asm("_ZN4HPHP25f_image_type_to_extensionEib"); -TypedValue * fg1_image_type_to_extension(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_image_type_to_extension(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_image_type_to_extension(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_image_type_to_extension(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -143,7 +143,7 @@ TypedValue * fg1_image_type_to_extension(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_image_type_to_extension(HPHP::VM::ActRec *ar) { +TypedValue* fg_image_type_to_extension(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -185,8 +185,8 @@ imagetype => rsi Value* fh_image_type_to_mime_type(Value* _rv, int imagetype) asm("_ZN4HPHP25f_image_type_to_mime_typeEi"); -TypedValue * fg1_image_type_to_mime_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_image_type_to_mime_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_image_type_to_mime_type(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_image_type_to_mime_type(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -195,7 +195,7 @@ TypedValue * fg1_image_type_to_mime_type(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_image_type_to_mime_type(HPHP::VM::ActRec *ar) { +TypedValue* fg_image_type_to_mime_type(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -238,8 +238,8 @@ threshold => rdx bool fh_image2wbmp(Value* image, Value* filename, int threshold) asm("_ZN4HPHP12f_image2wbmpERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_image2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_image2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_image2wbmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_image2wbmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -261,7 +261,7 @@ TypedValue * fg1_image2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_image2wbmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_image2wbmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -302,8 +302,8 @@ blendmode => rsi bool fh_imagealphablending(Value* image, bool blendmode) asm("_ZN4HPHP20f_imagealphablendingERKNS_6ObjectEb"); -TypedValue * fg1_imagealphablending(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagealphablending(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagealphablending(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagealphablending(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfBoolean) { @@ -316,7 +316,7 @@ TypedValue * fg1_imagealphablending(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagealphablending(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagealphablending(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -357,8 +357,8 @@ on => rsi bool fh_imageantialias(Value* image, bool on) asm("_ZN4HPHP16f_imageantialiasERKNS_6ObjectEb"); -TypedValue * fg1_imageantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageantialias(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageantialias(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfBoolean) { @@ -371,7 +371,7 @@ TypedValue * fg1_imageantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imageantialias(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageantialias(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -418,8 +418,8 @@ color => st8 bool fh_imagearc(Value* image, int cx, int cy, int width, int height, int start, int end, int color) asm("_ZN4HPHP10f_imagearcERKNS_6ObjectEiiiiiii"); -TypedValue * fg1_imagearc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagearc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagearc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagearc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-7)->m_type != KindOfInt64) { @@ -450,7 +450,7 @@ TypedValue * fg1_imagearc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagearc(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagearc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -495,8 +495,8 @@ color => r9 bool fh_imagechar(Value* image, int font, int x, int y, Value* c, int color) asm("_ZN4HPHP11f_imagecharERKNS_6ObjectEiiiRKNS_6StringEi"); -TypedValue * fg1_imagechar(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagechar(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagechar(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagechar(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -521,7 +521,7 @@ TypedValue * fg1_imagechar(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imagechar(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagechar(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -566,8 +566,8 @@ color => r9 bool fh_imagecharup(Value* image, int font, int x, int y, Value* c, int color) asm("_ZN4HPHP13f_imagecharupERKNS_6ObjectEiiiRKNS_6StringEi"); -TypedValue * fg1_imagecharup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecharup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecharup(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecharup(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -592,7 +592,7 @@ TypedValue * fg1_imagecharup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagecharup(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecharup(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -636,8 +636,8 @@ blue => r8 TypedValue* fh_imagecolorallocate(TypedValue* _rv, Value* image, int red, int green, int blue) asm("_ZN4HPHP20f_imagecolorallocateERKNS_6ObjectEiii"); -TypedValue * fg1_imagecolorallocate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorallocate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorallocate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorallocate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -656,7 +656,7 @@ TypedValue * fg1_imagecolorallocate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecolorallocate(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorallocate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -701,8 +701,8 @@ alpha => r9 TypedValue* fh_imagecolorallocatealpha(TypedValue* _rv, Value* image, int red, int green, int blue, int alpha) asm("_ZN4HPHP25f_imagecolorallocatealphaERKNS_6ObjectEiiii"); -TypedValue * fg1_imagecolorallocatealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorallocatealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorallocatealpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorallocatealpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-4)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-4); @@ -724,7 +724,7 @@ TypedValue * fg1_imagecolorallocatealpha(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_imagecolorallocatealpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorallocatealpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -767,8 +767,8 @@ y => rcx TypedValue* fh_imagecolorat(TypedValue* _rv, Value* image, int x, int y) asm("_ZN4HPHP14f_imagecoloratERKNS_6ObjectEii"); -TypedValue * fg1_imagecolorat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -784,7 +784,7 @@ TypedValue * fg1_imagecolorat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imagecolorat(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -828,8 +828,8 @@ blue => r8 TypedValue* fh_imagecolorclosest(TypedValue* _rv, Value* image, int red, int green, int blue) asm("_ZN4HPHP19f_imagecolorclosestERKNS_6ObjectEiii"); -TypedValue * fg1_imagecolorclosest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorclosest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorclosest(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorclosest(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -848,7 +848,7 @@ TypedValue * fg1_imagecolorclosest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagecolorclosest(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorclosest(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -893,8 +893,8 @@ alpha => r9 TypedValue* fh_imagecolorclosestalpha(TypedValue* _rv, Value* image, int red, int green, int blue, int alpha) asm("_ZN4HPHP24f_imagecolorclosestalphaERKNS_6ObjectEiiii"); -TypedValue * fg1_imagecolorclosestalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorclosestalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorclosestalpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorclosestalpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-4)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-4); @@ -916,7 +916,7 @@ TypedValue * fg1_imagecolorclosestalpha(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_imagecolorclosestalpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorclosestalpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -960,8 +960,8 @@ blue => r8 TypedValue* fh_imagecolorclosesthwb(TypedValue* _rv, Value* image, int red, int green, int blue) asm("_ZN4HPHP22f_imagecolorclosesthwbERKNS_6ObjectEiii"); -TypedValue * fg1_imagecolorclosesthwb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorclosesthwb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorclosesthwb(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorclosesthwb(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -980,7 +980,7 @@ TypedValue * fg1_imagecolorclosesthwb(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_imagecolorclosesthwb(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorclosesthwb(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1021,8 +1021,8 @@ color => rsi bool fh_imagecolordeallocate(Value* image, int color) asm("_ZN4HPHP22f_imagecolordeallocateERKNS_6ObjectEi"); -TypedValue * fg1_imagecolordeallocate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolordeallocate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolordeallocate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolordeallocate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1035,7 +1035,7 @@ TypedValue * fg1_imagecolordeallocate(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_imagecolordeallocate(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolordeallocate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1079,8 +1079,8 @@ blue => r8 TypedValue* fh_imagecolorexact(TypedValue* _rv, Value* image, int red, int green, int blue) asm("_ZN4HPHP17f_imagecolorexactERKNS_6ObjectEiii"); -TypedValue * fg1_imagecolorexact(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorexact(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorexact(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorexact(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -1099,7 +1099,7 @@ TypedValue * fg1_imagecolorexact(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imagecolorexact(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorexact(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1144,8 +1144,8 @@ alpha => r9 TypedValue* fh_imagecolorexactalpha(TypedValue* _rv, Value* image, int red, int green, int blue, int alpha) asm("_ZN4HPHP22f_imagecolorexactalphaERKNS_6ObjectEiiii"); -TypedValue * fg1_imagecolorexactalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorexactalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorexactalpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorexactalpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-4)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-4); @@ -1167,7 +1167,7 @@ TypedValue * fg1_imagecolorexactalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_imagecolorexactalpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorexactalpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1209,8 +1209,8 @@ image2 => rdx TypedValue* fh_imagecolormatch(TypedValue* _rv, Value* image1, Value* image2) asm("_ZN4HPHP17f_imagecolormatchERKNS_6ObjectES2_"); -TypedValue * fg1_imagecolormatch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolormatch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolormatch(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolormatch(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1223,7 +1223,7 @@ TypedValue * fg1_imagecolormatch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imagecolormatch(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolormatch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1267,8 +1267,8 @@ blue => r8 TypedValue* fh_imagecolorresolve(TypedValue* _rv, Value* image, int red, int green, int blue) asm("_ZN4HPHP19f_imagecolorresolveERKNS_6ObjectEiii"); -TypedValue * fg1_imagecolorresolve(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorresolve(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorresolve(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorresolve(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -1287,7 +1287,7 @@ TypedValue * fg1_imagecolorresolve(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagecolorresolve(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorresolve(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1332,8 +1332,8 @@ alpha => r9 TypedValue* fh_imagecolorresolvealpha(TypedValue* _rv, Value* image, int red, int green, int blue, int alpha) asm("_ZN4HPHP24f_imagecolorresolvealphaERKNS_6ObjectEiiii"); -TypedValue * fg1_imagecolorresolvealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorresolvealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorresolvealpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorresolvealpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-4)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-4); @@ -1355,7 +1355,7 @@ TypedValue * fg1_imagecolorresolvealpha(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_imagecolorresolvealpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorresolvealpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1400,8 +1400,8 @@ blue => r9 TypedValue* fh_imagecolorset(TypedValue* _rv, Value* image, int index, int red, int green, int blue) asm("_ZN4HPHP15f_imagecolorsetERKNS_6ObjectEiiii"); -TypedValue * fg1_imagecolorset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorset(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorset(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-4)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-4); @@ -1423,7 +1423,7 @@ TypedValue * fg1_imagecolorset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imagecolorset(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1465,8 +1465,8 @@ index => rdx TypedValue* fh_imagecolorsforindex(TypedValue* _rv, Value* image, int index) asm("_ZN4HPHP21f_imagecolorsforindexERKNS_6ObjectEi"); -TypedValue * fg1_imagecolorsforindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorsforindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorsforindex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorsforindex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -1479,7 +1479,7 @@ TypedValue * fg1_imagecolorsforindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imagecolorsforindex(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorsforindex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1520,8 +1520,8 @@ image => rsi TypedValue* fh_imagecolorstotal(TypedValue* _rv, Value* image) asm("_ZN4HPHP18f_imagecolorstotalERKNS_6ObjectE"); -TypedValue * fg1_imagecolorstotal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolorstotal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolorstotal(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolorstotal(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imagecolorstotal((rv), &args[-0].m_data); @@ -1529,7 +1529,7 @@ TypedValue * fg1_imagecolorstotal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagecolorstotal(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolorstotal(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1571,8 +1571,8 @@ color => rdx TypedValue* fh_imagecolortransparent(TypedValue* _rv, Value* image, int color) asm("_ZN4HPHP23f_imagecolortransparentERKNS_6ObjectEi"); -TypedValue * fg1_imagecolortransparent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecolortransparent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecolortransparent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecolortransparent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1590,7 +1590,7 @@ TypedValue * fg1_imagecolortransparent(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_imagecolortransparent(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecolortransparent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1633,8 +1633,8 @@ offset => xmm1 bool fh_imageconvolution(Value* image, Value* matrix, double div, double offset) asm("_ZN4HPHP18f_imageconvolutionERKNS_6ObjectERKNS_5ArrayEdd"); -TypedValue * fg1_imageconvolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageconvolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageconvolution(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageconvolution(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfDouble) { @@ -1653,7 +1653,7 @@ TypedValue * fg1_imageconvolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imageconvolution(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageconvolution(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1700,8 +1700,8 @@ src_h => st8 bool fh_imagecopy(Value* dst_im, Value* src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h) asm("_ZN4HPHP11f_imagecopyERKNS_6ObjectES2_iiiiii"); -TypedValue * fg1_imagecopy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecopy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecopy(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecopy(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-7)->m_type != KindOfInt64) { @@ -1732,7 +1732,7 @@ TypedValue * fg1_imagecopy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imagecopy(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecopy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1780,8 +1780,8 @@ pct => st16 bool fh_imagecopymerge(Value* dst_im, Value* src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) asm("_ZN4HPHP16f_imagecopymergeERKNS_6ObjectES2_iiiiiii"); -TypedValue * fg1_imagecopymerge(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecopymerge(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecopymerge(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecopymerge(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-8)->m_type != KindOfInt64) { @@ -1815,7 +1815,7 @@ TypedValue * fg1_imagecopymerge(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imagecopymerge(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecopymerge(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1863,8 +1863,8 @@ pct => st16 bool fh_imagecopymergegray(Value* dst_im, Value* src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) asm("_ZN4HPHP20f_imagecopymergegrayERKNS_6ObjectES2_iiiiiii"); -TypedValue * fg1_imagecopymergegray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecopymergegray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecopymergegray(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecopymergegray(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-8)->m_type != KindOfInt64) { @@ -1898,7 +1898,7 @@ TypedValue * fg1_imagecopymergegray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecopymergegray(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecopymergegray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1947,8 +1947,8 @@ src_h => st24 bool fh_imagecopyresampled(Value* dst_im, Value* src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) asm("_ZN4HPHP20f_imagecopyresampledERKNS_6ObjectES2_iiiiiiii"); -TypedValue * fg1_imagecopyresampled(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecopyresampled(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecopyresampled(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecopyresampled(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-9)->m_type != KindOfInt64) { @@ -1985,7 +1985,7 @@ TypedValue * fg1_imagecopyresampled(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecopyresampled(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecopyresampled(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2034,8 +2034,8 @@ src_h => st24 bool fh_imagecopyresized(Value* dst_im, Value* src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) asm("_ZN4HPHP18f_imagecopyresizedERKNS_6ObjectES2_iiiiiiii"); -TypedValue * fg1_imagecopyresized(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecopyresized(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecopyresized(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecopyresized(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-9)->m_type != KindOfInt64) { @@ -2072,7 +2072,7 @@ TypedValue * fg1_imagecopyresized(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagecopyresized(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecopyresized(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2114,8 +2114,8 @@ height => rdx TypedValue* fh_imagecreate(TypedValue* _rv, int width, int height) asm("_ZN4HPHP13f_imagecreateEii"); -TypedValue * fg1_imagecreate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -2128,7 +2128,7 @@ TypedValue * fg1_imagecreate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagecreate(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2173,8 +2173,8 @@ height => r9 TypedValue* fh_imagecreatefromgd2part(TypedValue* _rv, Value* filename, int srcx, int srcy, int width, int height) asm("_ZN4HPHP24f_imagecreatefromgd2partERKNS_6StringEiiii"); -TypedValue * fg1_imagecreatefromgd2part(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromgd2part(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromgd2part(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromgd2part(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-4)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-4); @@ -2196,7 +2196,7 @@ TypedValue * fg1_imagecreatefromgd2part(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_imagecreatefromgd2part(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromgd2part(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2237,8 +2237,8 @@ filename => rsi TypedValue* fh_imagecreatefromgd(TypedValue* _rv, Value* filename) asm("_ZN4HPHP19f_imagecreatefromgdERKNS_6StringE"); -TypedValue * fg1_imagecreatefromgd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromgd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromgd(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromgd(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromgd((rv), &args[-0].m_data); @@ -2246,7 +2246,7 @@ TypedValue * fg1_imagecreatefromgd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagecreatefromgd(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromgd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2287,8 +2287,8 @@ filename => rsi TypedValue* fh_imagecreatefromgd2(TypedValue* _rv, Value* filename) asm("_ZN4HPHP20f_imagecreatefromgd2ERKNS_6StringE"); -TypedValue * fg1_imagecreatefromgd2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromgd2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromgd2(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromgd2(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromgd2((rv), &args[-0].m_data); @@ -2296,7 +2296,7 @@ TypedValue * fg1_imagecreatefromgd2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecreatefromgd2(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromgd2(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2337,8 +2337,8 @@ filename => rsi TypedValue* fh_imagecreatefromgif(TypedValue* _rv, Value* filename) asm("_ZN4HPHP20f_imagecreatefromgifERKNS_6StringE"); -TypedValue * fg1_imagecreatefromgif(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromgif(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromgif(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromgif(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromgif((rv), &args[-0].m_data); @@ -2346,7 +2346,7 @@ TypedValue * fg1_imagecreatefromgif(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecreatefromgif(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromgif(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2387,8 +2387,8 @@ filename => rsi TypedValue* fh_imagecreatefromjpeg(TypedValue* _rv, Value* filename) asm("_ZN4HPHP21f_imagecreatefromjpegERKNS_6StringE"); -TypedValue * fg1_imagecreatefromjpeg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromjpeg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromjpeg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromjpeg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromjpeg((rv), &args[-0].m_data); @@ -2396,7 +2396,7 @@ TypedValue * fg1_imagecreatefromjpeg(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imagecreatefromjpeg(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromjpeg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2437,8 +2437,8 @@ filename => rsi TypedValue* fh_imagecreatefrompng(TypedValue* _rv, Value* filename) asm("_ZN4HPHP20f_imagecreatefrompngERKNS_6StringE"); -TypedValue * fg1_imagecreatefrompng(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefrompng(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefrompng(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefrompng(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefrompng((rv), &args[-0].m_data); @@ -2446,7 +2446,7 @@ TypedValue * fg1_imagecreatefrompng(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecreatefrompng(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefrompng(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2487,8 +2487,8 @@ data => rsi TypedValue* fh_imagecreatefromstring(TypedValue* _rv, Value* data) asm("_ZN4HPHP23f_imagecreatefromstringERKNS_6StringE"); -TypedValue * fg1_imagecreatefromstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromstring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromstring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromstring((rv), &args[-0].m_data); @@ -2496,7 +2496,7 @@ TypedValue * fg1_imagecreatefromstring(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_imagecreatefromstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2537,8 +2537,8 @@ filename => rsi TypedValue* fh_imagecreatefromwbmp(TypedValue* _rv, Value* filename) asm("_ZN4HPHP21f_imagecreatefromwbmpERKNS_6StringE"); -TypedValue * fg1_imagecreatefromwbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromwbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromwbmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromwbmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromwbmp((rv), &args[-0].m_data); @@ -2546,7 +2546,7 @@ TypedValue * fg1_imagecreatefromwbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imagecreatefromwbmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromwbmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2587,8 +2587,8 @@ filename => rsi TypedValue* fh_imagecreatefromxbm(TypedValue* _rv, Value* filename) asm("_ZN4HPHP20f_imagecreatefromxbmERKNS_6StringE"); -TypedValue * fg1_imagecreatefromxbm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromxbm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromxbm(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromxbm(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromxbm((rv), &args[-0].m_data); @@ -2596,7 +2596,7 @@ TypedValue * fg1_imagecreatefromxbm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecreatefromxbm(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromxbm(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2637,8 +2637,8 @@ filename => rsi TypedValue* fh_imagecreatefromxpm(TypedValue* _rv, Value* filename) asm("_ZN4HPHP20f_imagecreatefromxpmERKNS_6StringE"); -TypedValue * fg1_imagecreatefromxpm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatefromxpm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatefromxpm(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatefromxpm(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imagecreatefromxpm((rv), &args[-0].m_data); @@ -2646,7 +2646,7 @@ TypedValue * fg1_imagecreatefromxpm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagecreatefromxpm(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatefromxpm(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2688,8 +2688,8 @@ height => rdx TypedValue* fh_imagecreatetruecolor(TypedValue* _rv, int width, int height) asm("_ZN4HPHP22f_imagecreatetruecolorEii"); -TypedValue * fg1_imagecreatetruecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagecreatetruecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagecreatetruecolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagecreatetruecolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -2702,7 +2702,7 @@ TypedValue * fg1_imagecreatetruecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_imagecreatetruecolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagecreatetruecolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2747,8 +2747,8 @@ color => r9 bool fh_imagedashedline(Value* image, int x1, int y1, int x2, int y2, int color) asm("_ZN4HPHP17f_imagedashedlineERKNS_6ObjectEiiiii"); -TypedValue * fg1_imagedashedline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagedashedline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagedashedline(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagedashedline(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -2773,7 +2773,7 @@ TypedValue * fg1_imagedashedline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imagedashedline(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagedashedline(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2813,8 +2813,8 @@ image => rdi bool fh_imagedestroy(Value* image) asm("_ZN4HPHP14f_imagedestroyERKNS_6ObjectE"); -TypedValue * fg1_imagedestroy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagedestroy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagedestroy(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagedestroy(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2822,7 +2822,7 @@ TypedValue * fg1_imagedestroy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imagedestroy(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagedestroy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2867,8 +2867,8 @@ color => r9 bool fh_imageellipse(Value* image, int cx, int cy, int width, int height, int color) asm("_ZN4HPHP14f_imageellipseERKNS_6ObjectEiiiii"); -TypedValue * fg1_imageellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageellipse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageellipse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -2893,7 +2893,7 @@ TypedValue * fg1_imageellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imageellipse(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageellipse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2936,8 +2936,8 @@ color => rcx bool fh_imagefill(Value* image, int x, int y, int color) asm("_ZN4HPHP11f_imagefillERKNS_6ObjectEiii"); -TypedValue * fg1_imagefill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefill(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefill(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfInt64) { @@ -2956,7 +2956,7 @@ TypedValue * fg1_imagefill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imagefill(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefill(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3004,8 +3004,8 @@ style => st16 bool fh_imagefilledarc(Value* image, int cx, int cy, int width, int height, int start, int end, int color, int style) asm("_ZN4HPHP16f_imagefilledarcERKNS_6ObjectEiiiiiiii"); -TypedValue * fg1_imagefilledarc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefilledarc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefilledarc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefilledarc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-8)->m_type != KindOfInt64) { @@ -3039,7 +3039,7 @@ TypedValue * fg1_imagefilledarc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imagefilledarc(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefilledarc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3084,8 +3084,8 @@ color => r9 bool fh_imagefilledellipse(Value* image, int cx, int cy, int width, int height, int color) asm("_ZN4HPHP20f_imagefilledellipseERKNS_6ObjectEiiiii"); -TypedValue * fg1_imagefilledellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefilledellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefilledellipse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefilledellipse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -3110,7 +3110,7 @@ TypedValue * fg1_imagefilledellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagefilledellipse(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefilledellipse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3153,8 +3153,8 @@ color => rcx bool fh_imagefilledpolygon(Value* image, Value* points, int num_points, int color) asm("_ZN4HPHP20f_imagefilledpolygonERKNS_6ObjectERKNS_5ArrayEii"); -TypedValue * fg1_imagefilledpolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefilledpolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefilledpolygon(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefilledpolygon(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfInt64) { @@ -3173,7 +3173,7 @@ TypedValue * fg1_imagefilledpolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imagefilledpolygon(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefilledpolygon(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3218,8 +3218,8 @@ color => r9 bool fh_imagefilledrectangle(Value* image, int x1, int y1, int x2, int y2, int color) asm("_ZN4HPHP22f_imagefilledrectangleERKNS_6ObjectEiiiii"); -TypedValue * fg1_imagefilledrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefilledrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefilledrectangle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefilledrectangle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -3244,7 +3244,7 @@ TypedValue * fg1_imagefilledrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_imagefilledrectangle(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefilledrectangle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3288,8 +3288,8 @@ color => r8 bool fh_imagefilltoborder(Value* image, int x, int y, int border, int color) asm("_ZN4HPHP19f_imagefilltoborderERKNS_6ObjectEiiii"); -TypedValue * fg1_imagefilltoborder(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefilltoborder(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefilltoborder(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefilltoborder(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfInt64) { @@ -3311,7 +3311,7 @@ TypedValue * fg1_imagefilltoborder(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagefilltoborder(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefilltoborder(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3356,8 +3356,8 @@ arg4 => r9 bool fh_imagefilter(Value* image, int filtertype, int arg1, int arg2, int arg3, int arg4) asm("_ZN4HPHP13f_imagefilterERKNS_6ObjectEiiiii"); -TypedValue * fg1_imagefilter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefilter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefilter(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefilter(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3390,7 +3390,7 @@ TypedValue * fg1_imagefilter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagefilter(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefilter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3430,8 +3430,8 @@ font => rdi long fh_imagefontheight(int font) asm("_ZN4HPHP17f_imagefontheightEi"); -TypedValue * fg1_imagefontheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefontheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefontheight(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefontheight(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -3439,7 +3439,7 @@ TypedValue * fg1_imagefontheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imagefontheight(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefontheight(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3479,8 +3479,8 @@ font => rdi long fh_imagefontwidth(int font) asm("_ZN4HPHP16f_imagefontwidthEi"); -TypedValue * fg1_imagefontwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefontwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefontwidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefontwidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -3488,7 +3488,7 @@ TypedValue * fg1_imagefontwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imagefontwidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefontwidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3533,8 +3533,8 @@ extrainfo => rcx TypedValue* fh_imageftbbox(TypedValue* _rv, double size, double angle, Value* font_file, Value* text, Value* extrainfo) asm("_ZN4HPHP13f_imageftbboxEddRKNS_6StringES2_RKNS_5ArrayE"); -TypedValue * fg1_imageftbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageftbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageftbbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageftbbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -3562,7 +3562,7 @@ TypedValue * fg1_imageftbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imageftbbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageftbbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3612,8 +3612,8 @@ extrainfo => st8 TypedValue* fh_imagefttext(TypedValue* _rv, Value* image, double size, double angle, int x, int y, int col, Value* font_file, Value* text, Value* extrainfo) asm("_ZN4HPHP13f_imagefttextERKNS_6ObjectEddiiiRKNS_6StringES5_RKNS_5ArrayE"); -TypedValue * fg1_imagefttext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagefttext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagefttext(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagefttext(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 9 @@ -3653,7 +3653,7 @@ TypedValue * fg1_imagefttext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagefttext(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagefttext(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3696,8 +3696,8 @@ outputgamma => xmm1 bool fh_imagegammacorrect(Value* image, double inputgamma, double outputgamma) asm("_ZN4HPHP19f_imagegammacorrectERKNS_6ObjectEdd"); -TypedValue * fg1_imagegammacorrect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagegammacorrect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagegammacorrect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagegammacorrect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -3713,7 +3713,7 @@ TypedValue * fg1_imagegammacorrect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagegammacorrect(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagegammacorrect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3756,8 +3756,8 @@ type => rcx bool fh_imagegd2(Value* image, Value* filename, int chunk_size, int type) asm("_ZN4HPHP10f_imagegd2ERKNS_6ObjectERKNS_6StringEii"); -TypedValue * fg1_imagegd2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagegd2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagegd2(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagegd2(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3783,7 +3783,7 @@ TypedValue * fg1_imagegd2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagegd2(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagegd2(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3824,8 +3824,8 @@ filename => rsi bool fh_imagegd(Value* image, Value* filename) asm("_ZN4HPHP9f_imagegdERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imagegd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagegd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagegd(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagegd(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3843,7 +3843,7 @@ TypedValue * fg1_imagegd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagegd(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagegd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3884,8 +3884,8 @@ filename => rsi bool fh_imagegif(Value* image, Value* filename) asm("_ZN4HPHP10f_imagegifERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imagegif(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagegif(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagegif(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagegif(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3903,7 +3903,7 @@ TypedValue * fg1_imagegif(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagegif(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagegif(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3943,7 +3943,7 @@ _rv => rdi TypedValue* fh_imagegrabscreen(TypedValue* _rv) asm("_ZN4HPHP17f_imagegrabscreenEv"); -TypedValue* fg_imagegrabscreen(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagegrabscreen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3978,8 +3978,8 @@ client_area => rdx TypedValue* fh_imagegrabwindow(TypedValue* _rv, int window, int client_area) asm("_ZN4HPHP17f_imagegrabwindowEii"); -TypedValue * fg1_imagegrabwindow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagegrabwindow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagegrabwindow(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagegrabwindow(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -3997,7 +3997,7 @@ TypedValue * fg1_imagegrabwindow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imagegrabwindow(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagegrabwindow(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4039,8 +4039,8 @@ interlace => rdx TypedValue* fh_imageinterlace(TypedValue* _rv, Value* image, int interlace) asm("_ZN4HPHP16f_imageinterlaceERKNS_6ObjectEi"); -TypedValue * fg1_imageinterlace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageinterlace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageinterlace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageinterlace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -4058,7 +4058,7 @@ TypedValue * fg1_imageinterlace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imageinterlace(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageinterlace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4098,8 +4098,8 @@ image => rdi bool fh_imageistruecolor(Value* image) asm("_ZN4HPHP18f_imageistruecolorERKNS_6ObjectE"); -TypedValue * fg1_imageistruecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageistruecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageistruecolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageistruecolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -4107,7 +4107,7 @@ TypedValue * fg1_imageistruecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imageistruecolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageistruecolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4149,8 +4149,8 @@ quality => rdx bool fh_imagejpeg(Value* image, Value* filename, int quality) asm("_ZN4HPHP11f_imagejpegERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_imagejpeg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagejpeg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagejpeg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagejpeg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -4172,7 +4172,7 @@ TypedValue * fg1_imagejpeg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imagejpeg(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagejpeg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4213,8 +4213,8 @@ effect => rsi bool fh_imagelayereffect(Value* image, int effect) asm("_ZN4HPHP18f_imagelayereffectERKNS_6ObjectEi"); -TypedValue * fg1_imagelayereffect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagelayereffect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagelayereffect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagelayereffect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -4227,7 +4227,7 @@ TypedValue * fg1_imagelayereffect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagelayereffect(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagelayereffect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4272,8 +4272,8 @@ color => r9 bool fh_imageline(Value* image, int x1, int y1, int x2, int y2, int color) asm("_ZN4HPHP11f_imagelineERKNS_6ObjectEiiiii"); -TypedValue * fg1_imageline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageline(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageline(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -4298,7 +4298,7 @@ TypedValue * fg1_imageline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imageline(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageline(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4339,8 +4339,8 @@ file => rsi TypedValue* fh_imageloadfont(TypedValue* _rv, Value* file) asm("_ZN4HPHP15f_imageloadfontERKNS_6StringE"); -TypedValue * fg1_imageloadfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imageloadfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imageloadfont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imageloadfont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imageloadfont((rv), &args[-0].m_data); @@ -4348,7 +4348,7 @@ TypedValue * fg1_imageloadfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imageloadfont(HPHP::VM::ActRec *ar) { +TypedValue* fg_imageloadfont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4388,8 +4388,8 @@ source => rsi void fh_imagepalettecopy(Value* destination, Value* source) asm("_ZN4HPHP18f_imagepalettecopyERKNS_6ObjectES2_"); -TypedValue * fg1_imagepalettecopy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepalettecopy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepalettecopy(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepalettecopy(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4403,7 +4403,7 @@ TypedValue * fg1_imagepalettecopy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagepalettecopy(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepalettecopy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4447,8 +4447,8 @@ filters => rcx bool fh_imagepng(Value* image, Value* filename, int quality, int filters) asm("_ZN4HPHP10f_imagepngERKNS_6ObjectERKNS_6StringEii"); -TypedValue * fg1_imagepng(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepng(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepng(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepng(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -4474,7 +4474,7 @@ TypedValue * fg1_imagepng(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagepng(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepng(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4517,8 +4517,8 @@ color => rcx bool fh_imagepolygon(Value* image, Value* points, int num_points, int color) asm("_ZN4HPHP14f_imagepolygonERKNS_6ObjectERKNS_5ArrayEii"); -TypedValue * fg1_imagepolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepolygon(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepolygon(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfInt64) { @@ -4537,7 +4537,7 @@ TypedValue * fg1_imagepolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imagepolygon(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepolygon(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4583,8 +4583,8 @@ angle => xmm0 Value* fh_imagepsbbox(Value* _rv, Value* text, int font, int size, int space, int tightness, double angle) asm("_ZN4HPHP13f_imagepsbboxERKNS_6StringEiiiid"); -TypedValue * fg1_imagepsbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepsbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepsbbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepsbbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -4617,7 +4617,7 @@ TypedValue * fg1_imagepsbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagepsbbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepsbbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4659,8 +4659,8 @@ encodingfile => rsi bool fh_imagepsencodefont(Value* font_index, Value* encodingfile) asm("_ZN4HPHP19f_imagepsencodefontERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imagepsencodefont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepsencodefont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepsencodefont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepsencodefont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -4673,7 +4673,7 @@ TypedValue * fg1_imagepsencodefont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagepsencodefont(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepsencodefont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4714,8 +4714,8 @@ extend => xmm0 bool fh_imagepsextendfont(int font_index, double extend) asm("_ZN4HPHP19f_imagepsextendfontEid"); -TypedValue * fg1_imagepsextendfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepsextendfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepsextendfont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepsextendfont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -4728,7 +4728,7 @@ TypedValue * fg1_imagepsextendfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagepsextendfont(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepsextendfont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4768,8 +4768,8 @@ fontindex => rdi bool fh_imagepsfreefont(Value* fontindex) asm("_ZN4HPHP17f_imagepsfreefontERKNS_6ObjectE"); -TypedValue * fg1_imagepsfreefont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepsfreefont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepsfreefont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepsfreefont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -4777,7 +4777,7 @@ TypedValue * fg1_imagepsfreefont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imagepsfreefont(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepsfreefont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4818,8 +4818,8 @@ filename => rsi Value* fh_imagepsloadfont(Value* _rv, Value* filename) asm("_ZN4HPHP17f_imagepsloadfontERKNS_6StringE"); -TypedValue * fg1_imagepsloadfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepsloadfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepsloadfont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepsloadfont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -4828,7 +4828,7 @@ TypedValue * fg1_imagepsloadfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imagepsloadfont(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepsloadfont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4870,8 +4870,8 @@ slant => xmm0 bool fh_imagepsslantfont(Value* font_index, double slant) asm("_ZN4HPHP18f_imagepsslantfontERKNS_6ObjectEd"); -TypedValue * fg1_imagepsslantfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepsslantfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepsslantfont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepsslantfont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -4884,7 +4884,7 @@ TypedValue * fg1_imagepsslantfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagepsslantfont(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepsslantfont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4936,8 +4936,8 @@ antialias_steps => st40 Value* fh_imagepstext(Value* _rv, Value* image, Value* text, Value* font, int size, int foreground, int background, int x, int y, int space, int tightness, double angle, int antialias_steps) asm("_ZN4HPHP13f_imagepstextERKNS_6ObjectERKNS_6StringES2_iiiiiiidi"); -TypedValue * fg1_imagepstext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagepstext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagepstext(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagepstext(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -4989,7 +4989,7 @@ TypedValue * fg1_imagepstext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagepstext(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagepstext(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5035,8 +5035,8 @@ color => r9 bool fh_imagerectangle(Value* image, int x1, int y1, int x2, int y2, int color) asm("_ZN4HPHP16f_imagerectangleERKNS_6ObjectEiiiii"); -TypedValue * fg1_imagerectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagerectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagerectangle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagerectangle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -5061,7 +5061,7 @@ TypedValue * fg1_imagerectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imagerectangle(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagerectangle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5105,8 +5105,8 @@ ignore_transparent => rcx TypedValue* fh_imagerotate(TypedValue* _rv, Value* source_image, double angle, int bgd_color, int ignore_transparent) asm("_ZN4HPHP13f_imagerotateERKNS_6ObjectEdii"); -TypedValue * fg1_imagerotate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagerotate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagerotate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagerotate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -5130,7 +5130,7 @@ TypedValue * fg1_imagerotate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagerotate(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagerotate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5171,8 +5171,8 @@ saveflag => rsi bool fh_imagesavealpha(Value* image, bool saveflag) asm("_ZN4HPHP16f_imagesavealphaERKNS_6ObjectEb"); -TypedValue * fg1_imagesavealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesavealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesavealpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesavealpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfBoolean) { @@ -5185,7 +5185,7 @@ TypedValue * fg1_imagesavealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imagesavealpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesavealpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5226,8 +5226,8 @@ brush => rsi bool fh_imagesetbrush(Value* image, Value* brush) asm("_ZN4HPHP15f_imagesetbrushERKNS_6ObjectES2_"); -TypedValue * fg1_imagesetbrush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesetbrush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesetbrush(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesetbrush(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -5240,7 +5240,7 @@ TypedValue * fg1_imagesetbrush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imagesetbrush(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesetbrush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5283,8 +5283,8 @@ color => rcx bool fh_imagesetpixel(Value* image, int x, int y, int color) asm("_ZN4HPHP15f_imagesetpixelERKNS_6ObjectEiii"); -TypedValue * fg1_imagesetpixel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesetpixel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesetpixel(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesetpixel(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfInt64) { @@ -5303,7 +5303,7 @@ TypedValue * fg1_imagesetpixel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imagesetpixel(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesetpixel(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5344,8 +5344,8 @@ style => rsi bool fh_imagesetstyle(Value* image, Value* style) asm("_ZN4HPHP15f_imagesetstyleERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_imagesetstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesetstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesetstyle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesetstyle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfArray) { @@ -5358,7 +5358,7 @@ TypedValue * fg1_imagesetstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imagesetstyle(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesetstyle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5399,8 +5399,8 @@ thickness => rsi bool fh_imagesetthickness(Value* image, int thickness) asm("_ZN4HPHP19f_imagesetthicknessERKNS_6ObjectEi"); -TypedValue * fg1_imagesetthickness(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesetthickness(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesetthickness(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesetthickness(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -5413,7 +5413,7 @@ TypedValue * fg1_imagesetthickness(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imagesetthickness(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesetthickness(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5454,8 +5454,8 @@ tile => rsi bool fh_imagesettile(Value* image, Value* tile) asm("_ZN4HPHP14f_imagesettileERKNS_6ObjectES2_"); -TypedValue * fg1_imagesettile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesettile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesettile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesettile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -5468,7 +5468,7 @@ TypedValue * fg1_imagesettile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imagesettile(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesettile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5513,8 +5513,8 @@ color => r9 bool fh_imagestring(Value* image, int font, int x, int y, Value* str, int color) asm("_ZN4HPHP13f_imagestringERKNS_6ObjectEiiiRKNS_6StringEi"); -TypedValue * fg1_imagestring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagestring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagestring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagestring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -5539,7 +5539,7 @@ TypedValue * fg1_imagestring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imagestring(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagestring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5584,8 +5584,8 @@ color => r9 bool fh_imagestringup(Value* image, int font, int x, int y, Value* str, int color) asm("_ZN4HPHP15f_imagestringupERKNS_6ObjectEiiiRKNS_6StringEi"); -TypedValue * fg1_imagestringup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagestringup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagestringup(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagestringup(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -5610,7 +5610,7 @@ TypedValue * fg1_imagestringup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imagestringup(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagestringup(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5651,8 +5651,8 @@ image => rsi TypedValue* fh_imagesx(TypedValue* _rv, Value* image) asm("_ZN4HPHP9f_imagesxERKNS_6ObjectE"); -TypedValue * fg1_imagesx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesx(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesx(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imagesx((rv), &args[-0].m_data); @@ -5660,7 +5660,7 @@ TypedValue * fg1_imagesx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagesx(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesx(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5701,8 +5701,8 @@ image => rsi TypedValue* fh_imagesy(TypedValue* _rv, Value* image) asm("_ZN4HPHP9f_imagesyERKNS_6ObjectE"); -TypedValue * fg1_imagesy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagesy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagesy(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagesy(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imagesy((rv), &args[-0].m_data); @@ -5710,7 +5710,7 @@ TypedValue * fg1_imagesy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagesy(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagesy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5753,8 +5753,8 @@ ncolors => rcx TypedValue* fh_imagetruecolortopalette(TypedValue* _rv, Value* image, bool dither, int ncolors) asm("_ZN4HPHP25f_imagetruecolortopaletteERKNS_6ObjectEbi"); -TypedValue * fg1_imagetruecolortopalette(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagetruecolortopalette(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagetruecolortopalette(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagetruecolortopalette(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -5770,7 +5770,7 @@ TypedValue * fg1_imagetruecolortopalette(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_imagetruecolortopalette(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagetruecolortopalette(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5814,8 +5814,8 @@ text => rdx TypedValue* fh_imagettfbbox(TypedValue* _rv, double size, double angle, Value* fontfile, Value* text) asm("_ZN4HPHP14f_imagettfbboxEddRKNS_6StringES2_"); -TypedValue * fg1_imagettfbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagettfbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagettfbbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagettfbbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -5834,7 +5834,7 @@ TypedValue * fg1_imagettfbbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imagettfbbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagettfbbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5882,8 +5882,8 @@ text => st0 TypedValue* fh_imagettftext(TypedValue* _rv, Value* image, double size, double angle, int x, int y, int color, Value* fontfile, Value* text) asm("_ZN4HPHP14f_imagettftextERKNS_6ObjectEddiiiRKNS_6StringES5_"); -TypedValue * fg1_imagettftext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagettftext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagettftext(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagettftext(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-7)->m_type)) { tvCastToStringInPlace(args-7); @@ -5914,7 +5914,7 @@ TypedValue * fg1_imagettftext(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imagettftext(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagettftext(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5953,7 +5953,7 @@ _ZN4HPHP12f_imagetypesEv long fh_imagetypes() asm("_ZN4HPHP12f_imagetypesEv"); -TypedValue* fg_imagetypes(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagetypes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5988,8 +5988,8 @@ foreground => rdx bool fh_imagewbmp(Value* image, Value* filename, int foreground) asm("_ZN4HPHP11f_imagewbmpERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_imagewbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagewbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagewbmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagewbmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -6011,7 +6011,7 @@ TypedValue * fg1_imagewbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imagewbmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagewbmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6053,8 +6053,8 @@ foreground => rdx bool fh_imagexbm(Value* image, Value* filename, int foreground) asm("_ZN4HPHP10f_imagexbmERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_imagexbm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imagexbm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imagexbm(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imagexbm(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -6076,7 +6076,7 @@ TypedValue * fg1_imagexbm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imagexbm(HPHP::VM::ActRec *ar) { +TypedValue* fg_imagexbm(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6119,8 +6119,8 @@ spool => rcx TypedValue* fh_iptcembed(TypedValue* _rv, Value* iptcdata, Value* jpeg_file_name, int spool) asm("_ZN4HPHP11f_iptcembedERKNS_6StringES2_i"); -TypedValue * fg1_iptcembed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iptcembed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iptcembed(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iptcembed(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -6141,7 +6141,7 @@ TypedValue * fg1_iptcembed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_iptcembed(HPHP::VM::ActRec *ar) { +TypedValue* fg_iptcembed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6182,8 +6182,8 @@ iptcblock => rsi TypedValue* fh_iptcparse(TypedValue* _rv, Value* iptcblock) asm("_ZN4HPHP11f_iptcparseERKNS_6StringE"); -TypedValue * fg1_iptcparse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iptcparse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iptcparse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iptcparse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_iptcparse((rv), &args[-0].m_data); @@ -6191,7 +6191,7 @@ TypedValue * fg1_iptcparse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_iptcparse(HPHP::VM::ActRec *ar) { +TypedValue* fg_iptcparse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6235,8 +6235,8 @@ threshold => r8 bool fh_jpeg2wbmp(Value* jpegname, Value* wbmpname, int dest_height, int dest_width, int threshold) asm("_ZN4HPHP11f_jpeg2wbmpERKNS_6StringES2_iii"); -TypedValue * fg1_jpeg2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_jpeg2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_jpeg2wbmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_jpeg2wbmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfInt64) { @@ -6258,7 +6258,7 @@ TypedValue * fg1_jpeg2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_jpeg2wbmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_jpeg2wbmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6302,8 +6302,8 @@ threshold => r8 bool fh_png2wbmp(Value* pngname, Value* wbmpname, int dest_height, int dest_width, int threshold) asm("_ZN4HPHP10f_png2wbmpERKNS_6StringES2_iii"); -TypedValue * fg1_png2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_png2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_png2wbmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_png2wbmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfInt64) { @@ -6325,7 +6325,7 @@ TypedValue * fg1_png2wbmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_png2wbmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_png2wbmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6366,8 +6366,8 @@ filename => rsi TypedValue* fh_exif_imagetype(TypedValue* _rv, Value* filename) asm("_ZN4HPHP16f_exif_imagetypeERKNS_6StringE"); -TypedValue * fg1_exif_imagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_exif_imagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_exif_imagetype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_exif_imagetype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_exif_imagetype((rv), &args[-0].m_data); @@ -6375,7 +6375,7 @@ TypedValue * fg1_exif_imagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_exif_imagetype(HPHP::VM::ActRec *ar) { +TypedValue* fg_exif_imagetype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6419,8 +6419,8 @@ thumbnail => r8 TypedValue* fh_exif_read_data(TypedValue* _rv, Value* filename, Value* sections, bool arrays, bool thumbnail) asm("_ZN4HPHP16f_exif_read_dataERKNS_6StringES2_bb"); -TypedValue * fg1_exif_read_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_exif_read_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_exif_read_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_exif_read_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -6446,7 +6446,7 @@ TypedValue * fg1_exif_read_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_exif_read_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_exif_read_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6490,8 +6490,8 @@ thumbnail => r8 TypedValue* fh_read_exif_data(TypedValue* _rv, Value* filename, Value* sections, bool arrays, bool thumbnail) asm("_ZN4HPHP16f_read_exif_dataERKNS_6StringES2_bb"); -TypedValue * fg1_read_exif_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_read_exif_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_read_exif_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_read_exif_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -6517,7 +6517,7 @@ TypedValue * fg1_read_exif_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_read_exif_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_read_exif_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6558,8 +6558,8 @@ index => rsi TypedValue* fh_exif_tagname(TypedValue* _rv, int index) asm("_ZN4HPHP14f_exif_tagnameEi"); -TypedValue * fg1_exif_tagname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_exif_tagname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_exif_tagname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_exif_tagname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_exif_tagname((rv), (int)(args[-0].m_data.num)); @@ -6567,7 +6567,7 @@ TypedValue * fg1_exif_tagname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_exif_tagname(HPHP::VM::ActRec *ar) { +TypedValue* fg_exif_tagname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6611,8 +6611,8 @@ imagetype => r8 TypedValue* fh_exif_thumbnail(TypedValue* _rv, Value* filename, TypedValue* width, TypedValue* height, TypedValue* imagetype) asm("_ZN4HPHP16f_exif_thumbnailERKNS_6StringERKNS_14VRefParamValueES5_S5_"); -TypedValue * fg1_exif_thumbnail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_exif_thumbnail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_exif_thumbnail(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_exif_thumbnail(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); VRefParamValue defVal1 = uninit_null(); @@ -6623,7 +6623,7 @@ TypedValue * fg1_exif_thumbnail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_exif_thumbnail(HPHP::VM::ActRec *ar) { +TypedValue* fg_exif_thumbnail(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_imagesprite.ext_hhvm.cpp b/hphp/runtime/ext/ext_imagesprite.ext_hhvm.cpp index fe9d34935..da0c50d62 100644 --- a/hphp/runtime/ext/ext_imagesprite.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_imagesprite.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_11ImageSprite___construct(ObjectData* this_) asm("_ZN4HPHP13c_ImageSprite13t___constructEv"); -TypedValue* tg_11ImageSprite___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -83,8 +83,8 @@ options => rcx Value* th_11ImageSprite_addFile(Value* _rv, ObjectData* this_, Value* file, Value* options) asm("_ZN4HPHP13c_ImageSprite9t_addfileERKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_11ImageSprite_addFile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11ImageSprite_addFile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11ImageSprite_addFile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11ImageSprite_addFile(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -104,7 +104,7 @@ TypedValue* tg1_11ImageSprite_addFile(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_11ImageSprite_addFile(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_addFile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -153,8 +153,8 @@ options => r8 Value* th_11ImageSprite_addString(Value* _rv, ObjectData* this_, Value* id, Value* data, Value* options) asm("_ZN4HPHP13c_ImageSprite11t_addstringERKNS_6StringES3_RKNS_5ArrayE"); -TypedValue* tg1_11ImageSprite_addString(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11ImageSprite_addString(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11ImageSprite_addString(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11ImageSprite_addString(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -177,7 +177,7 @@ TypedValue* tg1_11ImageSprite_addString(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_11ImageSprite_addString(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_addString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -226,8 +226,8 @@ Options => r8 Value* th_11ImageSprite_addUrl(Value* _rv, ObjectData* this_, Value* url, int timeout_ms, Value* Options) asm("_ZN4HPHP13c_ImageSprite8t_addurlERKNS_6StringEiRKNS_5ArrayE"); -TypedValue* tg1_11ImageSprite_addUrl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11ImageSprite_addUrl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11ImageSprite_addUrl(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11ImageSprite_addUrl(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -251,7 +251,7 @@ TypedValue* tg1_11ImageSprite_addUrl(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_11ImageSprite_addUrl(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_addUrl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -298,7 +298,7 @@ paths => rdx Value* th_11ImageSprite_clear(Value* _rv, ObjectData* this_, TypedValue* paths) asm("_ZN4HPHP13c_ImageSprite7t_clearERKNS_7VariantE"); -TypedValue* tg_11ImageSprite_clear(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_clear(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -338,8 +338,8 @@ block => rdx Value* th_11ImageSprite_loadDims(Value* _rv, ObjectData* this_, bool block) asm("_ZN4HPHP13c_ImageSprite10t_loaddimsEb"); -TypedValue* tg1_11ImageSprite_loadDims(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11ImageSprite_loadDims(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11ImageSprite_loadDims(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11ImageSprite_loadDims(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToBooleanInPlace(args-0); @@ -348,7 +348,7 @@ TypedValue* tg1_11ImageSprite_loadDims(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_11ImageSprite_loadDims(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_loadDims(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -394,8 +394,8 @@ block => rdx Value* th_11ImageSprite_loadImages(Value* _rv, ObjectData* this_, bool block) asm("_ZN4HPHP13c_ImageSprite12t_loadimagesEb"); -TypedValue* tg1_11ImageSprite_loadImages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11ImageSprite_loadImages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11ImageSprite_loadImages(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11ImageSprite_loadImages(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToBooleanInPlace(args-0); @@ -404,7 +404,7 @@ TypedValue* tg1_11ImageSprite_loadImages(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_11ImageSprite_loadImages(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_loadImages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -452,8 +452,8 @@ quality => r8 Value* th_11ImageSprite_output(Value* _rv, ObjectData* this_, Value* output_file, Value* format, int quality) asm("_ZN4HPHP13c_ImageSprite8t_outputERKNS_6StringES3_i"); -TypedValue* tg1_11ImageSprite_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11ImageSprite_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11ImageSprite_output(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11ImageSprite_output(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -478,7 +478,7 @@ TypedValue* tg1_11ImageSprite_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_11ImageSprite_output(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_output(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -528,8 +528,8 @@ verbose => r9 Value* th_11ImageSprite_css(Value* _rv, ObjectData* this_, Value* css_namespace, Value* sprite_file, Value* output_file, bool verbose) asm("_ZN4HPHP13c_ImageSprite5t_cssERKNS_6StringES3_S3_b"); -TypedValue* tg1_11ImageSprite_css(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11ImageSprite_css(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11ImageSprite_css(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11ImageSprite_css(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -556,7 +556,7 @@ TypedValue* tg1_11ImageSprite_css(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_11ImageSprite_css(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_css(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -601,7 +601,7 @@ this_ => rsi Value* th_11ImageSprite_getErrors(Value* _rv, ObjectData* this_) asm("_ZN4HPHP13c_ImageSprite11t_geterrorsEv"); -TypedValue* tg_11ImageSprite_getErrors(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_getErrors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -639,7 +639,7 @@ this_ => rsi Value* th_11ImageSprite_mapping(Value* _rv, ObjectData* this_) asm("_ZN4HPHP13c_ImageSprite9t_mappingEv"); -TypedValue* tg_11ImageSprite_mapping(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite_mapping(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -677,7 +677,7 @@ this_ => rsi TypedValue* th_11ImageSprite___destruct(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP13c_ImageSprite12t___destructEv"); -TypedValue* tg_11ImageSprite___destruct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11ImageSprite___destruct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_imap.ext_hhvm.cpp b/hphp/runtime/ext/ext_imap.ext_hhvm.cpp index 74d2355d1..b9fe63a67 100644 --- a/hphp/runtime/ext/ext_imap.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_imap.ext_hhvm.cpp @@ -35,8 +35,8 @@ str => rsi TypedValue* fh_imap_8bit(TypedValue* _rv, Value* str) asm("_ZN4HPHP11f_imap_8bitERKNS_6StringE"); -TypedValue * fg1_imap_8bit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_8bit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_8bit(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_8bit(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_8bit((rv), &args[-0].m_data); @@ -44,7 +44,7 @@ TypedValue * fg1_imap_8bit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_8bit(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_8bit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -84,7 +84,7 @@ _rv => rdi TypedValue* fh_imap_alerts(TypedValue* _rv) asm("_ZN4HPHP13f_imap_alertsEv"); -TypedValue* fg_imap_alerts(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_alerts(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -120,8 +120,8 @@ options => rcx bool fh_imap_append(Value* imap_stream, Value* mailbox, Value* message, Value* options) asm("_ZN4HPHP13f_imap_appendERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_imap_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_append(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_append(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -145,7 +145,7 @@ TypedValue * fg1_imap_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_append(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_append(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -186,8 +186,8 @@ text => rsi TypedValue* fh_imap_base64(TypedValue* _rv, Value* text) asm("_ZN4HPHP13f_imap_base64ERKNS_6StringE"); -TypedValue * fg1_imap_base64(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_base64(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_base64(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_base64(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_base64((rv), &args[-0].m_data); @@ -195,7 +195,7 @@ TypedValue * fg1_imap_base64(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_base64(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_base64(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -236,8 +236,8 @@ str => rsi TypedValue* fh_imap_binary(TypedValue* _rv, Value* str) asm("_ZN4HPHP13f_imap_binaryERKNS_6StringE"); -TypedValue * fg1_imap_binary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_binary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_binary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_binary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_binary((rv), &args[-0].m_data); @@ -245,7 +245,7 @@ TypedValue * fg1_imap_binary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_binary(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_binary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -288,8 +288,8 @@ options => rcx TypedValue* fh_imap_body(TypedValue* _rv, Value* imap_stream, long msg_number, long options) asm("_ZN4HPHP11f_imap_bodyERKNS_6ObjectEll"); -TypedValue * fg1_imap_body(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_body(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_body(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_body(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -310,7 +310,7 @@ TypedValue * fg1_imap_body(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_body(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_body(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -353,8 +353,8 @@ section => rcx TypedValue* fh_imap_bodystruct(TypedValue* _rv, Value* imap_stream, long msg_number, Value* section) asm("_ZN4HPHP17f_imap_bodystructERKNS_6ObjectElRKNS_6StringE"); -TypedValue * fg1_imap_bodystruct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_bodystruct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_bodystruct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_bodystruct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -370,7 +370,7 @@ TypedValue * fg1_imap_bodystruct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imap_bodystruct(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_bodystruct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -411,8 +411,8 @@ imap_stream => rsi TypedValue* fh_imap_check(TypedValue* _rv, Value* imap_stream) asm("_ZN4HPHP12f_imap_checkERKNS_6ObjectE"); -TypedValue * fg1_imap_check(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_check(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_check(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_check(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imap_check((rv), &args[-0].m_data); @@ -420,7 +420,7 @@ TypedValue * fg1_imap_check(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_check(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_check(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -463,8 +463,8 @@ options => rcx bool fh_imap_clearflag_full(Value* imap_stream, Value* sequence, Value* flag, long options) asm("_ZN4HPHP21f_imap_clearflag_fullERKNS_6ObjectERKNS_6StringES5_l"); -TypedValue * fg1_imap_clearflag_full(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_clearflag_full(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_clearflag_full(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_clearflag_full(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -488,7 +488,7 @@ TypedValue * fg1_imap_clearflag_full(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imap_clearflag_full(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_clearflag_full(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -529,8 +529,8 @@ flag => rsi bool fh_imap_close(Value* imap_stream, long flag) asm("_ZN4HPHP12f_imap_closeERKNS_6ObjectEl"); -TypedValue * fg1_imap_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -548,7 +548,7 @@ TypedValue * fg1_imap_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -589,8 +589,8 @@ mailbox => rsi bool fh_imap_createmailbox(Value* imap_stream, Value* mailbox) asm("_ZN4HPHP20f_imap_createmailboxERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imap_createmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_createmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_createmailbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_createmailbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -603,7 +603,7 @@ TypedValue * fg1_imap_createmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imap_createmailbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_createmailbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -645,8 +645,8 @@ options => rdx bool fh_imap_delete(Value* imap_stream, Value* msg_number, long options) asm("_ZN4HPHP13f_imap_deleteERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_imap_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_delete(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_delete(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -667,7 +667,7 @@ TypedValue * fg1_imap_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_delete(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_delete(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -708,8 +708,8 @@ mailbox => rsi bool fh_imap_deletemailbox(Value* imap_stream, Value* mailbox) asm("_ZN4HPHP20f_imap_deletemailboxERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imap_deletemailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_deletemailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_deletemailbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_deletemailbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -722,7 +722,7 @@ TypedValue * fg1_imap_deletemailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imap_deletemailbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_deletemailbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -762,7 +762,7 @@ _rv => rdi TypedValue* fh_imap_errors(TypedValue* _rv) asm("_ZN4HPHP13f_imap_errorsEv"); -TypedValue* fg_imap_errors(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_errors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -795,8 +795,8 @@ imap_stream => rdi bool fh_imap_expunge(Value* imap_stream) asm("_ZN4HPHP14f_imap_expungeERKNS_6ObjectE"); -TypedValue * fg1_imap_expunge(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_expunge(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_expunge(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_expunge(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -804,7 +804,7 @@ TypedValue * fg1_imap_expunge(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imap_expunge(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_expunge(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -847,8 +847,8 @@ options => rcx TypedValue* fh_imap_fetch_overview(TypedValue* _rv, Value* imap_stream, Value* sequence, long options) asm("_ZN4HPHP21f_imap_fetch_overviewERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_imap_fetch_overview(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_fetch_overview(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_fetch_overview(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_fetch_overview(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -869,7 +869,7 @@ TypedValue * fg1_imap_fetch_overview(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imap_fetch_overview(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_fetch_overview(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -913,8 +913,8 @@ options => r8 TypedValue* fh_imap_fetchbody(TypedValue* _rv, Value* imap_stream, long msg_number, Value* section, long options) asm("_ZN4HPHP16f_imap_fetchbodyERKNS_6ObjectElRKNS_6StringEl"); -TypedValue * fg1_imap_fetchbody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_fetchbody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_fetchbody(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_fetchbody(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -938,7 +938,7 @@ TypedValue * fg1_imap_fetchbody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imap_fetchbody(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_fetchbody(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -981,8 +981,8 @@ options => rcx TypedValue* fh_imap_fetchheader(TypedValue* _rv, Value* imap_stream, long msg_number, long options) asm("_ZN4HPHP18f_imap_fetchheaderERKNS_6ObjectEll"); -TypedValue * fg1_imap_fetchheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_fetchheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_fetchheader(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_fetchheader(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1003,7 +1003,7 @@ TypedValue * fg1_imap_fetchheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_fetchheader(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_fetchheader(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1046,8 +1046,8 @@ options => rcx TypedValue* fh_imap_fetchstructure(TypedValue* _rv, Value* imap_stream, long msg_number, long options) asm("_ZN4HPHP21f_imap_fetchstructureERKNS_6ObjectEll"); -TypedValue * fg1_imap_fetchstructure(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_fetchstructure(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_fetchstructure(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_fetchstructure(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1068,7 +1068,7 @@ TypedValue * fg1_imap_fetchstructure(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imap_fetchstructure(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_fetchstructure(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1109,8 +1109,8 @@ caches => rsi bool fh_imap_gc(Value* imap_stream, long caches) asm("_ZN4HPHP9f_imap_gcERKNS_6ObjectEl"); -TypedValue * fg1_imap_gc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_gc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_gc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_gc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1123,7 +1123,7 @@ TypedValue * fg1_imap_gc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imap_gc(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_gc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1165,8 +1165,8 @@ quota_root => rdx TypedValue* fh_imap_get_quota(TypedValue* _rv, Value* imap_stream, Value* quota_root) asm("_ZN4HPHP16f_imap_get_quotaERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imap_get_quota(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_get_quota(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_get_quota(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_get_quota(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1179,7 +1179,7 @@ TypedValue * fg1_imap_get_quota(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imap_get_quota(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_get_quota(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1221,8 +1221,8 @@ quota_root => rdx TypedValue* fh_imap_get_quotaroot(TypedValue* _rv, Value* imap_stream, Value* quota_root) asm("_ZN4HPHP20f_imap_get_quotarootERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imap_get_quotaroot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_get_quotaroot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_get_quotaroot(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_get_quotaroot(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1235,7 +1235,7 @@ TypedValue * fg1_imap_get_quotaroot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imap_get_quotaroot(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_get_quotaroot(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1277,8 +1277,8 @@ mailbox => rdx TypedValue* fh_imap_getacl(TypedValue* _rv, Value* imap_stream, Value* mailbox) asm("_ZN4HPHP13f_imap_getaclERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imap_getacl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_getacl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_getacl(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_getacl(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1291,7 +1291,7 @@ TypedValue * fg1_imap_getacl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_getacl(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_getacl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1334,8 +1334,8 @@ pattern => rcx TypedValue* fh_imap_getmailboxes(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern) asm("_ZN4HPHP19f_imap_getmailboxesERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_imap_getmailboxes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_getmailboxes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_getmailboxes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_getmailboxes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -1351,7 +1351,7 @@ TypedValue * fg1_imap_getmailboxes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_getmailboxes(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_getmailboxes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1394,8 +1394,8 @@ pattern => rcx TypedValue* fh_imap_getsubscribed(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern) asm("_ZN4HPHP20f_imap_getsubscribedERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_imap_getsubscribed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_getsubscribed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_getsubscribed(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_getsubscribed(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -1411,7 +1411,7 @@ TypedValue * fg1_imap_getsubscribed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imap_getsubscribed(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_getsubscribed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1456,8 +1456,8 @@ defaulthost => r9 TypedValue* fh_imap_header(TypedValue* _rv, Value* imap_stream, long msg_number, long fromlength, long subjectlength, Value* defaulthost) asm("_ZN4HPHP13f_imap_headerERKNS_6ObjectElllRKNS_6StringE"); -TypedValue * fg1_imap_header(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_header(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_header(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_header(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1486,7 +1486,7 @@ TypedValue * fg1_imap_header(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_header(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_header(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1531,8 +1531,8 @@ defaulthost => r9 TypedValue* fh_imap_headerinfo(TypedValue* _rv, Value* imap_stream, long msg_number, long fromlength, long subjectlength, Value* defaulthost) asm("_ZN4HPHP17f_imap_headerinfoERKNS_6ObjectElllRKNS_6StringE"); -TypedValue * fg1_imap_headerinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_headerinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_headerinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_headerinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1561,7 +1561,7 @@ TypedValue * fg1_imap_headerinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imap_headerinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_headerinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1602,8 +1602,8 @@ imap_stream => rsi TypedValue* fh_imap_headers(TypedValue* _rv, Value* imap_stream) asm("_ZN4HPHP14f_imap_headersERKNS_6ObjectE"); -TypedValue * fg1_imap_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_headers(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_headers(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imap_headers((rv), &args[-0].m_data); @@ -1611,7 +1611,7 @@ TypedValue * fg1_imap_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imap_headers(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_headers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1651,7 +1651,7 @@ _rv => rdi TypedValue* fh_imap_last_error(TypedValue* _rv) asm("_ZN4HPHP17f_imap_last_errorEv"); -TypedValue* fg_imap_last_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_last_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1687,8 +1687,8 @@ pattern => rcx TypedValue* fh_imap_list(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern) asm("_ZN4HPHP11f_imap_listERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_imap_list(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_list(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_list(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_list(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -1704,7 +1704,7 @@ TypedValue * fg1_imap_list(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_list(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_list(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1747,8 +1747,8 @@ pattern => rcx TypedValue* fh_imap_listmailbox(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern) asm("_ZN4HPHP18f_imap_listmailboxERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_imap_listmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_listmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_listmailbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_listmailbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -1764,7 +1764,7 @@ TypedValue * fg1_imap_listmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_listmailbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_listmailbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1808,8 +1808,8 @@ content => r8 TypedValue* fh_imap_listscan(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern, Value* content) asm("_ZN4HPHP15f_imap_listscanERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_imap_listscan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_listscan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_listscan(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_listscan(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -1828,7 +1828,7 @@ TypedValue * fg1_imap_listscan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imap_listscan(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_listscan(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1871,8 +1871,8 @@ pattern => rcx TypedValue* fh_imap_listsubscribed(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern) asm("_ZN4HPHP21f_imap_listsubscribedERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_imap_listsubscribed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_listsubscribed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_listsubscribed(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_listsubscribed(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -1888,7 +1888,7 @@ TypedValue * fg1_imap_listsubscribed(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imap_listsubscribed(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_listsubscribed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1931,8 +1931,8 @@ pattern => rcx TypedValue* fh_imap_lsub(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern) asm("_ZN4HPHP11f_imap_lsubERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_imap_lsub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_lsub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_lsub(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_lsub(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -1948,7 +1948,7 @@ TypedValue * fg1_imap_lsub(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_lsub(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_lsub(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1990,8 +1990,8 @@ body => rdx TypedValue* fh_imap_mail_compose(TypedValue* _rv, Value* envelope, Value* body) asm("_ZN4HPHP19f_imap_mail_composeERKNS_5ArrayES2_"); -TypedValue * fg1_imap_mail_compose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_mail_compose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_mail_compose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_mail_compose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfArray) { tvCastToArrayInPlace(args-1); @@ -2004,7 +2004,7 @@ TypedValue * fg1_imap_mail_compose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_mail_compose(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_mail_compose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2047,8 +2047,8 @@ options => rcx bool fh_imap_mail_copy(Value* imap_stream, Value* msglist, Value* mailbox, long options) asm("_ZN4HPHP16f_imap_mail_copyERKNS_6ObjectERKNS_6StringES5_l"); -TypedValue * fg1_imap_mail_copy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_mail_copy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_mail_copy(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_mail_copy(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2072,7 +2072,7 @@ TypedValue * fg1_imap_mail_copy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imap_mail_copy(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_mail_copy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2115,8 +2115,8 @@ options => rcx bool fh_imap_mail_move(Value* imap_stream, Value* msglist, Value* mailbox, long options) asm("_ZN4HPHP16f_imap_mail_moveERKNS_6ObjectERKNS_6StringES5_l"); -TypedValue * fg1_imap_mail_move(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_mail_move(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_mail_move(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_mail_move(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2140,7 +2140,7 @@ TypedValue * fg1_imap_mail_move(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imap_mail_move(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_mail_move(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2186,8 +2186,8 @@ rpath => st0 bool fh_imap_mail(Value* to, Value* subject, Value* message, Value* additional_headers, Value* cc, Value* bcc, Value* rpath) asm("_ZN4HPHP11f_imap_mailERKNS_6StringES2_S2_S2_S2_S2_S2_"); -TypedValue * fg1_imap_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_mail(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_mail(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2223,7 +2223,7 @@ TypedValue * fg1_imap_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_mail(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_mail(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2264,8 +2264,8 @@ imap_stream => rsi TypedValue* fh_imap_mailboxmsginfo(TypedValue* _rv, Value* imap_stream) asm("_ZN4HPHP21f_imap_mailboxmsginfoERKNS_6ObjectE"); -TypedValue * fg1_imap_mailboxmsginfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_mailboxmsginfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_mailboxmsginfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_mailboxmsginfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imap_mailboxmsginfo((rv), &args[-0].m_data); @@ -2273,7 +2273,7 @@ TypedValue * fg1_imap_mailboxmsginfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_imap_mailboxmsginfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_mailboxmsginfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2314,8 +2314,8 @@ text => rsi TypedValue* fh_imap_mime_header_decode(TypedValue* _rv, Value* text) asm("_ZN4HPHP25f_imap_mime_header_decodeERKNS_6StringE"); -TypedValue * fg1_imap_mime_header_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_mime_header_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_mime_header_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_mime_header_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_mime_header_decode((rv), &args[-0].m_data); @@ -2323,7 +2323,7 @@ TypedValue * fg1_imap_mime_header_decode(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_imap_mime_header_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_mime_header_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2365,8 +2365,8 @@ uid => rdx TypedValue* fh_imap_msgno(TypedValue* _rv, Value* imap_stream, long uid) asm("_ZN4HPHP12f_imap_msgnoERKNS_6ObjectEl"); -TypedValue * fg1_imap_msgno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_msgno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_msgno(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_msgno(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -2379,7 +2379,7 @@ TypedValue * fg1_imap_msgno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_msgno(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_msgno(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2420,8 +2420,8 @@ imap_stream => rsi TypedValue* fh_imap_num_msg(TypedValue* _rv, Value* imap_stream) asm("_ZN4HPHP14f_imap_num_msgERKNS_6ObjectE"); -TypedValue * fg1_imap_num_msg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_num_msg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_num_msg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_num_msg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imap_num_msg((rv), &args[-0].m_data); @@ -2429,7 +2429,7 @@ TypedValue * fg1_imap_num_msg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imap_num_msg(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_num_msg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2470,8 +2470,8 @@ imap_stream => rsi TypedValue* fh_imap_num_recent(TypedValue* _rv, Value* imap_stream) asm("_ZN4HPHP17f_imap_num_recentERKNS_6ObjectE"); -TypedValue * fg1_imap_num_recent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_num_recent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_num_recent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_num_recent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_imap_num_recent((rv), &args[-0].m_data); @@ -2479,7 +2479,7 @@ TypedValue * fg1_imap_num_recent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_imap_num_recent(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_num_recent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2524,8 +2524,8 @@ retries => r9 TypedValue* fh_imap_open(TypedValue* _rv, Value* mailbox, Value* username, Value* password, long options, long retries) asm("_ZN4HPHP11f_imap_openERKNS_6StringES2_S2_ll"); -TypedValue * fg1_imap_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_open(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_open(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -2553,7 +2553,7 @@ TypedValue * fg1_imap_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_open(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_open(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2593,8 +2593,8 @@ imap_stream => rdi bool fh_imap_ping(Value* imap_stream) asm("_ZN4HPHP11f_imap_pingERKNS_6ObjectE"); -TypedValue * fg1_imap_ping(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_ping(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_ping(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_ping(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2602,7 +2602,7 @@ TypedValue * fg1_imap_ping(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_ping(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_ping(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2643,8 +2643,8 @@ str => rsi TypedValue* fh_imap_qprint(TypedValue* _rv, Value* str) asm("_ZN4HPHP13f_imap_qprintERKNS_6StringE"); -TypedValue * fg1_imap_qprint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_qprint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_qprint(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_qprint(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_qprint((rv), &args[-0].m_data); @@ -2652,7 +2652,7 @@ TypedValue * fg1_imap_qprint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_qprint(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_qprint(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2694,8 +2694,8 @@ new_mbox => rdx bool fh_imap_renamemailbox(Value* imap_stream, Value* old_mbox, Value* new_mbox) asm("_ZN4HPHP20f_imap_renamemailboxERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_imap_renamemailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_renamemailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_renamemailbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_renamemailbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -2711,7 +2711,7 @@ TypedValue * fg1_imap_renamemailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_imap_renamemailbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_renamemailbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2754,8 +2754,8 @@ retries => rcx bool fh_imap_reopen(Value* imap_stream, Value* mailbox, long options, long retries) asm("_ZN4HPHP13f_imap_reopenERKNS_6ObjectERKNS_6StringEll"); -TypedValue * fg1_imap_reopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_reopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_reopen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_reopen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2780,7 +2780,7 @@ TypedValue * fg1_imap_reopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_reopen(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_reopen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2822,8 +2822,8 @@ default_host => rdx TypedValue* fh_imap_rfc822_parse_adrlist(TypedValue* _rv, Value* address, Value* default_host) asm("_ZN4HPHP27f_imap_rfc822_parse_adrlistERKNS_6StringES2_"); -TypedValue * fg1_imap_rfc822_parse_adrlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_rfc822_parse_adrlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_rfc822_parse_adrlist(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_rfc822_parse_adrlist(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -2836,7 +2836,7 @@ TypedValue * fg1_imap_rfc822_parse_adrlist(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_imap_rfc822_parse_adrlist(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_rfc822_parse_adrlist(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2878,8 +2878,8 @@ defaulthost => rdx TypedValue* fh_imap_rfc822_parse_headers(TypedValue* _rv, Value* headers, Value* defaulthost) asm("_ZN4HPHP27f_imap_rfc822_parse_headersERKNS_6StringES2_"); -TypedValue * fg1_imap_rfc822_parse_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_rfc822_parse_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_rfc822_parse_headers(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_rfc822_parse_headers(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2897,7 +2897,7 @@ TypedValue * fg1_imap_rfc822_parse_headers(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_imap_rfc822_parse_headers(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_rfc822_parse_headers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2940,8 +2940,8 @@ personal => rcx TypedValue* fh_imap_rfc822_write_address(TypedValue* _rv, Value* mailbox, Value* host, Value* personal) asm("_ZN4HPHP27f_imap_rfc822_write_addressERKNS_6StringES2_S2_"); -TypedValue * fg1_imap_rfc822_write_address(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_rfc822_write_address(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_rfc822_write_address(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_rfc822_write_address(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2957,7 +2957,7 @@ TypedValue * fg1_imap_rfc822_write_address(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_imap_rfc822_write_address(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_rfc822_write_address(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3001,8 +3001,8 @@ options => r8 bool fh_imap_savebody(Value* imap_stream, TypedValue* file, long msg_number, Value* part_number, long options) asm("_ZN4HPHP15f_imap_savebodyERKNS_6ObjectERKNS_7VariantElRKNS_6StringEl"); -TypedValue * fg1_imap_savebody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_savebody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_savebody(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_savebody(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3027,7 +3027,7 @@ TypedValue * fg1_imap_savebody(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imap_savebody(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_savebody(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3071,8 +3071,8 @@ content => r8 TypedValue* fh_imap_scanmailbox(TypedValue* _rv, Value* imap_stream, Value* ref, Value* pattern, Value* content) asm("_ZN4HPHP18f_imap_scanmailboxERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_imap_scanmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_scanmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_scanmailbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_scanmailbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -3091,7 +3091,7 @@ TypedValue * fg1_imap_scanmailbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_scanmailbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_scanmailbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3135,8 +3135,8 @@ charset => r8 TypedValue* fh_imap_search(TypedValue* _rv, Value* imap_stream, Value* criteria, long options, Value* charset) asm("_ZN4HPHP13f_imap_searchERKNS_6ObjectERKNS_6StringElS5_"); -TypedValue * fg1_imap_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_search(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_search(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -3161,7 +3161,7 @@ TypedValue * fg1_imap_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_search(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_search(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3203,8 +3203,8 @@ quota_limit => rdx bool fh_imap_set_quota(Value* imap_stream, Value* quota_root, long quota_limit) asm("_ZN4HPHP16f_imap_set_quotaERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_imap_set_quota(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_set_quota(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_set_quota(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_set_quota(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -3220,7 +3220,7 @@ TypedValue * fg1_imap_set_quota(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imap_set_quota(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_set_quota(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3263,8 +3263,8 @@ rights => rcx bool fh_imap_setacl(Value* imap_stream, Value* mailbox, Value* id, Value* rights) asm("_ZN4HPHP13f_imap_setaclERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_imap_setacl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_setacl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_setacl(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_setacl(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-3)->m_type)) { @@ -3283,7 +3283,7 @@ TypedValue * fg1_imap_setacl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_setacl(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_setacl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3326,8 +3326,8 @@ options => rcx bool fh_imap_setflag_full(Value* imap_stream, Value* sequence, Value* flag, long options) asm("_ZN4HPHP19f_imap_setflag_fullERKNS_6ObjectERKNS_6StringES5_l"); -TypedValue * fg1_imap_setflag_full(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_setflag_full(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_setflag_full(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_setflag_full(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3351,7 +3351,7 @@ TypedValue * fg1_imap_setflag_full(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_setflag_full(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_setflag_full(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3397,8 +3397,8 @@ charset => st0 TypedValue* fh_imap_sort(TypedValue* _rv, Value* imap_stream, long criteria, long reverse, long options, Value* search_criteria, Value* charset) asm("_ZN4HPHP11f_imap_sortERKNS_6ObjectElllRKNS_6StringES5_"); -TypedValue * fg1_imap_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_sort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_sort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -3430,7 +3430,7 @@ TypedValue * fg1_imap_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_sort(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_sort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3473,8 +3473,8 @@ options => rcx TypedValue* fh_imap_status(TypedValue* _rv, Value* imap_stream, Value* mailbox, long options) asm("_ZN4HPHP13f_imap_statusERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_imap_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_status(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_status(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -3495,7 +3495,7 @@ TypedValue * fg1_imap_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3536,8 +3536,8 @@ mailbox => rsi bool fh_imap_subscribe(Value* imap_stream, Value* mailbox) asm("_ZN4HPHP16f_imap_subscribeERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imap_subscribe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_subscribe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_subscribe(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_subscribe(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -3550,7 +3550,7 @@ TypedValue * fg1_imap_subscribe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_imap_subscribe(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_subscribe(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3592,8 +3592,8 @@ options => rdx TypedValue* fh_imap_thread(TypedValue* _rv, Value* imap_stream, long options) asm("_ZN4HPHP13f_imap_threadERKNS_6ObjectEl"); -TypedValue * fg1_imap_thread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_thread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_thread(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_thread(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -3611,7 +3611,7 @@ TypedValue * fg1_imap_thread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_imap_thread(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_thread(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3653,8 +3653,8 @@ timeout => rdx TypedValue* fh_imap_timeout(TypedValue* _rv, long timeout_type, long timeout) asm("_ZN4HPHP14f_imap_timeoutEll"); -TypedValue * fg1_imap_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_timeout(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_timeout(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -3672,7 +3672,7 @@ TypedValue * fg1_imap_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_imap_timeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_timeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3714,8 +3714,8 @@ msg_number => rdx TypedValue* fh_imap_uid(TypedValue* _rv, Value* imap_stream, long msg_number) asm("_ZN4HPHP10f_imap_uidERKNS_6ObjectEl"); -TypedValue * fg1_imap_uid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_uid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_uid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_uid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -3728,7 +3728,7 @@ TypedValue * fg1_imap_uid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_imap_uid(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_uid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3770,8 +3770,8 @@ flags => rdx bool fh_imap_undelete(Value* imap_stream, Value* msg_number, long flags) asm("_ZN4HPHP15f_imap_undeleteERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_imap_undelete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_undelete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_undelete(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_undelete(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3792,7 +3792,7 @@ TypedValue * fg1_imap_undelete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_imap_undelete(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_undelete(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3833,8 +3833,8 @@ mailbox => rsi bool fh_imap_unsubscribe(Value* imap_stream, Value* mailbox) asm("_ZN4HPHP18f_imap_unsubscribeERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_imap_unsubscribe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_unsubscribe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_unsubscribe(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_unsubscribe(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -3847,7 +3847,7 @@ TypedValue * fg1_imap_unsubscribe(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_unsubscribe(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_unsubscribe(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3888,8 +3888,8 @@ text => rsi TypedValue* fh_imap_utf7_decode(TypedValue* _rv, Value* text) asm("_ZN4HPHP18f_imap_utf7_decodeERKNS_6StringE"); -TypedValue * fg1_imap_utf7_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_utf7_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_utf7_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_utf7_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_utf7_decode((rv), &args[-0].m_data); @@ -3897,7 +3897,7 @@ TypedValue * fg1_imap_utf7_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_utf7_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_utf7_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3938,8 +3938,8 @@ data => rsi TypedValue* fh_imap_utf7_encode(TypedValue* _rv, Value* data) asm("_ZN4HPHP18f_imap_utf7_encodeERKNS_6StringE"); -TypedValue * fg1_imap_utf7_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_utf7_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_utf7_encode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_utf7_encode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_utf7_encode((rv), &args[-0].m_data); @@ -3947,7 +3947,7 @@ TypedValue * fg1_imap_utf7_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_imap_utf7_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_utf7_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3988,8 +3988,8 @@ mime_encoded_text => rsi TypedValue* fh_imap_utf8(TypedValue* _rv, Value* mime_encoded_text) asm("_ZN4HPHP11f_imap_utf8ERKNS_6StringE"); -TypedValue * fg1_imap_utf8(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_imap_utf8(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_imap_utf8(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_imap_utf8(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_imap_utf8((rv), &args[-0].m_data); @@ -3997,7 +3997,7 @@ TypedValue * fg1_imap_utf8(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_imap_utf8(HPHP::VM::ActRec *ar) { +TypedValue* fg_imap_utf8(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_intl.ext_hhvm.cpp b/hphp/runtime/ext/ext_intl.ext_hhvm.cpp index a6bd039b7..9c44ef167 100644 --- a/hphp/runtime/ext/ext_intl.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_intl.ext_hhvm.cpp @@ -33,7 +33,7 @@ _ZN4HPHP21f_intl_get_error_codeEv long fh_intl_get_error_code() asm("_ZN4HPHP21f_intl_get_error_codeEv"); -TypedValue* fg_intl_get_error_code(HPHP::VM::ActRec *ar) { +TypedValue* fg_intl_get_error_code(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -66,7 +66,7 @@ _rv => rdi Value* fh_intl_get_error_message(Value* _rv) asm("_ZN4HPHP24f_intl_get_error_messageEv"); -TypedValue* fg_intl_get_error_message(HPHP::VM::ActRec *ar) { +TypedValue* fg_intl_get_error_message(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -101,8 +101,8 @@ error_code => rsi Value* fh_intl_error_name(Value* _rv, long error_code) asm("_ZN4HPHP17f_intl_error_nameEl"); -TypedValue * fg1_intl_error_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_intl_error_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_intl_error_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_intl_error_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -111,7 +111,7 @@ TypedValue * fg1_intl_error_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_intl_error_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_intl_error_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -152,8 +152,8 @@ error_code => rdi bool fh_intl_is_failure(long error_code) asm("_ZN4HPHP17f_intl_is_failureEl"); -TypedValue * fg1_intl_is_failure(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_intl_is_failure(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_intl_is_failure(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_intl_is_failure(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -161,7 +161,7 @@ TypedValue * fg1_intl_is_failure(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_intl_is_failure(HPHP::VM::ActRec *ar) { +TypedValue* fg_intl_is_failure(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -204,8 +204,8 @@ sort_flag => rcx TypedValue* fh_collator_asort(TypedValue* _rv, TypedValue* obj, TypedValue* arr, long sort_flag) asm("_ZN4HPHP16f_collator_asortERKNS_7VariantERKNS_14VRefParamValueEl"); -TypedValue * fg1_collator_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_asort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_asort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-2); fh_collator_asort((rv), (args-0), (args-1), (count > 2) ? (long)(args[-2].m_data.num) : (long)(q_Collator$$SORT_REGULAR)); @@ -213,7 +213,7 @@ TypedValue * fg1_collator_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_collator_asort(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_asort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -256,8 +256,8 @@ str2 => rcx TypedValue* fh_collator_compare(TypedValue* _rv, TypedValue* obj, Value* str1, Value* str2) asm("_ZN4HPHP18f_collator_compareERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_collator_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_compare(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_compare(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -270,7 +270,7 @@ TypedValue * fg1_collator_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_collator_compare(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_compare(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -311,8 +311,8 @@ locale => rsi TypedValue* fh_collator_create(TypedValue* _rv, Value* locale) asm("_ZN4HPHP17f_collator_createERKNS_6StringE"); -TypedValue * fg1_collator_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_collator_create((rv), &args[-0].m_data); @@ -320,7 +320,7 @@ TypedValue * fg1_collator_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_collator_create(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -362,8 +362,8 @@ attr => rdx TypedValue* fh_collator_get_attribute(TypedValue* _rv, TypedValue* obj, long attr) asm("_ZN4HPHP24f_collator_get_attributeERKNS_7VariantEl"); -TypedValue * fg1_collator_get_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_get_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_get_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_get_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_collator_get_attribute((rv), (args-0), (long)(args[-1].m_data.num)); @@ -371,7 +371,7 @@ TypedValue * fg1_collator_get_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_collator_get_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_get_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -412,7 +412,7 @@ obj => rsi TypedValue* fh_collator_get_error_code(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP25f_collator_get_error_codeERKNS_7VariantE"); -TypedValue* fg_collator_get_error_code(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_get_error_code(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -446,7 +446,7 @@ obj => rsi TypedValue* fh_collator_get_error_message(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP28f_collator_get_error_messageERKNS_7VariantE"); -TypedValue* fg_collator_get_error_message(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_get_error_message(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -481,8 +481,8 @@ type => rdx TypedValue* fh_collator_get_locale(TypedValue* _rv, TypedValue* obj, long type) asm("_ZN4HPHP21f_collator_get_localeERKNS_7VariantEl"); -TypedValue * fg1_collator_get_locale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_get_locale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_get_locale(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_get_locale(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_collator_get_locale((rv), (args-0), (count > 1) ? (long)(args[-1].m_data.num) : (long)(0)); @@ -490,7 +490,7 @@ TypedValue * fg1_collator_get_locale(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_collator_get_locale(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_get_locale(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -531,7 +531,7 @@ obj => rsi TypedValue* fh_collator_get_strength(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP23f_collator_get_strengthERKNS_7VariantE"); -TypedValue* fg_collator_get_strength(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_get_strength(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -567,8 +567,8 @@ val => rcx TypedValue* fh_collator_set_attribute(TypedValue* _rv, TypedValue* obj, long attr, long val) asm("_ZN4HPHP24f_collator_set_attributeERKNS_7VariantEll"); -TypedValue * fg1_collator_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_set_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_set_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -581,7 +581,7 @@ TypedValue * fg1_collator_set_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_collator_set_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_set_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -623,8 +623,8 @@ strength => rdx TypedValue* fh_collator_set_strength(TypedValue* _rv, TypedValue* obj, long strength) asm("_ZN4HPHP23f_collator_set_strengthERKNS_7VariantEl"); -TypedValue * fg1_collator_set_strength(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_set_strength(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_set_strength(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_set_strength(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_collator_set_strength((rv), (args-0), (long)(args[-1].m_data.num)); @@ -632,7 +632,7 @@ TypedValue * fg1_collator_set_strength(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_collator_set_strength(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_set_strength(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -674,7 +674,7 @@ arr => rdx TypedValue* fh_collator_sort_with_sort_keys(TypedValue* _rv, TypedValue* obj, TypedValue* arr) asm("_ZN4HPHP30f_collator_sort_with_sort_keysERKNS_7VariantERKNS_14VRefParamValueE"); -TypedValue* fg_collator_sort_with_sort_keys(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_sort_with_sort_keys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -710,8 +710,8 @@ sort_flag => rcx TypedValue* fh_collator_sort(TypedValue* _rv, TypedValue* obj, TypedValue* arr, long sort_flag) asm("_ZN4HPHP15f_collator_sortERKNS_7VariantERKNS_14VRefParamValueEl"); -TypedValue * fg1_collator_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_collator_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_collator_sort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_collator_sort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-2); fh_collator_sort((rv), (args-0), (args-1), (count > 2) ? (long)(args[-2].m_data.num) : (long)(q_Collator$$SORT_REGULAR)); @@ -719,7 +719,7 @@ TypedValue * fg1_collator_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_collator_sort(HPHP::VM::ActRec *ar) { +TypedValue* fg_collator_sort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -763,8 +763,8 @@ idna_info => r8 TypedValue* fh_idn_to_ascii(TypedValue* _rv, Value* domain, long options, long variant, TypedValue* idna_info) asm("_ZN4HPHP14f_idn_to_asciiERKNS_6StringEllRKNS_14VRefParamValueE"); -TypedValue * fg1_idn_to_ascii(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_idn_to_ascii(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_idn_to_ascii(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_idn_to_ascii(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -788,7 +788,7 @@ TypedValue * fg1_idn_to_ascii(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_idn_to_ascii(HPHP::VM::ActRec *ar) { +TypedValue* fg_idn_to_ascii(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -833,8 +833,8 @@ idna_info => r8 TypedValue* fh_idn_to_unicode(TypedValue* _rv, Value* domain, long options, long variant, TypedValue* idna_info) asm("_ZN4HPHP16f_idn_to_unicodeERKNS_6StringEllRKNS_14VRefParamValueE"); -TypedValue * fg1_idn_to_unicode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_idn_to_unicode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_idn_to_unicode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_idn_to_unicode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -858,7 +858,7 @@ TypedValue * fg1_idn_to_unicode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_idn_to_unicode(HPHP::VM::ActRec *ar) { +TypedValue* fg_idn_to_unicode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -903,8 +903,8 @@ idna_info => r8 TypedValue* fh_idn_to_utf8(TypedValue* _rv, Value* domain, long options, long variant, TypedValue* idna_info) asm("_ZN4HPHP13f_idn_to_utf8ERKNS_6StringEllRKNS_14VRefParamValueE"); -TypedValue * fg1_idn_to_utf8(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_idn_to_utf8(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_idn_to_utf8(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_idn_to_utf8(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -928,7 +928,7 @@ TypedValue * fg1_idn_to_utf8(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_idn_to_utf8(HPHP::VM::ActRec *ar) { +TypedValue* fg_idn_to_utf8(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -979,8 +979,8 @@ locale => rsi void th_8Collator___construct(ObjectData* this_, Value* locale) asm("_ZN4HPHP10c_Collator13t___constructERKNS_6StringE"); -TypedValue* tg1_8Collator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -989,7 +989,7 @@ TypedValue* tg1_8Collator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_8Collator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1035,8 +1035,8 @@ sort_flag => rdx bool th_8Collator_asort(ObjectData* this_, TypedValue* arr, long sort_flag) asm("_ZN4HPHP10c_Collator7t_asortERKNS_14VRefParamValueEl"); -TypedValue* tg1_8Collator_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator_asort(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_asort(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-1); @@ -1044,7 +1044,7 @@ TypedValue* tg1_8Collator_asort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* tg_8Collator_asort(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_asort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1090,8 +1090,8 @@ str2 => rcx TypedValue* th_8Collator_compare(TypedValue* _rv, ObjectData* this_, Value* str1, Value* str2) asm("_ZN4HPHP10c_Collator9t_compareERKNS_6StringES3_"); -TypedValue* tg1_8Collator_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator_compare(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_compare(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1104,7 +1104,7 @@ TypedValue* tg1_8Collator_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8Collator_compare(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_compare(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1149,8 +1149,8 @@ locale => rdx TypedValue* th_8Collator_create(TypedValue* _rv, char const* cls_, Value* locale) asm("_ZN4HPHP10c_Collator9ti_createEPKcRKNS_6StringE"); -TypedValue* tg1_8Collator_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_8Collator_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_8Collator_create((rv), ("Collator"), &args[-0].m_data); @@ -1158,7 +1158,7 @@ TypedValue* tg1_8Collator_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_8Collator_create(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1197,8 +1197,8 @@ attr => rsi long th_8Collator_getattribute(ObjectData* this_, long attr) asm("_ZN4HPHP10c_Collator14t_getattributeEl"); -TypedValue* tg1_8Collator_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator_getattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_getattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -1206,7 +1206,7 @@ TypedValue* tg1_8Collator_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_8Collator_getattribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_getattribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1249,7 +1249,7 @@ this_ => rdi long th_8Collator_geterrorcode(ObjectData* this_) asm("_ZN4HPHP10c_Collator14t_geterrorcodeEv"); -TypedValue* tg_8Collator_geterrorcode(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_geterrorcode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1286,7 +1286,7 @@ this_ => rsi Value* th_8Collator_geterrormessage(Value* _rv, ObjectData* this_) asm("_ZN4HPHP10c_Collator17t_geterrormessageEv"); -TypedValue* tg_8Collator_geterrormessage(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_geterrormessage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1325,8 +1325,8 @@ type => rdx Value* th_8Collator_getlocale(Value* _rv, ObjectData* this_, long type) asm("_ZN4HPHP10c_Collator11t_getlocaleEl"); -TypedValue* tg1_8Collator_getlocale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_getlocale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator_getlocale(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_getlocale(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1335,7 +1335,7 @@ TypedValue* tg1_8Collator_getlocale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_8Collator_getlocale(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_getlocale(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1379,7 +1379,7 @@ this_ => rdi long th_8Collator_getstrength(ObjectData* this_) asm("_ZN4HPHP10c_Collator13t_getstrengthEv"); -TypedValue* tg_8Collator_getstrength(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_getstrength(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1417,8 +1417,8 @@ val => rdx bool th_8Collator_setattribute(ObjectData* this_, long attr, long val) asm("_ZN4HPHP10c_Collator14t_setattributeEll"); -TypedValue* tg1_8Collator_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator_setattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_setattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1431,7 +1431,7 @@ TypedValue* tg1_8Collator_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_8Collator_setattribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_setattribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1475,8 +1475,8 @@ strength => rsi bool th_8Collator_setstrength(ObjectData* this_, long strength) asm("_ZN4HPHP10c_Collator13t_setstrengthEl"); -TypedValue* tg1_8Collator_setstrength(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_setstrength(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator_setstrength(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_setstrength(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1484,7 +1484,7 @@ TypedValue* tg1_8Collator_setstrength(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_8Collator_setstrength(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_setstrength(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1528,7 +1528,7 @@ arr => rsi bool th_8Collator_sortwithsortkeys(ObjectData* this_, TypedValue* arr) asm("_ZN4HPHP10c_Collator18t_sortwithsortkeysERKNS_14VRefParamValueE"); -TypedValue* tg_8Collator_sortwithsortkeys(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_sortwithsortkeys(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1566,8 +1566,8 @@ sort_flag => rdx bool th_8Collator_sort(ObjectData* this_, TypedValue* arr, long sort_flag) asm("_ZN4HPHP10c_Collator6t_sortERKNS_14VRefParamValueEl"); -TypedValue* tg1_8Collator_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Collator_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Collator_sort(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Collator_sort(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-1); @@ -1575,7 +1575,7 @@ TypedValue* tg1_8Collator_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_8Collator_sort(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Collator_sort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1627,7 +1627,7 @@ this_ => rdi void th_6Locale___construct(ObjectData* this_) asm("_ZN4HPHP8c_Locale13t___constructEv"); -TypedValue* tg_6Locale___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_6Locale___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1673,7 +1673,7 @@ this_ => rdi void th_10Normalizer___construct(ObjectData* this_) asm("_ZN4HPHP12c_Normalizer13t___constructEv"); -TypedValue* tg_10Normalizer___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10Normalizer___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1713,8 +1713,8 @@ form => rcx TypedValue* th_10Normalizer_isnormalized(TypedValue* _rv, char const* cls_, Value* input, long form) asm("_ZN4HPHP12c_Normalizer15ti_isnormalizedEPKcRKNS_6StringEl"); -TypedValue* tg1_10Normalizer_isnormalized(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_10Normalizer_isnormalized(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_10Normalizer_isnormalized(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_10Normalizer_isnormalized(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1732,7 +1732,7 @@ TypedValue* tg1_10Normalizer_isnormalized(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10Normalizer_isnormalized(HPHP::VM::ActRec *ar) { +TypedValue* tg_10Normalizer_isnormalized(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1773,8 +1773,8 @@ form => rcx TypedValue* th_10Normalizer_normalize(TypedValue* _rv, char const* cls_, Value* input, long form) asm("_ZN4HPHP12c_Normalizer12ti_normalizeEPKcRKNS_6StringEl"); -TypedValue* tg1_10Normalizer_normalize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue* tg1_10Normalizer_normalize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue* tg1_10Normalizer_normalize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue* tg1_10Normalizer_normalize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1792,7 +1792,7 @@ TypedValue* tg1_10Normalizer_normalize(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_10Normalizer_normalize(HPHP::VM::ActRec *ar) { +TypedValue* tg_10Normalizer_normalize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_ipc.ext_hhvm.cpp b/hphp/runtime/ext/ext_ipc.ext_hhvm.cpp index 1bf5e822a..5e99cd158 100644 --- a/hphp/runtime/ext/ext_ipc.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_ipc.ext_hhvm.cpp @@ -35,8 +35,8 @@ proj => rsi long fh_ftok(Value* pathname, Value* proj) asm("_ZN4HPHP6f_ftokERKNS_6StringES2_"); -TypedValue * fg1_ftok(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ftok(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ftok(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ftok(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -49,7 +49,7 @@ TypedValue * fg1_ftok(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ftok(HPHP::VM::ActRec *ar) { +TypedValue* fg_ftok(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -91,8 +91,8 @@ perms => rdx TypedValue* fh_msg_get_queue(TypedValue* _rv, long key, long perms) asm("_ZN4HPHP15f_msg_get_queueEll"); -TypedValue * fg1_msg_get_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_msg_get_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_msg_get_queue(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_msg_get_queue(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -110,7 +110,7 @@ TypedValue * fg1_msg_get_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_msg_get_queue(HPHP::VM::ActRec *ar) { +TypedValue* fg_msg_get_queue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -150,8 +150,8 @@ key => rdi bool fh_msg_queue_exists(long key) asm("_ZN4HPHP18f_msg_queue_existsEl"); -TypedValue * fg1_msg_queue_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_msg_queue_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_msg_queue_exists(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_msg_queue_exists(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -159,7 +159,7 @@ TypedValue * fg1_msg_queue_exists(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_msg_queue_exists(HPHP::VM::ActRec *ar) { +TypedValue* fg_msg_queue_exists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -204,8 +204,8 @@ errorcode => r9 bool fh_msg_send(Value* queue, long msgtype, TypedValue* message, bool serialize, bool blocking, TypedValue* errorcode) asm("_ZN4HPHP10f_msg_sendERKNS_6ObjectElRKNS_7VariantEbbRKNS_14VRefParamValueE"); -TypedValue * fg1_msg_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_msg_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_msg_send(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_msg_send(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -232,7 +232,7 @@ TypedValue * fg1_msg_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_msg_send(HPHP::VM::ActRec *ar) { +TypedValue* fg_msg_send(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -280,8 +280,8 @@ errorcode => st8 bool fh_msg_receive(Value* queue, long desiredmsgtype, TypedValue* msgtype, long maxsize, TypedValue* message, bool unserialize, long flags, TypedValue* errorcode) asm("_ZN4HPHP13f_msg_receiveERKNS_6ObjectElRKNS_14VRefParamValueElS5_blS5_"); -TypedValue * fg1_msg_receive(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_msg_receive(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_msg_receive(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_msg_receive(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -311,7 +311,7 @@ TypedValue * fg1_msg_receive(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_msg_receive(HPHP::VM::ActRec *ar) { +TypedValue* fg_msg_receive(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -352,8 +352,8 @@ queue => rdi bool fh_msg_remove_queue(Value* queue) asm("_ZN4HPHP18f_msg_remove_queueERKNS_6ObjectE"); -TypedValue * fg1_msg_remove_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_msg_remove_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_msg_remove_queue(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_msg_remove_queue(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -361,7 +361,7 @@ TypedValue * fg1_msg_remove_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_msg_remove_queue(HPHP::VM::ActRec *ar) { +TypedValue* fg_msg_remove_queue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -402,8 +402,8 @@ data => rsi bool fh_msg_set_queue(Value* queue, Value* data) asm("_ZN4HPHP15f_msg_set_queueERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_msg_set_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_msg_set_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_msg_set_queue(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_msg_set_queue(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfArray) { @@ -416,7 +416,7 @@ TypedValue * fg1_msg_set_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_msg_set_queue(HPHP::VM::ActRec *ar) { +TypedValue* fg_msg_set_queue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -457,8 +457,8 @@ queue => rsi Value* fh_msg_stat_queue(Value* _rv, Value* queue) asm("_ZN4HPHP16f_msg_stat_queueERKNS_6ObjectE"); -TypedValue * fg1_msg_stat_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_msg_stat_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_msg_stat_queue(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_msg_stat_queue(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -467,7 +467,7 @@ TypedValue * fg1_msg_stat_queue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_msg_stat_queue(HPHP::VM::ActRec *ar) { +TypedValue* fg_msg_stat_queue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -508,8 +508,8 @@ sem_identifier => rdi bool fh_sem_acquire(Value* sem_identifier) asm("_ZN4HPHP13f_sem_acquireERKNS_6ObjectE"); -TypedValue * fg1_sem_acquire(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sem_acquire(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sem_acquire(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sem_acquire(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -517,7 +517,7 @@ TypedValue * fg1_sem_acquire(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_sem_acquire(HPHP::VM::ActRec *ar) { +TypedValue* fg_sem_acquire(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -561,8 +561,8 @@ auto_release => r8 TypedValue* fh_sem_get(TypedValue* _rv, long key, long max_acquire, long perm, bool auto_release) asm("_ZN4HPHP9f_sem_getElllb"); -TypedValue * fg1_sem_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sem_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sem_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sem_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -588,7 +588,7 @@ TypedValue * fg1_sem_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sem_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_sem_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -628,8 +628,8 @@ sem_identifier => rdi bool fh_sem_release(Value* sem_identifier) asm("_ZN4HPHP13f_sem_releaseERKNS_6ObjectE"); -TypedValue * fg1_sem_release(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sem_release(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sem_release(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sem_release(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -637,7 +637,7 @@ TypedValue * fg1_sem_release(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_sem_release(HPHP::VM::ActRec *ar) { +TypedValue* fg_sem_release(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -677,8 +677,8 @@ sem_identifier => rdi bool fh_sem_remove(Value* sem_identifier) asm("_ZN4HPHP12f_sem_removeERKNS_6ObjectE"); -TypedValue * fg1_sem_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sem_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sem_remove(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sem_remove(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -686,7 +686,7 @@ TypedValue * fg1_sem_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_sem_remove(HPHP::VM::ActRec *ar) { +TypedValue* fg_sem_remove(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -729,8 +729,8 @@ shm_flag => rcx TypedValue* fh_shm_attach(TypedValue* _rv, long shm_key, long shm_size, long shm_flag) asm("_ZN4HPHP12f_shm_attachElll"); -TypedValue * fg1_shm_attach(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shm_attach(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shm_attach(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shm_attach(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -752,7 +752,7 @@ TypedValue * fg1_shm_attach(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_shm_attach(HPHP::VM::ActRec *ar) { +TypedValue* fg_shm_attach(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -792,8 +792,8 @@ shm_identifier => rdi bool fh_shm_detach(long shm_identifier) asm("_ZN4HPHP12f_shm_detachEl"); -TypedValue * fg1_shm_detach(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shm_detach(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shm_detach(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shm_detach(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -801,7 +801,7 @@ TypedValue * fg1_shm_detach(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_shm_detach(HPHP::VM::ActRec *ar) { +TypedValue* fg_shm_detach(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -841,8 +841,8 @@ shm_identifier => rdi bool fh_shm_remove(long shm_identifier) asm("_ZN4HPHP12f_shm_removeEl"); -TypedValue * fg1_shm_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shm_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shm_remove(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shm_remove(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -850,7 +850,7 @@ TypedValue * fg1_shm_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_shm_remove(HPHP::VM::ActRec *ar) { +TypedValue* fg_shm_remove(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -892,8 +892,8 @@ variable_key => rdx TypedValue* fh_shm_get_var(TypedValue* _rv, long shm_identifier, long variable_key) asm("_ZN4HPHP13f_shm_get_varEll"); -TypedValue * fg1_shm_get_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shm_get_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shm_get_var(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shm_get_var(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -906,7 +906,7 @@ TypedValue * fg1_shm_get_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_shm_get_var(HPHP::VM::ActRec *ar) { +TypedValue* fg_shm_get_var(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -947,8 +947,8 @@ variable_key => rsi bool fh_shm_has_var(long shm_identifier, long variable_key) asm("_ZN4HPHP13f_shm_has_varEll"); -TypedValue * fg1_shm_has_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shm_has_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shm_has_var(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shm_has_var(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -961,7 +961,7 @@ TypedValue * fg1_shm_has_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_shm_has_var(HPHP::VM::ActRec *ar) { +TypedValue* fg_shm_has_var(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1003,8 +1003,8 @@ variable => rdx bool fh_shm_put_var(long shm_identifier, long variable_key, TypedValue* variable) asm("_ZN4HPHP13f_shm_put_varEllRKNS_7VariantE"); -TypedValue * fg1_shm_put_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shm_put_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shm_put_var(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shm_put_var(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1017,7 +1017,7 @@ TypedValue * fg1_shm_put_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_shm_put_var(HPHP::VM::ActRec *ar) { +TypedValue* fg_shm_put_var(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1058,8 +1058,8 @@ variable_key => rsi bool fh_shm_remove_var(long shm_identifier, long variable_key) asm("_ZN4HPHP16f_shm_remove_varEll"); -TypedValue * fg1_shm_remove_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shm_remove_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shm_remove_var(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shm_remove_var(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1072,7 +1072,7 @@ TypedValue * fg1_shm_remove_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_shm_remove_var(HPHP::VM::ActRec *ar) { +TypedValue* fg_shm_remove_var(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_iterator.ext_hhvm.cpp b/hphp/runtime/ext/ext_iterator.ext_hhvm.cpp index 42a02aed5..d2d458ebf 100644 --- a/hphp/runtime/ext/ext_iterator.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_iterator.ext_hhvm.cpp @@ -38,8 +38,8 @@ flags => r8 Value* fh_hphp_recursiveiteratoriterator___construct(Value* _rv, Value* obj, Value* iterator, long mode, long flags) asm("_ZN4HPHP44f_hphp_recursiveiteratoriterator___constructERKNS_6ObjectES2_ll"); -TypedValue * fg1_hphp_recursiveiteratoriterator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursiveiteratoriterator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursiveiteratoriterator___construct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursiveiteratoriterator___construct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-3)->m_type != KindOfInt64) { @@ -59,7 +59,7 @@ TypedValue * fg1_hphp_recursiveiteratoriterator___construct(TypedValue* rv, HPHP return rv; } -TypedValue* fg_hphp_recursiveiteratoriterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursiveiteratoriterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -101,8 +101,8 @@ obj => rsi Value* fh_hphp_recursiveiteratoriterator_getinneriterator(Value* _rv, Value* obj) asm("_ZN4HPHP49f_hphp_recursiveiteratoriterator_getinneriteratorERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursiveiteratoriterator_getinneriterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursiveiteratoriterator_getinneriterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursiveiteratoriterator_getinneriterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursiveiteratoriterator_getinneriterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -111,7 +111,7 @@ TypedValue * fg1_hphp_recursiveiteratoriterator_getinneriterator(TypedValue* rv, return rv; } -TypedValue* fg_hphp_recursiveiteratoriterator_getinneriterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursiveiteratoriterator_getinneriterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -153,8 +153,8 @@ obj => rsi TypedValue* fh_hphp_recursiveiteratoriterator_current(TypedValue* _rv, Value* obj) asm("_ZN4HPHP40f_hphp_recursiveiteratoriterator_currentERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursiveiteratoriterator_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursiveiteratoriterator_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursiveiteratoriterator_current(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursiveiteratoriterator_current(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_recursiveiteratoriterator_current((rv), &args[-0].m_data); @@ -162,7 +162,7 @@ TypedValue * fg1_hphp_recursiveiteratoriterator_current(TypedValue* rv, HPHP::VM return rv; } -TypedValue* fg_hphp_recursiveiteratoriterator_current(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursiveiteratoriterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -203,8 +203,8 @@ obj => rsi TypedValue* fh_hphp_recursiveiteratoriterator_key(TypedValue* _rv, Value* obj) asm("_ZN4HPHP36f_hphp_recursiveiteratoriterator_keyERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursiveiteratoriterator_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursiveiteratoriterator_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursiveiteratoriterator_key(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursiveiteratoriterator_key(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_recursiveiteratoriterator_key((rv), &args[-0].m_data); @@ -212,7 +212,7 @@ TypedValue * fg1_hphp_recursiveiteratoriterator_key(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* fg_hphp_recursiveiteratoriterator_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursiveiteratoriterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -251,8 +251,8 @@ obj => rdi void fh_hphp_recursiveiteratoriterator_next(Value* obj) asm("_ZN4HPHP37f_hphp_recursiveiteratoriterator_nextERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursiveiteratoriterator_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursiveiteratoriterator_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursiveiteratoriterator_next(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursiveiteratoriterator_next(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -261,7 +261,7 @@ TypedValue * fg1_hphp_recursiveiteratoriterator_next(TypedValue* rv, HPHP::VM::A return rv; } -TypedValue* fg_hphp_recursiveiteratoriterator_next(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursiveiteratoriterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -301,8 +301,8 @@ obj => rdi void fh_hphp_recursiveiteratoriterator_rewind(Value* obj) asm("_ZN4HPHP39f_hphp_recursiveiteratoriterator_rewindERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursiveiteratoriterator_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursiveiteratoriterator_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursiveiteratoriterator_rewind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursiveiteratoriterator_rewind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -311,7 +311,7 @@ TypedValue * fg1_hphp_recursiveiteratoriterator_rewind(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* fg_hphp_recursiveiteratoriterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursiveiteratoriterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -352,8 +352,8 @@ obj => rdi bool fh_hphp_recursiveiteratoriterator_valid(Value* obj) asm("_ZN4HPHP38f_hphp_recursiveiteratoriterator_validERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursiveiteratoriterator_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursiveiteratoriterator_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursiveiteratoriterator_valid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursiveiteratoriterator_valid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -361,7 +361,7 @@ TypedValue * fg1_hphp_recursiveiteratoriterator_valid(TypedValue* rv, HPHP::VM:: return rv; } -TypedValue* fg_hphp_recursiveiteratoriterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursiveiteratoriterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -402,8 +402,8 @@ path => rsi bool fh_hphp_directoryiterator___construct(Value* obj, Value* path) asm("_ZN4HPHP36f_hphp_directoryiterator___constructERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_directoryiterator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator___construct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator___construct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -416,7 +416,7 @@ TypedValue * fg1_hphp_directoryiterator___construct(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* fg_hphp_directoryiterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -457,8 +457,8 @@ obj => rsi TypedValue* fh_hphp_directoryiterator_key(TypedValue* _rv, Value* obj) asm("_ZN4HPHP28f_hphp_directoryiterator_keyERKNS_6ObjectE"); -TypedValue * fg1_hphp_directoryiterator_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator_key(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator_key(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_directoryiterator_key((rv), &args[-0].m_data); @@ -466,7 +466,7 @@ TypedValue * fg1_hphp_directoryiterator_key(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_hphp_directoryiterator_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -505,8 +505,8 @@ obj => rdi void fh_hphp_directoryiterator_next(Value* obj) asm("_ZN4HPHP29f_hphp_directoryiterator_nextERKNS_6ObjectE"); -TypedValue * fg1_hphp_directoryiterator_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator_next(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator_next(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -515,7 +515,7 @@ TypedValue * fg1_hphp_directoryiterator_next(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_directoryiterator_next(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -555,8 +555,8 @@ obj => rdi void fh_hphp_directoryiterator_rewind(Value* obj) asm("_ZN4HPHP31f_hphp_directoryiterator_rewindERKNS_6ObjectE"); -TypedValue * fg1_hphp_directoryiterator_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator_rewind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator_rewind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -565,7 +565,7 @@ TypedValue * fg1_hphp_directoryiterator_rewind(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_directoryiterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -606,8 +606,8 @@ position => rsi void fh_hphp_directoryiterator_seek(Value* obj, long position) asm("_ZN4HPHP29f_hphp_directoryiterator_seekERKNS_6ObjectEl"); -TypedValue * fg1_hphp_directoryiterator_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator_seek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator_seek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -621,7 +621,7 @@ TypedValue * fg1_hphp_directoryiterator_seek(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_directoryiterator_seek(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator_seek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -663,8 +663,8 @@ obj => rsi TypedValue* fh_hphp_directoryiterator_current(TypedValue* _rv, Value* obj) asm("_ZN4HPHP32f_hphp_directoryiterator_currentERKNS_6ObjectE"); -TypedValue * fg1_hphp_directoryiterator_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator_current(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator_current(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_directoryiterator_current((rv), &args[-0].m_data); @@ -672,7 +672,7 @@ TypedValue * fg1_hphp_directoryiterator_current(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_hphp_directoryiterator_current(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -713,8 +713,8 @@ obj => rsi Value* fh_hphp_directoryiterator___tostring(Value* _rv, Value* obj) asm("_ZN4HPHP35f_hphp_directoryiterator___tostringERKNS_6ObjectE"); -TypedValue * fg1_hphp_directoryiterator___tostring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator___tostring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator___tostring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator___tostring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -723,7 +723,7 @@ TypedValue * fg1_hphp_directoryiterator___tostring(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_hphp_directoryiterator___tostring(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator___tostring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -764,8 +764,8 @@ obj => rdi bool fh_hphp_directoryiterator_valid(Value* obj) asm("_ZN4HPHP30f_hphp_directoryiterator_validERKNS_6ObjectE"); -TypedValue * fg1_hphp_directoryiterator_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator_valid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator_valid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -773,7 +773,7 @@ TypedValue * fg1_hphp_directoryiterator_valid(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_directoryiterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -813,8 +813,8 @@ obj => rdi bool fh_hphp_directoryiterator_isdot(Value* obj) asm("_ZN4HPHP30f_hphp_directoryiterator_isdotERKNS_6ObjectE"); -TypedValue * fg1_hphp_directoryiterator_isdot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_directoryiterator_isdot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_directoryiterator_isdot(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_directoryiterator_isdot(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -822,7 +822,7 @@ TypedValue * fg1_hphp_directoryiterator_isdot(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_directoryiterator_isdot(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_directoryiterator_isdot(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -864,8 +864,8 @@ flags => rdx bool fh_hphp_recursivedirectoryiterator___construct(Value* obj, Value* path, long flags) asm("_ZN4HPHP45f_hphp_recursivedirectoryiterator___constructERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_hphp_recursivedirectoryiterator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator___construct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator___construct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -881,7 +881,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator___construct(TypedValue* rv, HPH return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -922,8 +922,8 @@ obj => rsi TypedValue* fh_hphp_recursivedirectoryiterator_key(TypedValue* _rv, Value* obj) asm("_ZN4HPHP37f_hphp_recursivedirectoryiterator_keyERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_key(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_key(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_recursivedirectoryiterator_key((rv), &args[-0].m_data); @@ -931,7 +931,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_key(TypedValue* rv, HPHP::VM::A return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -970,8 +970,8 @@ obj => rdi void fh_hphp_recursivedirectoryiterator_next(Value* obj) asm("_ZN4HPHP38f_hphp_recursivedirectoryiterator_nextERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_next(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_next(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -980,7 +980,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_next(TypedValue* rv, HPHP::VM:: return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_next(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1020,8 +1020,8 @@ obj => rdi void fh_hphp_recursivedirectoryiterator_rewind(Value* obj) asm("_ZN4HPHP40f_hphp_recursivedirectoryiterator_rewindERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_rewind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_rewind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1030,7 +1030,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_rewind(TypedValue* rv, HPHP::VM return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1071,8 +1071,8 @@ position => rsi void fh_hphp_recursivedirectoryiterator_seek(Value* obj, long position) asm("_ZN4HPHP38f_hphp_recursivedirectoryiterator_seekERKNS_6ObjectEl"); -TypedValue * fg1_hphp_recursivedirectoryiterator_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_seek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_seek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1086,7 +1086,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_seek(TypedValue* rv, HPHP::VM:: return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_seek(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_seek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1128,8 +1128,8 @@ obj => rsi TypedValue* fh_hphp_recursivedirectoryiterator_current(TypedValue* _rv, Value* obj) asm("_ZN4HPHP41f_hphp_recursivedirectoryiterator_currentERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_current(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_current(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_recursivedirectoryiterator_current((rv), &args[-0].m_data); @@ -1137,7 +1137,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_current(TypedValue* rv, HPHP::V return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_current(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1178,8 +1178,8 @@ obj => rsi Value* fh_hphp_recursivedirectoryiterator___tostring(Value* _rv, Value* obj) asm("_ZN4HPHP44f_hphp_recursivedirectoryiterator___tostringERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator___tostring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator___tostring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator___tostring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator___tostring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1188,7 +1188,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator___tostring(TypedValue* rv, HPHP return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator___tostring(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator___tostring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1229,8 +1229,8 @@ obj => rdi bool fh_hphp_recursivedirectoryiterator_valid(Value* obj) asm("_ZN4HPHP39f_hphp_recursivedirectoryiterator_validERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_valid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_valid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1238,7 +1238,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_valid(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1278,8 +1278,8 @@ obj => rdi bool fh_hphp_recursivedirectoryiterator_haschildren(Value* obj) asm("_ZN4HPHP45f_hphp_recursivedirectoryiterator_haschildrenERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_haschildren(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_haschildren(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_haschildren(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_haschildren(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1287,7 +1287,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_haschildren(TypedValue* rv, HPH return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_haschildren(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_haschildren(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1328,8 +1328,8 @@ obj => rsi Value* fh_hphp_recursivedirectoryiterator_getchildren(Value* _rv, Value* obj) asm("_ZN4HPHP45f_hphp_recursivedirectoryiterator_getchildrenERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_getchildren(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_getchildren(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_getchildren(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_getchildren(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -1338,7 +1338,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_getchildren(TypedValue* rv, HPH return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_getchildren(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_getchildren(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1380,8 +1380,8 @@ obj => rsi Value* fh_hphp_recursivedirectoryiterator_getsubpath(Value* _rv, Value* obj) asm("_ZN4HPHP44f_hphp_recursivedirectoryiterator_getsubpathERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1390,7 +1390,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpath(TypedValue* rv, HPHP return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_getsubpath(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_getsubpath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1432,8 +1432,8 @@ obj => rsi Value* fh_hphp_recursivedirectoryiterator_getsubpathname(Value* _rv, Value* obj) asm("_ZN4HPHP48f_hphp_recursivedirectoryiterator_getsubpathnameERKNS_6ObjectE"); -TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpathname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpathname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpathname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpathname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1442,7 +1442,7 @@ TypedValue * fg1_hphp_recursivedirectoryiterator_getsubpathname(TypedValue* rv, return rv; } -TypedValue* fg_hphp_recursivedirectoryiterator_getsubpathname(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_recursivedirectoryiterator_getsubpathname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1493,7 +1493,7 @@ array => rsi void th_20MutableArrayIterator___construct(ObjectData* this_, TypedValue* array) asm("_ZN4HPHP22c_MutableArrayIterator13t___constructERKNS_14VRefParamValueE"); -TypedValue* tg_20MutableArrayIterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_20MutableArrayIterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1531,7 +1531,7 @@ this_ => rsi TypedValue* th_20MutableArrayIterator_currentRef(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP22c_MutableArrayIterator12t_currentrefEv"); -TypedValue* tg_20MutableArrayIterator_currentRef(HPHP::VM::ActRec *ar) { +TypedValue* tg_20MutableArrayIterator_currentRef(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1568,7 +1568,7 @@ this_ => rsi TypedValue* th_20MutableArrayIterator_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP22c_MutableArrayIterator9t_currentEv"); -TypedValue* tg_20MutableArrayIterator_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_20MutableArrayIterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1605,7 +1605,7 @@ this_ => rsi TypedValue* th_20MutableArrayIterator_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP22c_MutableArrayIterator5t_keyEv"); -TypedValue* tg_20MutableArrayIterator_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_20MutableArrayIterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1640,7 +1640,7 @@ this_ => rdi void th_20MutableArrayIterator_next(ObjectData* this_) asm("_ZN4HPHP22c_MutableArrayIterator6t_nextEv"); -TypedValue* tg_20MutableArrayIterator_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_20MutableArrayIterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1677,7 +1677,7 @@ this_ => rdi bool th_20MutableArrayIterator_valid(ObjectData* this_) asm("_ZN4HPHP22c_MutableArrayIterator7t_validEv"); -TypedValue* tg_20MutableArrayIterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_20MutableArrayIterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_json.ext_hhvm.cpp b/hphp/runtime/ext/ext_json.ext_hhvm.cpp index 38d4b0c69..21f10620a 100644 --- a/hphp/runtime/ext/ext_json.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_json.ext_hhvm.cpp @@ -36,7 +36,7 @@ options => rdx Value* fh_json_encode(Value* _rv, TypedValue* value, TypedValue* options) asm("_ZN4HPHP13f_json_encodeERKNS_7VariantES2_"); -TypedValue* fg_json_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_json_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -74,8 +74,8 @@ options => rcx TypedValue* fh_json_decode(TypedValue* _rv, Value* json, bool assoc, TypedValue* options) asm("_ZN4HPHP13f_json_decodeERKNS_6StringEbRKNS_7VariantE"); -TypedValue * fg1_json_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_json_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_json_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_json_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -95,7 +95,7 @@ TypedValue * fg1_json_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_json_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_json_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_ldap.ext_hhvm.cpp b/hphp/runtime/ext/ext_ldap.ext_hhvm.cpp index 13d867b7a..cf6252ef1 100644 --- a/hphp/runtime/ext/ext_ldap.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_ldap.ext_hhvm.cpp @@ -36,8 +36,8 @@ port => rdx TypedValue* fh_ldap_connect(TypedValue* _rv, Value* hostname, int port) asm("_ZN4HPHP14f_ldap_connectERKNS_6StringEi"); -TypedValue * fg1_ldap_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_connect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_connect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -56,7 +56,7 @@ TypedValue * fg1_ldap_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_ldap_connect(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_connect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -98,8 +98,8 @@ with_attrib => rdx TypedValue* fh_ldap_explode_dn(TypedValue* _rv, Value* dn, int with_attrib) asm("_ZN4HPHP17f_ldap_explode_dnERKNS_6StringEi"); -TypedValue * fg1_ldap_explode_dn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_explode_dn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_explode_dn(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_explode_dn(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -112,7 +112,7 @@ TypedValue * fg1_ldap_explode_dn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_ldap_explode_dn(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_explode_dn(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -153,8 +153,8 @@ db => rsi TypedValue* fh_ldap_dn2ufn(TypedValue* _rv, Value* db) asm("_ZN4HPHP13f_ldap_dn2ufnERKNS_6StringE"); -TypedValue * fg1_ldap_dn2ufn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_dn2ufn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_dn2ufn(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_dn2ufn(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_ldap_dn2ufn((rv), &args[-0].m_data); @@ -162,7 +162,7 @@ TypedValue * fg1_ldap_dn2ufn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ldap_dn2ufn(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_dn2ufn(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -203,8 +203,8 @@ errnum => rsi Value* fh_ldap_err2str(Value* _rv, int errnum) asm("_ZN4HPHP14f_ldap_err2strEi"); -TypedValue * fg1_ldap_err2str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_err2str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_err2str(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_err2str(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -213,7 +213,7 @@ TypedValue * fg1_ldap_err2str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_ldap_err2str(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_err2str(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -256,8 +256,8 @@ entry => rdx bool fh_ldap_add(Value* link, Value* dn, Value* entry) asm("_ZN4HPHP10f_ldap_addERKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_ldap_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_add(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_add(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfArray) { @@ -273,7 +273,7 @@ TypedValue * fg1_ldap_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ldap_add(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -315,8 +315,8 @@ entry => rdx bool fh_ldap_mod_add(Value* link, Value* dn, Value* entry) asm("_ZN4HPHP14f_ldap_mod_addERKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_ldap_mod_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_mod_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_mod_add(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_mod_add(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfArray) { @@ -332,7 +332,7 @@ TypedValue * fg1_ldap_mod_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_ldap_mod_add(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_mod_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -374,8 +374,8 @@ entry => rdx bool fh_ldap_mod_del(Value* link, Value* dn, Value* entry) asm("_ZN4HPHP14f_ldap_mod_delERKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_ldap_mod_del(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_mod_del(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_mod_del(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_mod_del(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfArray) { @@ -391,7 +391,7 @@ TypedValue * fg1_ldap_mod_del(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_ldap_mod_del(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_mod_del(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -433,8 +433,8 @@ entry => rdx bool fh_ldap_mod_replace(Value* link, Value* dn, Value* entry) asm("_ZN4HPHP18f_ldap_mod_replaceERKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_ldap_mod_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_mod_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_mod_replace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_mod_replace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfArray) { @@ -450,7 +450,7 @@ TypedValue * fg1_ldap_mod_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ldap_mod_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_mod_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -492,8 +492,8 @@ entry => rdx bool fh_ldap_modify(Value* link, Value* dn, Value* entry) asm("_ZN4HPHP13f_ldap_modifyERKNS_6ObjectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_ldap_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_modify(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_modify(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfArray) { @@ -509,7 +509,7 @@ TypedValue * fg1_ldap_modify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ldap_modify(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_modify(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -551,8 +551,8 @@ bind_password => rdx bool fh_ldap_bind(Value* link, Value* bind_rdn, Value* bind_password) asm("_ZN4HPHP11f_ldap_bindERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_ldap_bind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_bind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_bind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_bind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -574,7 +574,7 @@ TypedValue * fg1_ldap_bind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ldap_bind(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_bind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -615,8 +615,8 @@ callback => rsi bool fh_ldap_set_rebind_proc(Value* link, TypedValue* callback) asm("_ZN4HPHP22f_ldap_set_rebind_procERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_ldap_set_rebind_proc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_set_rebind_proc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_set_rebind_proc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_set_rebind_proc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -624,7 +624,7 @@ TypedValue * fg1_ldap_set_rebind_proc(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_ldap_set_rebind_proc(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_set_rebind_proc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -666,8 +666,8 @@ sortfilter => rdx bool fh_ldap_sort(Value* link, Value* result, Value* sortfilter) asm("_ZN4HPHP11f_ldap_sortERKNS_6ObjectES2_RKNS_6StringE"); -TypedValue * fg1_ldap_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_sort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_sort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -683,7 +683,7 @@ TypedValue * fg1_ldap_sort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ldap_sort(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_sort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -723,8 +723,8 @@ link => rdi bool fh_ldap_start_tls(Value* link) asm("_ZN4HPHP16f_ldap_start_tlsERKNS_6ObjectE"); -TypedValue * fg1_ldap_start_tls(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_start_tls(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_start_tls(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_start_tls(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -732,7 +732,7 @@ TypedValue * fg1_ldap_start_tls(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_ldap_start_tls(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_start_tls(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -772,8 +772,8 @@ link => rdi bool fh_ldap_unbind(Value* link) asm("_ZN4HPHP13f_ldap_unbindERKNS_6ObjectE"); -TypedValue * fg1_ldap_unbind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_unbind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_unbind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_unbind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -781,7 +781,7 @@ TypedValue * fg1_ldap_unbind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ldap_unbind(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_unbind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -823,8 +823,8 @@ retval => rdx bool fh_ldap_get_option(Value* link, int option, TypedValue* retval) asm("_ZN4HPHP17f_ldap_get_optionERKNS_6ObjectEiRKNS_14VRefParamValueE"); -TypedValue * fg1_ldap_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_get_option(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_get_option(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -837,7 +837,7 @@ TypedValue * fg1_ldap_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_ldap_get_option(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_get_option(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -879,8 +879,8 @@ newval => rdx bool fh_ldap_set_option(TypedValue* link, int option, TypedValue* newval) asm("_ZN4HPHP17f_ldap_set_optionERKNS_7VariantEiS2_"); -TypedValue * fg1_ldap_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_set_option(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_set_option(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-1); @@ -888,7 +888,7 @@ TypedValue * fg1_ldap_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_ldap_set_option(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_set_option(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -928,8 +928,8 @@ link => rdi bool fh_ldap_close(Value* link) asm("_ZN4HPHP12f_ldap_closeERKNS_6ObjectE"); -TypedValue * fg1_ldap_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -937,7 +937,7 @@ TypedValue * fg1_ldap_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ldap_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -985,8 +985,8 @@ deref => st16 TypedValue* fh_ldap_list(TypedValue* _rv, TypedValue* link, TypedValue* base_dn, TypedValue* filter, Value* attributes, int attrsonly, int sizelimit, int timelimit, int deref) asm("_ZN4HPHP11f_ldap_listERKNS_7VariantES2_S2_RKNS_5ArrayEiiii"); -TypedValue * fg1_ldap_list(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_list(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_list(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_list(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 8 @@ -1017,7 +1017,7 @@ TypedValue * fg1_ldap_list(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ldap_list(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_list(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1065,8 +1065,8 @@ deref => st16 TypedValue* fh_ldap_read(TypedValue* _rv, TypedValue* link, TypedValue* base_dn, TypedValue* filter, Value* attributes, int attrsonly, int sizelimit, int timelimit, int deref) asm("_ZN4HPHP11f_ldap_readERKNS_7VariantES2_S2_RKNS_5ArrayEiiii"); -TypedValue * fg1_ldap_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_read(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_read(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 8 @@ -1097,7 +1097,7 @@ TypedValue * fg1_ldap_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ldap_read(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_read(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1145,8 +1145,8 @@ deref => st16 TypedValue* fh_ldap_search(TypedValue* _rv, TypedValue* link, TypedValue* base_dn, TypedValue* filter, Value* attributes, int attrsonly, int sizelimit, int timelimit, int deref) asm("_ZN4HPHP13f_ldap_searchERKNS_7VariantES2_S2_RKNS_5ArrayEiiii"); -TypedValue * fg1_ldap_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_search(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_search(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 8 @@ -1177,7 +1177,7 @@ TypedValue * fg1_ldap_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ldap_search(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_search(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1221,8 +1221,8 @@ deleteoldrdn => r8 bool fh_ldap_rename(Value* link, Value* dn, Value* newrdn, Value* newparent, bool deleteoldrdn) asm("_ZN4HPHP13f_ldap_renameERKNS_6ObjectERKNS_6StringES5_S5_b"); -TypedValue * fg1_ldap_rename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_rename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_rename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_rename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfBoolean) { @@ -1244,7 +1244,7 @@ TypedValue * fg1_ldap_rename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ldap_rename(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_rename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1285,8 +1285,8 @@ dn => rsi bool fh_ldap_delete(Value* link, Value* dn) asm("_ZN4HPHP13f_ldap_deleteERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_ldap_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_delete(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_delete(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1299,7 +1299,7 @@ TypedValue * fg1_ldap_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ldap_delete(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_delete(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1343,8 +1343,8 @@ value => r8 TypedValue* fh_ldap_compare(TypedValue* _rv, Value* link, Value* dn, Value* attribute, Value* value) asm("_ZN4HPHP14f_ldap_compareERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_ldap_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_compare(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_compare(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -1363,7 +1363,7 @@ TypedValue * fg1_ldap_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_ldap_compare(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_compare(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1403,8 +1403,8 @@ link => rdi long fh_ldap_errno(Value* link) asm("_ZN4HPHP12f_ldap_errnoERKNS_6ObjectE"); -TypedValue * fg1_ldap_errno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_errno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_errno(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_errno(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1412,7 +1412,7 @@ TypedValue * fg1_ldap_errno(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ldap_errno(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_errno(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1453,8 +1453,8 @@ link => rsi Value* fh_ldap_error(Value* _rv, Value* link) asm("_ZN4HPHP12f_ldap_errorERKNS_6ObjectE"); -TypedValue * fg1_ldap_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_error(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_error(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1463,7 +1463,7 @@ TypedValue * fg1_ldap_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ldap_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1506,8 +1506,8 @@ result_entry => rdx TypedValue* fh_ldap_get_dn(TypedValue* _rv, Value* link, Value* result_entry) asm("_ZN4HPHP13f_ldap_get_dnERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_get_dn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_get_dn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_get_dn(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_get_dn(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1520,7 +1520,7 @@ TypedValue * fg1_ldap_get_dn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ldap_get_dn(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_get_dn(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1561,8 +1561,8 @@ result => rsi long fh_ldap_count_entries(Value* link, Value* result) asm("_ZN4HPHP20f_ldap_count_entriesERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_count_entries(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_count_entries(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_count_entries(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_count_entries(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-1)->m_type != KindOfObject) { @@ -1575,7 +1575,7 @@ TypedValue * fg1_ldap_count_entries(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_ldap_count_entries(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_count_entries(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1617,8 +1617,8 @@ result => rdx TypedValue* fh_ldap_get_entries(TypedValue* _rv, Value* link, Value* result) asm("_ZN4HPHP18f_ldap_get_entriesERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_get_entries(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_get_entries(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_get_entries(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_get_entries(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1631,7 +1631,7 @@ TypedValue * fg1_ldap_get_entries(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ldap_get_entries(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_get_entries(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1673,8 +1673,8 @@ result => rdx TypedValue* fh_ldap_first_entry(TypedValue* _rv, Value* link, Value* result) asm("_ZN4HPHP18f_ldap_first_entryERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_first_entry(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_first_entry(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_first_entry(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_first_entry(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1687,7 +1687,7 @@ TypedValue * fg1_ldap_first_entry(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ldap_first_entry(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_first_entry(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1729,8 +1729,8 @@ result_entry => rdx TypedValue* fh_ldap_next_entry(TypedValue* _rv, Value* link, Value* result_entry) asm("_ZN4HPHP17f_ldap_next_entryERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_next_entry(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_next_entry(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_next_entry(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_next_entry(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1743,7 +1743,7 @@ TypedValue * fg1_ldap_next_entry(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_ldap_next_entry(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_next_entry(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1785,8 +1785,8 @@ result_entry => rdx Value* fh_ldap_get_attributes(Value* _rv, Value* link, Value* result_entry) asm("_ZN4HPHP21f_ldap_get_attributesERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_get_attributes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_get_attributes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_get_attributes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_get_attributes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; if ((args-1)->m_type != KindOfObject) { @@ -1800,7 +1800,7 @@ TypedValue * fg1_ldap_get_attributes(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_ldap_get_attributes(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_get_attributes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1843,8 +1843,8 @@ result_entry => rdx TypedValue* fh_ldap_first_attribute(TypedValue* _rv, Value* link, Value* result_entry) asm("_ZN4HPHP22f_ldap_first_attributeERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_first_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_first_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_first_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_first_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1857,7 +1857,7 @@ TypedValue * fg1_ldap_first_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_ldap_first_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_first_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1899,8 +1899,8 @@ result_entry => rdx TypedValue* fh_ldap_next_attribute(TypedValue* _rv, Value* link, Value* result_entry) asm("_ZN4HPHP21f_ldap_next_attributeERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_next_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_next_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_next_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_next_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1913,7 +1913,7 @@ TypedValue * fg1_ldap_next_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_ldap_next_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_next_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1955,8 +1955,8 @@ result => rdx TypedValue* fh_ldap_first_reference(TypedValue* _rv, Value* link, Value* result) asm("_ZN4HPHP22f_ldap_first_referenceERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_first_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_first_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_first_reference(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_first_reference(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -1969,7 +1969,7 @@ TypedValue * fg1_ldap_first_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_ldap_first_reference(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_first_reference(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2011,8 +2011,8 @@ result_entry => rdx TypedValue* fh_ldap_next_reference(TypedValue* _rv, Value* link, Value* result_entry) asm("_ZN4HPHP21f_ldap_next_referenceERKNS_6ObjectES2_"); -TypedValue * fg1_ldap_next_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_next_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_next_reference(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_next_reference(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfObject) { tvCastToObjectInPlace(args-1); @@ -2025,7 +2025,7 @@ TypedValue * fg1_ldap_next_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_ldap_next_reference(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_next_reference(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2067,8 +2067,8 @@ referrals => rdx bool fh_ldap_parse_reference(Value* link, Value* result_entry, TypedValue* referrals) asm("_ZN4HPHP22f_ldap_parse_referenceERKNS_6ObjectES2_RKNS_14VRefParamValueE"); -TypedValue * fg1_ldap_parse_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_parse_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_parse_reference(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_parse_reference(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -2081,7 +2081,7 @@ TypedValue * fg1_ldap_parse_reference(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_ldap_parse_reference(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_parse_reference(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2126,8 +2126,8 @@ referrals => r9 bool fh_ldap_parse_result(Value* link, Value* result, TypedValue* errcode, TypedValue* matcheddn, TypedValue* errmsg, TypedValue* referrals) asm("_ZN4HPHP19f_ldap_parse_resultERKNS_6ObjectES2_RKNS_14VRefParamValueES5_S5_S5_"); -TypedValue * fg1_ldap_parse_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_parse_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_parse_result(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_parse_result(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2150,7 +2150,7 @@ TypedValue * fg1_ldap_parse_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ldap_parse_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_parse_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2193,8 +2193,8 @@ result => rdi bool fh_ldap_free_result(Value* result) asm("_ZN4HPHP18f_ldap_free_resultERKNS_6ObjectE"); -TypedValue * fg1_ldap_free_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_free_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_free_result(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_free_result(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2202,7 +2202,7 @@ TypedValue * fg1_ldap_free_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ldap_free_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_free_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2245,8 +2245,8 @@ attribute => rcx TypedValue* fh_ldap_get_values_len(TypedValue* _rv, Value* link, Value* result_entry, Value* attribute) asm("_ZN4HPHP21f_ldap_get_values_lenERKNS_6ObjectES2_RKNS_6StringE"); -TypedValue * fg1_ldap_get_values_len(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_get_values_len(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_get_values_len(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_get_values_len(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2262,7 +2262,7 @@ TypedValue * fg1_ldap_get_values_len(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_ldap_get_values_len(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_get_values_len(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2305,8 +2305,8 @@ attribute => rcx TypedValue* fh_ldap_get_values(TypedValue* _rv, Value* link, Value* result_entry, Value* attribute) asm("_ZN4HPHP17f_ldap_get_valuesERKNS_6ObjectES2_RKNS_6StringE"); -TypedValue * fg1_ldap_get_values(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ldap_get_values(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ldap_get_values(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ldap_get_values(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2322,7 +2322,7 @@ TypedValue * fg1_ldap_get_values(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_ldap_get_values(HPHP::VM::ActRec *ar) { +TypedValue* fg_ldap_get_values(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_magick.ext_hhvm.cpp b/hphp/runtime/ext/ext_magick.ext_hhvm.cpp index 5293612ef..6a17e5d09 100644 --- a/hphp/runtime/ext/ext_magick.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_magick.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi Value* fh_magickgetcopyright(Value* _rv) asm("_ZN4HPHP20f_magickgetcopyrightEv"); -TypedValue* fg_magickgetcopyright(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetcopyright(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -68,7 +68,7 @@ _rv => rdi Value* fh_magickgethomeurl(Value* _rv) asm("_ZN4HPHP18f_magickgethomeurlEv"); -TypedValue* fg_magickgethomeurl(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgethomeurl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -102,7 +102,7 @@ _rv => rdi Value* fh_magickgetpackagename(Value* _rv) asm("_ZN4HPHP22f_magickgetpackagenameEv"); -TypedValue* fg_magickgetpackagename(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetpackagename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -135,7 +135,7 @@ _ZN4HPHP23f_magickgetquantumdepthEv double fh_magickgetquantumdepth() asm("_ZN4HPHP23f_magickgetquantumdepthEv"); -TypedValue* fg_magickgetquantumdepth(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetquantumdepth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -168,7 +168,7 @@ _rv => rdi Value* fh_magickgetreleasedate(Value* _rv) asm("_ZN4HPHP22f_magickgetreleasedateEv"); -TypedValue* fg_magickgetreleasedate(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetreleasedate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -202,8 +202,8 @@ resource_type => rdi double fh_magickgetresourcelimit(int resource_type) asm("_ZN4HPHP24f_magickgetresourcelimitEi"); -TypedValue * fg1_magickgetresourcelimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetresourcelimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetresourcelimit(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetresourcelimit(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToInt64InPlace(args-0); @@ -211,7 +211,7 @@ TypedValue * fg1_magickgetresourcelimit(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickgetresourcelimit(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetresourcelimit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -251,7 +251,7 @@ _rv => rdi Value* fh_magickgetversion(Value* _rv) asm("_ZN4HPHP18f_magickgetversionEv"); -TypedValue* fg_magickgetversion(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetversion(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -284,7 +284,7 @@ _ZN4HPHP24f_magickgetversionnumberEv long fh_magickgetversionnumber() asm("_ZN4HPHP24f_magickgetversionnumberEv"); -TypedValue* fg_magickgetversionnumber(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetversionnumber(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -317,7 +317,7 @@ _rv => rdi Value* fh_magickgetversionstring(Value* _rv) asm("_ZN4HPHP24f_magickgetversionstringEv"); -TypedValue* fg_magickgetversionstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetversionstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -352,8 +352,8 @@ option => rsi Value* fh_magickqueryconfigureoption(Value* _rv, Value* option) asm("_ZN4HPHP28f_magickqueryconfigureoptionERKNS_6StringE"); -TypedValue * fg1_magickqueryconfigureoption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickqueryconfigureoption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickqueryconfigureoption(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickqueryconfigureoption(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -362,7 +362,7 @@ TypedValue * fg1_magickqueryconfigureoption(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_magickqueryconfigureoption(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickqueryconfigureoption(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -404,8 +404,8 @@ pattern => rsi Value* fh_magickqueryconfigureoptions(Value* _rv, Value* pattern) asm("_ZN4HPHP29f_magickqueryconfigureoptionsERKNS_6StringE"); -TypedValue * fg1_magickqueryconfigureoptions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickqueryconfigureoptions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickqueryconfigureoptions(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickqueryconfigureoptions(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -414,7 +414,7 @@ TypedValue * fg1_magickqueryconfigureoptions(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_magickqueryconfigureoptions(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickqueryconfigureoptions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -456,8 +456,8 @@ pattern => rsi Value* fh_magickqueryfonts(Value* _rv, Value* pattern) asm("_ZN4HPHP18f_magickqueryfontsERKNS_6StringE"); -TypedValue * fg1_magickqueryfonts(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickqueryfonts(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickqueryfonts(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickqueryfonts(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -466,7 +466,7 @@ TypedValue * fg1_magickqueryfonts(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickqueryfonts(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickqueryfonts(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -508,8 +508,8 @@ pattern => rsi Value* fh_magickqueryformats(Value* _rv, Value* pattern) asm("_ZN4HPHP20f_magickqueryformatsERKNS_6StringE"); -TypedValue * fg1_magickqueryformats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickqueryformats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickqueryformats(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickqueryformats(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -518,7 +518,7 @@ TypedValue * fg1_magickqueryformats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickqueryformats(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickqueryformats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -560,8 +560,8 @@ limit => xmm0 bool fh_magicksetresourcelimit(int resource_type, double limit) asm("_ZN4HPHP24f_magicksetresourcelimitEid"); -TypedValue * fg1_magicksetresourcelimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetresourcelimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetresourcelimit(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetresourcelimit(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -574,7 +574,7 @@ TypedValue * fg1_magicksetresourcelimit(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magicksetresourcelimit(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetresourcelimit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -614,7 +614,7 @@ _rv => rdi Value* fh_newdrawingwand(Value* _rv) asm("_ZN4HPHP16f_newdrawingwandEv"); -TypedValue* fg_newdrawingwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_newdrawingwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -648,7 +648,7 @@ _rv => rdi Value* fh_newmagickwand(Value* _rv) asm("_ZN4HPHP15f_newmagickwandEv"); -TypedValue* fg_newmagickwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_newmagickwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -683,8 +683,8 @@ mgck_wnd => rsi Value* fh_newpixeliterator(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP18f_newpixeliteratorERKNS_6ObjectE"); -TypedValue * fg1_newpixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_newpixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_newpixeliterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_newpixeliterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -693,7 +693,7 @@ TypedValue * fg1_newpixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_newpixeliterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_newpixeliterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -739,8 +739,8 @@ rows => r9 Value* fh_newpixelregioniterator(Value* _rv, Value* mgck_wnd, int x, int y, int columns, int rows) asm("_ZN4HPHP24f_newpixelregioniteratorERKNS_6ObjectEiiii"); -TypedValue * fg1_newpixelregioniterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_newpixelregioniterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_newpixelregioniterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_newpixelregioniterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-4)->m_type != KindOfInt64) { @@ -763,7 +763,7 @@ TypedValue * fg1_newpixelregioniterator(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_newpixelregioniterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_newpixelregioniterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -805,8 +805,8 @@ imagemagick_col_str => rsi Value* fh_newpixelwand(Value* _rv, Value* imagemagick_col_str) asm("_ZN4HPHP14f_newpixelwandERKNS_6StringE"); -TypedValue * fg1_newpixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_newpixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_newpixelwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_newpixelwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -815,7 +815,7 @@ TypedValue * fg1_newpixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_newpixelwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_newpixelwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -857,8 +857,8 @@ num_pxl_wnds => rsi Value* fh_newpixelwandarray(Value* _rv, int num_pxl_wnds) asm("_ZN4HPHP19f_newpixelwandarrayEi"); -TypedValue * fg1_newpixelwandarray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_newpixelwandarray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_newpixelwandarray(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_newpixelwandarray(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToInt64InPlace(args-0); @@ -867,7 +867,7 @@ TypedValue * fg1_newpixelwandarray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_newpixelwandarray(HPHP::VM::ActRec *ar) { +TypedValue* fg_newpixelwandarray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -909,8 +909,8 @@ num_pxl_wnds => rsi Value* fh_newpixelwands(Value* _rv, int num_pxl_wnds) asm("_ZN4HPHP15f_newpixelwandsEi"); -TypedValue * fg1_newpixelwands(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_newpixelwands(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_newpixelwands(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_newpixelwands(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToInt64InPlace(args-0); @@ -919,7 +919,7 @@ TypedValue * fg1_newpixelwands(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_newpixelwands(HPHP::VM::ActRec *ar) { +TypedValue* fg_newpixelwands(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -959,8 +959,8 @@ drw_wnd => rdi void fh_destroydrawingwand(Value* drw_wnd) asm("_ZN4HPHP20f_destroydrawingwandERKNS_6ObjectE"); -TypedValue * fg1_destroydrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_destroydrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_destroydrawingwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_destroydrawingwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -969,7 +969,7 @@ TypedValue * fg1_destroydrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_destroydrawingwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_destroydrawingwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1009,8 +1009,8 @@ mgck_wnd => rdi void fh_destroymagickwand(Value* mgck_wnd) asm("_ZN4HPHP19f_destroymagickwandERKNS_6ObjectE"); -TypedValue * fg1_destroymagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_destroymagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_destroymagickwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_destroymagickwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1019,7 +1019,7 @@ TypedValue * fg1_destroymagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_destroymagickwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_destroymagickwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1059,8 +1059,8 @@ pxl_iter => rdi void fh_destroypixeliterator(Value* pxl_iter) asm("_ZN4HPHP22f_destroypixeliteratorERKNS_6ObjectE"); -TypedValue * fg1_destroypixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_destroypixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_destroypixeliterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_destroypixeliterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1069,7 +1069,7 @@ TypedValue * fg1_destroypixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_destroypixeliterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_destroypixeliterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1109,8 +1109,8 @@ pxl_wnd => rdi void fh_destroypixelwand(Value* pxl_wnd) asm("_ZN4HPHP18f_destroypixelwandERKNS_6ObjectE"); -TypedValue * fg1_destroypixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_destroypixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_destroypixelwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_destroypixelwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1119,7 +1119,7 @@ TypedValue * fg1_destroypixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_destroypixelwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_destroypixelwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1159,8 +1159,8 @@ pxl_wnd_array => rdi void fh_destroypixelwandarray(Value* pxl_wnd_array) asm("_ZN4HPHP23f_destroypixelwandarrayERKNS_5ArrayE"); -TypedValue * fg1_destroypixelwandarray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_destroypixelwandarray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_destroypixelwandarray(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_destroypixelwandarray(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1169,7 +1169,7 @@ TypedValue * fg1_destroypixelwandarray(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_destroypixelwandarray(HPHP::VM::ActRec *ar) { +TypedValue* fg_destroypixelwandarray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1209,8 +1209,8 @@ pxl_wnd_array => rdi void fh_destroypixelwands(Value* pxl_wnd_array) asm("_ZN4HPHP19f_destroypixelwandsERKNS_5ArrayE"); -TypedValue * fg1_destroypixelwands(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_destroypixelwands(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_destroypixelwands(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_destroypixelwands(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1219,7 +1219,7 @@ TypedValue * fg1_destroypixelwands(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_destroypixelwands(HPHP::VM::ActRec *ar) { +TypedValue* fg_destroypixelwands(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1260,7 +1260,7 @@ var => rdi bool fh_isdrawingwand(TypedValue* var) asm("_ZN4HPHP15f_isdrawingwandERKNS_7VariantE"); -TypedValue* fg_isdrawingwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_isdrawingwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1293,7 +1293,7 @@ var => rdi bool fh_ismagickwand(TypedValue* var) asm("_ZN4HPHP14f_ismagickwandERKNS_7VariantE"); -TypedValue* fg_ismagickwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_ismagickwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1326,7 +1326,7 @@ var => rdi bool fh_ispixeliterator(TypedValue* var) asm("_ZN4HPHP17f_ispixeliteratorERKNS_7VariantE"); -TypedValue* fg_ispixeliterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_ispixeliterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1359,7 +1359,7 @@ var => rdi bool fh_ispixelwand(TypedValue* var) asm("_ZN4HPHP13f_ispixelwandERKNS_7VariantE"); -TypedValue* fg_ispixelwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_ispixelwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1391,8 +1391,8 @@ drw_wnd => rdi void fh_cleardrawingwand(Value* drw_wnd) asm("_ZN4HPHP18f_cleardrawingwandERKNS_6ObjectE"); -TypedValue * fg1_cleardrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_cleardrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_cleardrawingwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_cleardrawingwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1401,7 +1401,7 @@ TypedValue * fg1_cleardrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_cleardrawingwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_cleardrawingwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1441,8 +1441,8 @@ mgck_wnd => rdi void fh_clearmagickwand(Value* mgck_wnd) asm("_ZN4HPHP17f_clearmagickwandERKNS_6ObjectE"); -TypedValue * fg1_clearmagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clearmagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clearmagickwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clearmagickwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1451,7 +1451,7 @@ TypedValue * fg1_clearmagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_clearmagickwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_clearmagickwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1491,8 +1491,8 @@ pxl_iter => rdi void fh_clearpixeliterator(Value* pxl_iter) asm("_ZN4HPHP20f_clearpixeliteratorERKNS_6ObjectE"); -TypedValue * fg1_clearpixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clearpixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clearpixeliterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clearpixeliterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1501,7 +1501,7 @@ TypedValue * fg1_clearpixeliterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_clearpixeliterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_clearpixeliterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1541,8 +1541,8 @@ pxl_wnd => rdi void fh_clearpixelwand(Value* pxl_wnd) asm("_ZN4HPHP16f_clearpixelwandERKNS_6ObjectE"); -TypedValue * fg1_clearpixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clearpixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clearpixelwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clearpixelwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1551,7 +1551,7 @@ TypedValue * fg1_clearpixelwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_clearpixelwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_clearpixelwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1593,8 +1593,8 @@ drw_wnd => rsi Value* fh_clonedrawingwand(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP18f_clonedrawingwandERKNS_6ObjectE"); -TypedValue * fg1_clonedrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clonedrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clonedrawingwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clonedrawingwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -1603,7 +1603,7 @@ TypedValue * fg1_clonedrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_clonedrawingwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_clonedrawingwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1645,8 +1645,8 @@ mgck_wnd => rsi Value* fh_clonemagickwand(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP17f_clonemagickwandERKNS_6ObjectE"); -TypedValue * fg1_clonemagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clonemagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clonemagickwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clonemagickwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -1655,7 +1655,7 @@ TypedValue * fg1_clonemagickwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_clonemagickwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_clonemagickwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1697,8 +1697,8 @@ wnd => rsi Value* fh_wandgetexception(Value* _rv, Value* wnd) asm("_ZN4HPHP18f_wandgetexceptionERKNS_6ObjectE"); -TypedValue * fg1_wandgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_wandgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_wandgetexception(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_wandgetexception(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -1707,7 +1707,7 @@ TypedValue * fg1_wandgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_wandgetexception(HPHP::VM::ActRec *ar) { +TypedValue* fg_wandgetexception(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1749,8 +1749,8 @@ wnd => rsi Value* fh_wandgetexceptionstring(Value* _rv, Value* wnd) asm("_ZN4HPHP24f_wandgetexceptionstringERKNS_6ObjectE"); -TypedValue * fg1_wandgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_wandgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_wandgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_wandgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1759,7 +1759,7 @@ TypedValue * fg1_wandgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_wandgetexceptionstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_wandgetexceptionstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1800,8 +1800,8 @@ wnd => rdi long fh_wandgetexceptiontype(Value* wnd) asm("_ZN4HPHP22f_wandgetexceptiontypeERKNS_6ObjectE"); -TypedValue * fg1_wandgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_wandgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_wandgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_wandgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1809,7 +1809,7 @@ TypedValue * fg1_wandgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_wandgetexceptiontype(HPHP::VM::ActRec *ar) { +TypedValue* fg_wandgetexceptiontype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1849,8 +1849,8 @@ wnd => rdi bool fh_wandhasexception(Value* wnd) asm("_ZN4HPHP18f_wandhasexceptionERKNS_6ObjectE"); -TypedValue * fg1_wandhasexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_wandhasexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_wandhasexception(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_wandhasexception(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1858,7 +1858,7 @@ TypedValue * fg1_wandhasexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_wandhasexception(HPHP::VM::ActRec *ar) { +TypedValue* fg_wandhasexception(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1903,8 +1903,8 @@ ty => xmm5 void fh_drawaffine(Value* drw_wnd, double sx, double sy, double rx, double ry, double tx, double ty) asm("_ZN4HPHP12f_drawaffineERKNS_6ObjectEdddddd"); -TypedValue * fg1_drawaffine(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawaffine(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawaffine(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawaffine(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1933,7 +1933,7 @@ TypedValue * fg1_drawaffine(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawaffine(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawaffine(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1976,8 +1976,8 @@ text => rsi void fh_drawannotation(Value* drw_wnd, double x, double y, Value* text) asm("_ZN4HPHP16f_drawannotationERKNS_6ObjectEddRKNS_6StringE"); -TypedValue * fg1_drawannotation(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawannotation(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawannotation(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawannotation(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1997,7 +1997,7 @@ TypedValue * fg1_drawannotation(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_drawannotation(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawannotation(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2043,8 +2043,8 @@ ed => xmm5 void fh_drawarc(Value* drw_wnd, double sx, double sy, double ex, double ey, double sd, double ed) asm("_ZN4HPHP9f_drawarcERKNS_6ObjectEdddddd"); -TypedValue * fg1_drawarc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawarc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawarc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawarc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2073,7 +2073,7 @@ TypedValue * fg1_drawarc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_drawarc(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawarc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2114,8 +2114,8 @@ x_y_points_array => rsi void fh_drawbezier(Value* drw_wnd, Value* x_y_points_array) asm("_ZN4HPHP12f_drawbezierERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_drawbezier(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawbezier(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawbezier(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawbezier(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2129,7 +2129,7 @@ TypedValue * fg1_drawbezier(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawbezier(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawbezier(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2173,8 +2173,8 @@ py => xmm3 void fh_drawcircle(Value* drw_wnd, double ox, double oy, double px, double py) asm("_ZN4HPHP12f_drawcircleERKNS_6ObjectEdddd"); -TypedValue * fg1_drawcircle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawcircle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawcircle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawcircle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2197,7 +2197,7 @@ TypedValue * fg1_drawcircle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawcircle(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawcircle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2240,8 +2240,8 @@ paint_method => rsi void fh_drawcolor(Value* drw_wnd, double x, double y, int paint_method) asm("_ZN4HPHP11f_drawcolorERKNS_6ObjectEddi"); -TypedValue * fg1_drawcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2261,7 +2261,7 @@ TypedValue * fg1_drawcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2302,8 +2302,8 @@ comment => rsi void fh_drawcomment(Value* drw_wnd, Value* comment) asm("_ZN4HPHP13f_drawcommentERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawcomment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawcomment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawcomment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawcomment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2317,7 +2317,7 @@ TypedValue * fg1_drawcomment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_drawcomment(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawcomment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2364,8 +2364,8 @@ mgck_wnd => rdx bool fh_drawcomposite(Value* drw_wnd, int composite_operator, double x, double y, double width, double height, Value* mgck_wnd) asm("_ZN4HPHP15f_drawcompositeERKNS_6ObjectEiddddS2_"); -TypedValue * fg1_drawcomposite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawcomposite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawcomposite(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawcomposite(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-6)->m_type != KindOfObject) { @@ -2393,7 +2393,7 @@ TypedValue * fg1_drawcomposite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_drawcomposite(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawcomposite(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2438,8 +2438,8 @@ end => xmm5 void fh_drawellipse(Value* drw_wnd, double ox, double oy, double rx, double ry, double start, double end) asm("_ZN4HPHP13f_drawellipseERKNS_6ObjectEdddddd"); -TypedValue * fg1_drawellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawellipse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawellipse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2468,7 +2468,7 @@ TypedValue * fg1_drawellipse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_drawellipse(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawellipse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2510,8 +2510,8 @@ drw_wnd => rsi Value* fh_drawgetclippath(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP17f_drawgetclippathERKNS_6ObjectE"); -TypedValue * fg1_drawgetclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetclippath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetclippath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -2520,7 +2520,7 @@ TypedValue * fg1_drawgetclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawgetclippath(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetclippath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2561,8 +2561,8 @@ drw_wnd => rdi long fh_drawgetcliprule(Value* drw_wnd) asm("_ZN4HPHP17f_drawgetclipruleERKNS_6ObjectE"); -TypedValue * fg1_drawgetcliprule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetcliprule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetcliprule(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetcliprule(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2570,7 +2570,7 @@ TypedValue * fg1_drawgetcliprule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawgetcliprule(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetcliprule(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2610,8 +2610,8 @@ drw_wnd => rdi long fh_drawgetclipunits(Value* drw_wnd) asm("_ZN4HPHP18f_drawgetclipunitsERKNS_6ObjectE"); -TypedValue * fg1_drawgetclipunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetclipunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetclipunits(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetclipunits(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2619,7 +2619,7 @@ TypedValue * fg1_drawgetclipunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawgetclipunits(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetclipunits(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2660,8 +2660,8 @@ drw_wnd => rsi Value* fh_drawgetexception(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP18f_drawgetexceptionERKNS_6ObjectE"); -TypedValue * fg1_drawgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetexception(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetexception(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -2670,7 +2670,7 @@ TypedValue * fg1_drawgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawgetexception(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetexception(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2712,8 +2712,8 @@ drw_wnd => rsi Value* fh_drawgetexceptionstring(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP24f_drawgetexceptionstringERKNS_6ObjectE"); -TypedValue * fg1_drawgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -2722,7 +2722,7 @@ TypedValue * fg1_drawgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawgetexceptionstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetexceptionstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2763,8 +2763,8 @@ drw_wnd => rdi long fh_drawgetexceptiontype(Value* drw_wnd) asm("_ZN4HPHP22f_drawgetexceptiontypeERKNS_6ObjectE"); -TypedValue * fg1_drawgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2772,7 +2772,7 @@ TypedValue * fg1_drawgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawgetexceptiontype(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetexceptiontype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2812,8 +2812,8 @@ drw_wnd => rdi double fh_drawgetfillalpha(Value* drw_wnd) asm("_ZN4HPHP18f_drawgetfillalphaERKNS_6ObjectE"); -TypedValue * fg1_drawgetfillalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfillalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfillalpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfillalpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -2821,7 +2821,7 @@ TypedValue * fg1_drawgetfillalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawgetfillalpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfillalpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2862,8 +2862,8 @@ drw_wnd => rsi Value* fh_drawgetfillcolor(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP18f_drawgetfillcolorERKNS_6ObjectE"); -TypedValue * fg1_drawgetfillcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfillcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfillcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfillcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -2872,7 +2872,7 @@ TypedValue * fg1_drawgetfillcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawgetfillcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfillcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2913,8 +2913,8 @@ drw_wnd => rdi double fh_drawgetfillopacity(Value* drw_wnd) asm("_ZN4HPHP20f_drawgetfillopacityERKNS_6ObjectE"); -TypedValue * fg1_drawgetfillopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfillopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfillopacity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfillopacity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -2922,7 +2922,7 @@ TypedValue * fg1_drawgetfillopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawgetfillopacity(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfillopacity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2962,8 +2962,8 @@ drw_wnd => rdi long fh_drawgetfillrule(Value* drw_wnd) asm("_ZN4HPHP17f_drawgetfillruleERKNS_6ObjectE"); -TypedValue * fg1_drawgetfillrule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfillrule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfillrule(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfillrule(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2971,7 +2971,7 @@ TypedValue * fg1_drawgetfillrule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawgetfillrule(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfillrule(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3012,8 +3012,8 @@ drw_wnd => rsi Value* fh_drawgetfont(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP13f_drawgetfontERKNS_6ObjectE"); -TypedValue * fg1_drawgetfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -3022,7 +3022,7 @@ TypedValue * fg1_drawgetfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_drawgetfont(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3064,8 +3064,8 @@ drw_wnd => rsi Value* fh_drawgetfontfamily(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP19f_drawgetfontfamilyERKNS_6ObjectE"); -TypedValue * fg1_drawgetfontfamily(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfontfamily(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfontfamily(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfontfamily(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -3074,7 +3074,7 @@ TypedValue * fg1_drawgetfontfamily(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawgetfontfamily(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfontfamily(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3115,8 +3115,8 @@ drw_wnd => rdi double fh_drawgetfontsize(Value* drw_wnd) asm("_ZN4HPHP17f_drawgetfontsizeERKNS_6ObjectE"); -TypedValue * fg1_drawgetfontsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfontsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfontsize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfontsize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -3124,7 +3124,7 @@ TypedValue * fg1_drawgetfontsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawgetfontsize(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfontsize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3164,8 +3164,8 @@ drw_wnd => rdi long fh_drawgetfontstretch(Value* drw_wnd) asm("_ZN4HPHP20f_drawgetfontstretchERKNS_6ObjectE"); -TypedValue * fg1_drawgetfontstretch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfontstretch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfontstretch(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfontstretch(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3173,7 +3173,7 @@ TypedValue * fg1_drawgetfontstretch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawgetfontstretch(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfontstretch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3213,8 +3213,8 @@ drw_wnd => rdi long fh_drawgetfontstyle(Value* drw_wnd) asm("_ZN4HPHP18f_drawgetfontstyleERKNS_6ObjectE"); -TypedValue * fg1_drawgetfontstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfontstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfontstyle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfontstyle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3222,7 +3222,7 @@ TypedValue * fg1_drawgetfontstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawgetfontstyle(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfontstyle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3262,8 +3262,8 @@ drw_wnd => rdi double fh_drawgetfontweight(Value* drw_wnd) asm("_ZN4HPHP19f_drawgetfontweightERKNS_6ObjectE"); -TypedValue * fg1_drawgetfontweight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetfontweight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetfontweight(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetfontweight(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -3271,7 +3271,7 @@ TypedValue * fg1_drawgetfontweight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawgetfontweight(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetfontweight(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3311,8 +3311,8 @@ drw_wnd => rdi long fh_drawgetgravity(Value* drw_wnd) asm("_ZN4HPHP16f_drawgetgravityERKNS_6ObjectE"); -TypedValue * fg1_drawgetgravity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetgravity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetgravity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetgravity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3320,7 +3320,7 @@ TypedValue * fg1_drawgetgravity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_drawgetgravity(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetgravity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3360,8 +3360,8 @@ drw_wnd => rdi double fh_drawgetstrokealpha(Value* drw_wnd) asm("_ZN4HPHP20f_drawgetstrokealphaERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokealpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokealpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -3369,7 +3369,7 @@ TypedValue * fg1_drawgetstrokealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawgetstrokealpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokealpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3409,8 +3409,8 @@ drw_wnd => rdi bool fh_drawgetstrokeantialias(Value* drw_wnd) asm("_ZN4HPHP24f_drawgetstrokeantialiasERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokeantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokeantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokeantialias(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokeantialias(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -3418,7 +3418,7 @@ TypedValue * fg1_drawgetstrokeantialias(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawgetstrokeantialias(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokeantialias(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3459,8 +3459,8 @@ drw_wnd => rsi Value* fh_drawgetstrokecolor(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP20f_drawgetstrokecolorERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokecolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokecolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -3469,7 +3469,7 @@ TypedValue * fg1_drawgetstrokecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawgetstrokecolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokecolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3511,8 +3511,8 @@ drw_wnd => rsi Value* fh_drawgetstrokedasharray(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP24f_drawgetstrokedasharrayERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokedasharray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokedasharray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokedasharray(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokedasharray(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -3521,7 +3521,7 @@ TypedValue * fg1_drawgetstrokedasharray(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawgetstrokedasharray(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokedasharray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3562,8 +3562,8 @@ drw_wnd => rdi double fh_drawgetstrokedashoffset(Value* drw_wnd) asm("_ZN4HPHP25f_drawgetstrokedashoffsetERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokedashoffset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokedashoffset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokedashoffset(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokedashoffset(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -3571,7 +3571,7 @@ TypedValue * fg1_drawgetstrokedashoffset(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_drawgetstrokedashoffset(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokedashoffset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3611,8 +3611,8 @@ drw_wnd => rdi long fh_drawgetstrokelinecap(Value* drw_wnd) asm("_ZN4HPHP22f_drawgetstrokelinecapERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokelinecap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokelinecap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokelinecap(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokelinecap(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3620,7 +3620,7 @@ TypedValue * fg1_drawgetstrokelinecap(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawgetstrokelinecap(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokelinecap(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3660,8 +3660,8 @@ drw_wnd => rdi long fh_drawgetstrokelinejoin(Value* drw_wnd) asm("_ZN4HPHP23f_drawgetstrokelinejoinERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokelinejoin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokelinejoin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokelinejoin(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokelinejoin(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3669,7 +3669,7 @@ TypedValue * fg1_drawgetstrokelinejoin(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawgetstrokelinejoin(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokelinejoin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3709,8 +3709,8 @@ drw_wnd => rdi double fh_drawgetstrokemiterlimit(Value* drw_wnd) asm("_ZN4HPHP25f_drawgetstrokemiterlimitERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokemiterlimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokemiterlimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokemiterlimit(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokemiterlimit(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -3718,7 +3718,7 @@ TypedValue * fg1_drawgetstrokemiterlimit(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_drawgetstrokemiterlimit(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokemiterlimit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3758,8 +3758,8 @@ drw_wnd => rdi double fh_drawgetstrokeopacity(Value* drw_wnd) asm("_ZN4HPHP22f_drawgetstrokeopacityERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokeopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokeopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokeopacity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokeopacity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -3767,7 +3767,7 @@ TypedValue * fg1_drawgetstrokeopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawgetstrokeopacity(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokeopacity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3807,8 +3807,8 @@ drw_wnd => rdi double fh_drawgetstrokewidth(Value* drw_wnd) asm("_ZN4HPHP20f_drawgetstrokewidthERKNS_6ObjectE"); -TypedValue * fg1_drawgetstrokewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetstrokewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetstrokewidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetstrokewidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -3816,7 +3816,7 @@ TypedValue * fg1_drawgetstrokewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawgetstrokewidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetstrokewidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3856,8 +3856,8 @@ drw_wnd => rdi long fh_drawgettextalignment(Value* drw_wnd) asm("_ZN4HPHP22f_drawgettextalignmentERKNS_6ObjectE"); -TypedValue * fg1_drawgettextalignment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgettextalignment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgettextalignment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgettextalignment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3865,7 +3865,7 @@ TypedValue * fg1_drawgettextalignment(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawgettextalignment(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgettextalignment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3905,8 +3905,8 @@ drw_wnd => rdi bool fh_drawgettextantialias(Value* drw_wnd) asm("_ZN4HPHP22f_drawgettextantialiasERKNS_6ObjectE"); -TypedValue * fg1_drawgettextantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgettextantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgettextantialias(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgettextantialias(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -3914,7 +3914,7 @@ TypedValue * fg1_drawgettextantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawgettextantialias(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgettextantialias(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3954,8 +3954,8 @@ drw_wnd => rdi long fh_drawgettextdecoration(Value* drw_wnd) asm("_ZN4HPHP23f_drawgettextdecorationERKNS_6ObjectE"); -TypedValue * fg1_drawgettextdecoration(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgettextdecoration(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgettextdecoration(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgettextdecoration(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -3963,7 +3963,7 @@ TypedValue * fg1_drawgettextdecoration(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawgettextdecoration(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgettextdecoration(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4004,8 +4004,8 @@ drw_wnd => rsi Value* fh_drawgettextencoding(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP21f_drawgettextencodingERKNS_6ObjectE"); -TypedValue * fg1_drawgettextencoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgettextencoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgettextencoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgettextencoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -4014,7 +4014,7 @@ TypedValue * fg1_drawgettextencoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_drawgettextencoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgettextencoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4056,8 +4056,8 @@ drw_wnd => rsi Value* fh_drawgettextundercolor(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP23f_drawgettextundercolorERKNS_6ObjectE"); -TypedValue * fg1_drawgettextundercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgettextundercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgettextundercolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgettextundercolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -4066,7 +4066,7 @@ TypedValue * fg1_drawgettextundercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawgettextundercolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgettextundercolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4108,8 +4108,8 @@ drw_wnd => rsi Value* fh_drawgetvectorgraphics(Value* _rv, Value* drw_wnd) asm("_ZN4HPHP23f_drawgetvectorgraphicsERKNS_6ObjectE"); -TypedValue * fg1_drawgetvectorgraphics(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawgetvectorgraphics(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawgetvectorgraphics(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawgetvectorgraphics(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -4118,7 +4118,7 @@ TypedValue * fg1_drawgetvectorgraphics(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawgetvectorgraphics(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawgetvectorgraphics(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4162,8 +4162,8 @@ ey => xmm3 void fh_drawline(Value* drw_wnd, double sx, double sy, double ex, double ey) asm("_ZN4HPHP10f_drawlineERKNS_6ObjectEdddd"); -TypedValue * fg1_drawline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawline(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawline(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4186,7 +4186,7 @@ TypedValue * fg1_drawline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_drawline(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawline(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4229,8 +4229,8 @@ paint_method => rsi void fh_drawmatte(Value* drw_wnd, double x, double y, int paint_method) asm("_ZN4HPHP11f_drawmatteERKNS_6ObjectEddi"); -TypedValue * fg1_drawmatte(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawmatte(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawmatte(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawmatte(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4250,7 +4250,7 @@ TypedValue * fg1_drawmatte(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawmatte(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawmatte(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4290,8 +4290,8 @@ drw_wnd => rdi void fh_drawpathclose(Value* drw_wnd) asm("_ZN4HPHP15f_drawpathcloseERKNS_6ObjectE"); -TypedValue * fg1_drawpathclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathclose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathclose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4300,7 +4300,7 @@ TypedValue * fg1_drawpathclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_drawpathclose(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathclose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4346,8 +4346,8 @@ y => xmm5 void fh_drawpathcurvetoabsolute(Value* drw_wnd, double x1, double y1, double x2, double y2, double x, double y) asm("_ZN4HPHP25f_drawpathcurvetoabsoluteERKNS_6ObjectEdddddd"); -TypedValue * fg1_drawpathcurvetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetoabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetoabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4376,7 +4376,7 @@ TypedValue * fg1_drawpathcurvetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_drawpathcurvetoabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetoabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4420,8 +4420,8 @@ y => xmm3 void fh_drawpathcurvetoquadraticbezierabsolute(Value* drw_wnd, double x1, double y1, double x, double y) asm("_ZN4HPHP40f_drawpathcurvetoquadraticbezierabsoluteERKNS_6ObjectEdddd"); -TypedValue * fg1_drawpathcurvetoquadraticbezierabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetoquadraticbezierabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetoquadraticbezierabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetoquadraticbezierabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4444,7 +4444,7 @@ TypedValue * fg1_drawpathcurvetoquadraticbezierabsolute(TypedValue* rv, HPHP::VM return rv; } -TypedValue* fg_drawpathcurvetoquadraticbezierabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetoquadraticbezierabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4488,8 +4488,8 @@ y => xmm3 void fh_drawpathcurvetoquadraticbezierrelative(Value* drw_wnd, double x1, double y1, double x, double y) asm("_ZN4HPHP40f_drawpathcurvetoquadraticbezierrelativeERKNS_6ObjectEdddd"); -TypedValue * fg1_drawpathcurvetoquadraticbezierrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetoquadraticbezierrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetoquadraticbezierrelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetoquadraticbezierrelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4512,7 +4512,7 @@ TypedValue * fg1_drawpathcurvetoquadraticbezierrelative(TypedValue* rv, HPHP::VM return rv; } -TypedValue* fg_drawpathcurvetoquadraticbezierrelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetoquadraticbezierrelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4554,8 +4554,8 @@ y => xmm1 void fh_drawpathcurvetoquadraticbeziersmoothabsolute(Value* drw_wnd, double x, double y) asm("_ZN4HPHP46f_drawpathcurvetoquadraticbeziersmoothabsoluteERKNS_6ObjectEdd"); -TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4572,7 +4572,7 @@ TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothabsolute(TypedValue* rv, HP return rv; } -TypedValue* fg_drawpathcurvetoquadraticbeziersmoothabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetoquadraticbeziersmoothabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4614,8 +4614,8 @@ y => xmm1 void fh_drawpathcurvetoquadraticbeziersmoothrelative(Value* drw_wnd, double x, double y) asm("_ZN4HPHP46f_drawpathcurvetoquadraticbeziersmoothrelativeERKNS_6ObjectEdd"); -TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothrelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothrelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4632,7 +4632,7 @@ TypedValue * fg1_drawpathcurvetoquadraticbeziersmoothrelative(TypedValue* rv, HP return rv; } -TypedValue* fg_drawpathcurvetoquadraticbeziersmoothrelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetoquadraticbeziersmoothrelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4678,8 +4678,8 @@ y => xmm5 void fh_drawpathcurvetorelative(Value* drw_wnd, double x1, double y1, double x2, double y2, double x, double y) asm("_ZN4HPHP25f_drawpathcurvetorelativeERKNS_6ObjectEdddddd"); -TypedValue * fg1_drawpathcurvetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetorelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetorelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4708,7 +4708,7 @@ TypedValue * fg1_drawpathcurvetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_drawpathcurvetorelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetorelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4752,8 +4752,8 @@ y => xmm3 void fh_drawpathcurvetosmoothabsolute(Value* drw_wnd, double x2, double y2, double x, double y) asm("_ZN4HPHP31f_drawpathcurvetosmoothabsoluteERKNS_6ObjectEdddd"); -TypedValue * fg1_drawpathcurvetosmoothabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetosmoothabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetosmoothabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetosmoothabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4776,7 +4776,7 @@ TypedValue * fg1_drawpathcurvetosmoothabsolute(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_drawpathcurvetosmoothabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetosmoothabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4820,8 +4820,8 @@ y => xmm3 void fh_drawpathcurvetosmoothrelative(Value* drw_wnd, double x2, double y2, double x, double y) asm("_ZN4HPHP31f_drawpathcurvetosmoothrelativeERKNS_6ObjectEdddd"); -TypedValue * fg1_drawpathcurvetosmoothrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathcurvetosmoothrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathcurvetosmoothrelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathcurvetosmoothrelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4844,7 +4844,7 @@ TypedValue * fg1_drawpathcurvetosmoothrelative(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_drawpathcurvetosmoothrelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathcurvetosmoothrelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4891,8 +4891,8 @@ y => xmm4 void fh_drawpathellipticarcabsolute(Value* drw_wnd, double rx, double ry, double x_axis_rotation, bool large_arc_flag, bool sweep_flag, double x, double y) asm("_ZN4HPHP29f_drawpathellipticarcabsoluteERKNS_6ObjectEdddbbdd"); -TypedValue * fg1_drawpathellipticarcabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathellipticarcabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathellipticarcabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathellipticarcabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -4924,7 +4924,7 @@ TypedValue * fg1_drawpathellipticarcabsolute(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_drawpathellipticarcabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathellipticarcabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4971,8 +4971,8 @@ y => xmm4 void fh_drawpathellipticarcrelative(Value* drw_wnd, double rx, double ry, double x_axis_rotation, bool large_arc_flag, bool sweep_flag, double x, double y) asm("_ZN4HPHP29f_drawpathellipticarcrelativeERKNS_6ObjectEdddbbdd"); -TypedValue * fg1_drawpathellipticarcrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathellipticarcrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathellipticarcrelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathellipticarcrelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5004,7 +5004,7 @@ TypedValue * fg1_drawpathellipticarcrelative(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_drawpathellipticarcrelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathellipticarcrelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5044,8 +5044,8 @@ drw_wnd => rdi void fh_drawpathfinish(Value* drw_wnd) asm("_ZN4HPHP16f_drawpathfinishERKNS_6ObjectE"); -TypedValue * fg1_drawpathfinish(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathfinish(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathfinish(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathfinish(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5054,7 +5054,7 @@ TypedValue * fg1_drawpathfinish(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_drawpathfinish(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathfinish(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5096,8 +5096,8 @@ y => xmm1 void fh_drawpathlinetoabsolute(Value* drw_wnd, double x, double y) asm("_ZN4HPHP24f_drawpathlinetoabsoluteERKNS_6ObjectEdd"); -TypedValue * fg1_drawpathlinetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathlinetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathlinetoabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathlinetoabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5114,7 +5114,7 @@ TypedValue * fg1_drawpathlinetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawpathlinetoabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathlinetoabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5155,8 +5155,8 @@ x => xmm0 void fh_drawpathlinetohorizontalabsolute(Value* drw_wnd, double x) asm("_ZN4HPHP34f_drawpathlinetohorizontalabsoluteERKNS_6ObjectEd"); -TypedValue * fg1_drawpathlinetohorizontalabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathlinetohorizontalabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathlinetohorizontalabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathlinetohorizontalabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5170,7 +5170,7 @@ TypedValue * fg1_drawpathlinetohorizontalabsolute(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_drawpathlinetohorizontalabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathlinetohorizontalabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5211,8 +5211,8 @@ x => xmm0 void fh_drawpathlinetohorizontalrelative(Value* drw_wnd, double x) asm("_ZN4HPHP34f_drawpathlinetohorizontalrelativeERKNS_6ObjectEd"); -TypedValue * fg1_drawpathlinetohorizontalrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathlinetohorizontalrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathlinetohorizontalrelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathlinetohorizontalrelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5226,7 +5226,7 @@ TypedValue * fg1_drawpathlinetohorizontalrelative(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_drawpathlinetohorizontalrelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathlinetohorizontalrelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5268,8 +5268,8 @@ y => xmm1 void fh_drawpathlinetorelative(Value* drw_wnd, double x, double y) asm("_ZN4HPHP24f_drawpathlinetorelativeERKNS_6ObjectEdd"); -TypedValue * fg1_drawpathlinetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathlinetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathlinetorelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathlinetorelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5286,7 +5286,7 @@ TypedValue * fg1_drawpathlinetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawpathlinetorelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathlinetorelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5327,8 +5327,8 @@ y => xmm0 void fh_drawpathlinetoverticalabsolute(Value* drw_wnd, double y) asm("_ZN4HPHP32f_drawpathlinetoverticalabsoluteERKNS_6ObjectEd"); -TypedValue * fg1_drawpathlinetoverticalabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathlinetoverticalabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathlinetoverticalabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathlinetoverticalabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5342,7 +5342,7 @@ TypedValue * fg1_drawpathlinetoverticalabsolute(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_drawpathlinetoverticalabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathlinetoverticalabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5383,8 +5383,8 @@ y => xmm0 void fh_drawpathlinetoverticalrelative(Value* drw_wnd, double y) asm("_ZN4HPHP32f_drawpathlinetoverticalrelativeERKNS_6ObjectEd"); -TypedValue * fg1_drawpathlinetoverticalrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathlinetoverticalrelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathlinetoverticalrelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathlinetoverticalrelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5398,7 +5398,7 @@ TypedValue * fg1_drawpathlinetoverticalrelative(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_drawpathlinetoverticalrelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathlinetoverticalrelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5440,8 +5440,8 @@ y => xmm1 void fh_drawpathmovetoabsolute(Value* drw_wnd, double x, double y) asm("_ZN4HPHP24f_drawpathmovetoabsoluteERKNS_6ObjectEdd"); -TypedValue * fg1_drawpathmovetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathmovetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathmovetoabsolute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathmovetoabsolute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5458,7 +5458,7 @@ TypedValue * fg1_drawpathmovetoabsolute(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawpathmovetoabsolute(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathmovetoabsolute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5500,8 +5500,8 @@ y => xmm1 void fh_drawpathmovetorelative(Value* drw_wnd, double x, double y) asm("_ZN4HPHP24f_drawpathmovetorelativeERKNS_6ObjectEdd"); -TypedValue * fg1_drawpathmovetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathmovetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathmovetorelative(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathmovetorelative(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5518,7 +5518,7 @@ TypedValue * fg1_drawpathmovetorelative(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawpathmovetorelative(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathmovetorelative(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5558,8 +5558,8 @@ drw_wnd => rdi void fh_drawpathstart(Value* drw_wnd) asm("_ZN4HPHP15f_drawpathstartERKNS_6ObjectE"); -TypedValue * fg1_drawpathstart(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpathstart(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpathstart(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpathstart(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5568,7 +5568,7 @@ TypedValue * fg1_drawpathstart(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_drawpathstart(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpathstart(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5610,8 +5610,8 @@ y => xmm1 void fh_drawpoint(Value* drw_wnd, double x, double y) asm("_ZN4HPHP11f_drawpointERKNS_6ObjectEdd"); -TypedValue * fg1_drawpoint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpoint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpoint(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpoint(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5628,7 +5628,7 @@ TypedValue * fg1_drawpoint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawpoint(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpoint(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5669,8 +5669,8 @@ x_y_points_array => rsi void fh_drawpolygon(Value* drw_wnd, Value* x_y_points_array) asm("_ZN4HPHP13f_drawpolygonERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_drawpolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpolygon(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpolygon(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5684,7 +5684,7 @@ TypedValue * fg1_drawpolygon(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_drawpolygon(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpolygon(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5725,8 +5725,8 @@ x_y_points_array => rsi void fh_drawpolyline(Value* drw_wnd, Value* x_y_points_array) asm("_ZN4HPHP14f_drawpolylineERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_drawpolyline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpolyline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpolyline(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpolyline(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5740,7 +5740,7 @@ TypedValue * fg1_drawpolyline(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_drawpolyline(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpolyline(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5784,8 +5784,8 @@ y2 => xmm3 void fh_drawrectangle(Value* drw_wnd, double x1, double y1, double x2, double y2) asm("_ZN4HPHP15f_drawrectangleERKNS_6ObjectEdddd"); -TypedValue * fg1_drawrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawrectangle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawrectangle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5808,7 +5808,7 @@ TypedValue * fg1_drawrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_drawrectangle(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawrectangle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5849,8 +5849,8 @@ drw_wnd => rdi bool fh_drawrender(Value* drw_wnd) asm("_ZN4HPHP12f_drawrenderERKNS_6ObjectE"); -TypedValue * fg1_drawrender(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawrender(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawrender(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawrender(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -5858,7 +5858,7 @@ TypedValue * fg1_drawrender(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawrender(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawrender(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5898,8 +5898,8 @@ degrees => xmm0 void fh_drawrotate(Value* drw_wnd, double degrees) asm("_ZN4HPHP12f_drawrotateERKNS_6ObjectEd"); -TypedValue * fg1_drawrotate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawrotate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawrotate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawrotate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5913,7 +5913,7 @@ TypedValue * fg1_drawrotate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawrotate(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawrotate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5959,8 +5959,8 @@ ry => xmm5 void fh_drawroundrectangle(Value* drw_wnd, double x1, double y1, double x2, double y2, double rx, double ry) asm("_ZN4HPHP20f_drawroundrectangleERKNS_6ObjectEdddddd"); -TypedValue * fg1_drawroundrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawroundrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawroundrectangle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawroundrectangle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5989,7 +5989,7 @@ TypedValue * fg1_drawroundrectangle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawroundrectangle(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawroundrectangle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6031,8 +6031,8 @@ y => xmm1 void fh_drawscale(Value* drw_wnd, double x, double y) asm("_ZN4HPHP11f_drawscaleERKNS_6ObjectEdd"); -TypedValue * fg1_drawscale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawscale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawscale(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawscale(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6049,7 +6049,7 @@ TypedValue * fg1_drawscale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawscale(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawscale(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6091,8 +6091,8 @@ clip_path => rsi bool fh_drawsetclippath(Value* drw_wnd, Value* clip_path) asm("_ZN4HPHP17f_drawsetclippathERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawsetclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetclippath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetclippath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -6105,7 +6105,7 @@ TypedValue * fg1_drawsetclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawsetclippath(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetclippath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6145,8 +6145,8 @@ fill_rule => rsi void fh_drawsetcliprule(Value* drw_wnd, int fill_rule) asm("_ZN4HPHP17f_drawsetclipruleERKNS_6ObjectEi"); -TypedValue * fg1_drawsetcliprule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetcliprule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetcliprule(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetcliprule(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6160,7 +6160,7 @@ TypedValue * fg1_drawsetcliprule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawsetcliprule(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetcliprule(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6201,8 +6201,8 @@ clip_path_units => rsi void fh_drawsetclipunits(Value* drw_wnd, int clip_path_units) asm("_ZN4HPHP18f_drawsetclipunitsERKNS_6ObjectEi"); -TypedValue * fg1_drawsetclipunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetclipunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetclipunits(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetclipunits(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6216,7 +6216,7 @@ TypedValue * fg1_drawsetclipunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawsetclipunits(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetclipunits(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6257,8 +6257,8 @@ fill_opacity => xmm0 void fh_drawsetfillalpha(Value* drw_wnd, double fill_opacity) asm("_ZN4HPHP18f_drawsetfillalphaERKNS_6ObjectEd"); -TypedValue * fg1_drawsetfillalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfillalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfillalpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfillalpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6272,7 +6272,7 @@ TypedValue * fg1_drawsetfillalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawsetfillalpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfillalpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6313,8 +6313,8 @@ fill_pxl_wnd => rsi void fh_drawsetfillcolor(Value* drw_wnd, Value* fill_pxl_wnd) asm("_ZN4HPHP18f_drawsetfillcolorERKNS_6ObjectES2_"); -TypedValue * fg1_drawsetfillcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfillcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfillcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfillcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6328,7 +6328,7 @@ TypedValue * fg1_drawsetfillcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawsetfillcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfillcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6369,8 +6369,8 @@ fill_opacity => xmm0 void fh_drawsetfillopacity(Value* drw_wnd, double fill_opacity) asm("_ZN4HPHP20f_drawsetfillopacityERKNS_6ObjectEd"); -TypedValue * fg1_drawsetfillopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfillopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfillopacity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfillopacity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6384,7 +6384,7 @@ TypedValue * fg1_drawsetfillopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawsetfillopacity(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfillopacity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6426,8 +6426,8 @@ fill_url => rsi bool fh_drawsetfillpatternurl(Value* drw_wnd, Value* fill_url) asm("_ZN4HPHP23f_drawsetfillpatternurlERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawsetfillpatternurl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfillpatternurl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfillpatternurl(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfillpatternurl(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -6440,7 +6440,7 @@ TypedValue * fg1_drawsetfillpatternurl(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawsetfillpatternurl(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfillpatternurl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6480,8 +6480,8 @@ fill_rule => rsi void fh_drawsetfillrule(Value* drw_wnd, int fill_rule) asm("_ZN4HPHP17f_drawsetfillruleERKNS_6ObjectEi"); -TypedValue * fg1_drawsetfillrule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfillrule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfillrule(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfillrule(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6495,7 +6495,7 @@ TypedValue * fg1_drawsetfillrule(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawsetfillrule(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfillrule(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6537,8 +6537,8 @@ font_file => rsi bool fh_drawsetfont(Value* drw_wnd, Value* font_file) asm("_ZN4HPHP13f_drawsetfontERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawsetfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfont(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfont(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -6551,7 +6551,7 @@ TypedValue * fg1_drawsetfont(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_drawsetfont(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfont(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6592,8 +6592,8 @@ font_family => rsi bool fh_drawsetfontfamily(Value* drw_wnd, Value* font_family) asm("_ZN4HPHP19f_drawsetfontfamilyERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawsetfontfamily(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfontfamily(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfontfamily(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfontfamily(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -6606,7 +6606,7 @@ TypedValue * fg1_drawsetfontfamily(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawsetfontfamily(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfontfamily(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6646,8 +6646,8 @@ pointsize => xmm0 void fh_drawsetfontsize(Value* drw_wnd, double pointsize) asm("_ZN4HPHP17f_drawsetfontsizeERKNS_6ObjectEd"); -TypedValue * fg1_drawsetfontsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfontsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfontsize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfontsize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6661,7 +6661,7 @@ TypedValue * fg1_drawsetfontsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawsetfontsize(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfontsize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6702,8 +6702,8 @@ stretch_type => rsi void fh_drawsetfontstretch(Value* drw_wnd, int stretch_type) asm("_ZN4HPHP20f_drawsetfontstretchERKNS_6ObjectEi"); -TypedValue * fg1_drawsetfontstretch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfontstretch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfontstretch(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfontstretch(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6717,7 +6717,7 @@ TypedValue * fg1_drawsetfontstretch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawsetfontstretch(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfontstretch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6758,8 +6758,8 @@ style_type => rsi void fh_drawsetfontstyle(Value* drw_wnd, int style_type) asm("_ZN4HPHP18f_drawsetfontstyleERKNS_6ObjectEi"); -TypedValue * fg1_drawsetfontstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfontstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfontstyle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfontstyle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6773,7 +6773,7 @@ TypedValue * fg1_drawsetfontstyle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawsetfontstyle(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfontstyle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6814,8 +6814,8 @@ font_weight => xmm0 void fh_drawsetfontweight(Value* drw_wnd, double font_weight) asm("_ZN4HPHP19f_drawsetfontweightERKNS_6ObjectEd"); -TypedValue * fg1_drawsetfontweight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetfontweight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetfontweight(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetfontweight(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6829,7 +6829,7 @@ TypedValue * fg1_drawsetfontweight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawsetfontweight(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetfontweight(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6870,8 +6870,8 @@ gravity_type => rsi void fh_drawsetgravity(Value* drw_wnd, int gravity_type) asm("_ZN4HPHP16f_drawsetgravityERKNS_6ObjectEi"); -TypedValue * fg1_drawsetgravity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetgravity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetgravity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetgravity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6885,7 +6885,7 @@ TypedValue * fg1_drawsetgravity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_drawsetgravity(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetgravity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6926,8 +6926,8 @@ stroke_opacity => xmm0 void fh_drawsetstrokealpha(Value* drw_wnd, double stroke_opacity) asm("_ZN4HPHP20f_drawsetstrokealphaERKNS_6ObjectEd"); -TypedValue * fg1_drawsetstrokealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokealpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokealpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -6941,7 +6941,7 @@ TypedValue * fg1_drawsetstrokealpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawsetstrokealpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokealpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -6982,8 +6982,8 @@ stroke_antialias => rsi void fh_drawsetstrokeantialias(Value* drw_wnd, bool stroke_antialias) asm("_ZN4HPHP24f_drawsetstrokeantialiasERKNS_6ObjectEb"); -TypedValue * fg1_drawsetstrokeantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokeantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokeantialias(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokeantialias(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7002,7 +7002,7 @@ TypedValue * fg1_drawsetstrokeantialias(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawsetstrokeantialias(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokeantialias(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7043,8 +7043,8 @@ strokecolor_pxl_wnd => rsi void fh_drawsetstrokecolor(Value* drw_wnd, Value* strokecolor_pxl_wnd) asm("_ZN4HPHP20f_drawsetstrokecolorERKNS_6ObjectES2_"); -TypedValue * fg1_drawsetstrokecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokecolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokecolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7058,7 +7058,7 @@ TypedValue * fg1_drawsetstrokecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawsetstrokecolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokecolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7099,8 +7099,8 @@ dash_array => rsi void fh_drawsetstrokedasharray(Value* drw_wnd, Value* dash_array) asm("_ZN4HPHP24f_drawsetstrokedasharrayERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_drawsetstrokedasharray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokedasharray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokedasharray(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokedasharray(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7119,7 +7119,7 @@ TypedValue * fg1_drawsetstrokedasharray(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_drawsetstrokedasharray(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokedasharray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7160,8 +7160,8 @@ dash_offset => xmm0 void fh_drawsetstrokedashoffset(Value* drw_wnd, double dash_offset) asm("_ZN4HPHP25f_drawsetstrokedashoffsetERKNS_6ObjectEd"); -TypedValue * fg1_drawsetstrokedashoffset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokedashoffset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokedashoffset(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokedashoffset(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7175,7 +7175,7 @@ TypedValue * fg1_drawsetstrokedashoffset(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_drawsetstrokedashoffset(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokedashoffset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7216,8 +7216,8 @@ line_cap => rsi void fh_drawsetstrokelinecap(Value* drw_wnd, int line_cap) asm("_ZN4HPHP22f_drawsetstrokelinecapERKNS_6ObjectEi"); -TypedValue * fg1_drawsetstrokelinecap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokelinecap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokelinecap(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokelinecap(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7231,7 +7231,7 @@ TypedValue * fg1_drawsetstrokelinecap(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawsetstrokelinecap(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokelinecap(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7272,8 +7272,8 @@ line_join => rsi void fh_drawsetstrokelinejoin(Value* drw_wnd, int line_join) asm("_ZN4HPHP23f_drawsetstrokelinejoinERKNS_6ObjectEi"); -TypedValue * fg1_drawsetstrokelinejoin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokelinejoin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokelinejoin(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokelinejoin(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7287,7 +7287,7 @@ TypedValue * fg1_drawsetstrokelinejoin(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawsetstrokelinejoin(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokelinejoin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7328,8 +7328,8 @@ miterlimit => xmm0 void fh_drawsetstrokemiterlimit(Value* drw_wnd, double miterlimit) asm("_ZN4HPHP25f_drawsetstrokemiterlimitERKNS_6ObjectEd"); -TypedValue * fg1_drawsetstrokemiterlimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokemiterlimit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokemiterlimit(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokemiterlimit(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7343,7 +7343,7 @@ TypedValue * fg1_drawsetstrokemiterlimit(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_drawsetstrokemiterlimit(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokemiterlimit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7384,8 +7384,8 @@ stroke_opacity => xmm0 void fh_drawsetstrokeopacity(Value* drw_wnd, double stroke_opacity) asm("_ZN4HPHP22f_drawsetstrokeopacityERKNS_6ObjectEd"); -TypedValue * fg1_drawsetstrokeopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokeopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokeopacity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokeopacity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7399,7 +7399,7 @@ TypedValue * fg1_drawsetstrokeopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawsetstrokeopacity(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokeopacity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7441,8 +7441,8 @@ stroke_url => rsi bool fh_drawsetstrokepatternurl(Value* drw_wnd, Value* stroke_url) asm("_ZN4HPHP25f_drawsetstrokepatternurlERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawsetstrokepatternurl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokepatternurl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokepatternurl(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokepatternurl(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -7455,7 +7455,7 @@ TypedValue * fg1_drawsetstrokepatternurl(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_drawsetstrokepatternurl(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokepatternurl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7495,8 +7495,8 @@ stroke_width => xmm0 void fh_drawsetstrokewidth(Value* drw_wnd, double stroke_width) asm("_ZN4HPHP20f_drawsetstrokewidthERKNS_6ObjectEd"); -TypedValue * fg1_drawsetstrokewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetstrokewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetstrokewidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetstrokewidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7510,7 +7510,7 @@ TypedValue * fg1_drawsetstrokewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_drawsetstrokewidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetstrokewidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7551,8 +7551,8 @@ align_type => rsi void fh_drawsettextalignment(Value* drw_wnd, int align_type) asm("_ZN4HPHP22f_drawsettextalignmentERKNS_6ObjectEi"); -TypedValue * fg1_drawsettextalignment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsettextalignment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsettextalignment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsettextalignment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7566,7 +7566,7 @@ TypedValue * fg1_drawsettextalignment(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawsettextalignment(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsettextalignment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7607,8 +7607,8 @@ text_antialias => rsi void fh_drawsettextantialias(Value* drw_wnd, bool text_antialias) asm("_ZN4HPHP22f_drawsettextantialiasERKNS_6ObjectEb"); -TypedValue * fg1_drawsettextantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsettextantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsettextantialias(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsettextantialias(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7627,7 +7627,7 @@ TypedValue * fg1_drawsettextantialias(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_drawsettextantialias(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsettextantialias(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7668,8 +7668,8 @@ decoration_type => rsi void fh_drawsettextdecoration(Value* drw_wnd, int decoration_type) asm("_ZN4HPHP23f_drawsettextdecorationERKNS_6ObjectEi"); -TypedValue * fg1_drawsettextdecoration(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsettextdecoration(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsettextdecoration(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsettextdecoration(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7683,7 +7683,7 @@ TypedValue * fg1_drawsettextdecoration(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawsettextdecoration(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsettextdecoration(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7724,8 +7724,8 @@ encoding => rsi void fh_drawsettextencoding(Value* drw_wnd, Value* encoding) asm("_ZN4HPHP21f_drawsettextencodingERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawsettextencoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsettextencoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsettextencoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsettextencoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7739,7 +7739,7 @@ TypedValue * fg1_drawsettextencoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_drawsettextencoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsettextencoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7780,8 +7780,8 @@ undercolor_pxl_wnd => rsi void fh_drawsettextundercolor(Value* drw_wnd, Value* undercolor_pxl_wnd) asm("_ZN4HPHP23f_drawsettextundercolorERKNS_6ObjectES2_"); -TypedValue * fg1_drawsettextundercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsettextundercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsettextundercolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsettextundercolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7795,7 +7795,7 @@ TypedValue * fg1_drawsettextundercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawsettextundercolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsettextundercolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7837,8 +7837,8 @@ vector_graphics => rsi bool fh_drawsetvectorgraphics(Value* drw_wnd, Value* vector_graphics) asm("_ZN4HPHP23f_drawsetvectorgraphicsERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawsetvectorgraphics(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetvectorgraphics(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetvectorgraphics(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetvectorgraphics(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -7851,7 +7851,7 @@ TypedValue * fg1_drawsetvectorgraphics(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_drawsetvectorgraphics(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetvectorgraphics(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7894,8 +7894,8 @@ y2 => xmm3 void fh_drawsetviewbox(Value* drw_wnd, double x1, double y1, double x2, double y2) asm("_ZN4HPHP16f_drawsetviewboxERKNS_6ObjectEdddd"); -TypedValue * fg1_drawsetviewbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawsetviewbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawsetviewbox(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawsetviewbox(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7918,7 +7918,7 @@ TypedValue * fg1_drawsetviewbox(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_drawsetviewbox(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawsetviewbox(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -7959,8 +7959,8 @@ degrees => xmm0 void fh_drawskewx(Value* drw_wnd, double degrees) asm("_ZN4HPHP11f_drawskewxERKNS_6ObjectEd"); -TypedValue * fg1_drawskewx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawskewx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawskewx(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawskewx(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -7974,7 +7974,7 @@ TypedValue * fg1_drawskewx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawskewx(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawskewx(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8015,8 +8015,8 @@ degrees => xmm0 void fh_drawskewy(Value* drw_wnd, double degrees) asm("_ZN4HPHP11f_drawskewyERKNS_6ObjectEd"); -TypedValue * fg1_drawskewy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawskewy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawskewy(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawskewy(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8030,7 +8030,7 @@ TypedValue * fg1_drawskewy(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_drawskewy(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawskewy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8072,8 +8072,8 @@ y => xmm1 void fh_drawtranslate(Value* drw_wnd, double x, double y) asm("_ZN4HPHP15f_drawtranslateERKNS_6ObjectEdd"); -TypedValue * fg1_drawtranslate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawtranslate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawtranslate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawtranslate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8090,7 +8090,7 @@ TypedValue * fg1_drawtranslate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_drawtranslate(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawtranslate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8130,8 +8130,8 @@ drw_wnd => rdi void fh_pushdrawingwand(Value* drw_wnd) asm("_ZN4HPHP17f_pushdrawingwandERKNS_6ObjectE"); -TypedValue * fg1_pushdrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pushdrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pushdrawingwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pushdrawingwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8140,7 +8140,7 @@ TypedValue * fg1_pushdrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_pushdrawingwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_pushdrawingwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8181,8 +8181,8 @@ clip_path_id => rsi void fh_drawpushclippath(Value* drw_wnd, Value* clip_path_id) asm("_ZN4HPHP18f_drawpushclippathERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_drawpushclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpushclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpushclippath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpushclippath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8196,7 +8196,7 @@ TypedValue * fg1_drawpushclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_drawpushclippath(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpushclippath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8236,8 +8236,8 @@ drw_wnd => rdi void fh_drawpushdefs(Value* drw_wnd) asm("_ZN4HPHP14f_drawpushdefsERKNS_6ObjectE"); -TypedValue * fg1_drawpushdefs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpushdefs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpushdefs(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpushdefs(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8246,7 +8246,7 @@ TypedValue * fg1_drawpushdefs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_drawpushdefs(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpushdefs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8291,8 +8291,8 @@ height => xmm3 void fh_drawpushpattern(Value* drw_wnd, Value* pattern_id, double x, double y, double width, double height) asm("_ZN4HPHP17f_drawpushpatternERKNS_6ObjectERKNS_6StringEdddd"); -TypedValue * fg1_drawpushpattern(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpushpattern(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpushpattern(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpushpattern(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8318,7 +8318,7 @@ TypedValue * fg1_drawpushpattern(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawpushpattern(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpushpattern(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8358,8 +8358,8 @@ drw_wnd => rdi void fh_popdrawingwand(Value* drw_wnd) asm("_ZN4HPHP16f_popdrawingwandERKNS_6ObjectE"); -TypedValue * fg1_popdrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_popdrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_popdrawingwand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_popdrawingwand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8368,7 +8368,7 @@ TypedValue * fg1_popdrawingwand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_popdrawingwand(HPHP::VM::ActRec *ar) { +TypedValue* fg_popdrawingwand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8408,8 +8408,8 @@ drw_wnd => rdi void fh_drawpopclippath(Value* drw_wnd) asm("_ZN4HPHP17f_drawpopclippathERKNS_6ObjectE"); -TypedValue * fg1_drawpopclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpopclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpopclippath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpopclippath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8418,7 +8418,7 @@ TypedValue * fg1_drawpopclippath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_drawpopclippath(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpopclippath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8458,8 +8458,8 @@ drw_wnd => rdi void fh_drawpopdefs(Value* drw_wnd) asm("_ZN4HPHP13f_drawpopdefsERKNS_6ObjectE"); -TypedValue * fg1_drawpopdefs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpopdefs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpopdefs(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpopdefs(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8468,7 +8468,7 @@ TypedValue * fg1_drawpopdefs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_drawpopdefs(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpopdefs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8508,8 +8508,8 @@ drw_wnd => rdi void fh_drawpoppattern(Value* drw_wnd) asm("_ZN4HPHP16f_drawpoppatternERKNS_6ObjectE"); -TypedValue * fg1_drawpoppattern(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_drawpoppattern(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_drawpoppattern(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_drawpoppattern(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -8518,7 +8518,7 @@ TypedValue * fg1_drawpoppattern(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_drawpoppattern(HPHP::VM::ActRec *ar) { +TypedValue* fg_drawpoppattern(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8562,8 +8562,8 @@ offset => xmm2 bool fh_magickadaptivethresholdimage(Value* mgck_wnd, double width, double height, double offset) asm("_ZN4HPHP30f_magickadaptivethresholdimageERKNS_6ObjectEddd"); -TypedValue * fg1_magickadaptivethresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickadaptivethresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickadaptivethresholdimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickadaptivethresholdimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfDouble) { @@ -8582,7 +8582,7 @@ TypedValue * fg1_magickadaptivethresholdimage(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_magickadaptivethresholdimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickadaptivethresholdimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8623,8 +8623,8 @@ add_wand => rsi bool fh_magickaddimage(Value* mgck_wnd, Value* add_wand) asm("_ZN4HPHP16f_magickaddimageERKNS_6ObjectES2_"); -TypedValue * fg1_magickaddimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickaddimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickaddimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickaddimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -8637,7 +8637,7 @@ TypedValue * fg1_magickaddimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_magickaddimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickaddimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8678,8 +8678,8 @@ noise_type => rsi bool fh_magickaddnoiseimage(Value* mgck_wnd, int noise_type) asm("_ZN4HPHP21f_magickaddnoiseimageERKNS_6ObjectEi"); -TypedValue * fg1_magickaddnoiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickaddnoiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickaddnoiseimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickaddnoiseimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -8692,7 +8692,7 @@ TypedValue * fg1_magickaddnoiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickaddnoiseimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickaddnoiseimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8733,8 +8733,8 @@ drw_wnd => rsi bool fh_magickaffinetransformimage(Value* mgck_wnd, Value* drw_wnd) asm("_ZN4HPHP28f_magickaffinetransformimageERKNS_6ObjectES2_"); -TypedValue * fg1_magickaffinetransformimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickaffinetransformimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickaffinetransformimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickaffinetransformimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -8747,7 +8747,7 @@ TypedValue * fg1_magickaffinetransformimage(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_magickaffinetransformimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickaffinetransformimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8792,8 +8792,8 @@ text => rdx bool fh_magickannotateimage(Value* mgck_wnd, Value* drw_wnd, double x, double y, double angle, Value* text) asm("_ZN4HPHP21f_magickannotateimageERKNS_6ObjectES2_dddRKNS_6StringE"); -TypedValue * fg1_magickannotateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickannotateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickannotateimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickannotateimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-5)->m_type)) { @@ -8818,7 +8818,7 @@ TypedValue * fg1_magickannotateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickannotateimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickannotateimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8860,8 +8860,8 @@ stack_vertical => rdx Value* fh_magickappendimages(Value* _rv, Value* mgck_wnd, bool stack_vertical) asm("_ZN4HPHP20f_magickappendimagesERKNS_6ObjectEb"); -TypedValue * fg1_magickappendimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickappendimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickappendimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickappendimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -8880,7 +8880,7 @@ TypedValue * fg1_magickappendimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickappendimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickappendimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8922,8 +8922,8 @@ mgck_wnd => rsi Value* fh_magickaverageimages(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP21f_magickaverageimagesERKNS_6ObjectE"); -TypedValue * fg1_magickaverageimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickaverageimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickaverageimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickaverageimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -8932,7 +8932,7 @@ TypedValue * fg1_magickaverageimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickaverageimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickaverageimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -8974,8 +8974,8 @@ threshold_pxl_wnd => rsi bool fh_magickblackthresholdimage(Value* mgck_wnd, Value* threshold_pxl_wnd) asm("_ZN4HPHP27f_magickblackthresholdimageERKNS_6ObjectES2_"); -TypedValue * fg1_magickblackthresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickblackthresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickblackthresholdimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickblackthresholdimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -8988,7 +8988,7 @@ TypedValue * fg1_magickblackthresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickblackthresholdimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickblackthresholdimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9031,8 +9031,8 @@ channel_type => rsi bool fh_magickblurimage(Value* mgck_wnd, double radius, double sigma, int channel_type) asm("_ZN4HPHP17f_magickblurimageERKNS_6ObjectEddi"); -TypedValue * fg1_magickblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickblurimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickblurimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -9056,7 +9056,7 @@ TypedValue * fg1_magickblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickblurimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickblurimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9099,8 +9099,8 @@ height => xmm1 bool fh_magickborderimage(Value* mgck_wnd, Value* bordercolor, double width, double height) asm("_ZN4HPHP19f_magickborderimageERKNS_6ObjectES2_dd"); -TypedValue * fg1_magickborderimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickborderimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickborderimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickborderimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfDouble) { @@ -9119,7 +9119,7 @@ TypedValue * fg1_magickborderimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickborderimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickborderimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9161,8 +9161,8 @@ sigma => xmm1 bool fh_magickcharcoalimage(Value* mgck_wnd, double radius, double sigma) asm("_ZN4HPHP21f_magickcharcoalimageERKNS_6ObjectEdd"); -TypedValue * fg1_magickcharcoalimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcharcoalimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcharcoalimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcharcoalimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -9178,7 +9178,7 @@ TypedValue * fg1_magickcharcoalimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickcharcoalimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcharcoalimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9222,8 +9222,8 @@ y => rdx bool fh_magickchopimage(Value* mgck_wnd, double width, double height, int x, int y) asm("_ZN4HPHP17f_magickchopimageERKNS_6ObjectEddii"); -TypedValue * fg1_magickchopimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickchopimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickchopimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickchopimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfInt64) { @@ -9245,7 +9245,7 @@ TypedValue * fg1_magickchopimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickchopimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickchopimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9285,8 +9285,8 @@ mgck_wnd => rdi bool fh_magickclipimage(Value* mgck_wnd) asm("_ZN4HPHP17f_magickclipimageERKNS_6ObjectE"); -TypedValue * fg1_magickclipimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickclipimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickclipimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickclipimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -9294,7 +9294,7 @@ TypedValue * fg1_magickclipimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickclipimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickclipimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9336,8 +9336,8 @@ inside => rdx bool fh_magickclippathimage(Value* mgck_wnd, Value* pathname, bool inside) asm("_ZN4HPHP21f_magickclippathimageERKNS_6ObjectERKNS_6StringEb"); -TypedValue * fg1_magickclippathimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickclippathimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickclippathimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickclippathimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfBoolean) { @@ -9353,7 +9353,7 @@ TypedValue * fg1_magickclippathimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickclippathimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickclippathimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9394,8 +9394,8 @@ mgck_wnd => rsi Value* fh_magickcoalesceimages(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP22f_magickcoalesceimagesERKNS_6ObjectE"); -TypedValue * fg1_magickcoalesceimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcoalesceimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcoalesceimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcoalesceimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -9404,7 +9404,7 @@ TypedValue * fg1_magickcoalesceimages(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickcoalesceimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcoalesceimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9450,8 +9450,8 @@ y => r8 bool fh_magickcolorfloodfillimage(Value* mgck_wnd, Value* fillcolor_pxl_wnd, double fuzz, Value* bordercolor_pxl_wnd, int x, int y) asm("_ZN4HPHP27f_magickcolorfloodfillimageERKNS_6ObjectES2_dS2_ii"); -TypedValue * fg1_magickcolorfloodfillimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcolorfloodfillimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcolorfloodfillimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcolorfloodfillimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -9476,7 +9476,7 @@ TypedValue * fg1_magickcolorfloodfillimage(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickcolorfloodfillimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcolorfloodfillimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9518,8 +9518,8 @@ opacity_pxl_wnd => rdx bool fh_magickcolorizeimage(Value* mgck_wnd, Value* colorize, Value* opacity_pxl_wnd) asm("_ZN4HPHP21f_magickcolorizeimageERKNS_6ObjectES2_S2_"); -TypedValue * fg1_magickcolorizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcolorizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcolorizeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcolorizeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfObject) { @@ -9535,7 +9535,7 @@ TypedValue * fg1_magickcolorizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickcolorizeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcolorizeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9577,8 +9577,8 @@ channel_type => rdx Value* fh_magickcombineimages(Value* _rv, Value* mgck_wnd, int channel_type) asm("_ZN4HPHP21f_magickcombineimagesERKNS_6ObjectEi"); -TypedValue * fg1_magickcombineimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcombineimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcombineimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcombineimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfInt64) { @@ -9592,7 +9592,7 @@ TypedValue * fg1_magickcombineimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickcombineimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcombineimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9634,8 +9634,8 @@ comment => rsi bool fh_magickcommentimage(Value* mgck_wnd, Value* comment) asm("_ZN4HPHP20f_magickcommentimageERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magickcommentimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcommentimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcommentimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcommentimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -9648,7 +9648,7 @@ TypedValue * fg1_magickcommentimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickcommentimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcommentimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9692,8 +9692,8 @@ channel_type => r8 Value* fh_magickcompareimages(Value* _rv, Value* mgck_wnd, Value* reference_wnd, int metric_type, int channel_type) asm("_ZN4HPHP21f_magickcompareimagesERKNS_6ObjectES2_ii"); -TypedValue * fg1_magickcompareimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcompareimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcompareimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcompareimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -9718,7 +9718,7 @@ TypedValue * fg1_magickcompareimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickcompareimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcompareimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9763,8 +9763,8 @@ y => r8 bool fh_magickcompositeimage(Value* mgck_wnd, Value* composite_wnd, int composite_operator, int x, int y) asm("_ZN4HPHP22f_magickcompositeimageERKNS_6ObjectES2_iii"); -TypedValue * fg1_magickcompositeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcompositeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcompositeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcompositeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfInt64) { @@ -9786,7 +9786,7 @@ TypedValue * fg1_magickcompositeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickcompositeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcompositeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9831,8 +9831,8 @@ pixel_array => rcx bool fh_magickconstituteimage(Value* mgck_wnd, double columns, double rows, Value* smap, int storage_type, Value* pixel_array) asm("_ZN4HPHP23f_magickconstituteimageERKNS_6ObjectEddRKNS_6StringEiRKNS_5ArrayE"); -TypedValue * fg1_magickconstituteimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickconstituteimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickconstituteimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickconstituteimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfArray) { @@ -9857,7 +9857,7 @@ TypedValue * fg1_magickconstituteimage(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickconstituteimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickconstituteimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9898,8 +9898,8 @@ sharpen => rsi bool fh_magickcontrastimage(Value* mgck_wnd, bool sharpen) asm("_ZN4HPHP21f_magickcontrastimageERKNS_6ObjectEb"); -TypedValue * fg1_magickcontrastimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcontrastimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcontrastimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcontrastimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfBoolean) { @@ -9912,7 +9912,7 @@ TypedValue * fg1_magickcontrastimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickcontrastimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcontrastimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -9954,8 +9954,8 @@ channel_type => rdx bool fh_magickconvolveimage(Value* mgck_wnd, Value* kernel_array, int channel_type) asm("_ZN4HPHP21f_magickconvolveimageERKNS_6ObjectERKNS_5ArrayEi"); -TypedValue * fg1_magickconvolveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickconvolveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickconvolveimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickconvolveimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -9976,7 +9976,7 @@ TypedValue * fg1_magickconvolveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickconvolveimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickconvolveimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10020,8 +10020,8 @@ y => rdx bool fh_magickcropimage(Value* mgck_wnd, double width, double height, int x, int y) asm("_ZN4HPHP17f_magickcropimageERKNS_6ObjectEddii"); -TypedValue * fg1_magickcropimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcropimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcropimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcropimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfInt64) { @@ -10043,7 +10043,7 @@ TypedValue * fg1_magickcropimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickcropimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcropimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10084,8 +10084,8 @@ num_positions => rsi bool fh_magickcyclecolormapimage(Value* mgck_wnd, int num_positions) asm("_ZN4HPHP26f_magickcyclecolormapimageERKNS_6ObjectEi"); -TypedValue * fg1_magickcyclecolormapimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickcyclecolormapimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickcyclecolormapimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickcyclecolormapimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -10098,7 +10098,7 @@ TypedValue * fg1_magickcyclecolormapimage(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickcyclecolormapimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickcyclecolormapimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10139,8 +10139,8 @@ mgck_wnd => rsi Value* fh_magickdeconstructimages(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP25f_magickdeconstructimagesERKNS_6ObjectE"); -TypedValue * fg1_magickdeconstructimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickdeconstructimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickdeconstructimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickdeconstructimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -10149,7 +10149,7 @@ TypedValue * fg1_magickdeconstructimages(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_magickdeconstructimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickdeconstructimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10191,8 +10191,8 @@ mgck_wnd => rsi Value* fh_magickdescribeimage(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP21f_magickdescribeimageERKNS_6ObjectE"); -TypedValue * fg1_magickdescribeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickdescribeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickdescribeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickdescribeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -10201,7 +10201,7 @@ TypedValue * fg1_magickdescribeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickdescribeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickdescribeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10242,8 +10242,8 @@ mgck_wnd => rdi bool fh_magickdespeckleimage(Value* mgck_wnd) asm("_ZN4HPHP22f_magickdespeckleimageERKNS_6ObjectE"); -TypedValue * fg1_magickdespeckleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickdespeckleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickdespeckleimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickdespeckleimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -10251,7 +10251,7 @@ TypedValue * fg1_magickdespeckleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickdespeckleimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickdespeckleimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10292,8 +10292,8 @@ drw_wnd => rsi bool fh_magickdrawimage(Value* mgck_wnd, Value* drw_wnd) asm("_ZN4HPHP17f_magickdrawimageERKNS_6ObjectES2_"); -TypedValue * fg1_magickdrawimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickdrawimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickdrawimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickdrawimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -10306,7 +10306,7 @@ TypedValue * fg1_magickdrawimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickdrawimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickdrawimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10346,8 +10346,8 @@ mgck_wnd => rdi bool fh_magickechoimageblob(Value* mgck_wnd) asm("_ZN4HPHP21f_magickechoimageblobERKNS_6ObjectE"); -TypedValue * fg1_magickechoimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickechoimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickechoimageblob(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickechoimageblob(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -10355,7 +10355,7 @@ TypedValue * fg1_magickechoimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickechoimageblob(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickechoimageblob(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10395,8 +10395,8 @@ mgck_wnd => rdi bool fh_magickechoimagesblob(Value* mgck_wnd) asm("_ZN4HPHP22f_magickechoimagesblobERKNS_6ObjectE"); -TypedValue * fg1_magickechoimagesblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickechoimagesblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickechoimagesblob(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickechoimagesblob(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -10404,7 +10404,7 @@ TypedValue * fg1_magickechoimagesblob(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickechoimagesblob(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickechoimagesblob(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10445,8 +10445,8 @@ radius => xmm0 bool fh_magickedgeimage(Value* mgck_wnd, double radius) asm("_ZN4HPHP17f_magickedgeimageERKNS_6ObjectEd"); -TypedValue * fg1_magickedgeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickedgeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickedgeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickedgeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -10459,7 +10459,7 @@ TypedValue * fg1_magickedgeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickedgeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickedgeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10501,8 +10501,8 @@ sigma => xmm1 bool fh_magickembossimage(Value* mgck_wnd, double radius, double sigma) asm("_ZN4HPHP19f_magickembossimageERKNS_6ObjectEdd"); -TypedValue * fg1_magickembossimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickembossimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickembossimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickembossimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -10518,7 +10518,7 @@ TypedValue * fg1_magickembossimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickembossimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickembossimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10558,8 +10558,8 @@ mgck_wnd => rdi bool fh_magickenhanceimage(Value* mgck_wnd) asm("_ZN4HPHP20f_magickenhanceimageERKNS_6ObjectE"); -TypedValue * fg1_magickenhanceimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickenhanceimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickenhanceimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickenhanceimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -10567,7 +10567,7 @@ TypedValue * fg1_magickenhanceimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickenhanceimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickenhanceimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10607,8 +10607,8 @@ mgck_wnd => rdi bool fh_magickequalizeimage(Value* mgck_wnd) asm("_ZN4HPHP21f_magickequalizeimageERKNS_6ObjectE"); -TypedValue * fg1_magickequalizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickequalizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickequalizeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickequalizeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -10616,7 +10616,7 @@ TypedValue * fg1_magickequalizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickequalizeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickequalizeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10659,8 +10659,8 @@ channel_type => rdx bool fh_magickevaluateimage(Value* mgck_wnd, int evaluate_op, double constant, int channel_type) asm("_ZN4HPHP21f_magickevaluateimageERKNS_6ObjectEidi"); -TypedValue * fg1_magickevaluateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickevaluateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickevaluateimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickevaluateimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -10684,7 +10684,7 @@ TypedValue * fg1_magickevaluateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickevaluateimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickevaluateimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10725,8 +10725,8 @@ mgck_wnd => rsi Value* fh_magickflattenimages(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP21f_magickflattenimagesERKNS_6ObjectE"); -TypedValue * fg1_magickflattenimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickflattenimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickflattenimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickflattenimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -10735,7 +10735,7 @@ TypedValue * fg1_magickflattenimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickflattenimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickflattenimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10776,8 +10776,8 @@ mgck_wnd => rdi bool fh_magickflipimage(Value* mgck_wnd) asm("_ZN4HPHP17f_magickflipimageERKNS_6ObjectE"); -TypedValue * fg1_magickflipimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickflipimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickflipimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickflipimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -10785,7 +10785,7 @@ TypedValue * fg1_magickflipimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickflipimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickflipimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10825,8 +10825,8 @@ mgck_wnd => rdi bool fh_magickflopimage(Value* mgck_wnd) asm("_ZN4HPHP17f_magickflopimageERKNS_6ObjectE"); -TypedValue * fg1_magickflopimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickflopimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickflopimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickflopimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -10834,7 +10834,7 @@ TypedValue * fg1_magickflopimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickflopimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickflopimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10879,8 +10879,8 @@ outer_bevel => rcx bool fh_magickframeimage(Value* mgck_wnd, Value* matte_color, double width, double height, int inner_bevel, int outer_bevel) asm("_ZN4HPHP18f_magickframeimageERKNS_6ObjectES2_ddii"); -TypedValue * fg1_magickframeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickframeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickframeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickframeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -10905,7 +10905,7 @@ TypedValue * fg1_magickframeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickframeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickframeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -10948,8 +10948,8 @@ channel_type => rcx Value* fh_magickfximage(Value* _rv, Value* mgck_wnd, Value* expression, int channel_type) asm("_ZN4HPHP15f_magickfximageERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_magickfximage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickfximage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickfximage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickfximage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -10971,7 +10971,7 @@ TypedValue * fg1_magickfximage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_magickfximage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickfximage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11014,8 +11014,8 @@ channel_type => rsi bool fh_magickgammaimage(Value* mgck_wnd, double gamma, int channel_type) asm("_ZN4HPHP18f_magickgammaimageERKNS_6ObjectEdi"); -TypedValue * fg1_magickgammaimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgammaimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgammaimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgammaimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -11036,7 +11036,7 @@ TypedValue * fg1_magickgammaimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickgammaimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgammaimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11079,8 +11079,8 @@ channel_type => rsi bool fh_magickgaussianblurimage(Value* mgck_wnd, double radius, double sigma, int channel_type) asm("_ZN4HPHP25f_magickgaussianblurimageERKNS_6ObjectEddi"); -TypedValue * fg1_magickgaussianblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgaussianblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgaussianblurimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgaussianblurimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -11104,7 +11104,7 @@ TypedValue * fg1_magickgaussianblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_magickgaussianblurimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgaussianblurimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11147,8 +11147,8 @@ multiline => rcx double fh_magickgetcharheight(Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP21f_magickgetcharheightERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickgetcharheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetcharheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetcharheight(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetcharheight(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -11172,7 +11172,7 @@ TypedValue * fg1_magickgetcharheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetcharheight(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetcharheight(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11215,8 +11215,8 @@ multiline => rcx double fh_magickgetcharwidth(Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP20f_magickgetcharwidthERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickgetcharwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetcharwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetcharwidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetcharwidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -11240,7 +11240,7 @@ TypedValue * fg1_magickgetcharwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickgetcharwidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetcharwidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11281,8 +11281,8 @@ mgck_wnd => rsi Value* fh_magickgetexception(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP20f_magickgetexceptionERKNS_6ObjectE"); -TypedValue * fg1_magickgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetexception(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetexception(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -11291,7 +11291,7 @@ TypedValue * fg1_magickgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickgetexception(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetexception(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11333,8 +11333,8 @@ mgck_wnd => rsi Value* fh_magickgetexceptionstring(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetexceptionstringERKNS_6ObjectE"); -TypedValue * fg1_magickgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -11343,7 +11343,7 @@ TypedValue * fg1_magickgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetexceptionstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetexceptionstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11384,8 +11384,8 @@ mgck_wnd => rdi long fh_magickgetexceptiontype(Value* mgck_wnd) asm("_ZN4HPHP24f_magickgetexceptiontypeERKNS_6ObjectE"); -TypedValue * fg1_magickgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -11393,7 +11393,7 @@ TypedValue * fg1_magickgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickgetexceptiontype(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetexceptiontype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11434,8 +11434,8 @@ mgck_wnd => rsi Value* fh_magickgetfilename(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP19f_magickgetfilenameERKNS_6ObjectE"); -TypedValue * fg1_magickgetfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetfilename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetfilename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -11444,7 +11444,7 @@ TypedValue * fg1_magickgetfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickgetfilename(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetfilename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11486,8 +11486,8 @@ mgck_wnd => rsi Value* fh_magickgetformat(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP17f_magickgetformatERKNS_6ObjectE"); -TypedValue * fg1_magickgetformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetformat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetformat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -11496,7 +11496,7 @@ TypedValue * fg1_magickgetformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickgetformat(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetformat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11538,8 +11538,8 @@ mgck_wnd => rsi Value* fh_magickgetimage(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP16f_magickgetimageERKNS_6ObjectE"); -TypedValue * fg1_magickgetimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -11548,7 +11548,7 @@ TypedValue * fg1_magickgetimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_magickgetimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11590,8 +11590,8 @@ mgck_wnd => rsi Value* fh_magickgetimagebackgroundcolor(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP31f_magickgetimagebackgroundcolorERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagebackgroundcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagebackgroundcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagebackgroundcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagebackgroundcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -11600,7 +11600,7 @@ TypedValue * fg1_magickgetimagebackgroundcolor(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_magickgetimagebackgroundcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagebackgroundcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11642,8 +11642,8 @@ mgck_wnd => rsi Value* fh_magickgetimageblob(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP20f_magickgetimageblobERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageblob(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageblob(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -11652,7 +11652,7 @@ TypedValue * fg1_magickgetimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickgetimageblob(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageblob(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11694,8 +11694,8 @@ mgck_wnd => rsi Value* fh_magickgetimageblueprimary(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP27f_magickgetimageblueprimaryERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageblueprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageblueprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageblueprimary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageblueprimary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -11704,7 +11704,7 @@ TypedValue * fg1_magickgetimageblueprimary(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimageblueprimary(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageblueprimary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11746,8 +11746,8 @@ mgck_wnd => rsi Value* fh_magickgetimagebordercolor(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP27f_magickgetimagebordercolorERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagebordercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagebordercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagebordercolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagebordercolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -11756,7 +11756,7 @@ TypedValue * fg1_magickgetimagebordercolor(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimagebordercolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagebordercolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11799,8 +11799,8 @@ channel_type => rdx Value* fh_magickgetimagechannelmean(Value* _rv, Value* mgck_wnd, int channel_type) asm("_ZN4HPHP27f_magickgetimagechannelmeanERKNS_6ObjectEi"); -TypedValue * fg1_magickgetimagechannelmean(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagechannelmean(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagechannelmean(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagechannelmean(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; if ((args-1)->m_type != KindOfInt64) { @@ -11814,7 +11814,7 @@ TypedValue * fg1_magickgetimagechannelmean(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimagechannelmean(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagechannelmean(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11857,8 +11857,8 @@ index => xmm0 Value* fh_magickgetimagecolormapcolor(Value* _rv, Value* mgck_wnd, double index) asm("_ZN4HPHP29f_magickgetimagecolormapcolorERKNS_6ObjectEd"); -TypedValue * fg1_magickgetimagecolormapcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagecolormapcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagecolormapcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagecolormapcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfDouble) { @@ -11872,7 +11872,7 @@ TypedValue * fg1_magickgetimagecolormapcolor(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_magickgetimagecolormapcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagecolormapcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11913,8 +11913,8 @@ mgck_wnd => rdi double fh_magickgetimagecolors(Value* mgck_wnd) asm("_ZN4HPHP22f_magickgetimagecolorsERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagecolors(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagecolors(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagecolors(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagecolors(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -11922,7 +11922,7 @@ TypedValue * fg1_magickgetimagecolors(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickgetimagecolors(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagecolors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -11962,8 +11962,8 @@ mgck_wnd => rdi long fh_magickgetimagecolorspace(Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetimagecolorspaceERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagecolorspace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagecolorspace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagecolorspace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagecolorspace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -11971,7 +11971,7 @@ TypedValue * fg1_magickgetimagecolorspace(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimagecolorspace(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagecolorspace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12011,8 +12011,8 @@ mgck_wnd => rdi long fh_magickgetimagecompose(Value* mgck_wnd) asm("_ZN4HPHP23f_magickgetimagecomposeERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagecompose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagecompose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagecompose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagecompose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -12020,7 +12020,7 @@ TypedValue * fg1_magickgetimagecompose(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickgetimagecompose(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagecompose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12060,8 +12060,8 @@ mgck_wnd => rdi long fh_magickgetimagecompression(Value* mgck_wnd) asm("_ZN4HPHP27f_magickgetimagecompressionERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagecompression(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagecompression(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagecompression(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagecompression(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -12069,7 +12069,7 @@ TypedValue * fg1_magickgetimagecompression(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimagecompression(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagecompression(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12109,8 +12109,8 @@ mgck_wnd => rdi double fh_magickgetimagecompressionquality(Value* mgck_wnd) asm("_ZN4HPHP34f_magickgetimagecompressionqualityERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagecompressionquality(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagecompressionquality(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagecompressionquality(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagecompressionquality(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -12118,7 +12118,7 @@ TypedValue * fg1_magickgetimagecompressionquality(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_magickgetimagecompressionquality(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagecompressionquality(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12158,8 +12158,8 @@ mgck_wnd => rdi double fh_magickgetimagedelay(Value* mgck_wnd) asm("_ZN4HPHP21f_magickgetimagedelayERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagedelay(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagedelay(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagedelay(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagedelay(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -12167,7 +12167,7 @@ TypedValue * fg1_magickgetimagedelay(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimagedelay(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagedelay(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12208,8 +12208,8 @@ channel_type => rsi double fh_magickgetimagedepth(Value* mgck_wnd, int channel_type) asm("_ZN4HPHP21f_magickgetimagedepthERKNS_6ObjectEi"); -TypedValue * fg1_magickgetimagedepth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagedepth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagedepth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagedepth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -12227,7 +12227,7 @@ TypedValue * fg1_magickgetimagedepth(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimagedepth(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagedepth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12267,8 +12267,8 @@ mgck_wnd => rdi long fh_magickgetimagedispose(Value* mgck_wnd) asm("_ZN4HPHP23f_magickgetimagedisposeERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagedispose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagedispose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagedispose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagedispose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -12276,7 +12276,7 @@ TypedValue * fg1_magickgetimagedispose(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickgetimagedispose(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagedispose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12318,8 +12318,8 @@ channel_type => rdx Value* fh_magickgetimageextrema(Value* _rv, Value* mgck_wnd, int channel_type) asm("_ZN4HPHP23f_magickgetimageextremaERKNS_6ObjectEi"); -TypedValue * fg1_magickgetimageextrema(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageextrema(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageextrema(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageextrema(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -12338,7 +12338,7 @@ TypedValue * fg1_magickgetimageextrema(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickgetimageextrema(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageextrema(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12380,8 +12380,8 @@ mgck_wnd => rsi Value* fh_magickgetimagefilename(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP24f_magickgetimagefilenameERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagefilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagefilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagefilename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagefilename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -12390,7 +12390,7 @@ TypedValue * fg1_magickgetimagefilename(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickgetimagefilename(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagefilename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12432,8 +12432,8 @@ mgck_wnd => rsi Value* fh_magickgetimageformat(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP22f_magickgetimageformatERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageformat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageformat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -12442,7 +12442,7 @@ TypedValue * fg1_magickgetimageformat(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickgetimageformat(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageformat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12483,8 +12483,8 @@ mgck_wnd => rdi double fh_magickgetimagegamma(Value* mgck_wnd) asm("_ZN4HPHP21f_magickgetimagegammaERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagegamma(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagegamma(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagegamma(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagegamma(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -12492,7 +12492,7 @@ TypedValue * fg1_magickgetimagegamma(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimagegamma(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagegamma(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12533,8 +12533,8 @@ mgck_wnd => rsi Value* fh_magickgetimagegreenprimary(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP28f_magickgetimagegreenprimaryERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagegreenprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagegreenprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagegreenprimary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagegreenprimary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -12543,7 +12543,7 @@ TypedValue * fg1_magickgetimagegreenprimary(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_magickgetimagegreenprimary(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagegreenprimary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12584,8 +12584,8 @@ mgck_wnd => rdi double fh_magickgetimageheight(Value* mgck_wnd) asm("_ZN4HPHP22f_magickgetimageheightERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageheight(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageheight(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -12593,7 +12593,7 @@ TypedValue * fg1_magickgetimageheight(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickgetimageheight(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageheight(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12634,8 +12634,8 @@ mgck_wnd => rsi Value* fh_magickgetimagehistogram(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP25f_magickgetimagehistogramERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagehistogram(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagehistogram(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagehistogram(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagehistogram(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -12644,7 +12644,7 @@ TypedValue * fg1_magickgetimagehistogram(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_magickgetimagehistogram(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagehistogram(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12685,8 +12685,8 @@ mgck_wnd => rdi long fh_magickgetimageindex(Value* mgck_wnd) asm("_ZN4HPHP21f_magickgetimageindexERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageindex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageindex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -12694,7 +12694,7 @@ TypedValue * fg1_magickgetimageindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimageindex(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageindex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12734,8 +12734,8 @@ mgck_wnd => rdi long fh_magickgetimageinterlacescheme(Value* mgck_wnd) asm("_ZN4HPHP31f_magickgetimageinterlaceschemeERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -12743,7 +12743,7 @@ TypedValue * fg1_magickgetimageinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_magickgetimageinterlacescheme(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageinterlacescheme(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12783,8 +12783,8 @@ mgck_wnd => rdi double fh_magickgetimageiterations(Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetimageiterationsERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageiterations(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageiterations(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageiterations(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageiterations(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -12792,7 +12792,7 @@ TypedValue * fg1_magickgetimageiterations(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimageiterations(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageiterations(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12833,8 +12833,8 @@ mgck_wnd => rsi Value* fh_magickgetimagemattecolor(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetimagemattecolorERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagemattecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagemattecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagemattecolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagemattecolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -12843,7 +12843,7 @@ TypedValue * fg1_magickgetimagemattecolor(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimagemattecolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagemattecolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12885,8 +12885,8 @@ mgck_wnd => rsi Value* fh_magickgetimagemimetype(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP24f_magickgetimagemimetypeERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagemimetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagemimetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagemimetype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagemimetype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -12895,7 +12895,7 @@ TypedValue * fg1_magickgetimagemimetype(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickgetimagemimetype(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagemimetype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -12943,8 +12943,8 @@ storage_type => r9 Value* fh_magickgetimagepixels(Value* _rv, Value* mgck_wnd, int x_offset, int y_offset, double columns, double rows, Value* smap, int storage_type) asm("_ZN4HPHP22f_magickgetimagepixelsERKNS_6ObjectEiiddRKNS_6StringEi"); -TypedValue * fg1_magickgetimagepixels(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagepixels(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagepixels(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagepixels(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; if ((args-6)->m_type != KindOfInt64) { @@ -12973,7 +12973,7 @@ TypedValue * fg1_magickgetimagepixels(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickgetimagepixels(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagepixels(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13016,8 +13016,8 @@ name => rdx Value* fh_magickgetimageprofile(Value* _rv, Value* mgck_wnd, Value* name) asm("_ZN4HPHP23f_magickgetimageprofileERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magickgetimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageprofile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageprofile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -13031,7 +13031,7 @@ TypedValue * fg1_magickgetimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickgetimageprofile(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageprofile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13073,8 +13073,8 @@ mgck_wnd => rsi Value* fh_magickgetimageredprimary(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetimageredprimaryERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageredprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageredprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageredprimary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageredprimary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -13083,7 +13083,7 @@ TypedValue * fg1_magickgetimageredprimary(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimageredprimary(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageredprimary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13124,8 +13124,8 @@ mgck_wnd => rdi long fh_magickgetimagerenderingintent(Value* mgck_wnd) asm("_ZN4HPHP31f_magickgetimagerenderingintentERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagerenderingintent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagerenderingintent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagerenderingintent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagerenderingintent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -13133,7 +13133,7 @@ TypedValue * fg1_magickgetimagerenderingintent(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_magickgetimagerenderingintent(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagerenderingintent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13174,8 +13174,8 @@ mgck_wnd => rsi Value* fh_magickgetimageresolution(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetimageresolutionERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageresolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageresolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageresolution(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageresolution(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -13184,7 +13184,7 @@ TypedValue * fg1_magickgetimageresolution(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimageresolution(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageresolution(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13225,8 +13225,8 @@ mgck_wnd => rdi double fh_magickgetimagescene(Value* mgck_wnd) asm("_ZN4HPHP21f_magickgetimagesceneERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagescene(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagescene(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagescene(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagescene(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -13234,7 +13234,7 @@ TypedValue * fg1_magickgetimagescene(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimagescene(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagescene(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13275,8 +13275,8 @@ mgck_wnd => rsi Value* fh_magickgetimagesignature(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP25f_magickgetimagesignatureERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagesignature(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagesignature(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagesignature(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagesignature(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -13285,7 +13285,7 @@ TypedValue * fg1_magickgetimagesignature(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_magickgetimagesignature(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagesignature(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13326,8 +13326,8 @@ mgck_wnd => rdi long fh_magickgetimagesize(Value* mgck_wnd) asm("_ZN4HPHP20f_magickgetimagesizeERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagesize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagesize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -13335,7 +13335,7 @@ TypedValue * fg1_magickgetimagesize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickgetimagesize(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagesize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13375,8 +13375,8 @@ mgck_wnd => rdi long fh_magickgetimagetype(Value* mgck_wnd) asm("_ZN4HPHP20f_magickgetimagetypeERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagetype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagetype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -13384,7 +13384,7 @@ TypedValue * fg1_magickgetimagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickgetimagetype(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagetype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13424,8 +13424,8 @@ mgck_wnd => rdi long fh_magickgetimageunits(Value* mgck_wnd) asm("_ZN4HPHP21f_magickgetimageunitsERKNS_6ObjectE"); -TypedValue * fg1_magickgetimageunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimageunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimageunits(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimageunits(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -13433,7 +13433,7 @@ TypedValue * fg1_magickgetimageunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimageunits(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimageunits(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13473,8 +13473,8 @@ mgck_wnd => rdi long fh_magickgetimagevirtualpixelmethod(Value* mgck_wnd) asm("_ZN4HPHP34f_magickgetimagevirtualpixelmethodERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagevirtualpixelmethod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagevirtualpixelmethod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagevirtualpixelmethod(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagevirtualpixelmethod(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -13482,7 +13482,7 @@ TypedValue * fg1_magickgetimagevirtualpixelmethod(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_magickgetimagevirtualpixelmethod(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagevirtualpixelmethod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13523,8 +13523,8 @@ mgck_wnd => rsi Value* fh_magickgetimagewhitepoint(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetimagewhitepointERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagewhitepoint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagewhitepoint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagewhitepoint(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagewhitepoint(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -13533,7 +13533,7 @@ TypedValue * fg1_magickgetimagewhitepoint(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetimagewhitepoint(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagewhitepoint(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13574,8 +13574,8 @@ mgck_wnd => rdi double fh_magickgetimagewidth(Value* mgck_wnd) asm("_ZN4HPHP21f_magickgetimagewidthERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagewidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagewidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -13583,7 +13583,7 @@ TypedValue * fg1_magickgetimagewidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimagewidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagewidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13624,8 +13624,8 @@ mgck_wnd => rsi Value* fh_magickgetimagesblob(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP21f_magickgetimagesblobERKNS_6ObjectE"); -TypedValue * fg1_magickgetimagesblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetimagesblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetimagesblob(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetimagesblob(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -13634,7 +13634,7 @@ TypedValue * fg1_magickgetimagesblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgetimagesblob(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetimagesblob(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13675,8 +13675,8 @@ mgck_wnd => rdi long fh_magickgetinterlacescheme(Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetinterlaceschemeERKNS_6ObjectE"); -TypedValue * fg1_magickgetinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -13684,7 +13684,7 @@ TypedValue * fg1_magickgetinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetinterlacescheme(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetinterlacescheme(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13727,8 +13727,8 @@ multiline => rcx double fh_magickgetmaxtextadvance(Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP25f_magickgetmaxtextadvanceERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickgetmaxtextadvance(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetmaxtextadvance(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetmaxtextadvance(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetmaxtextadvance(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -13752,7 +13752,7 @@ TypedValue * fg1_magickgetmaxtextadvance(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_magickgetmaxtextadvance(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetmaxtextadvance(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13793,8 +13793,8 @@ mgck_wnd => rsi Value* fh_magickgetmimetype(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP19f_magickgetmimetypeERKNS_6ObjectE"); -TypedValue * fg1_magickgetmimetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetmimetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetmimetype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetmimetype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -13803,7 +13803,7 @@ TypedValue * fg1_magickgetmimetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickgetmimetype(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetmimetype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13844,8 +13844,8 @@ mgck_wnd => rdi double fh_magickgetnumberimages(Value* mgck_wnd) asm("_ZN4HPHP23f_magickgetnumberimagesERKNS_6ObjectE"); -TypedValue * fg1_magickgetnumberimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetnumberimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetnumberimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetnumberimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -13853,7 +13853,7 @@ TypedValue * fg1_magickgetnumberimages(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickgetnumberimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetnumberimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13894,8 +13894,8 @@ mgck_wnd => rsi Value* fh_magickgetsamplingfactors(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP26f_magickgetsamplingfactorsERKNS_6ObjectE"); -TypedValue * fg1_magickgetsamplingfactors(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetsamplingfactors(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetsamplingfactors(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetsamplingfactors(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -13904,7 +13904,7 @@ TypedValue * fg1_magickgetsamplingfactors(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickgetsamplingfactors(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetsamplingfactors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -13946,8 +13946,8 @@ mgck_wnd => rsi Value* fh_magickgetsize(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP15f_magickgetsizeERKNS_6ObjectE"); -TypedValue * fg1_magickgetsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetsize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetsize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -13956,7 +13956,7 @@ TypedValue * fg1_magickgetsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_magickgetsize(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetsize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14000,8 +14000,8 @@ multiline => rcx double fh_magickgetstringheight(Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP23f_magickgetstringheightERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickgetstringheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetstringheight(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetstringheight(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetstringheight(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -14025,7 +14025,7 @@ TypedValue * fg1_magickgetstringheight(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickgetstringheight(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetstringheight(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14068,8 +14068,8 @@ multiline => rcx double fh_magickgetstringwidth(Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP22f_magickgetstringwidthERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickgetstringwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetstringwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetstringwidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetstringwidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -14093,7 +14093,7 @@ TypedValue * fg1_magickgetstringwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickgetstringwidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetstringwidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14136,8 +14136,8 @@ multiline => rcx double fh_magickgettextascent(Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP21f_magickgettextascentERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickgettextascent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgettextascent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgettextascent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgettextascent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -14161,7 +14161,7 @@ TypedValue * fg1_magickgettextascent(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickgettextascent(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgettextascent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14204,8 +14204,8 @@ multiline => rcx double fh_magickgettextdescent(Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP22f_magickgettextdescentERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickgettextdescent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgettextdescent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgettextdescent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgettextdescent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -14229,7 +14229,7 @@ TypedValue * fg1_magickgettextdescent(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickgettextdescent(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgettextdescent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14270,8 +14270,8 @@ mgck_wnd => rsi Value* fh_magickgetwandsize(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP19f_magickgetwandsizeERKNS_6ObjectE"); -TypedValue * fg1_magickgetwandsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickgetwandsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickgetwandsize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickgetwandsize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -14280,7 +14280,7 @@ TypedValue * fg1_magickgetwandsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickgetwandsize(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickgetwandsize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14321,8 +14321,8 @@ mgck_wnd => rdi bool fh_magickhasnextimage(Value* mgck_wnd) asm("_ZN4HPHP20f_magickhasnextimageERKNS_6ObjectE"); -TypedValue * fg1_magickhasnextimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickhasnextimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickhasnextimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickhasnextimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -14330,7 +14330,7 @@ TypedValue * fg1_magickhasnextimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickhasnextimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickhasnextimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14370,8 +14370,8 @@ mgck_wnd => rdi bool fh_magickhaspreviousimage(Value* mgck_wnd) asm("_ZN4HPHP24f_magickhaspreviousimageERKNS_6ObjectE"); -TypedValue * fg1_magickhaspreviousimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickhaspreviousimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickhaspreviousimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickhaspreviousimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -14379,7 +14379,7 @@ TypedValue * fg1_magickhaspreviousimage(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickhaspreviousimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickhaspreviousimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14420,8 +14420,8 @@ amount => xmm0 bool fh_magickimplodeimage(Value* mgck_wnd, double amount) asm("_ZN4HPHP20f_magickimplodeimageERKNS_6ObjectEd"); -TypedValue * fg1_magickimplodeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickimplodeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickimplodeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickimplodeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -14434,7 +14434,7 @@ TypedValue * fg1_magickimplodeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickimplodeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickimplodeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14475,8 +14475,8 @@ label => rsi bool fh_magicklabelimage(Value* mgck_wnd, Value* label) asm("_ZN4HPHP18f_magicklabelimageERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magicklabelimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicklabelimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicklabelimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicklabelimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -14489,7 +14489,7 @@ TypedValue * fg1_magicklabelimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magicklabelimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicklabelimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14533,8 +14533,8 @@ channel_type => rsi bool fh_magicklevelimage(Value* mgck_wnd, double black_point, double gamma, double white_point, int channel_type) asm("_ZN4HPHP18f_magicklevelimageERKNS_6ObjectEdddi"); -TypedValue * fg1_magicklevelimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicklevelimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicklevelimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicklevelimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -14561,7 +14561,7 @@ TypedValue * fg1_magicklevelimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magicklevelimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicklevelimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14601,8 +14601,8 @@ mgck_wnd => rdi bool fh_magickmagnifyimage(Value* mgck_wnd) asm("_ZN4HPHP20f_magickmagnifyimageERKNS_6ObjectE"); -TypedValue * fg1_magickmagnifyimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmagnifyimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmagnifyimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmagnifyimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -14610,7 +14610,7 @@ TypedValue * fg1_magickmagnifyimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickmagnifyimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmagnifyimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14652,8 +14652,8 @@ dither => rdx bool fh_magickmapimage(Value* mgck_wnd, Value* map_wand, bool dither) asm("_ZN4HPHP16f_magickmapimageERKNS_6ObjectES2_b"); -TypedValue * fg1_magickmapimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmapimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmapimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmapimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfBoolean) { @@ -14669,7 +14669,7 @@ TypedValue * fg1_magickmapimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_magickmapimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmapimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14714,8 +14714,8 @@ y => rcx bool fh_magickmattefloodfillimage(Value* mgck_wnd, double opacity, double fuzz, Value* bordercolor_pxl_wnd, int x, int y) asm("_ZN4HPHP27f_magickmattefloodfillimageERKNS_6ObjectEddS2_ii"); -TypedValue * fg1_magickmattefloodfillimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmattefloodfillimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmattefloodfillimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmattefloodfillimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfInt64) { @@ -14740,7 +14740,7 @@ TypedValue * fg1_magickmattefloodfillimage(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickmattefloodfillimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmattefloodfillimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14781,8 +14781,8 @@ radius => xmm0 bool fh_magickmedianfilterimage(Value* mgck_wnd, double radius) asm("_ZN4HPHP25f_magickmedianfilterimageERKNS_6ObjectEd"); -TypedValue * fg1_magickmedianfilterimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmedianfilterimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmedianfilterimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmedianfilterimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -14795,7 +14795,7 @@ TypedValue * fg1_magickmedianfilterimage(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_magickmedianfilterimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmedianfilterimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14835,8 +14835,8 @@ mgck_wnd => rdi bool fh_magickminifyimage(Value* mgck_wnd) asm("_ZN4HPHP19f_magickminifyimageERKNS_6ObjectE"); -TypedValue * fg1_magickminifyimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickminifyimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickminifyimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickminifyimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -14844,7 +14844,7 @@ TypedValue * fg1_magickminifyimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickminifyimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickminifyimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14887,8 +14887,8 @@ hue => xmm2 bool fh_magickmodulateimage(Value* mgck_wnd, double brightness, double saturation, double hue) asm("_ZN4HPHP21f_magickmodulateimageERKNS_6ObjectEddd"); -TypedValue * fg1_magickmodulateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmodulateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmodulateimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmodulateimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfDouble) { @@ -14907,7 +14907,7 @@ TypedValue * fg1_magickmodulateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickmodulateimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmodulateimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -14953,8 +14953,8 @@ frame => st0 Value* fh_magickmontageimage(Value* _rv, Value* mgck_wnd, Value* drw_wnd, Value* tile_geometry, Value* thumbnail_geometry, int montage_mode, Value* frame) asm("_ZN4HPHP20f_magickmontageimageERKNS_6ObjectES2_RKNS_6StringES5_iS5_"); -TypedValue * fg1_magickmontageimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmontageimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmontageimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmontageimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-5)->m_type)) { @@ -14980,7 +14980,7 @@ TypedValue * fg1_magickmontageimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickmontageimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmontageimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15023,8 +15023,8 @@ number_frames => xmm0 Value* fh_magickmorphimages(Value* _rv, Value* mgck_wnd, double number_frames) asm("_ZN4HPHP19f_magickmorphimagesERKNS_6ObjectEd"); -TypedValue * fg1_magickmorphimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmorphimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmorphimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmorphimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfDouble) { @@ -15038,7 +15038,7 @@ TypedValue * fg1_magickmorphimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickmorphimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmorphimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15080,8 +15080,8 @@ mgck_wnd => rsi Value* fh_magickmosaicimages(Value* _rv, Value* mgck_wnd) asm("_ZN4HPHP20f_magickmosaicimagesERKNS_6ObjectE"); -TypedValue * fg1_magickmosaicimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmosaicimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmosaicimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmosaicimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -15090,7 +15090,7 @@ TypedValue * fg1_magickmosaicimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickmosaicimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmosaicimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15134,8 +15134,8 @@ angle => xmm2 bool fh_magickmotionblurimage(Value* mgck_wnd, double radius, double sigma, double angle) asm("_ZN4HPHP23f_magickmotionblurimageERKNS_6ObjectEddd"); -TypedValue * fg1_magickmotionblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickmotionblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickmotionblurimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickmotionblurimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfDouble) { @@ -15154,7 +15154,7 @@ TypedValue * fg1_magickmotionblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickmotionblurimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickmotionblurimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15196,8 +15196,8 @@ channel_type => rdx bool fh_magicknegateimage(Value* mgck_wnd, bool only_the_gray, int channel_type) asm("_ZN4HPHP19f_magicknegateimageERKNS_6ObjectEbi"); -TypedValue * fg1_magicknegateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicknegateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicknegateimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicknegateimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -15219,7 +15219,7 @@ TypedValue * fg1_magicknegateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magicknegateimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicknegateimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15262,8 +15262,8 @@ imagemagick_col_str => rsi bool fh_magicknewimage(Value* mgck_wnd, double width, double height, Value* imagemagick_col_str) asm("_ZN4HPHP16f_magicknewimageERKNS_6ObjectEddRKNS_6StringE"); -TypedValue * fg1_magicknewimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicknewimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicknewimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicknewimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -15287,7 +15287,7 @@ TypedValue * fg1_magicknewimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_magicknewimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicknewimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15327,8 +15327,8 @@ mgck_wnd => rdi bool fh_magicknextimage(Value* mgck_wnd) asm("_ZN4HPHP17f_magicknextimageERKNS_6ObjectE"); -TypedValue * fg1_magicknextimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicknextimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicknextimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicknextimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -15336,7 +15336,7 @@ TypedValue * fg1_magicknextimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magicknextimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicknextimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15376,8 +15376,8 @@ mgck_wnd => rdi bool fh_magicknormalizeimage(Value* mgck_wnd) asm("_ZN4HPHP22f_magicknormalizeimageERKNS_6ObjectE"); -TypedValue * fg1_magicknormalizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicknormalizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicknormalizeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicknormalizeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -15385,7 +15385,7 @@ TypedValue * fg1_magicknormalizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magicknormalizeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicknormalizeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15426,8 +15426,8 @@ radius => xmm0 bool fh_magickoilpaintimage(Value* mgck_wnd, double radius) asm("_ZN4HPHP21f_magickoilpaintimageERKNS_6ObjectEd"); -TypedValue * fg1_magickoilpaintimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickoilpaintimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickoilpaintimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickoilpaintimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -15440,7 +15440,7 @@ TypedValue * fg1_magickoilpaintimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickoilpaintimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickoilpaintimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15483,8 +15483,8 @@ fuzz => xmm0 bool fh_magickpaintopaqueimage(Value* mgck_wnd, Value* target_pxl_wnd, Value* fill_pxl_wnd, double fuzz) asm("_ZN4HPHP24f_magickpaintopaqueimageERKNS_6ObjectES2_S2_d"); -TypedValue * fg1_magickpaintopaqueimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickpaintopaqueimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickpaintopaqueimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickpaintopaqueimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -15508,7 +15508,7 @@ TypedValue * fg1_magickpaintopaqueimage(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickpaintopaqueimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickpaintopaqueimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15551,8 +15551,8 @@ fuzz => xmm1 bool fh_magickpainttransparentimage(Value* mgck_wnd, Value* target, double opacity, double fuzz) asm("_ZN4HPHP29f_magickpainttransparentimageERKNS_6ObjectES2_dd"); -TypedValue * fg1_magickpainttransparentimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickpainttransparentimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickpainttransparentimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickpainttransparentimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -15577,7 +15577,7 @@ TypedValue * fg1_magickpainttransparentimage(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_magickpainttransparentimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickpainttransparentimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15618,8 +15618,8 @@ filename => rsi bool fh_magickpingimage(Value* mgck_wnd, Value* filename) asm("_ZN4HPHP17f_magickpingimageERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magickpingimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickpingimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickpingimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickpingimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -15632,7 +15632,7 @@ TypedValue * fg1_magickpingimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickpingimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickpingimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15674,8 +15674,8 @@ dither => rsi bool fh_magickposterizeimage(Value* mgck_wnd, double levels, bool dither) asm("_ZN4HPHP22f_magickposterizeimageERKNS_6ObjectEdb"); -TypedValue * fg1_magickposterizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickposterizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickposterizeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickposterizeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfBoolean) { @@ -15691,7 +15691,7 @@ TypedValue * fg1_magickposterizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickposterizeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickposterizeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15733,8 +15733,8 @@ preview => rdx Value* fh_magickpreviewimages(Value* _rv, Value* mgck_wnd, int preview) asm("_ZN4HPHP21f_magickpreviewimagesERKNS_6ObjectEi"); -TypedValue * fg1_magickpreviewimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickpreviewimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickpreviewimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickpreviewimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfInt64) { @@ -15748,7 +15748,7 @@ TypedValue * fg1_magickpreviewimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickpreviewimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickpreviewimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15789,8 +15789,8 @@ mgck_wnd => rdi bool fh_magickpreviousimage(Value* mgck_wnd) asm("_ZN4HPHP21f_magickpreviousimageERKNS_6ObjectE"); -TypedValue * fg1_magickpreviousimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickpreviousimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickpreviousimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickpreviousimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -15798,7 +15798,7 @@ TypedValue * fg1_magickpreviousimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickpreviousimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickpreviousimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15840,8 +15840,8 @@ profile => rdx bool fh_magickprofileimage(Value* mgck_wnd, Value* name, Value* profile) asm("_ZN4HPHP20f_magickprofileimageERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_magickprofileimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickprofileimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickprofileimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickprofileimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -15862,7 +15862,7 @@ TypedValue * fg1_magickprofileimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magickprofileimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickprofileimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15907,8 +15907,8 @@ measure_error => rcx bool fh_magickquantizeimage(Value* mgck_wnd, double number_colors, int colorspace_type, double treedepth, bool dither, bool measure_error) asm("_ZN4HPHP21f_magickquantizeimageERKNS_6ObjectEdidbb"); -TypedValue * fg1_magickquantizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickquantizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickquantizeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickquantizeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfBoolean) { @@ -15933,7 +15933,7 @@ TypedValue * fg1_magickquantizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickquantizeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickquantizeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -15978,8 +15978,8 @@ measure_error => rcx bool fh_magickquantizeimages(Value* mgck_wnd, double number_colors, int colorspace_type, double treedepth, bool dither, bool measure_error) asm("_ZN4HPHP22f_magickquantizeimagesERKNS_6ObjectEdidbb"); -TypedValue * fg1_magickquantizeimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickquantizeimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickquantizeimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickquantizeimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfBoolean) { @@ -16004,7 +16004,7 @@ TypedValue * fg1_magickquantizeimages(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickquantizeimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickquantizeimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16048,8 +16048,8 @@ multiline => r8 Value* fh_magickqueryfontmetrics(Value* _rv, Value* mgck_wnd, Value* drw_wnd, Value* txt, bool multiline) asm("_ZN4HPHP24f_magickqueryfontmetricsERKNS_6ObjectES2_RKNS_6StringEb"); -TypedValue * fg1_magickqueryfontmetrics(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickqueryfontmetrics(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickqueryfontmetrics(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickqueryfontmetrics(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -16074,7 +16074,7 @@ TypedValue * fg1_magickqueryfontmetrics(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickqueryfontmetrics(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickqueryfontmetrics(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16116,8 +16116,8 @@ angle => xmm0 bool fh_magickradialblurimage(Value* mgck_wnd, double angle) asm("_ZN4HPHP23f_magickradialblurimageERKNS_6ObjectEd"); -TypedValue * fg1_magickradialblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickradialblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickradialblurimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickradialblurimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -16130,7 +16130,7 @@ TypedValue * fg1_magickradialblurimage(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickradialblurimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickradialblurimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16175,8 +16175,8 @@ raise => rcx bool fh_magickraiseimage(Value* mgck_wnd, double width, double height, int x, int y, bool raise) asm("_ZN4HPHP18f_magickraiseimageERKNS_6ObjectEddiib"); -TypedValue * fg1_magickraiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickraiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickraiseimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickraiseimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-5)->m_type != KindOfBoolean) { @@ -16201,7 +16201,7 @@ TypedValue * fg1_magickraiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickraiseimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickraiseimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16242,8 +16242,8 @@ filename => rsi bool fh_magickreadimage(Value* mgck_wnd, Value* filename) asm("_ZN4HPHP17f_magickreadimageERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magickreadimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickreadimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickreadimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickreadimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -16256,7 +16256,7 @@ TypedValue * fg1_magickreadimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickreadimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickreadimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16297,8 +16297,8 @@ blob => rsi bool fh_magickreadimageblob(Value* mgck_wnd, Value* blob) asm("_ZN4HPHP21f_magickreadimageblobERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magickreadimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickreadimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickreadimageblob(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickreadimageblob(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -16311,7 +16311,7 @@ TypedValue * fg1_magickreadimageblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickreadimageblob(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickreadimageblob(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16352,8 +16352,8 @@ handle => rsi bool fh_magickreadimagefile(Value* mgck_wnd, Value* handle) asm("_ZN4HPHP21f_magickreadimagefileERKNS_6ObjectES2_"); -TypedValue * fg1_magickreadimagefile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickreadimagefile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickreadimagefile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickreadimagefile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -16366,7 +16366,7 @@ TypedValue * fg1_magickreadimagefile(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickreadimagefile(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickreadimagefile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16407,8 +16407,8 @@ img_filenames_array => rsi bool fh_magickreadimages(Value* mgck_wnd, Value* img_filenames_array) asm("_ZN4HPHP18f_magickreadimagesERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_magickreadimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickreadimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickreadimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickreadimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfArray) { @@ -16421,7 +16421,7 @@ TypedValue * fg1_magickreadimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickreadimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickreadimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16462,8 +16462,8 @@ radius => xmm0 bool fh_magickreducenoiseimage(Value* mgck_wnd, double radius) asm("_ZN4HPHP24f_magickreducenoiseimageERKNS_6ObjectEd"); -TypedValue * fg1_magickreducenoiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickreducenoiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickreducenoiseimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickreducenoiseimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -16476,7 +16476,7 @@ TypedValue * fg1_magickreducenoiseimage(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickreducenoiseimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickreducenoiseimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16516,8 +16516,8 @@ mgck_wnd => rdi bool fh_magickremoveimage(Value* mgck_wnd) asm("_ZN4HPHP19f_magickremoveimageERKNS_6ObjectE"); -TypedValue * fg1_magickremoveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickremoveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickremoveimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickremoveimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -16525,7 +16525,7 @@ TypedValue * fg1_magickremoveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickremoveimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickremoveimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16567,8 +16567,8 @@ name => rdx Value* fh_magickremoveimageprofile(Value* _rv, Value* mgck_wnd, Value* name) asm("_ZN4HPHP26f_magickremoveimageprofileERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magickremoveimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickremoveimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickremoveimageprofile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickremoveimageprofile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -16582,7 +16582,7 @@ TypedValue * fg1_magickremoveimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickremoveimageprofile(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickremoveimageprofile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16623,8 +16623,8 @@ mgck_wnd => rdi bool fh_magickremoveimageprofiles(Value* mgck_wnd) asm("_ZN4HPHP27f_magickremoveimageprofilesERKNS_6ObjectE"); -TypedValue * fg1_magickremoveimageprofiles(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickremoveimageprofiles(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickremoveimageprofiles(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickremoveimageprofiles(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -16632,7 +16632,7 @@ TypedValue * fg1_magickremoveimageprofiles(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickremoveimageprofiles(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickremoveimageprofiles(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16676,8 +16676,8 @@ blur => xmm2 bool fh_magickresampleimage(Value* mgck_wnd, double x_resolution, double y_resolution, int filter_type, double blur) asm("_ZN4HPHP21f_magickresampleimageERKNS_6ObjectEddid"); -TypedValue * fg1_magickresampleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickresampleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickresampleimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickresampleimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfDouble) { @@ -16699,7 +16699,7 @@ TypedValue * fg1_magickresampleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickresampleimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickresampleimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16738,8 +16738,8 @@ mgck_wnd => rdi void fh_magickresetiterator(Value* mgck_wnd) asm("_ZN4HPHP21f_magickresetiteratorERKNS_6ObjectE"); -TypedValue * fg1_magickresetiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickresetiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickresetiterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickresetiterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -16748,7 +16748,7 @@ TypedValue * fg1_magickresetiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magickresetiterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickresetiterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16793,8 +16793,8 @@ blur => xmm2 bool fh_magickresizeimage(Value* mgck_wnd, double columns, double rows, int filter_type, double blur) asm("_ZN4HPHP19f_magickresizeimageERKNS_6ObjectEddid"); -TypedValue * fg1_magickresizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickresizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickresizeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickresizeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfDouble) { @@ -16816,7 +16816,7 @@ TypedValue * fg1_magickresizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickresizeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickresizeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16858,8 +16858,8 @@ y_offset => rdx bool fh_magickrollimage(Value* mgck_wnd, int x_offset, int y_offset) asm("_ZN4HPHP17f_magickrollimageERKNS_6ObjectEii"); -TypedValue * fg1_magickrollimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickrollimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickrollimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickrollimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -16875,7 +16875,7 @@ TypedValue * fg1_magickrollimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickrollimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickrollimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16917,8 +16917,8 @@ degrees => xmm0 bool fh_magickrotateimage(Value* mgck_wnd, Value* background, double degrees) asm("_ZN4HPHP19f_magickrotateimageERKNS_6ObjectES2_d"); -TypedValue * fg1_magickrotateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickrotateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickrotateimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickrotateimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -16934,7 +16934,7 @@ TypedValue * fg1_magickrotateimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickrotateimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickrotateimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -16976,8 +16976,8 @@ rows => xmm1 bool fh_magicksampleimage(Value* mgck_wnd, double columns, double rows) asm("_ZN4HPHP19f_magicksampleimageERKNS_6ObjectEdd"); -TypedValue * fg1_magicksampleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksampleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksampleimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksampleimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -16993,7 +16993,7 @@ TypedValue * fg1_magicksampleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magicksampleimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksampleimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17035,8 +17035,8 @@ rows => xmm1 bool fh_magickscaleimage(Value* mgck_wnd, double columns, double rows) asm("_ZN4HPHP18f_magickscaleimageERKNS_6ObjectEdd"); -TypedValue * fg1_magickscaleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickscaleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickscaleimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickscaleimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -17052,7 +17052,7 @@ TypedValue * fg1_magickscaleimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickscaleimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickscaleimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17093,8 +17093,8 @@ channel_type => rsi bool fh_magickseparateimagechannel(Value* mgck_wnd, int channel_type) asm("_ZN4HPHP28f_magickseparateimagechannelERKNS_6ObjectEi"); -TypedValue * fg1_magickseparateimagechannel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickseparateimagechannel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickseparateimagechannel(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickseparateimagechannel(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -17107,7 +17107,7 @@ TypedValue * fg1_magickseparateimagechannel(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_magickseparateimagechannel(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickseparateimagechannel(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17148,8 +17148,8 @@ quality => xmm0 bool fh_magicksetcompressionquality(Value* mgck_wnd, double quality) asm("_ZN4HPHP29f_magicksetcompressionqualityERKNS_6ObjectEd"); -TypedValue * fg1_magicksetcompressionquality(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetcompressionquality(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetcompressionquality(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetcompressionquality(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -17162,7 +17162,7 @@ TypedValue * fg1_magicksetcompressionquality(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_magicksetcompressionquality(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetcompressionquality(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17203,8 +17203,8 @@ filename => rsi bool fh_magicksetfilename(Value* mgck_wnd, Value* filename) asm("_ZN4HPHP19f_magicksetfilenameERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magicksetfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetfilename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetfilename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -17222,7 +17222,7 @@ TypedValue * fg1_magicksetfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magicksetfilename(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetfilename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17261,8 +17261,8 @@ mgck_wnd => rdi void fh_magicksetfirstiterator(Value* mgck_wnd) asm("_ZN4HPHP24f_magicksetfirstiteratorERKNS_6ObjectE"); -TypedValue * fg1_magicksetfirstiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetfirstiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetfirstiterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetfirstiterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -17271,7 +17271,7 @@ TypedValue * fg1_magicksetfirstiterator(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magicksetfirstiterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetfirstiterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17313,8 +17313,8 @@ format => rsi bool fh_magicksetformat(Value* mgck_wnd, Value* format) asm("_ZN4HPHP17f_magicksetformatERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magicksetformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetformat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetformat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -17327,7 +17327,7 @@ TypedValue * fg1_magicksetformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magicksetformat(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetformat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17368,8 +17368,8 @@ replace_wand => rsi bool fh_magicksetimage(Value* mgck_wnd, Value* replace_wand) asm("_ZN4HPHP16f_magicksetimageERKNS_6ObjectES2_"); -TypedValue * fg1_magicksetimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -17382,7 +17382,7 @@ TypedValue * fg1_magicksetimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_magicksetimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17423,8 +17423,8 @@ background_pxl_wnd => rsi bool fh_magicksetimagebackgroundcolor(Value* mgck_wnd, Value* background_pxl_wnd) asm("_ZN4HPHP31f_magicksetimagebackgroundcolorERKNS_6ObjectES2_"); -TypedValue * fg1_magicksetimagebackgroundcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagebackgroundcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagebackgroundcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagebackgroundcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -17437,7 +17437,7 @@ TypedValue * fg1_magicksetimagebackgroundcolor(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_magicksetimagebackgroundcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagebackgroundcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17478,8 +17478,8 @@ bias => xmm0 bool fh_magicksetimagebias(Value* mgck_wnd, double bias) asm("_ZN4HPHP20f_magicksetimagebiasERKNS_6ObjectEd"); -TypedValue * fg1_magicksetimagebias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagebias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagebias(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagebias(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -17492,7 +17492,7 @@ TypedValue * fg1_magicksetimagebias(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magicksetimagebias(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagebias(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17534,8 +17534,8 @@ y => xmm1 bool fh_magicksetimageblueprimary(Value* mgck_wnd, double x, double y) asm("_ZN4HPHP27f_magicksetimageblueprimaryERKNS_6ObjectEdd"); -TypedValue * fg1_magicksetimageblueprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageblueprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageblueprimary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageblueprimary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -17551,7 +17551,7 @@ TypedValue * fg1_magicksetimageblueprimary(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimageblueprimary(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageblueprimary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17592,8 +17592,8 @@ border_pxl_wnd => rsi bool fh_magicksetimagebordercolor(Value* mgck_wnd, Value* border_pxl_wnd) asm("_ZN4HPHP27f_magicksetimagebordercolorERKNS_6ObjectES2_"); -TypedValue * fg1_magicksetimagebordercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagebordercolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagebordercolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagebordercolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -17606,7 +17606,7 @@ TypedValue * fg1_magicksetimagebordercolor(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimagebordercolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagebordercolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17648,8 +17648,8 @@ mapcolor_pxl_wnd => rsi bool fh_magicksetimagecolormapcolor(Value* mgck_wnd, double index, Value* mapcolor_pxl_wnd) asm("_ZN4HPHP29f_magicksetimagecolormapcolorERKNS_6ObjectEdS2_"); -TypedValue * fg1_magicksetimagecolormapcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagecolormapcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagecolormapcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagecolormapcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfObject) { @@ -17665,7 +17665,7 @@ TypedValue * fg1_magicksetimagecolormapcolor(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_magicksetimagecolormapcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagecolormapcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17706,8 +17706,8 @@ colorspace_type => rsi bool fh_magicksetimagecolorspace(Value* mgck_wnd, int colorspace_type) asm("_ZN4HPHP26f_magicksetimagecolorspaceERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimagecolorspace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagecolorspace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagecolorspace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagecolorspace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -17720,7 +17720,7 @@ TypedValue * fg1_magicksetimagecolorspace(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimagecolorspace(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagecolorspace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17761,8 +17761,8 @@ composite_operator => rsi bool fh_magicksetimagecompose(Value* mgck_wnd, int composite_operator) asm("_ZN4HPHP23f_magicksetimagecomposeERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimagecompose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagecompose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagecompose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagecompose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -17775,7 +17775,7 @@ TypedValue * fg1_magicksetimagecompose(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magicksetimagecompose(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagecompose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17816,8 +17816,8 @@ compression_type => rsi bool fh_magicksetimagecompression(Value* mgck_wnd, int compression_type) asm("_ZN4HPHP27f_magicksetimagecompressionERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimagecompression(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagecompression(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagecompression(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagecompression(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -17830,7 +17830,7 @@ TypedValue * fg1_magicksetimagecompression(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimagecompression(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagecompression(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17871,8 +17871,8 @@ quality => xmm0 bool fh_magicksetimagecompressionquality(Value* mgck_wnd, double quality) asm("_ZN4HPHP34f_magicksetimagecompressionqualityERKNS_6ObjectEd"); -TypedValue * fg1_magicksetimagecompressionquality(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagecompressionquality(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagecompressionquality(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagecompressionquality(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -17885,7 +17885,7 @@ TypedValue * fg1_magicksetimagecompressionquality(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_magicksetimagecompressionquality(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagecompressionquality(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17926,8 +17926,8 @@ delay => xmm0 bool fh_magicksetimagedelay(Value* mgck_wnd, double delay) asm("_ZN4HPHP21f_magicksetimagedelayERKNS_6ObjectEd"); -TypedValue * fg1_magicksetimagedelay(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagedelay(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagedelay(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagedelay(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -17940,7 +17940,7 @@ TypedValue * fg1_magicksetimagedelay(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetimagedelay(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagedelay(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -17982,8 +17982,8 @@ channel_type => rdx bool fh_magicksetimagedepth(Value* mgck_wnd, int depth, int channel_type) asm("_ZN4HPHP21f_magicksetimagedepthERKNS_6ObjectEii"); -TypedValue * fg1_magicksetimagedepth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagedepth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagedepth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagedepth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -18004,7 +18004,7 @@ TypedValue * fg1_magicksetimagedepth(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetimagedepth(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagedepth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18045,8 +18045,8 @@ dispose_type => rsi bool fh_magicksetimagedispose(Value* mgck_wnd, int dispose_type) asm("_ZN4HPHP23f_magicksetimagedisposeERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimagedispose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagedispose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagedispose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagedispose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -18059,7 +18059,7 @@ TypedValue * fg1_magicksetimagedispose(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magicksetimagedispose(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagedispose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18100,8 +18100,8 @@ filename => rsi bool fh_magicksetimagefilename(Value* mgck_wnd, Value* filename) asm("_ZN4HPHP24f_magicksetimagefilenameERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magicksetimagefilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagefilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagefilename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagefilename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -18119,7 +18119,7 @@ TypedValue * fg1_magicksetimagefilename(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magicksetimagefilename(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagefilename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18160,8 +18160,8 @@ format => rsi bool fh_magicksetimageformat(Value* mgck_wnd, Value* format) asm("_ZN4HPHP22f_magicksetimageformatERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magicksetimageformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageformat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageformat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageformat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -18174,7 +18174,7 @@ TypedValue * fg1_magicksetimageformat(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magicksetimageformat(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageformat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18215,8 +18215,8 @@ gamma => xmm0 bool fh_magicksetimagegamma(Value* mgck_wnd, double gamma) asm("_ZN4HPHP21f_magicksetimagegammaERKNS_6ObjectEd"); -TypedValue * fg1_magicksetimagegamma(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagegamma(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagegamma(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagegamma(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -18229,7 +18229,7 @@ TypedValue * fg1_magicksetimagegamma(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetimagegamma(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagegamma(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18271,8 +18271,8 @@ y => xmm1 bool fh_magicksetimagegreenprimary(Value* mgck_wnd, double x, double y) asm("_ZN4HPHP28f_magicksetimagegreenprimaryERKNS_6ObjectEdd"); -TypedValue * fg1_magicksetimagegreenprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagegreenprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagegreenprimary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagegreenprimary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -18288,7 +18288,7 @@ TypedValue * fg1_magicksetimagegreenprimary(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_magicksetimagegreenprimary(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagegreenprimary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18329,8 +18329,8 @@ index => rsi bool fh_magicksetimageindex(Value* mgck_wnd, int index) asm("_ZN4HPHP21f_magicksetimageindexERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimageindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageindex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageindex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -18343,7 +18343,7 @@ TypedValue * fg1_magicksetimageindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetimageindex(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageindex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18384,8 +18384,8 @@ interlace_type => rsi bool fh_magicksetimageinterlacescheme(Value* mgck_wnd, int interlace_type) asm("_ZN4HPHP31f_magicksetimageinterlaceschemeERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimageinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -18398,7 +18398,7 @@ TypedValue * fg1_magicksetimageinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_magicksetimageinterlacescheme(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageinterlacescheme(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18439,8 +18439,8 @@ iterations => xmm0 bool fh_magicksetimageiterations(Value* mgck_wnd, double iterations) asm("_ZN4HPHP26f_magicksetimageiterationsERKNS_6ObjectEd"); -TypedValue * fg1_magicksetimageiterations(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageiterations(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageiterations(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageiterations(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -18453,7 +18453,7 @@ TypedValue * fg1_magicksetimageiterations(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimageiterations(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageiterations(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18494,8 +18494,8 @@ matte_pxl_wnd => rsi bool fh_magicksetimagemattecolor(Value* mgck_wnd, Value* matte_pxl_wnd) asm("_ZN4HPHP26f_magicksetimagemattecolorERKNS_6ObjectES2_"); -TypedValue * fg1_magicksetimagemattecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagemattecolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagemattecolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagemattecolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -18508,7 +18508,7 @@ TypedValue * fg1_magicksetimagemattecolor(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimagemattecolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagemattecolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18551,8 +18551,8 @@ value => rcx bool fh_magicksetimageoption(Value* mgck_wnd, Value* format, Value* key, Value* value) asm("_ZN4HPHP22f_magicksetimageoptionERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_magicksetimageoption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageoption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageoption(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageoption(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-3)->m_type)) { @@ -18571,7 +18571,7 @@ TypedValue * fg1_magicksetimageoption(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magicksetimageoption(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageoption(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18618,8 +18618,8 @@ pixel_array => r9 bool fh_magicksetimagepixels(Value* mgck_wnd, int x_offset, int y_offset, double columns, double rows, Value* smap, int storage_type, Value* pixel_array) asm("_ZN4HPHP22f_magicksetimagepixelsERKNS_6ObjectEiiddRKNS_6StringEiRKNS_5ArrayE"); -TypedValue * fg1_magicksetimagepixels(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagepixels(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagepixels(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagepixels(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-7)->m_type != KindOfArray) { @@ -18650,7 +18650,7 @@ TypedValue * fg1_magicksetimagepixels(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magicksetimagepixels(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagepixels(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18692,8 +18692,8 @@ profile => rdx bool fh_magicksetimageprofile(Value* mgck_wnd, Value* name, Value* profile) asm("_ZN4HPHP23f_magicksetimageprofileERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_magicksetimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageprofile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageprofile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -18709,7 +18709,7 @@ TypedValue * fg1_magicksetimageprofile(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magicksetimageprofile(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageprofile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18751,8 +18751,8 @@ y => xmm1 bool fh_magicksetimageredprimary(Value* mgck_wnd, double x, double y) asm("_ZN4HPHP26f_magicksetimageredprimaryERKNS_6ObjectEdd"); -TypedValue * fg1_magicksetimageredprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageredprimary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageredprimary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageredprimary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -18768,7 +18768,7 @@ TypedValue * fg1_magicksetimageredprimary(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimageredprimary(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageredprimary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18809,8 +18809,8 @@ rendering_intent => rsi bool fh_magicksetimagerenderingintent(Value* mgck_wnd, int rendering_intent) asm("_ZN4HPHP31f_magicksetimagerenderingintentERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimagerenderingintent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagerenderingintent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagerenderingintent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagerenderingintent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -18823,7 +18823,7 @@ TypedValue * fg1_magicksetimagerenderingintent(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_magicksetimagerenderingintent(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagerenderingintent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18865,8 +18865,8 @@ y_resolution => xmm1 bool fh_magicksetimageresolution(Value* mgck_wnd, double x_resolution, double y_resolution) asm("_ZN4HPHP26f_magicksetimageresolutionERKNS_6ObjectEdd"); -TypedValue * fg1_magicksetimageresolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageresolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageresolution(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageresolution(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -18882,7 +18882,7 @@ TypedValue * fg1_magicksetimageresolution(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimageresolution(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageresolution(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18923,8 +18923,8 @@ scene => xmm0 bool fh_magicksetimagescene(Value* mgck_wnd, double scene) asm("_ZN4HPHP21f_magicksetimagesceneERKNS_6ObjectEd"); -TypedValue * fg1_magicksetimagescene(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagescene(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagescene(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagescene(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -18937,7 +18937,7 @@ TypedValue * fg1_magicksetimagescene(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetimagescene(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagescene(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -18978,8 +18978,8 @@ image_type => rsi bool fh_magicksetimagetype(Value* mgck_wnd, int image_type) asm("_ZN4HPHP20f_magicksetimagetypeERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagetype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagetype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -18992,7 +18992,7 @@ TypedValue * fg1_magicksetimagetype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magicksetimagetype(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagetype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19033,8 +19033,8 @@ resolution_type => rsi bool fh_magicksetimageunits(Value* mgck_wnd, int resolution_type) asm("_ZN4HPHP21f_magicksetimageunitsERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimageunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimageunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimageunits(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimageunits(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -19047,7 +19047,7 @@ TypedValue * fg1_magicksetimageunits(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetimageunits(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimageunits(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19088,8 +19088,8 @@ virtual_pixel_method => rsi bool fh_magicksetimagevirtualpixelmethod(Value* mgck_wnd, int virtual_pixel_method) asm("_ZN4HPHP34f_magicksetimagevirtualpixelmethodERKNS_6ObjectEi"); -TypedValue * fg1_magicksetimagevirtualpixelmethod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagevirtualpixelmethod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagevirtualpixelmethod(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagevirtualpixelmethod(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -19102,7 +19102,7 @@ TypedValue * fg1_magicksetimagevirtualpixelmethod(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_magicksetimagevirtualpixelmethod(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagevirtualpixelmethod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19144,8 +19144,8 @@ y => xmm1 bool fh_magicksetimagewhitepoint(Value* mgck_wnd, double x, double y) asm("_ZN4HPHP26f_magicksetimagewhitepointERKNS_6ObjectEdd"); -TypedValue * fg1_magicksetimagewhitepoint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetimagewhitepoint(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetimagewhitepoint(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetimagewhitepoint(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -19161,7 +19161,7 @@ TypedValue * fg1_magicksetimagewhitepoint(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetimagewhitepoint(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetimagewhitepoint(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19202,8 +19202,8 @@ interlace_type => rsi bool fh_magicksetinterlacescheme(Value* mgck_wnd, int interlace_type) asm("_ZN4HPHP26f_magicksetinterlaceschemeERKNS_6ObjectEi"); -TypedValue * fg1_magicksetinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetinterlacescheme(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -19216,7 +19216,7 @@ TypedValue * fg1_magicksetinterlacescheme(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetinterlacescheme(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetinterlacescheme(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19255,8 +19255,8 @@ mgck_wnd => rdi void fh_magicksetlastiterator(Value* mgck_wnd) asm("_ZN4HPHP23f_magicksetlastiteratorERKNS_6ObjectE"); -TypedValue * fg1_magicksetlastiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetlastiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetlastiterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetlastiterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -19265,7 +19265,7 @@ TypedValue * fg1_magicksetlastiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magicksetlastiterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetlastiterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19307,8 +19307,8 @@ passphrase => rsi bool fh_magicksetpassphrase(Value* mgck_wnd, Value* passphrase) asm("_ZN4HPHP21f_magicksetpassphraseERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magicksetpassphrase(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetpassphrase(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetpassphrase(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetpassphrase(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -19321,7 +19321,7 @@ TypedValue * fg1_magicksetpassphrase(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetpassphrase(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetpassphrase(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19363,8 +19363,8 @@ y_resolution => xmm1 bool fh_magicksetresolution(Value* mgck_wnd, double x_resolution, double y_resolution) asm("_ZN4HPHP21f_magicksetresolutionERKNS_6ObjectEdd"); -TypedValue * fg1_magicksetresolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetresolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetresolution(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetresolution(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -19380,7 +19380,7 @@ TypedValue * fg1_magicksetresolution(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksetresolution(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetresolution(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19422,8 +19422,8 @@ sampling_factors => rsi bool fh_magicksetsamplingfactors(Value* mgck_wnd, double number_factors, Value* sampling_factors) asm("_ZN4HPHP26f_magicksetsamplingfactorsERKNS_6ObjectEdRKNS_5ArrayE"); -TypedValue * fg1_magicksetsamplingfactors(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetsamplingfactors(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetsamplingfactors(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetsamplingfactors(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfArray) { @@ -19439,7 +19439,7 @@ TypedValue * fg1_magicksetsamplingfactors(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magicksetsamplingfactors(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetsamplingfactors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19481,8 +19481,8 @@ rows => rdx bool fh_magicksetsize(Value* mgck_wnd, int columns, int rows) asm("_ZN4HPHP15f_magicksetsizeERKNS_6ObjectEii"); -TypedValue * fg1_magicksetsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetsize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetsize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -19498,7 +19498,7 @@ TypedValue * fg1_magicksetsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_magicksetsize(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetsize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19540,8 +19540,8 @@ rows => rdx bool fh_magicksetwandsize(Value* mgck_wnd, int columns, int rows) asm("_ZN4HPHP19f_magicksetwandsizeERKNS_6ObjectEii"); -TypedValue * fg1_magicksetwandsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksetwandsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksetwandsize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksetwandsize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -19557,7 +19557,7 @@ TypedValue * fg1_magicksetwandsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magicksetwandsize(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksetwandsize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19600,8 +19600,8 @@ channel_type => rsi bool fh_magicksharpenimage(Value* mgck_wnd, double radius, double sigma, int channel_type) asm("_ZN4HPHP20f_magicksharpenimageERKNS_6ObjectEddi"); -TypedValue * fg1_magicksharpenimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksharpenimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksharpenimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksharpenimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -19625,7 +19625,7 @@ TypedValue * fg1_magicksharpenimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magicksharpenimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksharpenimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19667,8 +19667,8 @@ rows => rdx bool fh_magickshaveimage(Value* mgck_wnd, int columns, int rows) asm("_ZN4HPHP18f_magickshaveimageERKNS_6ObjectEii"); -TypedValue * fg1_magickshaveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickshaveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickshaveimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickshaveimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -19684,7 +19684,7 @@ TypedValue * fg1_magickshaveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickshaveimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickshaveimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19727,8 +19727,8 @@ y_shear => xmm1 bool fh_magickshearimage(Value* mgck_wnd, Value* background, double x_shear, double y_shear) asm("_ZN4HPHP18f_magickshearimageERKNS_6ObjectES2_dd"); -TypedValue * fg1_magickshearimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickshearimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickshearimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickshearimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-3)->m_type != KindOfDouble) { @@ -19747,7 +19747,7 @@ TypedValue * fg1_magickshearimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickshearimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickshearimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19788,8 +19788,8 @@ threshold => xmm0 bool fh_magicksolarizeimage(Value* mgck_wnd, double threshold) asm("_ZN4HPHP21f_magicksolarizeimageERKNS_6ObjectEd"); -TypedValue * fg1_magicksolarizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksolarizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksolarizeimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksolarizeimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -19802,7 +19802,7 @@ TypedValue * fg1_magicksolarizeimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_magicksolarizeimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksolarizeimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19846,8 +19846,8 @@ y => rdx bool fh_magickspliceimage(Value* mgck_wnd, double width, double height, int x, int y) asm("_ZN4HPHP19f_magickspliceimageERKNS_6ObjectEddii"); -TypedValue * fg1_magickspliceimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickspliceimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickspliceimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickspliceimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-4)->m_type != KindOfInt64) { @@ -19869,7 +19869,7 @@ TypedValue * fg1_magickspliceimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickspliceimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickspliceimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19910,8 +19910,8 @@ radius => xmm0 bool fh_magickspreadimage(Value* mgck_wnd, double radius) asm("_ZN4HPHP19f_magickspreadimageERKNS_6ObjectEd"); -TypedValue * fg1_magickspreadimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickspreadimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickspreadimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickspreadimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -19924,7 +19924,7 @@ TypedValue * fg1_magickspreadimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickspreadimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickspreadimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -19967,8 +19967,8 @@ offset => rcx Value* fh_magicksteganoimage(Value* _rv, Value* mgck_wnd, Value* watermark_wand, int offset) asm("_ZN4HPHP20f_magicksteganoimageERKNS_6ObjectES2_i"); -TypedValue * fg1_magicksteganoimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicksteganoimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicksteganoimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicksteganoimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-2)->m_type != KindOfInt64) { @@ -19985,7 +19985,7 @@ TypedValue * fg1_magicksteganoimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magicksteganoimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicksteganoimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20027,8 +20027,8 @@ offset_wand => rsi bool fh_magickstereoimage(Value* mgck_wnd, Value* offset_wand) asm("_ZN4HPHP19f_magickstereoimageERKNS_6ObjectES2_"); -TypedValue * fg1_magickstereoimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickstereoimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickstereoimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickstereoimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -20041,7 +20041,7 @@ TypedValue * fg1_magickstereoimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickstereoimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickstereoimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20081,8 +20081,8 @@ mgck_wnd => rdi bool fh_magickstripimage(Value* mgck_wnd) asm("_ZN4HPHP18f_magickstripimageERKNS_6ObjectE"); -TypedValue * fg1_magickstripimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickstripimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickstripimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickstripimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -20090,7 +20090,7 @@ TypedValue * fg1_magickstripimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickstripimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickstripimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20131,8 +20131,8 @@ degrees => xmm0 bool fh_magickswirlimage(Value* mgck_wnd, double degrees) asm("_ZN4HPHP18f_magickswirlimageERKNS_6ObjectEd"); -TypedValue * fg1_magickswirlimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickswirlimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickswirlimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickswirlimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -20145,7 +20145,7 @@ TypedValue * fg1_magickswirlimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickswirlimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickswirlimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20187,8 +20187,8 @@ texture_wand => rdx Value* fh_magicktextureimage(Value* _rv, Value* mgck_wnd, Value* texture_wand) asm("_ZN4HPHP20f_magicktextureimageERKNS_6ObjectES2_"); -TypedValue * fg1_magicktextureimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicktextureimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicktextureimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicktextureimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfObject) { @@ -20202,7 +20202,7 @@ TypedValue * fg1_magicktextureimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_magicktextureimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicktextureimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20245,8 +20245,8 @@ channel_type => rsi bool fh_magickthresholdimage(Value* mgck_wnd, double threshold, int channel_type) asm("_ZN4HPHP22f_magickthresholdimageERKNS_6ObjectEdi"); -TypedValue * fg1_magickthresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickthresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickthresholdimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickthresholdimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -20267,7 +20267,7 @@ TypedValue * fg1_magickthresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickthresholdimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickthresholdimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20309,8 +20309,8 @@ opacity_pxl_wnd => rdx bool fh_magicktintimage(Value* mgck_wnd, int tint_pxl_wnd, Value* opacity_pxl_wnd) asm("_ZN4HPHP17f_magicktintimageERKNS_6ObjectEiS2_"); -TypedValue * fg1_magicktintimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicktintimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicktintimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicktintimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfObject) { @@ -20326,7 +20326,7 @@ TypedValue * fg1_magicktintimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magicktintimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicktintimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20369,8 +20369,8 @@ geometry => rcx Value* fh_magicktransformimage(Value* _rv, Value* mgck_wnd, Value* crop, Value* geometry) asm("_ZN4HPHP22f_magicktransformimageERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_magicktransformimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicktransformimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicktransformimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicktransformimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -20387,7 +20387,7 @@ TypedValue * fg1_magicktransformimage(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magicktransformimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicktransformimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20429,8 +20429,8 @@ fuzz => xmm0 bool fh_magicktrimimage(Value* mgck_wnd, double fuzz) asm("_ZN4HPHP17f_magicktrimimageERKNS_6ObjectEd"); -TypedValue * fg1_magicktrimimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magicktrimimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magicktrimimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magicktrimimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfDouble) { @@ -20443,7 +20443,7 @@ TypedValue * fg1_magicktrimimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magicktrimimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magicktrimimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20488,8 +20488,8 @@ channel_type => rsi bool fh_magickunsharpmaskimage(Value* mgck_wnd, double radius, double sigma, double amount, double threshold, int channel_type) asm("_ZN4HPHP24f_magickunsharpmaskimageERKNS_6ObjectEddddi"); -TypedValue * fg1_magickunsharpmaskimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickunsharpmaskimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickunsharpmaskimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickunsharpmaskimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -20519,7 +20519,7 @@ TypedValue * fg1_magickunsharpmaskimage(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_magickunsharpmaskimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickunsharpmaskimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20561,8 +20561,8 @@ wave_length => xmm1 bool fh_magickwaveimage(Value* mgck_wnd, double amplitude, double wave_length) asm("_ZN4HPHP17f_magickwaveimageERKNS_6ObjectEdd"); -TypedValue * fg1_magickwaveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickwaveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickwaveimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickwaveimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfDouble) { @@ -20578,7 +20578,7 @@ TypedValue * fg1_magickwaveimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_magickwaveimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickwaveimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20619,8 +20619,8 @@ threshold_pxl_wnd => rsi bool fh_magickwhitethresholdimage(Value* mgck_wnd, Value* threshold_pxl_wnd) asm("_ZN4HPHP27f_magickwhitethresholdimageERKNS_6ObjectES2_"); -TypedValue * fg1_magickwhitethresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickwhitethresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickwhitethresholdimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickwhitethresholdimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -20633,7 +20633,7 @@ TypedValue * fg1_magickwhitethresholdimage(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_magickwhitethresholdimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickwhitethresholdimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20674,8 +20674,8 @@ filename => rsi bool fh_magickwriteimage(Value* mgck_wnd, Value* filename) asm("_ZN4HPHP18f_magickwriteimageERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_magickwriteimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickwriteimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickwriteimage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickwriteimage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -20688,7 +20688,7 @@ TypedValue * fg1_magickwriteimage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickwriteimage(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickwriteimage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20729,8 +20729,8 @@ handle => rsi bool fh_magickwriteimagefile(Value* mgck_wnd, Value* handle) asm("_ZN4HPHP22f_magickwriteimagefileERKNS_6ObjectES2_"); -TypedValue * fg1_magickwriteimagefile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickwriteimagefile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickwriteimagefile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickwriteimagefile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -20743,7 +20743,7 @@ TypedValue * fg1_magickwriteimagefile(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_magickwriteimagefile(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickwriteimagefile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20785,8 +20785,8 @@ join_images => rdx bool fh_magickwriteimages(Value* mgck_wnd, Value* filename, bool join_images) asm("_ZN4HPHP19f_magickwriteimagesERKNS_6ObjectERKNS_6StringEb"); -TypedValue * fg1_magickwriteimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickwriteimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickwriteimages(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickwriteimages(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -20808,7 +20808,7 @@ TypedValue * fg1_magickwriteimages(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_magickwriteimages(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickwriteimages(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20849,8 +20849,8 @@ handle => rsi bool fh_magickwriteimagesfile(Value* mgck_wnd, Value* handle) asm("_ZN4HPHP23f_magickwriteimagesfileERKNS_6ObjectES2_"); -TypedValue * fg1_magickwriteimagesfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_magickwriteimagesfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_magickwriteimagesfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_magickwriteimagesfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfObject) { @@ -20863,7 +20863,7 @@ TypedValue * fg1_magickwriteimagesfile(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_magickwriteimagesfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_magickwriteimagesfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20903,8 +20903,8 @@ pxl_wnd => rdi double fh_pixelgetalpha(Value* pxl_wnd) asm("_ZN4HPHP15f_pixelgetalphaERKNS_6ObjectE"); -TypedValue * fg1_pixelgetalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetalpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetalpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -20912,7 +20912,7 @@ TypedValue * fg1_pixelgetalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelgetalpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetalpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -20952,8 +20952,8 @@ pxl_wnd => rdi double fh_pixelgetalphaquantum(Value* pxl_wnd) asm("_ZN4HPHP22f_pixelgetalphaquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetalphaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetalphaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetalphaquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetalphaquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -20961,7 +20961,7 @@ TypedValue * fg1_pixelgetalphaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelgetalphaquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetalphaquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21001,8 +21001,8 @@ pxl_wnd => rdi double fh_pixelgetblack(Value* pxl_wnd) asm("_ZN4HPHP15f_pixelgetblackERKNS_6ObjectE"); -TypedValue * fg1_pixelgetblack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetblack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetblack(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetblack(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21010,7 +21010,7 @@ TypedValue * fg1_pixelgetblack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelgetblack(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetblack(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21050,8 +21050,8 @@ pxl_wnd => rdi double fh_pixelgetblackquantum(Value* pxl_wnd) asm("_ZN4HPHP22f_pixelgetblackquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetblackquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetblackquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetblackquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetblackquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21059,7 +21059,7 @@ TypedValue * fg1_pixelgetblackquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelgetblackquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetblackquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21099,8 +21099,8 @@ pxl_wnd => rdi double fh_pixelgetblue(Value* pxl_wnd) asm("_ZN4HPHP14f_pixelgetblueERKNS_6ObjectE"); -TypedValue * fg1_pixelgetblue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetblue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetblue(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetblue(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21108,7 +21108,7 @@ TypedValue * fg1_pixelgetblue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_pixelgetblue(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetblue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21148,8 +21148,8 @@ pxl_wnd => rdi double fh_pixelgetbluequantum(Value* pxl_wnd) asm("_ZN4HPHP21f_pixelgetbluequantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetbluequantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetbluequantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetbluequantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetbluequantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21157,7 +21157,7 @@ TypedValue * fg1_pixelgetbluequantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_pixelgetbluequantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetbluequantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21198,8 +21198,8 @@ pxl_wnd => rsi Value* fh_pixelgetcolorasstring(Value* _rv, Value* pxl_wnd) asm("_ZN4HPHP23f_pixelgetcolorasstringERKNS_6ObjectE"); -TypedValue * fg1_pixelgetcolorasstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetcolorasstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetcolorasstring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetcolorasstring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -21208,7 +21208,7 @@ TypedValue * fg1_pixelgetcolorasstring(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_pixelgetcolorasstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetcolorasstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21249,8 +21249,8 @@ pxl_wnd => rdi double fh_pixelgetcolorcount(Value* pxl_wnd) asm("_ZN4HPHP20f_pixelgetcolorcountERKNS_6ObjectE"); -TypedValue * fg1_pixelgetcolorcount(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetcolorcount(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetcolorcount(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetcolorcount(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21258,7 +21258,7 @@ TypedValue * fg1_pixelgetcolorcount(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_pixelgetcolorcount(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetcolorcount(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21298,8 +21298,8 @@ pxl_wnd => rdi double fh_pixelgetcyan(Value* pxl_wnd) asm("_ZN4HPHP14f_pixelgetcyanERKNS_6ObjectE"); -TypedValue * fg1_pixelgetcyan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetcyan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetcyan(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetcyan(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21307,7 +21307,7 @@ TypedValue * fg1_pixelgetcyan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_pixelgetcyan(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetcyan(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21347,8 +21347,8 @@ pxl_wnd => rdi double fh_pixelgetcyanquantum(Value* pxl_wnd) asm("_ZN4HPHP21f_pixelgetcyanquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetcyanquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetcyanquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetcyanquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetcyanquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21356,7 +21356,7 @@ TypedValue * fg1_pixelgetcyanquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_pixelgetcyanquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetcyanquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21397,8 +21397,8 @@ pxl_wnd => rsi Value* fh_pixelgetexception(Value* _rv, Value* pxl_wnd) asm("_ZN4HPHP19f_pixelgetexceptionERKNS_6ObjectE"); -TypedValue * fg1_pixelgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetexception(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetexception(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -21407,7 +21407,7 @@ TypedValue * fg1_pixelgetexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_pixelgetexception(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetexception(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21449,8 +21449,8 @@ pxl_wnd => rsi Value* fh_pixelgetexceptionstring(Value* _rv, Value* pxl_wnd) asm("_ZN4HPHP25f_pixelgetexceptionstringERKNS_6ObjectE"); -TypedValue * fg1_pixelgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -21459,7 +21459,7 @@ TypedValue * fg1_pixelgetexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_pixelgetexceptionstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetexceptionstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21500,8 +21500,8 @@ pxl_wnd => rdi long fh_pixelgetexceptiontype(Value* pxl_wnd) asm("_ZN4HPHP23f_pixelgetexceptiontypeERKNS_6ObjectE"); -TypedValue * fg1_pixelgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -21509,7 +21509,7 @@ TypedValue * fg1_pixelgetexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_pixelgetexceptiontype(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetexceptiontype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21549,8 +21549,8 @@ pxl_wnd => rdi double fh_pixelgetgreen(Value* pxl_wnd) asm("_ZN4HPHP15f_pixelgetgreenERKNS_6ObjectE"); -TypedValue * fg1_pixelgetgreen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetgreen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetgreen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetgreen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21558,7 +21558,7 @@ TypedValue * fg1_pixelgetgreen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelgetgreen(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetgreen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21598,8 +21598,8 @@ pxl_wnd => rdi double fh_pixelgetgreenquantum(Value* pxl_wnd) asm("_ZN4HPHP22f_pixelgetgreenquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetgreenquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetgreenquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetgreenquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetgreenquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21607,7 +21607,7 @@ TypedValue * fg1_pixelgetgreenquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelgetgreenquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetgreenquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21647,8 +21647,8 @@ pxl_wnd => rdi double fh_pixelgetindex(Value* pxl_wnd) asm("_ZN4HPHP15f_pixelgetindexERKNS_6ObjectE"); -TypedValue * fg1_pixelgetindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetindex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetindex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21656,7 +21656,7 @@ TypedValue * fg1_pixelgetindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelgetindex(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetindex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21696,8 +21696,8 @@ pxl_wnd => rdi double fh_pixelgetmagenta(Value* pxl_wnd) asm("_ZN4HPHP17f_pixelgetmagentaERKNS_6ObjectE"); -TypedValue * fg1_pixelgetmagenta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetmagenta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetmagenta(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetmagenta(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21705,7 +21705,7 @@ TypedValue * fg1_pixelgetmagenta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_pixelgetmagenta(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetmagenta(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21745,8 +21745,8 @@ pxl_wnd => rdi double fh_pixelgetmagentaquantum(Value* pxl_wnd) asm("_ZN4HPHP24f_pixelgetmagentaquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetmagentaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetmagentaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetmagentaquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetmagentaquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21754,7 +21754,7 @@ TypedValue * fg1_pixelgetmagentaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_pixelgetmagentaquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetmagentaquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21794,8 +21794,8 @@ pxl_wnd => rdi double fh_pixelgetopacity(Value* pxl_wnd) asm("_ZN4HPHP17f_pixelgetopacityERKNS_6ObjectE"); -TypedValue * fg1_pixelgetopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetopacity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetopacity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21803,7 +21803,7 @@ TypedValue * fg1_pixelgetopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_pixelgetopacity(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetopacity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21843,8 +21843,8 @@ pxl_wnd => rdi double fh_pixelgetopacityquantum(Value* pxl_wnd) asm("_ZN4HPHP24f_pixelgetopacityquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetopacityquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetopacityquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetopacityquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetopacityquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21852,7 +21852,7 @@ TypedValue * fg1_pixelgetopacityquantum(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_pixelgetopacityquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetopacityquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21893,8 +21893,8 @@ pxl_wnd => rsi Value* fh_pixelgetquantumcolor(Value* _rv, Value* pxl_wnd) asm("_ZN4HPHP22f_pixelgetquantumcolorERKNS_6ObjectE"); -TypedValue * fg1_pixelgetquantumcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetquantumcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetquantumcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetquantumcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -21903,7 +21903,7 @@ TypedValue * fg1_pixelgetquantumcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelgetquantumcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetquantumcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21944,8 +21944,8 @@ pxl_wnd => rdi double fh_pixelgetred(Value* pxl_wnd) asm("_ZN4HPHP13f_pixelgetredERKNS_6ObjectE"); -TypedValue * fg1_pixelgetred(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetred(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetred(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetred(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -21953,7 +21953,7 @@ TypedValue * fg1_pixelgetred(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_pixelgetred(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetred(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -21993,8 +21993,8 @@ pxl_wnd => rdi double fh_pixelgetredquantum(Value* pxl_wnd) asm("_ZN4HPHP20f_pixelgetredquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetredquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetredquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetredquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetredquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -22002,7 +22002,7 @@ TypedValue * fg1_pixelgetredquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_pixelgetredquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetredquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22042,8 +22042,8 @@ pxl_wnd => rdi double fh_pixelgetyellow(Value* pxl_wnd) asm("_ZN4HPHP16f_pixelgetyellowERKNS_6ObjectE"); -TypedValue * fg1_pixelgetyellow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetyellow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetyellow(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetyellow(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -22051,7 +22051,7 @@ TypedValue * fg1_pixelgetyellow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_pixelgetyellow(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetyellow(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22091,8 +22091,8 @@ pxl_wnd => rdi double fh_pixelgetyellowquantum(Value* pxl_wnd) asm("_ZN4HPHP23f_pixelgetyellowquantumERKNS_6ObjectE"); -TypedValue * fg1_pixelgetyellowquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetyellowquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetyellowquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetyellowquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToObjectInPlace(args-0); @@ -22100,7 +22100,7 @@ TypedValue * fg1_pixelgetyellowquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_pixelgetyellowquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetyellowquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22140,8 +22140,8 @@ alpha => xmm0 void fh_pixelsetalpha(Value* pxl_wnd, double alpha) asm("_ZN4HPHP15f_pixelsetalphaERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetalpha(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetalpha(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22155,7 +22155,7 @@ TypedValue * fg1_pixelsetalpha(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelsetalpha(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetalpha(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22196,8 +22196,8 @@ alpha => xmm0 void fh_pixelsetalphaquantum(Value* pxl_wnd, double alpha) asm("_ZN4HPHP22f_pixelsetalphaquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetalphaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetalphaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetalphaquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetalphaquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22211,7 +22211,7 @@ TypedValue * fg1_pixelsetalphaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelsetalphaquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetalphaquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22252,8 +22252,8 @@ black => xmm0 void fh_pixelsetblack(Value* pxl_wnd, double black) asm("_ZN4HPHP15f_pixelsetblackERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetblack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetblack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetblack(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetblack(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22267,7 +22267,7 @@ TypedValue * fg1_pixelsetblack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelsetblack(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetblack(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22308,8 +22308,8 @@ black => xmm0 void fh_pixelsetblackquantum(Value* pxl_wnd, double black) asm("_ZN4HPHP22f_pixelsetblackquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetblackquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetblackquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetblackquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetblackquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22323,7 +22323,7 @@ TypedValue * fg1_pixelsetblackquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelsetblackquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetblackquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22364,8 +22364,8 @@ blue => xmm0 void fh_pixelsetblue(Value* pxl_wnd, double blue) asm("_ZN4HPHP14f_pixelsetblueERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetblue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetblue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetblue(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetblue(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22379,7 +22379,7 @@ TypedValue * fg1_pixelsetblue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_pixelsetblue(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetblue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22420,8 +22420,8 @@ blue => xmm0 void fh_pixelsetbluequantum(Value* pxl_wnd, double blue) asm("_ZN4HPHP21f_pixelsetbluequantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetbluequantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetbluequantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetbluequantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetbluequantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22435,7 +22435,7 @@ TypedValue * fg1_pixelsetbluequantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_pixelsetbluequantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetbluequantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22476,8 +22476,8 @@ imagemagick_col_str => rsi void fh_pixelsetcolor(Value* pxl_wnd, Value* imagemagick_col_str) asm("_ZN4HPHP15f_pixelsetcolorERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_pixelsetcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22491,7 +22491,7 @@ TypedValue * fg1_pixelsetcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelsetcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22532,8 +22532,8 @@ count => rsi void fh_pixelsetcolorcount(Value* pxl_wnd, int count) asm("_ZN4HPHP20f_pixelsetcolorcountERKNS_6ObjectEi"); -TypedValue * fg1_pixelsetcolorcount(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetcolorcount(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetcolorcount(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetcolorcount(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22547,7 +22547,7 @@ TypedValue * fg1_pixelsetcolorcount(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_pixelsetcolorcount(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetcolorcount(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22588,8 +22588,8 @@ cyan => xmm0 void fh_pixelsetcyan(Value* pxl_wnd, double cyan) asm("_ZN4HPHP14f_pixelsetcyanERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetcyan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetcyan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetcyan(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetcyan(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22603,7 +22603,7 @@ TypedValue * fg1_pixelsetcyan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_pixelsetcyan(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetcyan(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22644,8 +22644,8 @@ cyan => xmm0 void fh_pixelsetcyanquantum(Value* pxl_wnd, double cyan) asm("_ZN4HPHP21f_pixelsetcyanquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetcyanquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetcyanquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetcyanquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetcyanquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22659,7 +22659,7 @@ TypedValue * fg1_pixelsetcyanquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_pixelsetcyanquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetcyanquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22700,8 +22700,8 @@ green => xmm0 void fh_pixelsetgreen(Value* pxl_wnd, double green) asm("_ZN4HPHP15f_pixelsetgreenERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetgreen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetgreen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetgreen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetgreen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22715,7 +22715,7 @@ TypedValue * fg1_pixelsetgreen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelsetgreen(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetgreen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22756,8 +22756,8 @@ green => xmm0 void fh_pixelsetgreenquantum(Value* pxl_wnd, double green) asm("_ZN4HPHP22f_pixelsetgreenquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetgreenquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetgreenquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetgreenquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetgreenquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22771,7 +22771,7 @@ TypedValue * fg1_pixelsetgreenquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelsetgreenquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetgreenquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22812,8 +22812,8 @@ index => xmm0 void fh_pixelsetindex(Value* pxl_wnd, double index) asm("_ZN4HPHP15f_pixelsetindexERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetindex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetindex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22827,7 +22827,7 @@ TypedValue * fg1_pixelsetindex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pixelsetindex(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetindex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22868,8 +22868,8 @@ magenta => xmm0 void fh_pixelsetmagenta(Value* pxl_wnd, double magenta) asm("_ZN4HPHP17f_pixelsetmagentaERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetmagenta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetmagenta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetmagenta(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetmagenta(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22883,7 +22883,7 @@ TypedValue * fg1_pixelsetmagenta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_pixelsetmagenta(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetmagenta(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22924,8 +22924,8 @@ magenta => xmm0 void fh_pixelsetmagentaquantum(Value* pxl_wnd, double magenta) asm("_ZN4HPHP24f_pixelsetmagentaquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetmagentaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetmagentaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetmagentaquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetmagentaquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22939,7 +22939,7 @@ TypedValue * fg1_pixelsetmagentaquantum(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_pixelsetmagentaquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetmagentaquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -22980,8 +22980,8 @@ opacity => xmm0 void fh_pixelsetopacity(Value* pxl_wnd, double opacity) asm("_ZN4HPHP17f_pixelsetopacityERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetopacity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetopacity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -22995,7 +22995,7 @@ TypedValue * fg1_pixelsetopacity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_pixelsetopacity(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetopacity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23036,8 +23036,8 @@ opacity => xmm0 void fh_pixelsetopacityquantum(Value* pxl_wnd, double opacity) asm("_ZN4HPHP24f_pixelsetopacityquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetopacityquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetopacityquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetopacityquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetopacityquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -23051,7 +23051,7 @@ TypedValue * fg1_pixelsetopacityquantum(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_pixelsetopacityquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetopacityquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23095,8 +23095,8 @@ opacity => xmm3 void fh_pixelsetquantumcolor(Value* pxl_wnd, double red, double green, double blue, double opacity) asm("_ZN4HPHP22f_pixelsetquantumcolorERKNS_6ObjectEdddd"); -TypedValue * fg1_pixelsetquantumcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetquantumcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetquantumcolor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetquantumcolor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -23124,7 +23124,7 @@ TypedValue * fg1_pixelsetquantumcolor(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_pixelsetquantumcolor(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetquantumcolor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23165,8 +23165,8 @@ red => xmm0 void fh_pixelsetred(Value* pxl_wnd, double red) asm("_ZN4HPHP13f_pixelsetredERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetred(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetred(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetred(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetred(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -23180,7 +23180,7 @@ TypedValue * fg1_pixelsetred(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_pixelsetred(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetred(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23221,8 +23221,8 @@ red => xmm0 void fh_pixelsetredquantum(Value* pxl_wnd, double red) asm("_ZN4HPHP20f_pixelsetredquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetredquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetredquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetredquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetredquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -23236,7 +23236,7 @@ TypedValue * fg1_pixelsetredquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_pixelsetredquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetredquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23277,8 +23277,8 @@ yellow => xmm0 void fh_pixelsetyellow(Value* pxl_wnd, double yellow) asm("_ZN4HPHP16f_pixelsetyellowERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetyellow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetyellow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetyellow(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetyellow(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -23292,7 +23292,7 @@ TypedValue * fg1_pixelsetyellow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_pixelsetyellow(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetyellow(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23333,8 +23333,8 @@ yellow => xmm0 void fh_pixelsetyellowquantum(Value* pxl_wnd, double yellow) asm("_ZN4HPHP23f_pixelsetyellowquantumERKNS_6ObjectEd"); -TypedValue * fg1_pixelsetyellowquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetyellowquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetyellowquantum(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetyellowquantum(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -23348,7 +23348,7 @@ TypedValue * fg1_pixelsetyellowquantum(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_pixelsetyellowquantum(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetyellowquantum(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23390,8 +23390,8 @@ pxl_iter => rsi Value* fh_pixelgetiteratorexception(Value* _rv, Value* pxl_iter) asm("_ZN4HPHP27f_pixelgetiteratorexceptionERKNS_6ObjectE"); -TypedValue * fg1_pixelgetiteratorexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetiteratorexception(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetiteratorexception(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetiteratorexception(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -23400,7 +23400,7 @@ TypedValue * fg1_pixelgetiteratorexception(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_pixelgetiteratorexception(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetiteratorexception(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23442,8 +23442,8 @@ pxl_iter => rsi Value* fh_pixelgetiteratorexceptionstring(Value* _rv, Value* pxl_iter) asm("_ZN4HPHP33f_pixelgetiteratorexceptionstringERKNS_6ObjectE"); -TypedValue * fg1_pixelgetiteratorexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetiteratorexceptionstring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetiteratorexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetiteratorexceptionstring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -23452,7 +23452,7 @@ TypedValue * fg1_pixelgetiteratorexceptionstring(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* fg_pixelgetiteratorexceptionstring(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetiteratorexceptionstring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23493,8 +23493,8 @@ pxl_iter => rdi long fh_pixelgetiteratorexceptiontype(Value* pxl_iter) asm("_ZN4HPHP31f_pixelgetiteratorexceptiontypeERKNS_6ObjectE"); -TypedValue * fg1_pixelgetiteratorexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetiteratorexceptiontype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetiteratorexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetiteratorexceptiontype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -23502,7 +23502,7 @@ TypedValue * fg1_pixelgetiteratorexceptiontype(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_pixelgetiteratorexceptiontype(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetiteratorexceptiontype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23543,8 +23543,8 @@ pxl_iter => rsi Value* fh_pixelgetnextiteratorrow(Value* _rv, Value* pxl_iter) asm("_ZN4HPHP25f_pixelgetnextiteratorrowERKNS_6ObjectE"); -TypedValue * fg1_pixelgetnextiteratorrow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelgetnextiteratorrow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelgetnextiteratorrow(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelgetnextiteratorrow(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -23553,7 +23553,7 @@ TypedValue * fg1_pixelgetnextiteratorrow(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_pixelgetnextiteratorrow(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelgetnextiteratorrow(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23593,8 +23593,8 @@ pxl_iter => rdi void fh_pixelresetiterator(Value* pxl_iter) asm("_ZN4HPHP20f_pixelresetiteratorERKNS_6ObjectE"); -TypedValue * fg1_pixelresetiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelresetiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelresetiterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelresetiterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -23603,7 +23603,7 @@ TypedValue * fg1_pixelresetiterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_pixelresetiterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelresetiterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23645,8 +23645,8 @@ row => rsi bool fh_pixelsetiteratorrow(Value* pxl_iter, int row) asm("_ZN4HPHP21f_pixelsetiteratorrowERKNS_6ObjectEi"); -TypedValue * fg1_pixelsetiteratorrow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsetiteratorrow(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsetiteratorrow(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsetiteratorrow(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -23659,7 +23659,7 @@ TypedValue * fg1_pixelsetiteratorrow(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_pixelsetiteratorrow(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsetiteratorrow(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -23699,8 +23699,8 @@ pxl_iter => rdi bool fh_pixelsynciterator(Value* pxl_iter) asm("_ZN4HPHP19f_pixelsynciteratorERKNS_6ObjectE"); -TypedValue * fg1_pixelsynciterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pixelsynciterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pixelsynciterator(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pixelsynciterator(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -23708,7 +23708,7 @@ TypedValue * fg1_pixelsynciterator(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_pixelsynciterator(HPHP::VM::ActRec *ar) { +TypedValue* fg_pixelsynciterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_mailparse.ext_hhvm.cpp b/hphp/runtime/ext/ext_mailparse.ext_hhvm.cpp index e09f408b8..9d950fc42 100644 --- a/hphp/runtime/ext/ext_mailparse.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_mailparse.ext_hhvm.cpp @@ -38,8 +38,8 @@ additional_parameters => r8 bool fh_mail(Value* to, Value* subject, Value* message, Value* additional_headers, Value* additional_parameters) asm("_ZN4HPHP6f_mailERKNS_6StringES2_S2_S2_S2_"); -TypedValue * fg1_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mail(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mail(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -67,7 +67,7 @@ TypedValue * fg1_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_mail(HPHP::VM::ActRec *ar) { +TypedValue* fg_mail(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -107,8 +107,8 @@ addr => rdi long fh_ezmlm_hash(Value* addr) asm("_ZN4HPHP12f_ezmlm_hashERKNS_6StringE"); -TypedValue * fg1_ezmlm_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ezmlm_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ezmlm_hash(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ezmlm_hash(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -116,7 +116,7 @@ TypedValue * fg1_ezmlm_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ezmlm_hash(HPHP::VM::ActRec *ar) { +TypedValue* fg_ezmlm_hash(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -156,7 +156,7 @@ _rv => rdi Value* fh_mailparse_msg_create(Value* _rv) asm("_ZN4HPHP22f_mailparse_msg_createEv"); -TypedValue* fg_mailparse_msg_create(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -190,8 +190,8 @@ mimemail => rdi bool fh_mailparse_msg_free(Value* mimemail) asm("_ZN4HPHP20f_mailparse_msg_freeERKNS_6ObjectE"); -TypedValue * fg1_mailparse_msg_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_free(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_free(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -199,7 +199,7 @@ TypedValue * fg1_mailparse_msg_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mailparse_msg_free(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_free(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -240,8 +240,8 @@ filename => rsi TypedValue* fh_mailparse_msg_parse_file(TypedValue* _rv, Value* filename) asm("_ZN4HPHP26f_mailparse_msg_parse_fileERKNS_6StringE"); -TypedValue * fg1_mailparse_msg_parse_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_parse_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_parse_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_parse_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mailparse_msg_parse_file((rv), &args[-0].m_data); @@ -249,7 +249,7 @@ TypedValue * fg1_mailparse_msg_parse_file(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_mailparse_msg_parse_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_parse_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -290,8 +290,8 @@ data => rsi bool fh_mailparse_msg_parse(Value* mimemail, Value* data) asm("_ZN4HPHP21f_mailparse_msg_parseERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_mailparse_msg_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_parse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_parse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -304,7 +304,7 @@ TypedValue * fg1_mailparse_msg_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mailparse_msg_parse(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_parse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -347,8 +347,8 @@ callbackfunc => rcx TypedValue* fh_mailparse_msg_extract_part_file(TypedValue* _rv, Value* mimemail, TypedValue* filename, TypedValue* callbackfunc) asm("_ZN4HPHP33f_mailparse_msg_extract_part_fileERKNS_6ObjectERKNS_7VariantES5_"); -TypedValue * fg1_mailparse_msg_extract_part_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_extract_part_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_extract_part_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_extract_part_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); Variant defVal2 = empty_string; @@ -357,7 +357,7 @@ TypedValue * fg1_mailparse_msg_extract_part_file(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* fg_mailparse_msg_extract_part_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_extract_part_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -401,8 +401,8 @@ callbackfunc => rcx TypedValue* fh_mailparse_msg_extract_whole_part_file(TypedValue* _rv, Value* mimemail, TypedValue* filename, TypedValue* callbackfunc) asm("_ZN4HPHP39f_mailparse_msg_extract_whole_part_fileERKNS_6ObjectERKNS_7VariantES5_"); -TypedValue * fg1_mailparse_msg_extract_whole_part_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_extract_whole_part_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_extract_whole_part_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_extract_whole_part_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); Variant defVal2 = empty_string; @@ -411,7 +411,7 @@ TypedValue * fg1_mailparse_msg_extract_whole_part_file(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* fg_mailparse_msg_extract_whole_part_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_extract_whole_part_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -455,8 +455,8 @@ callbackfunc => rcx TypedValue* fh_mailparse_msg_extract_part(TypedValue* _rv, Value* mimemail, TypedValue* msgbody, TypedValue* callbackfunc) asm("_ZN4HPHP28f_mailparse_msg_extract_partERKNS_6ObjectERKNS_7VariantES5_"); -TypedValue * fg1_mailparse_msg_extract_part(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_extract_part(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_extract_part(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_extract_part(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); Variant defVal2 = empty_string; @@ -465,7 +465,7 @@ TypedValue * fg1_mailparse_msg_extract_part(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_mailparse_msg_extract_part(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_extract_part(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -507,8 +507,8 @@ mimemail => rsi Value* fh_mailparse_msg_get_part_data(Value* _rv, Value* mimemail) asm("_ZN4HPHP29f_mailparse_msg_get_part_dataERKNS_6ObjectE"); -TypedValue * fg1_mailparse_msg_get_part_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_get_part_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_get_part_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_get_part_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -517,7 +517,7 @@ TypedValue * fg1_mailparse_msg_get_part_data(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_mailparse_msg_get_part_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_get_part_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -560,8 +560,8 @@ mimesection => rdx TypedValue* fh_mailparse_msg_get_part(TypedValue* _rv, Value* mimemail, Value* mimesection) asm("_ZN4HPHP24f_mailparse_msg_get_partERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_mailparse_msg_get_part(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_get_part(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_get_part(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_get_part(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -574,7 +574,7 @@ TypedValue * fg1_mailparse_msg_get_part(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mailparse_msg_get_part(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_get_part(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -615,8 +615,8 @@ mimemail => rsi Value* fh_mailparse_msg_get_structure(Value* _rv, Value* mimemail) asm("_ZN4HPHP29f_mailparse_msg_get_structureERKNS_6ObjectE"); -TypedValue * fg1_mailparse_msg_get_structure(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_msg_get_structure(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_msg_get_structure(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_msg_get_structure(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -625,7 +625,7 @@ TypedValue * fg1_mailparse_msg_get_structure(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_mailparse_msg_get_structure(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_msg_get_structure(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -667,8 +667,8 @@ addresses => rsi Value* fh_mailparse_rfc822_parse_addresses(Value* _rv, Value* addresses) asm("_ZN4HPHP34f_mailparse_rfc822_parse_addressesERKNS_6StringE"); -TypedValue * fg1_mailparse_rfc822_parse_addresses(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_rfc822_parse_addresses(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_rfc822_parse_addresses(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_rfc822_parse_addresses(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -677,7 +677,7 @@ TypedValue * fg1_mailparse_rfc822_parse_addresses(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_mailparse_rfc822_parse_addresses(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_rfc822_parse_addresses(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -720,8 +720,8 @@ encoding => rdx bool fh_mailparse_stream_encode(Value* sourcefp, Value* destfp, Value* encoding) asm("_ZN4HPHP25f_mailparse_stream_encodeERKNS_6ObjectES2_RKNS_6StringE"); -TypedValue * fg1_mailparse_stream_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_stream_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_stream_encode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_stream_encode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -737,7 +737,7 @@ TypedValue * fg1_mailparse_stream_encode(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_mailparse_stream_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_stream_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -778,8 +778,8 @@ fp => rsi TypedValue* fh_mailparse_uudecode_all(TypedValue* _rv, Value* fp) asm("_ZN4HPHP24f_mailparse_uudecode_allERKNS_6ObjectE"); -TypedValue * fg1_mailparse_uudecode_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_uudecode_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_uudecode_all(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_uudecode_all(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_mailparse_uudecode_all((rv), &args[-0].m_data); @@ -787,7 +787,7 @@ TypedValue * fg1_mailparse_uudecode_all(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mailparse_uudecode_all(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_uudecode_all(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -828,8 +828,8 @@ fp => rsi TypedValue* fh_mailparse_determine_best_xfer_encoding(TypedValue* _rv, Value* fp) asm("_ZN4HPHP40f_mailparse_determine_best_xfer_encodingERKNS_6ObjectE"); -TypedValue * fg1_mailparse_determine_best_xfer_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mailparse_determine_best_xfer_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mailparse_determine_best_xfer_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mailparse_determine_best_xfer_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_mailparse_determine_best_xfer_encoding((rv), &args[-0].m_data); @@ -837,7 +837,7 @@ TypedValue * fg1_mailparse_determine_best_xfer_encoding(TypedValue* rv, HPHP::VM return rv; } -TypedValue* fg_mailparse_determine_best_xfer_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_mailparse_determine_best_xfer_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_math.ext_hhvm.cpp b/hphp/runtime/ext/ext_math.ext_hhvm.cpp index 8025a5abc..bc142cd69 100644 --- a/hphp/runtime/ext/ext_math.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_math.ext_hhvm.cpp @@ -33,7 +33,7 @@ _ZN4HPHP4f_piEv double fh_pi() asm("_ZN4HPHP4f_piEv"); -TypedValue* fg_pi(HPHP::VM::ActRec *ar) { +TypedValue* fg_pi(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -69,7 +69,7 @@ _argv => rcx TypedValue* fh_min(TypedValue* _rv, int64_t _argc, TypedValue* value, Value* _argv) asm("_ZN4HPHP5f_minEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_min(HPHP::VM::ActRec *ar) { +TypedValue* fg_min(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -118,7 +118,7 @@ _argv => rcx TypedValue* fh_max(TypedValue* _rv, int64_t _argc, TypedValue* value, Value* _argv) asm("_ZN4HPHP5f_maxEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_max(HPHP::VM::ActRec *ar) { +TypedValue* fg_max(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -165,7 +165,7 @@ number => rsi TypedValue* fh_abs(TypedValue* _rv, TypedValue* number) asm("_ZN4HPHP5f_absERKNS_7VariantE"); -TypedValue* fg_abs(HPHP::VM::ActRec *ar) { +TypedValue* fg_abs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -198,8 +198,8 @@ val => xmm0 bool fh_is_finite(double val) asm("_ZN4HPHP11f_is_finiteEd"); -TypedValue * fg1_is_finite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_finite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_finite(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_finite(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToDoubleInPlace(args-0); @@ -207,7 +207,7 @@ TypedValue * fg1_is_finite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_is_finite(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_finite(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -247,8 +247,8 @@ val => xmm0 bool fh_is_infinite(double val) asm("_ZN4HPHP13f_is_infiniteEd"); -TypedValue * fg1_is_infinite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_infinite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_infinite(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_infinite(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToDoubleInPlace(args-0); @@ -256,7 +256,7 @@ TypedValue * fg1_is_infinite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_is_infinite(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_infinite(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -296,8 +296,8 @@ val => xmm0 bool fh_is_nan(double val) asm("_ZN4HPHP8f_is_nanEd"); -TypedValue * fg1_is_nan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_is_nan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_is_nan(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_is_nan(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToDoubleInPlace(args-0); @@ -305,7 +305,7 @@ TypedValue * fg1_is_nan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_is_nan(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_nan(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -345,8 +345,8 @@ value => xmm0 double fh_ceil(double value) asm("_ZN4HPHP6f_ceilEd"); -TypedValue * fg1_ceil(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ceil(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ceil(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ceil(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -354,7 +354,7 @@ TypedValue * fg1_ceil(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ceil(HPHP::VM::ActRec *ar) { +TypedValue* fg_ceil(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -394,8 +394,8 @@ value => xmm0 double fh_floor(double value) asm("_ZN4HPHP7f_floorEd"); -TypedValue * fg1_floor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_floor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_floor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_floor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -403,7 +403,7 @@ TypedValue * fg1_floor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_floor(HPHP::VM::ActRec *ar) { +TypedValue* fg_floor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -445,8 +445,8 @@ mode => rdx double fh_round(TypedValue* val, long precision, long mode) asm("_ZN4HPHP7f_roundERKNS_7VariantEll"); -TypedValue * fg1_round(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_round(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_round(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_round(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -465,7 +465,7 @@ TypedValue * fg1_round(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_round(HPHP::VM::ActRec *ar) { +TypedValue* fg_round(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -505,8 +505,8 @@ number => xmm0 double fh_deg2rad(double number) asm("_ZN4HPHP9f_deg2radEd"); -TypedValue * fg1_deg2rad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_deg2rad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_deg2rad(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_deg2rad(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -514,7 +514,7 @@ TypedValue * fg1_deg2rad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_deg2rad(HPHP::VM::ActRec *ar) { +TypedValue* fg_deg2rad(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -554,8 +554,8 @@ number => xmm0 double fh_rad2deg(double number) asm("_ZN4HPHP9f_rad2degEd"); -TypedValue * fg1_rad2deg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rad2deg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rad2deg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rad2deg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -563,7 +563,7 @@ TypedValue * fg1_rad2deg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_rad2deg(HPHP::VM::ActRec *ar) { +TypedValue* fg_rad2deg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -604,8 +604,8 @@ number => rsi Value* fh_decbin(Value* _rv, long number) asm("_ZN4HPHP8f_decbinEl"); -TypedValue * fg1_decbin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_decbin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_decbin(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_decbin(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -614,7 +614,7 @@ TypedValue * fg1_decbin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_decbin(HPHP::VM::ActRec *ar) { +TypedValue* fg_decbin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -656,8 +656,8 @@ number => rsi Value* fh_dechex(Value* _rv, long number) asm("_ZN4HPHP8f_dechexEl"); -TypedValue * fg1_dechex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dechex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dechex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dechex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -666,7 +666,7 @@ TypedValue * fg1_dechex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_dechex(HPHP::VM::ActRec *ar) { +TypedValue* fg_dechex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -708,8 +708,8 @@ number => rsi Value* fh_decoct(Value* _rv, long number) asm("_ZN4HPHP8f_decoctEl"); -TypedValue * fg1_decoct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_decoct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_decoct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_decoct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -718,7 +718,7 @@ TypedValue * fg1_decoct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_decoct(HPHP::VM::ActRec *ar) { +TypedValue* fg_decoct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -760,8 +760,8 @@ binary_string => rsi TypedValue* fh_bindec(TypedValue* _rv, Value* binary_string) asm("_ZN4HPHP8f_bindecERKNS_6StringE"); -TypedValue * fg1_bindec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bindec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bindec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bindec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_bindec((rv), &args[-0].m_data); @@ -769,7 +769,7 @@ TypedValue * fg1_bindec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bindec(HPHP::VM::ActRec *ar) { +TypedValue* fg_bindec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -810,8 +810,8 @@ hex_string => rsi TypedValue* fh_hexdec(TypedValue* _rv, Value* hex_string) asm("_ZN4HPHP8f_hexdecERKNS_6StringE"); -TypedValue * fg1_hexdec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hexdec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hexdec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hexdec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_hexdec((rv), &args[-0].m_data); @@ -819,7 +819,7 @@ TypedValue * fg1_hexdec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_hexdec(HPHP::VM::ActRec *ar) { +TypedValue* fg_hexdec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -860,8 +860,8 @@ octal_string => rsi TypedValue* fh_octdec(TypedValue* _rv, Value* octal_string) asm("_ZN4HPHP8f_octdecERKNS_6StringE"); -TypedValue * fg1_octdec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_octdec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_octdec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_octdec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_octdec((rv), &args[-0].m_data); @@ -869,7 +869,7 @@ TypedValue * fg1_octdec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_octdec(HPHP::VM::ActRec *ar) { +TypedValue* fg_octdec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -912,8 +912,8 @@ tobase => rcx TypedValue* fh_base_convert(TypedValue* _rv, Value* number, long frombase, long tobase) asm("_ZN4HPHP14f_base_convertERKNS_6StringEll"); -TypedValue * fg1_base_convert(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_base_convert(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_base_convert(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_base_convert(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -929,7 +929,7 @@ TypedValue * fg1_base_convert(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_base_convert(HPHP::VM::ActRec *ar) { +TypedValue* fg_base_convert(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -971,7 +971,7 @@ exp => rdx TypedValue* fh_pow(TypedValue* _rv, TypedValue* base, TypedValue* exp) asm("_ZN4HPHP5f_powERKNS_7VariantES2_"); -TypedValue* fg_pow(HPHP::VM::ActRec *ar) { +TypedValue* fg_pow(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1004,8 +1004,8 @@ arg => xmm0 double fh_exp(double arg) asm("_ZN4HPHP5f_expEd"); -TypedValue * fg1_exp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_exp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_exp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_exp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1013,7 +1013,7 @@ TypedValue * fg1_exp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_exp(HPHP::VM::ActRec *ar) { +TypedValue* fg_exp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1053,8 +1053,8 @@ arg => xmm0 double fh_expm1(double arg) asm("_ZN4HPHP7f_expm1Ed"); -TypedValue * fg1_expm1(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_expm1(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_expm1(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_expm1(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1062,7 +1062,7 @@ TypedValue * fg1_expm1(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_expm1(HPHP::VM::ActRec *ar) { +TypedValue* fg_expm1(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1102,8 +1102,8 @@ arg => xmm0 double fh_log10(double arg) asm("_ZN4HPHP7f_log10Ed"); -TypedValue * fg1_log10(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_log10(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_log10(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_log10(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1111,7 +1111,7 @@ TypedValue * fg1_log10(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_log10(HPHP::VM::ActRec *ar) { +TypedValue* fg_log10(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1151,8 +1151,8 @@ number => xmm0 double fh_log1p(double number) asm("_ZN4HPHP7f_log1pEd"); -TypedValue * fg1_log1p(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_log1p(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_log1p(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_log1p(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1160,7 +1160,7 @@ TypedValue * fg1_log1p(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_log1p(HPHP::VM::ActRec *ar) { +TypedValue* fg_log1p(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1201,8 +1201,8 @@ base => xmm1 double fh_log(double arg, double base) asm("_ZN4HPHP5f_logEdd"); -TypedValue * fg1_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_log(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_log(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; switch (count) { @@ -1220,7 +1220,7 @@ TypedValue * fg1_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_log(HPHP::VM::ActRec *ar) { +TypedValue* fg_log(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1260,8 +1260,8 @@ arg => xmm0 double fh_cos(double arg) asm("_ZN4HPHP5f_cosEd"); -TypedValue * fg1_cos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_cos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_cos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_cos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1269,7 +1269,7 @@ TypedValue * fg1_cos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_cos(HPHP::VM::ActRec *ar) { +TypedValue* fg_cos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1309,8 +1309,8 @@ arg => xmm0 double fh_cosh(double arg) asm("_ZN4HPHP6f_coshEd"); -TypedValue * fg1_cosh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_cosh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_cosh(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_cosh(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1318,7 +1318,7 @@ TypedValue * fg1_cosh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_cosh(HPHP::VM::ActRec *ar) { +TypedValue* fg_cosh(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1358,8 +1358,8 @@ arg => xmm0 double fh_sin(double arg) asm("_ZN4HPHP5f_sinEd"); -TypedValue * fg1_sin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sin(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sin(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1367,7 +1367,7 @@ TypedValue * fg1_sin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sin(HPHP::VM::ActRec *ar) { +TypedValue* fg_sin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1407,8 +1407,8 @@ arg => xmm0 double fh_sinh(double arg) asm("_ZN4HPHP6f_sinhEd"); -TypedValue * fg1_sinh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sinh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sinh(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sinh(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1416,7 +1416,7 @@ TypedValue * fg1_sinh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sinh(HPHP::VM::ActRec *ar) { +TypedValue* fg_sinh(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1456,8 +1456,8 @@ arg => xmm0 double fh_tan(double arg) asm("_ZN4HPHP5f_tanEd"); -TypedValue * fg1_tan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_tan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_tan(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_tan(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1465,7 +1465,7 @@ TypedValue * fg1_tan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_tan(HPHP::VM::ActRec *ar) { +TypedValue* fg_tan(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1505,8 +1505,8 @@ arg => xmm0 double fh_tanh(double arg) asm("_ZN4HPHP6f_tanhEd"); -TypedValue * fg1_tanh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_tanh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_tanh(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_tanh(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1514,7 +1514,7 @@ TypedValue * fg1_tanh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_tanh(HPHP::VM::ActRec *ar) { +TypedValue* fg_tanh(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1554,8 +1554,8 @@ arg => xmm0 double fh_acos(double arg) asm("_ZN4HPHP6f_acosEd"); -TypedValue * fg1_acos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_acos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_acos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_acos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1563,7 +1563,7 @@ TypedValue * fg1_acos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_acos(HPHP::VM::ActRec *ar) { +TypedValue* fg_acos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1603,8 +1603,8 @@ arg => xmm0 double fh_acosh(double arg) asm("_ZN4HPHP7f_acoshEd"); -TypedValue * fg1_acosh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_acosh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_acosh(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_acosh(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1612,7 +1612,7 @@ TypedValue * fg1_acosh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_acosh(HPHP::VM::ActRec *ar) { +TypedValue* fg_acosh(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1652,8 +1652,8 @@ arg => xmm0 double fh_asin(double arg) asm("_ZN4HPHP6f_asinEd"); -TypedValue * fg1_asin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_asin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_asin(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_asin(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1661,7 +1661,7 @@ TypedValue * fg1_asin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_asin(HPHP::VM::ActRec *ar) { +TypedValue* fg_asin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1701,8 +1701,8 @@ arg => xmm0 double fh_asinh(double arg) asm("_ZN4HPHP7f_asinhEd"); -TypedValue * fg1_asinh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_asinh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_asinh(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_asinh(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1710,7 +1710,7 @@ TypedValue * fg1_asinh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_asinh(HPHP::VM::ActRec *ar) { +TypedValue* fg_asinh(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1750,8 +1750,8 @@ arg => xmm0 double fh_atan(double arg) asm("_ZN4HPHP6f_atanEd"); -TypedValue * fg1_atan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_atan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_atan(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_atan(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1759,7 +1759,7 @@ TypedValue * fg1_atan(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_atan(HPHP::VM::ActRec *ar) { +TypedValue* fg_atan(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1799,8 +1799,8 @@ arg => xmm0 double fh_atanh(double arg) asm("_ZN4HPHP7f_atanhEd"); -TypedValue * fg1_atanh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_atanh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_atanh(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_atanh(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -1808,7 +1808,7 @@ TypedValue * fg1_atanh(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_atanh(HPHP::VM::ActRec *ar) { +TypedValue* fg_atanh(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1849,8 +1849,8 @@ x => xmm1 double fh_atan2(double y, double x) asm("_ZN4HPHP7f_atan2Edd"); -TypedValue * fg1_atan2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_atan2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_atan2(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_atan2(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; if ((args-1)->m_type != KindOfDouble) { @@ -1863,7 +1863,7 @@ TypedValue * fg1_atan2(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_atan2(HPHP::VM::ActRec *ar) { +TypedValue* fg_atan2(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1904,8 +1904,8 @@ y => xmm1 double fh_hypot(double x, double y) asm("_ZN4HPHP7f_hypotEdd"); -TypedValue * fg1_hypot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hypot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hypot(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hypot(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; if ((args-1)->m_type != KindOfDouble) { @@ -1918,7 +1918,7 @@ TypedValue * fg1_hypot(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_hypot(HPHP::VM::ActRec *ar) { +TypedValue* fg_hypot(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1959,8 +1959,8 @@ y => xmm1 double fh_fmod(double x, double y) asm("_ZN4HPHP6f_fmodEdd"); -TypedValue * fg1_fmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fmod(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fmod(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; if ((args-1)->m_type != KindOfDouble) { @@ -1973,7 +1973,7 @@ TypedValue * fg1_fmod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_fmod(HPHP::VM::ActRec *ar) { +TypedValue* fg_fmod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2013,8 +2013,8 @@ arg => xmm0 double fh_sqrt(double arg) asm("_ZN4HPHP6f_sqrtEd"); -TypedValue * fg1_sqrt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sqrt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sqrt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sqrt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfDouble; tvCastToDoubleInPlace(args-0); @@ -2022,7 +2022,7 @@ TypedValue * fg1_sqrt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sqrt(HPHP::VM::ActRec *ar) { +TypedValue* fg_sqrt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2061,7 +2061,7 @@ _ZN4HPHP12f_getrandmaxEv long fh_getrandmax() asm("_ZN4HPHP12f_getrandmaxEv"); -TypedValue* fg_getrandmax(HPHP::VM::ActRec *ar) { +TypedValue* fg_getrandmax(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2093,7 +2093,7 @@ seed => rdi void fh_srand(TypedValue* seed) asm("_ZN4HPHP7f_srandERKNS_7VariantE"); -TypedValue* fg_srand(HPHP::VM::ActRec *ar) { +TypedValue* fg_srand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2128,8 +2128,8 @@ max => rsi long fh_rand(long min, long max) asm("_ZN4HPHP6f_randEll"); -TypedValue * fg1_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -2148,7 +2148,7 @@ TypedValue * fg1_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_rand(HPHP::VM::ActRec *ar) { +TypedValue* fg_rand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2187,7 +2187,7 @@ _ZN4HPHP15f_mt_getrandmaxEv long fh_mt_getrandmax() asm("_ZN4HPHP15f_mt_getrandmaxEv"); -TypedValue* fg_mt_getrandmax(HPHP::VM::ActRec *ar) { +TypedValue* fg_mt_getrandmax(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2219,7 +2219,7 @@ seed => rdi void fh_mt_srand(TypedValue* seed) asm("_ZN4HPHP10f_mt_srandERKNS_7VariantE"); -TypedValue* fg_mt_srand(HPHP::VM::ActRec *ar) { +TypedValue* fg_mt_srand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2254,8 +2254,8 @@ max => rsi long fh_mt_rand(long min, long max) asm("_ZN4HPHP9f_mt_randEll"); -TypedValue * fg1_mt_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mt_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mt_rand(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mt_rand(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -2274,7 +2274,7 @@ TypedValue * fg1_mt_rand(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_mt_rand(HPHP::VM::ActRec *ar) { +TypedValue* fg_mt_rand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2313,7 +2313,7 @@ _ZN4HPHP11f_lcg_valueEv double fh_lcg_value() asm("_ZN4HPHP11f_lcg_valueEv"); -TypedValue* fg_lcg_value(HPHP::VM::ActRec *ar) { +TypedValue* fg_lcg_value(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_mb.ext_hhvm.cpp b/hphp/runtime/ext/ext_mb.ext_hhvm.cpp index d121cda68..916a82fa3 100644 --- a/hphp/runtime/ext/ext_mb.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_mb.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi Value* fh_mb_list_encodings(Value* _rv) asm("_ZN4HPHP19f_mb_list_encodingsEv"); -TypedValue* fg_mb_list_encodings(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_list_encodings(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -69,8 +69,8 @@ name => rsi TypedValue* fh_mb_list_encodings_alias_names(TypedValue* _rv, Value* name) asm("_ZN4HPHP31f_mb_list_encodings_alias_namesERKNS_6StringE"); -TypedValue * fg1_mb_list_encodings_alias_names(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_list_encodings_alias_names(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_list_encodings_alias_names(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_list_encodings_alias_names(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_list_encodings_alias_names((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -78,7 +78,7 @@ TypedValue * fg1_mb_list_encodings_alias_names(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_mb_list_encodings_alias_names(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_list_encodings_alias_names(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -119,8 +119,8 @@ name => rsi TypedValue* fh_mb_list_mime_names(TypedValue* _rv, Value* name) asm("_ZN4HPHP20f_mb_list_mime_namesERKNS_6StringE"); -TypedValue * fg1_mb_list_mime_names(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_list_mime_names(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_list_mime_names(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_list_mime_names(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_list_mime_names((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -128,7 +128,7 @@ TypedValue * fg1_mb_list_mime_names(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mb_list_mime_names(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_list_mime_names(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -169,8 +169,8 @@ encoding => rsi bool fh_mb_check_encoding(Value* var, Value* encoding) asm("_ZN4HPHP19f_mb_check_encodingERKNS_6StringES2_"); -TypedValue * fg1_mb_check_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_check_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_check_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_check_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -189,7 +189,7 @@ TypedValue * fg1_mb_check_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mb_check_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_check_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -232,8 +232,8 @@ encoding => rcx TypedValue* fh_mb_convert_case(TypedValue* _rv, Value* str, int mode, Value* encoding) asm("_ZN4HPHP17f_mb_convert_caseERKNS_6StringEiS2_"); -TypedValue * fg1_mb_convert_case(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_convert_case(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_convert_case(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_convert_case(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -254,7 +254,7 @@ TypedValue * fg1_mb_convert_case(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mb_convert_case(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_convert_case(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -297,8 +297,8 @@ from_encoding => rcx TypedValue* fh_mb_convert_encoding(TypedValue* _rv, Value* str, Value* to_encoding, TypedValue* from_encoding) asm("_ZN4HPHP21f_mb_convert_encodingERKNS_6StringES2_RKNS_7VariantE"); -TypedValue * fg1_mb_convert_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_convert_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_convert_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_convert_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -316,7 +316,7 @@ TypedValue * fg1_mb_convert_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mb_convert_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_convert_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -359,8 +359,8 @@ encoding => rcx TypedValue* fh_mb_convert_kana(TypedValue* _rv, Value* str, Value* option, Value* encoding) asm("_ZN4HPHP17f_mb_convert_kanaERKNS_6StringES2_S2_"); -TypedValue * fg1_mb_convert_kana(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_convert_kana(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_convert_kana(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_convert_kana(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -382,7 +382,7 @@ TypedValue * fg1_mb_convert_kana(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mb_convert_kana(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_convert_kana(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -427,8 +427,8 @@ _argv => r9 TypedValue* fh_mb_convert_variables(TypedValue* _rv, int64_t _argc, Value* to_encoding, TypedValue* from_encoding, TypedValue* vars, Value* _argv) asm("_ZN4HPHP22f_mb_convert_variablesEiRKNS_6StringERKNS_7VariantERKNS_14VRefParamValueERKNS_5ArrayE"); -TypedValue * fg1_mb_convert_variables(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_convert_variables(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_convert_variables(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_convert_variables(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Array extraArgs; @@ -449,7 +449,7 @@ TypedValue * fg1_mb_convert_variables(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_mb_convert_variables(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_convert_variables(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -503,8 +503,8 @@ str => rsi TypedValue* fh_mb_decode_mimeheader(TypedValue* _rv, Value* str) asm("_ZN4HPHP22f_mb_decode_mimeheaderERKNS_6StringE"); -TypedValue * fg1_mb_decode_mimeheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_decode_mimeheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_decode_mimeheader(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_decode_mimeheader(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_decode_mimeheader((rv), &args[-0].m_data); @@ -512,7 +512,7 @@ TypedValue * fg1_mb_decode_mimeheader(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_mb_decode_mimeheader(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_decode_mimeheader(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -555,8 +555,8 @@ encoding => rcx TypedValue* fh_mb_decode_numericentity(TypedValue* _rv, Value* str, TypedValue* convmap, Value* encoding) asm("_ZN4HPHP25f_mb_decode_numericentityERKNS_6StringERKNS_7VariantES2_"); -TypedValue * fg1_mb_decode_numericentity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_decode_numericentity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_decode_numericentity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_decode_numericentity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -574,7 +574,7 @@ TypedValue * fg1_mb_decode_numericentity(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_mb_decode_numericentity(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_decode_numericentity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -617,8 +617,8 @@ strict => rcx TypedValue* fh_mb_detect_encoding(TypedValue* _rv, Value* str, TypedValue* encoding_list, TypedValue* strict) asm("_ZN4HPHP20f_mb_detect_encodingERKNS_6StringERKNS_7VariantES5_"); -TypedValue * fg1_mb_detect_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_detect_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_detect_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_detect_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_detect_encoding((rv), &args[-0].m_data, (count > 1) ? (args-1) : (TypedValue*)(&null_variant), (count > 2) ? (args-2) : (TypedValue*)(&null_variant)); @@ -626,7 +626,7 @@ TypedValue * fg1_mb_detect_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mb_detect_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_detect_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -667,7 +667,7 @@ encoding_list => rsi TypedValue* fh_mb_detect_order(TypedValue* _rv, TypedValue* encoding_list) asm("_ZN4HPHP17f_mb_detect_orderERKNS_7VariantE"); -TypedValue* fg_mb_detect_order(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_detect_order(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -705,8 +705,8 @@ indent => r9 TypedValue* fh_mb_encode_mimeheader(TypedValue* _rv, Value* str, Value* charset, Value* transfer_encoding, Value* linefeed, int indent) asm("_ZN4HPHP22f_mb_encode_mimeheaderERKNS_6StringES2_S2_S2_i"); -TypedValue * fg1_mb_encode_mimeheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_encode_mimeheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_encode_mimeheader(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_encode_mimeheader(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -737,7 +737,7 @@ TypedValue * fg1_mb_encode_mimeheader(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_mb_encode_mimeheader(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_encode_mimeheader(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -781,8 +781,8 @@ encoding => rcx TypedValue* fh_mb_encode_numericentity(TypedValue* _rv, Value* str, TypedValue* convmap, Value* encoding) asm("_ZN4HPHP25f_mb_encode_numericentityERKNS_6StringERKNS_7VariantES2_"); -TypedValue * fg1_mb_encode_numericentity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_encode_numericentity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_encode_numericentity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_encode_numericentity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -800,7 +800,7 @@ TypedValue * fg1_mb_encode_numericentity(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_mb_encode_numericentity(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_encode_numericentity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -842,8 +842,8 @@ option => rdx bool fh_mb_ereg_match(Value* pattern, Value* str, Value* option) asm("_ZN4HPHP15f_mb_ereg_matchERKNS_6StringES2_S2_"); -TypedValue * fg1_mb_ereg_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg_match(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg_match(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -864,7 +864,7 @@ TypedValue * fg1_mb_ereg_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mb_ereg_match(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_match(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -908,8 +908,8 @@ option => r8 TypedValue* fh_mb_ereg_replace(TypedValue* _rv, TypedValue* pattern, Value* replacement, Value* str, Value* option) asm("_ZN4HPHP17f_mb_ereg_replaceERKNS_7VariantERKNS_6StringES5_S5_"); -TypedValue * fg1_mb_ereg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg_replace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg_replace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -930,7 +930,7 @@ TypedValue * fg1_mb_ereg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mb_ereg_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -969,7 +969,7 @@ _ZN4HPHP23f_mb_ereg_search_getposEv long fh_mb_ereg_search_getpos() asm("_ZN4HPHP23f_mb_ereg_search_getposEv"); -TypedValue* fg_mb_ereg_search_getpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_search_getpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1002,7 +1002,7 @@ _rv => rdi TypedValue* fh_mb_ereg_search_getregs(TypedValue* _rv) asm("_ZN4HPHP24f_mb_ereg_search_getregsEv"); -TypedValue* fg_mb_ereg_search_getregs(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_search_getregs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1037,8 +1037,8 @@ option => rdx bool fh_mb_ereg_search_init(Value* str, Value* pattern, Value* option) asm("_ZN4HPHP21f_mb_ereg_search_initERKNS_6StringES2_S2_"); -TypedValue * fg1_mb_ereg_search_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg_search_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg_search_init(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg_search_init(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1060,7 +1060,7 @@ TypedValue * fg1_mb_ereg_search_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mb_ereg_search_init(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_search_init(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1102,8 +1102,8 @@ option => rdx TypedValue* fh_mb_ereg_search_pos(TypedValue* _rv, Value* pattern, Value* option) asm("_ZN4HPHP20f_mb_ereg_search_posERKNS_6StringES2_"); -TypedValue * fg1_mb_ereg_search_pos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg_search_pos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg_search_pos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg_search_pos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1122,7 +1122,7 @@ TypedValue * fg1_mb_ereg_search_pos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mb_ereg_search_pos(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_search_pos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1164,8 +1164,8 @@ option => rdx TypedValue* fh_mb_ereg_search_regs(TypedValue* _rv, Value* pattern, Value* option) asm("_ZN4HPHP21f_mb_ereg_search_regsERKNS_6StringES2_"); -TypedValue * fg1_mb_ereg_search_regs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg_search_regs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg_search_regs(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg_search_regs(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1184,7 +1184,7 @@ TypedValue * fg1_mb_ereg_search_regs(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mb_ereg_search_regs(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_search_regs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1224,8 +1224,8 @@ position => rdi bool fh_mb_ereg_search_setpos(int position) asm("_ZN4HPHP23f_mb_ereg_search_setposEi"); -TypedValue * fg1_mb_ereg_search_setpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg_search_setpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg_search_setpos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg_search_setpos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1233,7 +1233,7 @@ TypedValue * fg1_mb_ereg_search_setpos(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_mb_ereg_search_setpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_search_setpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1275,8 +1275,8 @@ option => rdx TypedValue* fh_mb_ereg_search(TypedValue* _rv, Value* pattern, Value* option) asm("_ZN4HPHP16f_mb_ereg_searchERKNS_6StringES2_"); -TypedValue * fg1_mb_ereg_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg_search(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg_search(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1295,7 +1295,7 @@ TypedValue * fg1_mb_ereg_search(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_mb_ereg_search(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg_search(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1338,8 +1338,8 @@ regs => rcx TypedValue* fh_mb_ereg(TypedValue* _rv, TypedValue* pattern, Value* str, TypedValue* regs) asm("_ZN4HPHP9f_mb_eregERKNS_7VariantERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_mb_ereg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_ereg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_ereg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_ereg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); VRefParamValue defVal2 = uninit_null(); @@ -1348,7 +1348,7 @@ TypedValue * fg1_mb_ereg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_mb_ereg(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_ereg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1393,8 +1393,8 @@ option => r8 TypedValue* fh_mb_eregi_replace(TypedValue* _rv, TypedValue* pattern, Value* replacement, Value* str, Value* option) asm("_ZN4HPHP18f_mb_eregi_replaceERKNS_7VariantERKNS_6StringES5_S5_"); -TypedValue * fg1_mb_eregi_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_eregi_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_eregi_replace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_eregi_replace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1415,7 +1415,7 @@ TypedValue * fg1_mb_eregi_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mb_eregi_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_eregi_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1458,8 +1458,8 @@ regs => rcx TypedValue* fh_mb_eregi(TypedValue* _rv, TypedValue* pattern, Value* str, TypedValue* regs) asm("_ZN4HPHP10f_mb_eregiERKNS_7VariantERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_mb_eregi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_eregi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_eregi(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_eregi(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); VRefParamValue defVal2 = uninit_null(); @@ -1468,7 +1468,7 @@ TypedValue * fg1_mb_eregi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_mb_eregi(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_eregi(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1510,8 +1510,8 @@ type => rsi TypedValue* fh_mb_get_info(TypedValue* _rv, Value* type) asm("_ZN4HPHP13f_mb_get_infoERKNS_6StringE"); -TypedValue * fg1_mb_get_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_get_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_get_info(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_get_info(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_get_info((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -1519,7 +1519,7 @@ TypedValue * fg1_mb_get_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_mb_get_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_get_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1560,8 +1560,8 @@ type => rsi TypedValue* fh_mb_http_input(TypedValue* _rv, Value* type) asm("_ZN4HPHP15f_mb_http_inputERKNS_6StringE"); -TypedValue * fg1_mb_http_input(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_http_input(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_http_input(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_http_input(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_http_input((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -1569,7 +1569,7 @@ TypedValue * fg1_mb_http_input(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mb_http_input(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_http_input(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1610,8 +1610,8 @@ encoding => rsi TypedValue* fh_mb_http_output(TypedValue* _rv, Value* encoding) asm("_ZN4HPHP16f_mb_http_outputERKNS_6StringE"); -TypedValue * fg1_mb_http_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_http_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_http_output(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_http_output(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_http_output((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -1619,7 +1619,7 @@ TypedValue * fg1_mb_http_output(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_mb_http_output(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_http_output(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1660,8 +1660,8 @@ encoding => rsi TypedValue* fh_mb_internal_encoding(TypedValue* _rv, Value* encoding) asm("_ZN4HPHP22f_mb_internal_encodingERKNS_6StringE"); -TypedValue * fg1_mb_internal_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_internal_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_internal_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_internal_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_internal_encoding((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -1669,7 +1669,7 @@ TypedValue * fg1_mb_internal_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_mb_internal_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_internal_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1710,8 +1710,8 @@ language => rsi TypedValue* fh_mb_language(TypedValue* _rv, Value* language) asm("_ZN4HPHP13f_mb_languageERKNS_6StringE"); -TypedValue * fg1_mb_language(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_language(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_language(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_language(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_language((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -1719,7 +1719,7 @@ TypedValue * fg1_mb_language(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_mb_language(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_language(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1761,8 +1761,8 @@ status => rdx Value* fh_mb_output_handler(Value* _rv, Value* contents, int status) asm("_ZN4HPHP19f_mb_output_handlerERKNS_6StringEi"); -TypedValue * fg1_mb_output_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_output_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_output_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_output_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if ((args-1)->m_type != KindOfInt64) { @@ -1776,7 +1776,7 @@ TypedValue * fg1_mb_output_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mb_output_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_output_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1818,8 +1818,8 @@ result => rsi bool fh_mb_parse_str(Value* encoded_string, TypedValue* result) asm("_ZN4HPHP14f_mb_parse_strERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_mb_parse_str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_parse_str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_parse_str(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_parse_str(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1828,7 +1828,7 @@ TypedValue * fg1_mb_parse_str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_mb_parse_str(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_parse_str(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1870,8 +1870,8 @@ encoding => rsi TypedValue* fh_mb_preferred_mime_name(TypedValue* _rv, Value* encoding) asm("_ZN4HPHP24f_mb_preferred_mime_nameERKNS_6StringE"); -TypedValue * fg1_mb_preferred_mime_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_preferred_mime_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_preferred_mime_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_preferred_mime_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_preferred_mime_name((rv), &args[-0].m_data); @@ -1879,7 +1879,7 @@ TypedValue * fg1_mb_preferred_mime_name(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mb_preferred_mime_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_preferred_mime_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1920,8 +1920,8 @@ encoding => rsi TypedValue* fh_mb_regex_encoding(TypedValue* _rv, Value* encoding) asm("_ZN4HPHP19f_mb_regex_encodingERKNS_6StringE"); -TypedValue * fg1_mb_regex_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_regex_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_regex_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_regex_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mb_regex_encoding((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -1929,7 +1929,7 @@ TypedValue * fg1_mb_regex_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mb_regex_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_regex_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1970,8 +1970,8 @@ options => rsi Value* fh_mb_regex_set_options(Value* _rv, Value* options) asm("_ZN4HPHP22f_mb_regex_set_optionsERKNS_6StringE"); -TypedValue * fg1_mb_regex_set_options(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_regex_set_options(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_regex_set_options(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_regex_set_options(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1980,7 +1980,7 @@ TypedValue * fg1_mb_regex_set_options(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_mb_regex_set_options(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_regex_set_options(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2025,8 +2025,8 @@ extra_cmd => r8 bool fh_mb_send_mail(Value* to, Value* subject, Value* message, Value* headers, Value* extra_cmd) asm("_ZN4HPHP14f_mb_send_mailERKNS_6StringES2_S2_S2_S2_"); -TypedValue * fg1_mb_send_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_send_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_send_mail(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_send_mail(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2054,7 +2054,7 @@ TypedValue * fg1_mb_send_mail(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_mb_send_mail(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_send_mail(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2097,8 +2097,8 @@ count => rcx TypedValue* fh_mb_split(TypedValue* _rv, Value* pattern, Value* str, int count) asm("_ZN4HPHP10f_mb_splitERKNS_6StringES2_i"); -TypedValue * fg1_mb_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_split(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_split(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -2119,7 +2119,7 @@ TypedValue * fg1_mb_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_mb_split(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_split(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2163,8 +2163,8 @@ encoding => r8 TypedValue* fh_mb_strcut(TypedValue* _rv, Value* str, int start, int length, Value* encoding) asm("_ZN4HPHP11f_mb_strcutERKNS_6StringEiiS2_"); -TypedValue * fg1_mb_strcut(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strcut(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strcut(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strcut(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2189,7 +2189,7 @@ TypedValue * fg1_mb_strcut(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_strcut(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strcut(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2234,8 +2234,8 @@ encoding => r9 TypedValue* fh_mb_strimwidth(TypedValue* _rv, Value* str, int start, int width, Value* trimmarker, Value* encoding) asm("_ZN4HPHP15f_mb_strimwidthERKNS_6StringEiiS2_S2_"); -TypedValue * fg1_mb_strimwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strimwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strimwidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strimwidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -2263,7 +2263,7 @@ TypedValue * fg1_mb_strimwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mb_strimwidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strimwidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2307,8 +2307,8 @@ encoding => r8 TypedValue* fh_mb_stripos(TypedValue* _rv, Value* haystack, Value* needle, int offset, Value* encoding) asm("_ZN4HPHP12f_mb_striposERKNS_6StringES2_iS2_"); -TypedValue * fg1_mb_stripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_stripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_stripos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_stripos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2333,7 +2333,7 @@ TypedValue * fg1_mb_stripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_stripos(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_stripos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2377,8 +2377,8 @@ encoding => r8 TypedValue* fh_mb_stristr(TypedValue* _rv, Value* haystack, Value* needle, bool part, Value* encoding) asm("_ZN4HPHP12f_mb_stristrERKNS_6StringES2_bS2_"); -TypedValue * fg1_mb_stristr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_stristr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_stristr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_stristr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2403,7 +2403,7 @@ TypedValue * fg1_mb_stristr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_stristr(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_stristr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2445,8 +2445,8 @@ encoding => rdx TypedValue* fh_mb_strlen(TypedValue* _rv, Value* str, Value* encoding) asm("_ZN4HPHP11f_mb_strlenERKNS_6StringES2_"); -TypedValue * fg1_mb_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strlen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strlen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2464,7 +2464,7 @@ TypedValue * fg1_mb_strlen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_strlen(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strlen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2508,8 +2508,8 @@ encoding => r8 TypedValue* fh_mb_strpos(TypedValue* _rv, Value* haystack, Value* needle, int offset, Value* encoding) asm("_ZN4HPHP11f_mb_strposERKNS_6StringES2_iS2_"); -TypedValue * fg1_mb_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strpos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strpos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2534,7 +2534,7 @@ TypedValue * fg1_mb_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_strpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2578,8 +2578,8 @@ encoding => r8 TypedValue* fh_mb_strrchr(TypedValue* _rv, Value* haystack, Value* needle, bool part, Value* encoding) asm("_ZN4HPHP12f_mb_strrchrERKNS_6StringES2_bS2_"); -TypedValue * fg1_mb_strrchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strrchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strrchr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strrchr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2604,7 +2604,7 @@ TypedValue * fg1_mb_strrchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_strrchr(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strrchr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2648,8 +2648,8 @@ encoding => r8 TypedValue* fh_mb_strrichr(TypedValue* _rv, Value* haystack, Value* needle, bool part, Value* encoding) asm("_ZN4HPHP13f_mb_strrichrERKNS_6StringES2_bS2_"); -TypedValue * fg1_mb_strrichr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strrichr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strrichr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strrichr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2674,7 +2674,7 @@ TypedValue * fg1_mb_strrichr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_mb_strrichr(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strrichr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2718,8 +2718,8 @@ encoding => r8 TypedValue* fh_mb_strripos(TypedValue* _rv, Value* haystack, Value* needle, int offset, Value* encoding) asm("_ZN4HPHP13f_mb_strriposERKNS_6StringES2_iS2_"); -TypedValue * fg1_mb_strripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strripos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strripos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2744,7 +2744,7 @@ TypedValue * fg1_mb_strripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_mb_strripos(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strripos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2788,8 +2788,8 @@ encoding => r8 TypedValue* fh_mb_strrpos(TypedValue* _rv, Value* haystack, Value* needle, TypedValue* offset, Value* encoding) asm("_ZN4HPHP12f_mb_strrposERKNS_6StringES2_RKNS_7VariantES2_"); -TypedValue * fg1_mb_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strrpos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strrpos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2812,7 +2812,7 @@ TypedValue * fg1_mb_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_strrpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strrpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2857,8 +2857,8 @@ encoding => r8 TypedValue* fh_mb_strstr(TypedValue* _rv, Value* haystack, Value* needle, bool part, Value* encoding) asm("_ZN4HPHP11f_mb_strstrERKNS_6StringES2_bS2_"); -TypedValue * fg1_mb_strstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strstr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strstr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2883,7 +2883,7 @@ TypedValue * fg1_mb_strstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_strstr(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strstr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2925,8 +2925,8 @@ encoding => rdx TypedValue* fh_mb_strtolower(TypedValue* _rv, Value* str, Value* encoding) asm("_ZN4HPHP15f_mb_strtolowerERKNS_6StringES2_"); -TypedValue * fg1_mb_strtolower(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strtolower(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strtolower(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strtolower(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2944,7 +2944,7 @@ TypedValue * fg1_mb_strtolower(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mb_strtolower(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strtolower(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2986,8 +2986,8 @@ encoding => rdx TypedValue* fh_mb_strtoupper(TypedValue* _rv, Value* str, Value* encoding) asm("_ZN4HPHP15f_mb_strtoupperERKNS_6StringES2_"); -TypedValue * fg1_mb_strtoupper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strtoupper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strtoupper(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strtoupper(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -3005,7 +3005,7 @@ TypedValue * fg1_mb_strtoupper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mb_strtoupper(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strtoupper(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3047,8 +3047,8 @@ encoding => rdx TypedValue* fh_mb_strwidth(TypedValue* _rv, Value* str, Value* encoding) asm("_ZN4HPHP13f_mb_strwidthERKNS_6StringES2_"); -TypedValue * fg1_mb_strwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_strwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_strwidth(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_strwidth(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -3066,7 +3066,7 @@ TypedValue * fg1_mb_strwidth(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_mb_strwidth(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_strwidth(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3107,7 +3107,7 @@ substrchar => rsi TypedValue* fh_mb_substitute_character(TypedValue* _rv, TypedValue* substrchar) asm("_ZN4HPHP25f_mb_substitute_characterERKNS_7VariantE"); -TypedValue* fg_mb_substitute_character(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_substitute_character(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3143,8 +3143,8 @@ encoding => rcx TypedValue* fh_mb_substr_count(TypedValue* _rv, Value* haystack, Value* needle, Value* encoding) asm("_ZN4HPHP17f_mb_substr_countERKNS_6StringES2_S2_"); -TypedValue * fg1_mb_substr_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_substr_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_substr_count(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_substr_count(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -3165,7 +3165,7 @@ TypedValue * fg1_mb_substr_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mb_substr_count(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_substr_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3209,8 +3209,8 @@ encoding => r8 TypedValue* fh_mb_substr(TypedValue* _rv, Value* str, int start, int length, Value* encoding) asm("_ZN4HPHP11f_mb_substrERKNS_6StringEiiS2_"); -TypedValue * fg1_mb_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mb_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mb_substr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mb_substr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -3235,7 +3235,7 @@ TypedValue * fg1_mb_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mb_substr(HPHP::VM::ActRec *ar) { +TypedValue* fg_mb_substr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_mcrypt.ext_hhvm.cpp b/hphp/runtime/ext/ext_mcrypt.ext_hhvm.cpp index 03d72a044..58ebe3137 100644 --- a/hphp/runtime/ext/ext_mcrypt.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_mcrypt.ext_hhvm.cpp @@ -38,8 +38,8 @@ mode_directory => r8 TypedValue* fh_mcrypt_module_open(TypedValue* _rv, Value* algorithm, Value* algorithm_directory, Value* mode, Value* mode_directory) asm("_ZN4HPHP20f_mcrypt_module_openERKNS_6StringES2_S2_S2_"); -TypedValue * fg1_mcrypt_module_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_open(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_open(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -58,7 +58,7 @@ TypedValue * fg1_mcrypt_module_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mcrypt_module_open(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_open(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -98,8 +98,8 @@ td => rdi bool fh_mcrypt_module_close(Value* td) asm("_ZN4HPHP21f_mcrypt_module_closeERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_module_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -107,7 +107,7 @@ TypedValue * fg1_mcrypt_module_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mcrypt_module_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -148,8 +148,8 @@ lib_dir => rsi Value* fh_mcrypt_list_algorithms(Value* _rv, Value* lib_dir) asm("_ZN4HPHP24f_mcrypt_list_algorithmsERKNS_6StringE"); -TypedValue * fg1_mcrypt_list_algorithms(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_list_algorithms(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_list_algorithms(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_list_algorithms(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -158,7 +158,7 @@ TypedValue * fg1_mcrypt_list_algorithms(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mcrypt_list_algorithms(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_list_algorithms(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -200,8 +200,8 @@ lib_dir => rsi Value* fh_mcrypt_list_modes(Value* _rv, Value* lib_dir) asm("_ZN4HPHP19f_mcrypt_list_modesERKNS_6StringE"); -TypedValue * fg1_mcrypt_list_modes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_list_modes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_list_modes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_list_modes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -210,7 +210,7 @@ TypedValue * fg1_mcrypt_list_modes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mcrypt_list_modes(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_list_modes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -252,8 +252,8 @@ lib_dir => rsi long fh_mcrypt_module_get_algo_block_size(Value* algorithm, Value* lib_dir) asm("_ZN4HPHP35f_mcrypt_module_get_algo_block_sizeERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_module_get_algo_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_get_algo_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_get_algo_block_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_get_algo_block_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -271,7 +271,7 @@ TypedValue * fg1_mcrypt_module_get_algo_block_size(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_mcrypt_module_get_algo_block_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_get_algo_block_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -312,8 +312,8 @@ lib_dir => rsi long fh_mcrypt_module_get_algo_key_size(Value* algorithm, Value* lib_dir) asm("_ZN4HPHP33f_mcrypt_module_get_algo_key_sizeERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_module_get_algo_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_get_algo_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_get_algo_key_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_get_algo_key_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -331,7 +331,7 @@ TypedValue * fg1_mcrypt_module_get_algo_key_size(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* fg_mcrypt_module_get_algo_key_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_get_algo_key_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -373,8 +373,8 @@ lib_dir => rdx Value* fh_mcrypt_module_get_supported_key_sizes(Value* _rv, Value* algorithm, Value* lib_dir) asm("_ZN4HPHP39f_mcrypt_module_get_supported_key_sizesERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_module_get_supported_key_sizes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_get_supported_key_sizes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_get_supported_key_sizes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_get_supported_key_sizes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -393,7 +393,7 @@ TypedValue * fg1_mcrypt_module_get_supported_key_sizes(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* fg_mcrypt_module_get_supported_key_sizes(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_get_supported_key_sizes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -435,8 +435,8 @@ lib_dir => rsi bool fh_mcrypt_module_is_block_algorithm_mode(Value* mode, Value* lib_dir) asm("_ZN4HPHP39f_mcrypt_module_is_block_algorithm_modeERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_module_is_block_algorithm_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_is_block_algorithm_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_is_block_algorithm_mode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_is_block_algorithm_mode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -454,7 +454,7 @@ TypedValue * fg1_mcrypt_module_is_block_algorithm_mode(TypedValue* rv, HPHP::VM: return rv; } -TypedValue* fg_mcrypt_module_is_block_algorithm_mode(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_is_block_algorithm_mode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -495,8 +495,8 @@ lib_dir => rsi bool fh_mcrypt_module_is_block_algorithm(Value* algorithm, Value* lib_dir) asm("_ZN4HPHP34f_mcrypt_module_is_block_algorithmERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_module_is_block_algorithm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_is_block_algorithm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_is_block_algorithm(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_is_block_algorithm(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -514,7 +514,7 @@ TypedValue * fg1_mcrypt_module_is_block_algorithm(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_mcrypt_module_is_block_algorithm(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_is_block_algorithm(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -555,8 +555,8 @@ lib_dir => rsi bool fh_mcrypt_module_is_block_mode(Value* mode, Value* lib_dir) asm("_ZN4HPHP29f_mcrypt_module_is_block_modeERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_module_is_block_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_is_block_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_is_block_mode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_is_block_mode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -574,7 +574,7 @@ TypedValue * fg1_mcrypt_module_is_block_mode(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_mcrypt_module_is_block_mode(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_is_block_mode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -615,8 +615,8 @@ lib_dir => rsi bool fh_mcrypt_module_self_test(Value* algorithm, Value* lib_dir) asm("_ZN4HPHP25f_mcrypt_module_self_testERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_module_self_test(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_module_self_test(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_module_self_test(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_module_self_test(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -634,7 +634,7 @@ TypedValue * fg1_mcrypt_module_self_test(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_mcrypt_module_self_test(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_module_self_test(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -676,8 +676,8 @@ source => rdx TypedValue* fh_mcrypt_create_iv(TypedValue* _rv, int size, int source) asm("_ZN4HPHP18f_mcrypt_create_ivEii"); -TypedValue * fg1_mcrypt_create_iv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_create_iv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_create_iv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_create_iv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -695,7 +695,7 @@ TypedValue * fg1_mcrypt_create_iv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mcrypt_create_iv(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_create_iv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -740,8 +740,8 @@ iv => r9 TypedValue* fh_mcrypt_encrypt(TypedValue* _rv, Value* cipher, Value* key, Value* data, Value* mode, Value* iv) asm("_ZN4HPHP16f_mcrypt_encryptERKNS_6StringES2_S2_S2_S2_"); -TypedValue * fg1_mcrypt_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_encrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_encrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -768,7 +768,7 @@ TypedValue * fg1_mcrypt_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_mcrypt_encrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_encrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -813,8 +813,8 @@ iv => r9 TypedValue* fh_mcrypt_decrypt(TypedValue* _rv, Value* cipher, Value* key, Value* data, Value* mode, Value* iv) asm("_ZN4HPHP16f_mcrypt_decryptERKNS_6StringES2_S2_S2_S2_"); -TypedValue * fg1_mcrypt_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_decrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_decrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -841,7 +841,7 @@ TypedValue * fg1_mcrypt_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_mcrypt_decrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_decrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -886,8 +886,8 @@ iv => r9 TypedValue* fh_mcrypt_cbc(TypedValue* _rv, Value* cipher, Value* key, Value* data, int mode, Value* iv) asm("_ZN4HPHP12f_mcrypt_cbcERKNS_6StringES2_S2_iS2_"); -TypedValue * fg1_mcrypt_cbc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_cbc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_cbc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_cbc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -914,7 +914,7 @@ TypedValue * fg1_mcrypt_cbc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mcrypt_cbc(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_cbc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -959,8 +959,8 @@ iv => r9 TypedValue* fh_mcrypt_cfb(TypedValue* _rv, Value* cipher, Value* key, Value* data, int mode, Value* iv) asm("_ZN4HPHP12f_mcrypt_cfbERKNS_6StringES2_S2_iS2_"); -TypedValue * fg1_mcrypt_cfb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_cfb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_cfb(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_cfb(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -987,7 +987,7 @@ TypedValue * fg1_mcrypt_cfb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mcrypt_cfb(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_cfb(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1032,8 +1032,8 @@ iv => r9 TypedValue* fh_mcrypt_ecb(TypedValue* _rv, Value* cipher, Value* key, Value* data, int mode, Value* iv) asm("_ZN4HPHP12f_mcrypt_ecbERKNS_6StringES2_S2_iS2_"); -TypedValue * fg1_mcrypt_ecb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_ecb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_ecb(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_ecb(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1060,7 +1060,7 @@ TypedValue * fg1_mcrypt_ecb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mcrypt_ecb(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_ecb(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1105,8 +1105,8 @@ iv => r9 TypedValue* fh_mcrypt_ofb(TypedValue* _rv, Value* cipher, Value* key, Value* data, int mode, Value* iv) asm("_ZN4HPHP12f_mcrypt_ofbERKNS_6StringES2_S2_iS2_"); -TypedValue * fg1_mcrypt_ofb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_ofb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_ofb(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_ofb(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1133,7 +1133,7 @@ TypedValue * fg1_mcrypt_ofb(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_mcrypt_ofb(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_ofb(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1175,8 +1175,8 @@ module => rdx TypedValue* fh_mcrypt_get_block_size(TypedValue* _rv, Value* cipher, Value* module) asm("_ZN4HPHP23f_mcrypt_get_block_sizeERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_get_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_get_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_get_block_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_get_block_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1194,7 +1194,7 @@ TypedValue * fg1_mcrypt_get_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_mcrypt_get_block_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_get_block_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1235,8 +1235,8 @@ cipher => rsi TypedValue* fh_mcrypt_get_cipher_name(TypedValue* _rv, Value* cipher) asm("_ZN4HPHP24f_mcrypt_get_cipher_nameERKNS_6StringE"); -TypedValue * fg1_mcrypt_get_cipher_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_get_cipher_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_get_cipher_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_get_cipher_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_mcrypt_get_cipher_name((rv), &args[-0].m_data); @@ -1244,7 +1244,7 @@ TypedValue * fg1_mcrypt_get_cipher_name(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mcrypt_get_cipher_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_get_cipher_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1286,8 +1286,8 @@ mode => rdx TypedValue* fh_mcrypt_get_iv_size(TypedValue* _rv, Value* cipher, Value* mode) asm("_ZN4HPHP20f_mcrypt_get_iv_sizeERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_get_iv_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_get_iv_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_get_iv_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_get_iv_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1300,7 +1300,7 @@ TypedValue * fg1_mcrypt_get_iv_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mcrypt_get_iv_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_get_iv_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1341,8 +1341,8 @@ module => rsi long fh_mcrypt_get_key_size(Value* cipher, Value* module) asm("_ZN4HPHP21f_mcrypt_get_key_sizeERKNS_6StringES2_"); -TypedValue * fg1_mcrypt_get_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_get_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_get_key_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_get_key_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1355,7 +1355,7 @@ TypedValue * fg1_mcrypt_get_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mcrypt_get_key_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_get_key_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1396,8 +1396,8 @@ td => rsi Value* fh_mcrypt_enc_get_algorithms_name(Value* _rv, Value* td) asm("_ZN4HPHP32f_mcrypt_enc_get_algorithms_nameERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_get_algorithms_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_get_algorithms_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_get_algorithms_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_get_algorithms_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1406,7 +1406,7 @@ TypedValue * fg1_mcrypt_enc_get_algorithms_name(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_mcrypt_enc_get_algorithms_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_get_algorithms_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1447,8 +1447,8 @@ td => rdi long fh_mcrypt_enc_get_block_size(Value* td) asm("_ZN4HPHP27f_mcrypt_enc_get_block_sizeERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_get_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_get_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_get_block_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_get_block_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1456,7 +1456,7 @@ TypedValue * fg1_mcrypt_enc_get_block_size(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_mcrypt_enc_get_block_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_get_block_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1496,8 +1496,8 @@ td => rdi long fh_mcrypt_enc_get_iv_size(Value* td) asm("_ZN4HPHP24f_mcrypt_enc_get_iv_sizeERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_get_iv_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_get_iv_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_get_iv_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_get_iv_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1505,7 +1505,7 @@ TypedValue * fg1_mcrypt_enc_get_iv_size(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mcrypt_enc_get_iv_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_get_iv_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1545,8 +1545,8 @@ td => rdi long fh_mcrypt_enc_get_key_size(Value* td) asm("_ZN4HPHP25f_mcrypt_enc_get_key_sizeERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_get_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_get_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_get_key_size(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_get_key_size(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1554,7 +1554,7 @@ TypedValue * fg1_mcrypt_enc_get_key_size(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_mcrypt_enc_get_key_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_get_key_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1595,8 +1595,8 @@ td => rsi Value* fh_mcrypt_enc_get_modes_name(Value* _rv, Value* td) asm("_ZN4HPHP27f_mcrypt_enc_get_modes_nameERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_get_modes_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_get_modes_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_get_modes_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_get_modes_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1605,7 +1605,7 @@ TypedValue * fg1_mcrypt_enc_get_modes_name(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_mcrypt_enc_get_modes_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_get_modes_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1647,8 +1647,8 @@ td => rsi Value* fh_mcrypt_enc_get_supported_key_sizes(Value* _rv, Value* td) asm("_ZN4HPHP36f_mcrypt_enc_get_supported_key_sizesERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_get_supported_key_sizes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_get_supported_key_sizes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_get_supported_key_sizes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_get_supported_key_sizes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -1657,7 +1657,7 @@ TypedValue * fg1_mcrypt_enc_get_supported_key_sizes(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* fg_mcrypt_enc_get_supported_key_sizes(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_get_supported_key_sizes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1698,8 +1698,8 @@ td => rdi bool fh_mcrypt_enc_is_block_algorithm_mode(Value* td) asm("_ZN4HPHP36f_mcrypt_enc_is_block_algorithm_modeERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_is_block_algorithm_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_is_block_algorithm_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_is_block_algorithm_mode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_is_block_algorithm_mode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1707,7 +1707,7 @@ TypedValue * fg1_mcrypt_enc_is_block_algorithm_mode(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* fg_mcrypt_enc_is_block_algorithm_mode(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_is_block_algorithm_mode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1747,8 +1747,8 @@ td => rdi bool fh_mcrypt_enc_is_block_algorithm(Value* td) asm("_ZN4HPHP31f_mcrypt_enc_is_block_algorithmERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_is_block_algorithm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_is_block_algorithm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_is_block_algorithm(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_is_block_algorithm(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1756,7 +1756,7 @@ TypedValue * fg1_mcrypt_enc_is_block_algorithm(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_mcrypt_enc_is_block_algorithm(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_is_block_algorithm(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1796,8 +1796,8 @@ td => rdi bool fh_mcrypt_enc_is_block_mode(Value* td) asm("_ZN4HPHP26f_mcrypt_enc_is_block_modeERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_is_block_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_is_block_mode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_is_block_mode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_is_block_mode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1805,7 +1805,7 @@ TypedValue * fg1_mcrypt_enc_is_block_mode(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_mcrypt_enc_is_block_mode(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_is_block_mode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1845,8 +1845,8 @@ td => rdi long fh_mcrypt_enc_self_test(Value* td) asm("_ZN4HPHP22f_mcrypt_enc_self_testERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_enc_self_test(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_enc_self_test(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_enc_self_test(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_enc_self_test(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1854,7 +1854,7 @@ TypedValue * fg1_mcrypt_enc_self_test(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_mcrypt_enc_self_test(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_enc_self_test(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1896,8 +1896,8 @@ data => rdx TypedValue* fh_mcrypt_generic(TypedValue* _rv, Value* td, Value* data) asm("_ZN4HPHP16f_mcrypt_genericERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_mcrypt_generic(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_generic(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_generic(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_generic(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1910,7 +1910,7 @@ TypedValue * fg1_mcrypt_generic(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_mcrypt_generic(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_generic(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1952,8 +1952,8 @@ iv => rdx long fh_mcrypt_generic_init(Value* td, Value* key, Value* iv) asm("_ZN4HPHP21f_mcrypt_generic_initERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_mcrypt_generic_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_generic_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_generic_init(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_generic_init(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -1969,7 +1969,7 @@ TypedValue * fg1_mcrypt_generic_init(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mcrypt_generic_init(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_generic_init(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2011,8 +2011,8 @@ data => rdx TypedValue* fh_mdecrypt_generic(TypedValue* _rv, Value* td, Value* data) asm("_ZN4HPHP18f_mdecrypt_genericERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_mdecrypt_generic(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mdecrypt_generic(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mdecrypt_generic(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mdecrypt_generic(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -2025,7 +2025,7 @@ TypedValue * fg1_mdecrypt_generic(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mdecrypt_generic(HPHP::VM::ActRec *ar) { +TypedValue* fg_mdecrypt_generic(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2065,8 +2065,8 @@ td => rdi bool fh_mcrypt_generic_deinit(Value* td) asm("_ZN4HPHP23f_mcrypt_generic_deinitERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_generic_deinit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_generic_deinit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_generic_deinit(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_generic_deinit(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2074,7 +2074,7 @@ TypedValue * fg1_mcrypt_generic_deinit(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_mcrypt_generic_deinit(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_generic_deinit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2114,8 +2114,8 @@ td => rdi bool fh_mcrypt_generic_end(Value* td) asm("_ZN4HPHP20f_mcrypt_generic_endERKNS_6ObjectE"); -TypedValue * fg1_mcrypt_generic_end(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mcrypt_generic_end(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mcrypt_generic_end(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mcrypt_generic_end(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2123,7 +2123,7 @@ TypedValue * fg1_mcrypt_generic_end(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mcrypt_generic_end(HPHP::VM::ActRec *ar) { +TypedValue* fg_mcrypt_generic_end(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_memcache.ext_hhvm.cpp b/hphp/runtime/ext/ext_memcache.ext_hhvm.cpp index 8c8789e04..d56c22ed0 100644 --- a/hphp/runtime/ext/ext_memcache.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_memcache.ext_hhvm.cpp @@ -38,8 +38,8 @@ timeoutms => r8 Value* fh_memcache_connect(Value* _rv, Value* host, int port, int timeout, int timeoutms) asm("_ZN4HPHP18f_memcache_connectERKNS_6StringEiii"); -TypedValue * fg1_memcache_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_connect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_connect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -66,7 +66,7 @@ TypedValue * fg1_memcache_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_memcache_connect(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_connect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -111,8 +111,8 @@ timeoutms => r8 Value* fh_memcache_pconnect(Value* _rv, Value* host, int port, int timeout, int timeoutms) asm("_ZN4HPHP19f_memcache_pconnectERKNS_6StringEiii"); -TypedValue * fg1_memcache_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_pconnect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_pconnect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -139,7 +139,7 @@ TypedValue * fg1_memcache_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_memcache_pconnect(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_pconnect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -184,8 +184,8 @@ expire => r8 bool fh_memcache_add(Value* memcache, Value* key, TypedValue* var, int flag, int expire) asm("_ZN4HPHP14f_memcache_addERKNS_6ObjectERKNS_6StringERKNS_7VariantEii"); -TypedValue * fg1_memcache_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_add(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_add(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -210,7 +210,7 @@ TypedValue * fg1_memcache_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_memcache_add(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -254,8 +254,8 @@ expire => r8 bool fh_memcache_set(Value* memcache, Value* key, TypedValue* var, int flag, int expire) asm("_ZN4HPHP14f_memcache_setERKNS_6ObjectERKNS_6StringERKNS_7VariantEii"); -TypedValue * fg1_memcache_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -280,7 +280,7 @@ TypedValue * fg1_memcache_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_memcache_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -324,8 +324,8 @@ expire => r8 bool fh_memcache_replace(Value* memcache, Value* key, TypedValue* var, int flag, int expire) asm("_ZN4HPHP18f_memcache_replaceERKNS_6ObjectERKNS_6StringERKNS_7VariantEii"); -TypedValue * fg1_memcache_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_replace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_replace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -350,7 +350,7 @@ TypedValue * fg1_memcache_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_memcache_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -393,8 +393,8 @@ flags => rcx TypedValue* fh_memcache_get(TypedValue* _rv, Value* memcache, TypedValue* key, TypedValue* flags) asm("_ZN4HPHP14f_memcache_getERKNS_6ObjectERKNS_7VariantERKNS_14VRefParamValueE"); -TypedValue * fg1_memcache_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); VRefParamValue defVal2 = uninit_null(); @@ -403,7 +403,7 @@ TypedValue * fg1_memcache_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_memcache_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -446,8 +446,8 @@ expire => rdx bool fh_memcache_delete(Value* memcache, Value* key, int expire) asm("_ZN4HPHP17f_memcache_deleteERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_memcache_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_delete(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_delete(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -468,7 +468,7 @@ TypedValue * fg1_memcache_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_memcache_delete(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_delete(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -510,8 +510,8 @@ offset => rdx long fh_memcache_increment(Value* memcache, Value* key, int offset) asm("_ZN4HPHP20f_memcache_incrementERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_memcache_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_increment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_increment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -532,7 +532,7 @@ TypedValue * fg1_memcache_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_memcache_increment(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_increment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -574,8 +574,8 @@ offset => rdx long fh_memcache_decrement(Value* memcache, Value* key, int offset) asm("_ZN4HPHP20f_memcache_decrementERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_memcache_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_decrement(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_decrement(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -596,7 +596,7 @@ TypedValue * fg1_memcache_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_memcache_decrement(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_decrement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -636,8 +636,8 @@ memcache => rdi bool fh_memcache_close(Value* memcache) asm("_ZN4HPHP16f_memcache_closeERKNS_6ObjectE"); -TypedValue * fg1_memcache_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -645,7 +645,7 @@ TypedValue * fg1_memcache_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_memcache_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -685,8 +685,8 @@ onoff => rdi bool fh_memcache_debug(bool onoff) asm("_ZN4HPHP16f_memcache_debugEb"); -TypedValue * fg1_memcache_debug(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_debug(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_debug(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_debug(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-0); @@ -694,7 +694,7 @@ TypedValue * fg1_memcache_debug(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_memcache_debug(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_debug(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -735,8 +735,8 @@ memcache => rsi TypedValue* fh_memcache_get_version(TypedValue* _rv, Value* memcache) asm("_ZN4HPHP22f_memcache_get_versionERKNS_6ObjectE"); -TypedValue * fg1_memcache_get_version(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_get_version(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_get_version(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_get_version(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_memcache_get_version((rv), &args[-0].m_data); @@ -744,7 +744,7 @@ TypedValue * fg1_memcache_get_version(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_memcache_get_version(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_get_version(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -785,8 +785,8 @@ timestamp => rsi bool fh_memcache_flush(Value* memcache, int timestamp) asm("_ZN4HPHP16f_memcache_flushERKNS_6ObjectEi"); -TypedValue * fg1_memcache_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_flush(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_flush(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -804,7 +804,7 @@ TypedValue * fg1_memcache_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_memcache_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -845,8 +845,8 @@ timeoutms => rsi bool fh_memcache_setoptimeout(Value* memcache, int timeoutms) asm("_ZN4HPHP23f_memcache_setoptimeoutERKNS_6ObjectEi"); -TypedValue * fg1_memcache_setoptimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_setoptimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_setoptimeout(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_setoptimeout(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -859,7 +859,7 @@ TypedValue * fg1_memcache_setoptimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_memcache_setoptimeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_setoptimeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -901,8 +901,8 @@ port => rdx long fh_memcache_get_server_status(Value* memcache, Value* host, int port) asm("_ZN4HPHP28f_memcache_get_server_statusERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_memcache_get_server_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_get_server_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_get_server_status(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_get_server_status(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -923,7 +923,7 @@ TypedValue * fg1_memcache_get_server_status(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_memcache_get_server_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_get_server_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -965,8 +965,8 @@ min_savings => xmm0 bool fh_memcache_set_compress_threshold(Value* memcache, int threshold, double min_savings) asm("_ZN4HPHP33f_memcache_set_compress_thresholdERKNS_6ObjectEid"); -TypedValue * fg1_memcache_set_compress_threshold(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_set_compress_threshold(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_set_compress_threshold(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_set_compress_threshold(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -987,7 +987,7 @@ TypedValue * fg1_memcache_set_compress_threshold(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* fg_memcache_set_compress_threshold(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_set_compress_threshold(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1031,8 +1031,8 @@ limit => r8 Value* fh_memcache_get_stats(Value* _rv, Value* memcache, Value* type, int slabid, int limit) asm("_ZN4HPHP20f_memcache_get_statsERKNS_6ObjectERKNS_6StringEii"); -TypedValue * fg1_memcache_get_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_get_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_get_stats(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_get_stats(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -1059,7 +1059,7 @@ TypedValue * fg1_memcache_get_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_memcache_get_stats(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_get_stats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1104,8 +1104,8 @@ limit => r8 Value* fh_memcache_get_extended_stats(Value* _rv, Value* memcache, Value* type, int slabid, int limit) asm("_ZN4HPHP29f_memcache_get_extended_statsERKNS_6ObjectERKNS_6StringEii"); -TypedValue * fg1_memcache_get_extended_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_get_extended_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_get_extended_stats(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_get_extended_stats(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -1132,7 +1132,7 @@ TypedValue * fg1_memcache_get_extended_stats(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_memcache_get_extended_stats(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_get_extended_stats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1179,8 +1179,8 @@ failure_callback => st0 bool fh_memcache_set_server_params(Value* memcache, Value* host, int port, int timeout, int retry_interval, bool status, TypedValue* failure_callback) asm("_ZN4HPHP28f_memcache_set_server_paramsERKNS_6ObjectERKNS_6StringEiiibRKNS_7VariantE"); -TypedValue * fg1_memcache_set_server_params(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_set_server_params(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_set_server_params(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_set_server_params(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1214,7 +1214,7 @@ TypedValue * fg1_memcache_set_server_params(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_memcache_set_server_params(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_set_server_params(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1263,8 +1263,8 @@ timeoutms => st24 bool fh_memcache_add_server(Value* memcache, Value* host, int port, bool persistent, int weight, int timeout, int retry_interval, bool status, TypedValue* failure_callback, int timeoutms) asm("_ZN4HPHP21f_memcache_add_serverERKNS_6ObjectERKNS_6StringEibiiibRKNS_7VariantEi"); -TypedValue * fg1_memcache_add_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memcache_add_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memcache_add_server(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memcache_add_server(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1310,7 +1310,7 @@ TypedValue * fg1_memcache_add_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_memcache_add_server(HPHP::VM::ActRec *ar) { +TypedValue* fg_memcache_add_server(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1359,7 +1359,7 @@ this_ => rdi void th_8Memcache___construct(ObjectData* this_) asm("_ZN4HPHP10c_Memcache13t___constructEv"); -TypedValue* tg_8Memcache___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1400,8 +1400,8 @@ timeoutms => r8 bool th_8Memcache_connect(ObjectData* this_, Value* host, int port, int timeout, int timeoutms) asm("_ZN4HPHP10c_Memcache9t_connectERKNS_6StringEiii"); -TypedValue* tg1_8Memcache_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_connect(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_connect(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1427,7 +1427,7 @@ TypedValue* tg1_8Memcache_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8Memcache_connect(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_connect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1474,8 +1474,8 @@ timeoutms => r8 bool th_8Memcache_pconnect(ObjectData* this_, Value* host, int port, int timeout, int timeoutms) asm("_ZN4HPHP10c_Memcache10t_pconnectERKNS_6StringEiii"); -TypedValue* tg1_8Memcache_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_pconnect(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_pconnect(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1501,7 +1501,7 @@ TypedValue* tg1_8Memcache_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8Memcache_pconnect(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_pconnect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1548,8 +1548,8 @@ expire => r8 bool th_8Memcache_add(ObjectData* this_, Value* key, TypedValue* var, int flag, int expire) asm("_ZN4HPHP10c_Memcache5t_addERKNS_6StringERKNS_7VariantEii"); -TypedValue* tg1_8Memcache_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_add(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_add(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1571,7 +1571,7 @@ TypedValue* tg1_8Memcache_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* tg_8Memcache_add(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1618,8 +1618,8 @@ expire => r8 bool th_8Memcache_set(ObjectData* this_, Value* key, TypedValue* var, int flag, int expire) asm("_ZN4HPHP10c_Memcache5t_setERKNS_6StringERKNS_7VariantEii"); -TypedValue* tg1_8Memcache_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_set(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_set(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1641,7 +1641,7 @@ TypedValue* tg1_8Memcache_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* tg_8Memcache_set(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1688,8 +1688,8 @@ expire => r8 bool th_8Memcache_replace(ObjectData* this_, Value* key, TypedValue* var, int flag, int expire) asm("_ZN4HPHP10c_Memcache9t_replaceERKNS_6StringERKNS_7VariantEii"); -TypedValue* tg1_8Memcache_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_replace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_replace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1711,7 +1711,7 @@ TypedValue* tg1_8Memcache_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8Memcache_replace(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1757,7 +1757,7 @@ flags => rcx TypedValue* th_8Memcache_get(TypedValue* _rv, ObjectData* this_, TypedValue* key, TypedValue* flags) asm("_ZN4HPHP10c_Memcache5t_getERKNS_7VariantERKNS_14VRefParamValueE"); -TypedValue* tg_8Memcache_get(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1796,8 +1796,8 @@ expire => rdx bool th_8Memcache_delete(ObjectData* this_, Value* key, int expire) asm("_ZN4HPHP10c_Memcache8t_deleteERKNS_6StringEi"); -TypedValue* tg1_8Memcache_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_delete(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_delete(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1815,7 +1815,7 @@ TypedValue* tg1_8Memcache_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_8Memcache_delete(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_delete(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1860,8 +1860,8 @@ offset => rdx long th_8Memcache_increment(ObjectData* this_, Value* key, int offset) asm("_ZN4HPHP10c_Memcache11t_incrementERKNS_6StringEi"); -TypedValue* tg1_8Memcache_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_increment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_increment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -1879,7 +1879,7 @@ TypedValue* tg1_8Memcache_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_8Memcache_increment(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_increment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1924,8 +1924,8 @@ offset => rdx long th_8Memcache_decrement(ObjectData* this_, Value* key, int offset) asm("_ZN4HPHP10c_Memcache11t_decrementERKNS_6StringEi"); -TypedValue* tg1_8Memcache_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_decrement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_decrement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -1943,7 +1943,7 @@ TypedValue* tg1_8Memcache_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_8Memcache_decrement(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_decrement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1987,7 +1987,7 @@ this_ => rsi TypedValue* th_8Memcache_getversion(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP10c_Memcache12t_getversionEv"); -TypedValue* tg_8Memcache_getversion(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_getversion(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2024,8 +2024,8 @@ expire => rsi bool th_8Memcache_flush(ObjectData* this_, int expire) asm("_ZN4HPHP10c_Memcache7t_flushEi"); -TypedValue* tg1_8Memcache_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_flush(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_flush(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -2033,7 +2033,7 @@ TypedValue* tg1_8Memcache_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* tg_8Memcache_flush(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2077,8 +2077,8 @@ timeoutms => rsi bool th_8Memcache_setoptimeout(ObjectData* this_, long timeoutms) asm("_ZN4HPHP10c_Memcache14t_setoptimeoutEl"); -TypedValue* tg1_8Memcache_setoptimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_setoptimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_setoptimeout(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_setoptimeout(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -2086,7 +2086,7 @@ TypedValue* tg1_8Memcache_setoptimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_8Memcache_setoptimeout(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_setoptimeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2129,7 +2129,7 @@ this_ => rdi bool th_8Memcache_close(ObjectData* this_) asm("_ZN4HPHP10c_Memcache7t_closeEv"); -TypedValue* tg_8Memcache_close(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2167,8 +2167,8 @@ port => rdx long th_8Memcache_getserverstatus(ObjectData* this_, Value* host, int port) asm("_ZN4HPHP10c_Memcache17t_getserverstatusERKNS_6StringEi"); -TypedValue* tg1_8Memcache_getserverstatus(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_getserverstatus(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_getserverstatus(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_getserverstatus(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -2186,7 +2186,7 @@ TypedValue* tg1_8Memcache_getserverstatus(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_8Memcache_getserverstatus(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_getserverstatus(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2231,8 +2231,8 @@ min_savings => xmm0 bool th_8Memcache_setcompressthreshold(ObjectData* this_, int threshold, double min_savings) asm("_ZN4HPHP10c_Memcache22t_setcompressthresholdEid"); -TypedValue* tg1_8Memcache_setcompressthreshold(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_setcompressthreshold(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_setcompressthreshold(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_setcompressthreshold(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2250,7 +2250,7 @@ TypedValue* tg1_8Memcache_setcompressthreshold(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_8Memcache_setcompressthreshold(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_setcompressthreshold(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2297,8 +2297,8 @@ limit => r8 Value* th_8Memcache_getstats(Value* _rv, ObjectData* this_, Value* type, int slabid, int limit) asm("_ZN4HPHP10c_Memcache10t_getstatsERKNS_6StringEii"); -TypedValue* tg1_8Memcache_getstats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_getstats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_getstats(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_getstats(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -2322,7 +2322,7 @@ TypedValue* tg1_8Memcache_getstats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_8Memcache_getstats(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_getstats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2370,8 +2370,8 @@ limit => r8 Value* th_8Memcache_getextendedstats(Value* _rv, ObjectData* this_, Value* type, int slabid, int limit) asm("_ZN4HPHP10c_Memcache18t_getextendedstatsERKNS_6StringEii"); -TypedValue* tg1_8Memcache_getextendedstats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_getextendedstats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_getextendedstats(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_getextendedstats(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -2395,7 +2395,7 @@ TypedValue* tg1_8Memcache_getextendedstats(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_8Memcache_getextendedstats(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_getextendedstats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2445,8 +2445,8 @@ failure_callback => st0 bool th_8Memcache_setserverparams(ObjectData* this_, Value* host, int port, int timeout, int retry_interval, bool status, TypedValue* failure_callback) asm("_ZN4HPHP10c_Memcache17t_setserverparamsERKNS_6StringEiiibRKNS_7VariantE"); -TypedValue* tg1_8Memcache_setserverparams(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_setserverparams(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_setserverparams(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_setserverparams(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2477,7 +2477,7 @@ TypedValue* tg1_8Memcache_setserverparams(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_8Memcache_setserverparams(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_setserverparams(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2529,8 +2529,8 @@ timeoutms => st24 bool th_8Memcache_addserver(ObjectData* this_, Value* host, int port, bool persistent, int weight, int timeout, int retry_interval, bool status, TypedValue* failure_callback, int timeoutms) asm("_ZN4HPHP10c_Memcache11t_addserverERKNS_6StringEibiiibRKNS_7VariantEi"); -TypedValue* tg1_8Memcache_addserver(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_8Memcache_addserver(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_8Memcache_addserver(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_8Memcache_addserver(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2573,7 +2573,7 @@ TypedValue* tg1_8Memcache_addserver(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_8Memcache_addserver(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache_addserver(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2617,7 +2617,7 @@ this_ => rsi TypedValue* th_8Memcache___destruct(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP10c_Memcache12t___destructEv"); -TypedValue* tg_8Memcache___destruct(HPHP::VM::ActRec *ar) { +TypedValue* tg_8Memcache___destruct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_memcached.ext_hhvm.cpp b/hphp/runtime/ext/ext_memcached.ext_hhvm.cpp index 6ca7743c1..bb0bc7556 100644 --- a/hphp/runtime/ext/ext_memcached.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_memcached.ext_hhvm.cpp @@ -44,8 +44,8 @@ persistent_id => rsi void th_9Memcached___construct(ObjectData* this_, Value* persistent_id) asm("_ZN4HPHP11c_Memcached13t___constructERKNS_6StringE"); -TypedValue* tg1_9Memcached___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -54,7 +54,7 @@ TypedValue* tg1_9Memcached___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_9Memcached___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -101,8 +101,8 @@ expiration => rcx bool th_9Memcached_add(ObjectData* this_, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached5t_addERKNS_6StringERKNS_7VariantEi"); -TypedValue* tg1_9Memcached_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_add(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_add(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -120,7 +120,7 @@ TypedValue* tg1_9Memcached_add(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_9Memcached_add(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_add(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -167,8 +167,8 @@ expiration => r8 bool th_9Memcached_addByKey(ObjectData* this_, Value* server_key, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached10t_addbykeyERKNS_6StringES3_RKNS_7VariantEi"); -TypedValue* tg1_9Memcached_addByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_addByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_addByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_addByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -189,7 +189,7 @@ TypedValue* tg1_9Memcached_addByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9Memcached_addByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_addByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -235,8 +235,8 @@ weight => rcx bool th_9Memcached_addServer(ObjectData* this_, Value* host, int port, int weight) asm("_ZN4HPHP11c_Memcached11t_addserverERKNS_6StringEii"); -TypedValue* tg1_9Memcached_addServer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_addServer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_addServer(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_addServer(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -257,7 +257,7 @@ TypedValue* tg1_9Memcached_addServer(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_9Memcached_addServer(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_addServer(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -301,8 +301,8 @@ servers => rsi bool th_9Memcached_addServers(ObjectData* this_, Value* servers) asm("_ZN4HPHP11c_Memcached12t_addserversERKNS_5ArrayE"); -TypedValue* tg1_9Memcached_addServers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_addServers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_addServers(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_addServers(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToArrayInPlace(args-0); @@ -310,7 +310,7 @@ TypedValue* tg1_9Memcached_addServers(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_9Memcached_addServers(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_addServers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -355,8 +355,8 @@ value => rdx bool th_9Memcached_append(ObjectData* this_, Value* key, Value* value) asm("_ZN4HPHP11c_Memcached8t_appendERKNS_6StringES3_"); -TypedValue* tg1_9Memcached_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_append(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_append(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -369,7 +369,7 @@ TypedValue* tg1_9Memcached_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_9Memcached_append(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_append(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -415,8 +415,8 @@ value => rcx bool th_9Memcached_appendByKey(ObjectData* this_, Value* server_key, Value* key, Value* value) asm("_ZN4HPHP11c_Memcached13t_appendbykeyERKNS_6StringES3_S3_"); -TypedValue* tg1_9Memcached_appendByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_appendByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_appendByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_appendByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -432,7 +432,7 @@ TypedValue* tg1_9Memcached_appendByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_9Memcached_appendByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_appendByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -479,8 +479,8 @@ expiration => rcx bool th_9Memcached_cas(ObjectData* this_, double cas_token, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached5t_casEdRKNS_6StringERKNS_7VariantEi"); -TypedValue* tg1_9Memcached_cas(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_cas(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_cas(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_cas(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -501,7 +501,7 @@ TypedValue* tg1_9Memcached_cas(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_9Memcached_cas(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_cas(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -549,8 +549,8 @@ expiration => r8 bool th_9Memcached_casByKey(ObjectData* this_, double cas_token, Value* server_key, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached10t_casbykeyEdRKNS_6StringES3_RKNS_7VariantEi"); -TypedValue* tg1_9Memcached_casByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_casByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_casByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_casByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -574,7 +574,7 @@ TypedValue* tg1_9Memcached_casByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9Memcached_casByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_casByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -620,8 +620,8 @@ offset => rcx TypedValue* th_9Memcached_decrement(TypedValue* _rv, ObjectData* this_, Value* key, long offset) asm("_ZN4HPHP11c_Memcached11t_decrementERKNS_6StringEl"); -TypedValue* tg1_9Memcached_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_decrement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_decrement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -639,7 +639,7 @@ TypedValue* tg1_9Memcached_decrement(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_9Memcached_decrement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_decrement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -684,8 +684,8 @@ time => rdx bool th_9Memcached_delete(ObjectData* this_, Value* key, int time) asm("_ZN4HPHP11c_Memcached8t_deleteERKNS_6StringEi"); -TypedValue* tg1_9Memcached_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_delete(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_delete(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -703,7 +703,7 @@ TypedValue* tg1_9Memcached_delete(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_9Memcached_delete(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_delete(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -749,8 +749,8 @@ time => rcx bool th_9Memcached_deleteByKey(ObjectData* this_, Value* server_key, Value* key, int time) asm("_ZN4HPHP11c_Memcached13t_deletebykeyERKNS_6StringES3_i"); -TypedValue* tg1_9Memcached_deleteByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_deleteByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_deleteByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_deleteByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -771,7 +771,7 @@ TypedValue* tg1_9Memcached_deleteByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_9Memcached_deleteByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_deleteByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -815,7 +815,7 @@ this_ => rsi TypedValue* th_9Memcached_fetch(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP11c_Memcached7t_fetchEv"); -TypedValue* tg_9Memcached_fetch(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_fetch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -852,7 +852,7 @@ this_ => rsi TypedValue* th_9Memcached_fetchAll(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP11c_Memcached10t_fetchallEv"); -TypedValue* tg_9Memcached_fetchAll(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_fetchAll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -889,8 +889,8 @@ delay => rsi bool th_9Memcached_flush(ObjectData* this_, int delay) asm("_ZN4HPHP11c_Memcached7t_flushEi"); -TypedValue* tg1_9Memcached_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_flush(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_flush(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -898,7 +898,7 @@ TypedValue* tg1_9Memcached_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_9Memcached_flush(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -945,8 +945,8 @@ cas_token => r8 TypedValue* th_9Memcached_get(TypedValue* _rv, ObjectData* this_, Value* key, TypedValue* cache_cb, TypedValue* cas_token) asm("_ZN4HPHP11c_Memcached5t_getERKNS_6StringERKNS_7VariantERKNS_14VRefParamValueE"); -TypedValue* tg1_9Memcached_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_get(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_get(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); VRefParamValue defVal2 = null_variant; @@ -955,7 +955,7 @@ TypedValue* tg1_9Memcached_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_9Memcached_get(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1004,8 +1004,8 @@ cas_token => r9 TypedValue* th_9Memcached_getByKey(TypedValue* _rv, ObjectData* this_, Value* server_key, Value* key, TypedValue* cache_cb, TypedValue* cas_token) asm("_ZN4HPHP11c_Memcached10t_getbykeyERKNS_6StringES3_RKNS_7VariantERKNS_14VRefParamValueE"); -TypedValue* tg1_9Memcached_getByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_getByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_getByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_getByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1025,7 +1025,7 @@ TypedValue* tg1_9Memcached_getByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9Memcached_getByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1072,8 +1072,8 @@ value_cb => rcx bool th_9Memcached_getDelayed(ObjectData* this_, Value* keys, bool with_cas, TypedValue* value_cb) asm("_ZN4HPHP11c_Memcached12t_getdelayedERKNS_5ArrayEbRKNS_7VariantE"); -TypedValue* tg1_9Memcached_getDelayed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_getDelayed(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_getDelayed(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_getDelayed(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1092,7 +1092,7 @@ TypedValue* tg1_9Memcached_getDelayed(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_9Memcached_getDelayed(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getDelayed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1139,8 +1139,8 @@ value_cb => r8 bool th_9Memcached_getDelayedByKey(ObjectData* this_, Value* server_key, Value* keys, bool with_cas, TypedValue* value_cb) asm("_ZN4HPHP11c_Memcached17t_getdelayedbykeyERKNS_6StringERKNS_5ArrayEbRKNS_7VariantE"); -TypedValue* tg1_9Memcached_getDelayedByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_getDelayedByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_getDelayedByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_getDelayedByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1162,7 +1162,7 @@ TypedValue* tg1_9Memcached_getDelayedByKey(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9Memcached_getDelayedByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getDelayedByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1209,8 +1209,8 @@ flags => r8 TypedValue* th_9Memcached_getMulti(TypedValue* _rv, ObjectData* this_, Value* keys, TypedValue* cas_tokens, int flags) asm("_ZN4HPHP11c_Memcached10t_getmultiERKNS_5ArrayERKNS_14VRefParamValueEi"); -TypedValue* tg1_9Memcached_getMulti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_getMulti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_getMulti(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_getMulti(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1230,7 +1230,7 @@ TypedValue* tg1_9Memcached_getMulti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9Memcached_getMulti(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getMulti(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1279,8 +1279,8 @@ flags => r9 TypedValue* th_9Memcached_getMultiByKey(TypedValue* _rv, ObjectData* this_, Value* server_key, Value* keys, TypedValue* cas_tokens, int flags) asm("_ZN4HPHP11c_Memcached15t_getmultibykeyERKNS_6StringERKNS_5ArrayERKNS_14VRefParamValueEi"); -TypedValue* tg1_9Memcached_getMultiByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_getMultiByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_getMultiByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_getMultiByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1303,7 +1303,7 @@ TypedValue* tg1_9Memcached_getMultiByKey(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_9Memcached_getMultiByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getMultiByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1349,8 +1349,8 @@ option => rdx TypedValue* th_9Memcached_getOption(TypedValue* _rv, ObjectData* this_, int option) asm("_ZN4HPHP11c_Memcached11t_getoptionEi"); -TypedValue* tg1_9Memcached_getOption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_getOption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_getOption(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_getOption(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_9Memcached_getOption((rv), (this_), (int)(args[-0].m_data.num)); @@ -1358,7 +1358,7 @@ TypedValue* tg1_9Memcached_getOption(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_9Memcached_getOption(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getOption(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1401,7 +1401,7 @@ this_ => rdi long th_9Memcached_getResultCode(ObjectData* this_) asm("_ZN4HPHP11c_Memcached15t_getresultcodeEv"); -TypedValue* tg_9Memcached_getResultCode(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getResultCode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1438,7 +1438,7 @@ this_ => rsi Value* th_9Memcached_getResultMessage(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_Memcached18t_getresultmessageEv"); -TypedValue* tg_9Memcached_getResultMessage(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getResultMessage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1477,8 +1477,8 @@ server_key => rdx TypedValue* th_9Memcached_getServerByKey(TypedValue* _rv, ObjectData* this_, Value* server_key) asm("_ZN4HPHP11c_Memcached16t_getserverbykeyERKNS_6StringE"); -TypedValue* tg1_9Memcached_getServerByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_getServerByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_getServerByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_getServerByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_9Memcached_getServerByKey((rv), (this_), &args[-0].m_data); @@ -1486,7 +1486,7 @@ TypedValue* tg1_9Memcached_getServerByKey(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9Memcached_getServerByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getServerByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1530,7 +1530,7 @@ this_ => rsi Value* th_9Memcached_getServerList(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_Memcached15t_getserverlistEv"); -TypedValue* tg_9Memcached_getServerList(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getServerList(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1568,7 +1568,7 @@ this_ => rsi TypedValue* th_9Memcached_getStats(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP11c_Memcached10t_getstatsEv"); -TypedValue* tg_9Memcached_getStats(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getStats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1605,7 +1605,7 @@ this_ => rsi TypedValue* th_9Memcached_getVersion(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP11c_Memcached12t_getversionEv"); -TypedValue* tg_9Memcached_getVersion(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_getVersion(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1644,8 +1644,8 @@ offset => rcx TypedValue* th_9Memcached_increment(TypedValue* _rv, ObjectData* this_, Value* key, long offset) asm("_ZN4HPHP11c_Memcached11t_incrementERKNS_6StringEl"); -TypedValue* tg1_9Memcached_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_increment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_increment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1663,7 +1663,7 @@ TypedValue* tg1_9Memcached_increment(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_9Memcached_increment(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_increment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1708,8 +1708,8 @@ value => rdx bool th_9Memcached_prepend(ObjectData* this_, Value* key, Value* value) asm("_ZN4HPHP11c_Memcached9t_prependERKNS_6StringES3_"); -TypedValue* tg1_9Memcached_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_prepend(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_prepend(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1722,7 +1722,7 @@ TypedValue* tg1_9Memcached_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_9Memcached_prepend(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_prepend(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1768,8 +1768,8 @@ value => rcx bool th_9Memcached_prependByKey(ObjectData* this_, Value* server_key, Value* key, Value* value) asm("_ZN4HPHP11c_Memcached14t_prependbykeyERKNS_6StringES3_S3_"); -TypedValue* tg1_9Memcached_prependByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_prependByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_prependByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_prependByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -1785,7 +1785,7 @@ TypedValue* tg1_9Memcached_prependByKey(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_9Memcached_prependByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_prependByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1831,8 +1831,8 @@ expiration => rcx bool th_9Memcached_replace(ObjectData* this_, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached9t_replaceERKNS_6StringERKNS_7VariantEi"); -TypedValue* tg1_9Memcached_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_replace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_replace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1850,7 +1850,7 @@ TypedValue* tg1_9Memcached_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_9Memcached_replace(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1897,8 +1897,8 @@ expiration => r8 bool th_9Memcached_replaceByKey(ObjectData* this_, Value* server_key, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached14t_replacebykeyERKNS_6StringES3_RKNS_7VariantEi"); -TypedValue* tg1_9Memcached_replaceByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_replaceByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_replaceByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_replaceByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1919,7 +1919,7 @@ TypedValue* tg1_9Memcached_replaceByKey(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_9Memcached_replaceByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_replaceByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1965,8 +1965,8 @@ expiration => rcx bool th_9Memcached_set(ObjectData* this_, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached5t_setERKNS_6StringERKNS_7VariantEi"); -TypedValue* tg1_9Memcached_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_set(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_set(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1984,7 +1984,7 @@ TypedValue* tg1_9Memcached_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_9Memcached_set(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2031,8 +2031,8 @@ expiration => r8 bool th_9Memcached_setByKey(ObjectData* this_, Value* server_key, Value* key, TypedValue* value, int expiration) asm("_ZN4HPHP11c_Memcached10t_setbykeyERKNS_6StringES3_RKNS_7VariantEi"); -TypedValue* tg1_9Memcached_setByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_setByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_setByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_setByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2053,7 +2053,7 @@ TypedValue* tg1_9Memcached_setByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9Memcached_setByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_setByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2098,8 +2098,8 @@ expiration => rdx bool th_9Memcached_setMulti(ObjectData* this_, Value* items, int expiration) asm("_ZN4HPHP11c_Memcached10t_setmultiERKNS_5ArrayEi"); -TypedValue* tg1_9Memcached_setMulti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_setMulti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_setMulti(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_setMulti(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2117,7 +2117,7 @@ TypedValue* tg1_9Memcached_setMulti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9Memcached_setMulti(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_setMulti(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2163,8 +2163,8 @@ expiration => rcx bool th_9Memcached_setMultiByKey(ObjectData* this_, Value* server_key, Value* items, int expiration) asm("_ZN4HPHP11c_Memcached15t_setmultibykeyERKNS_6StringERKNS_5ArrayEi"); -TypedValue* tg1_9Memcached_setMultiByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_setMultiByKey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_setMultiByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_setMultiByKey(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2185,7 +2185,7 @@ TypedValue* tg1_9Memcached_setMultiByKey(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_9Memcached_setMultiByKey(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_setMultiByKey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2230,8 +2230,8 @@ value => rdx bool th_9Memcached_setOption(ObjectData* this_, int option, TypedValue* value) asm("_ZN4HPHP11c_Memcached11t_setoptionEiRKNS_7VariantE"); -TypedValue* tg1_9Memcached_setOption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9Memcached_setOption(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9Memcached_setOption(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9Memcached_setOption(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -2239,7 +2239,7 @@ TypedValue* tg1_9Memcached_setOption(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_9Memcached_setOption(HPHP::VM::ActRec *ar) { +TypedValue* tg_9Memcached_setOption(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_misc.ext_hhvm.cpp b/hphp/runtime/ext/ext_misc.ext_hhvm.cpp index a0ed03474..26b9ca2b9 100644 --- a/hphp/runtime/ext/ext_misc.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_misc.ext_hhvm.cpp @@ -33,7 +33,7 @@ _ZN4HPHP20f_connection_abortedEv long fh_connection_aborted() asm("_ZN4HPHP20f_connection_abortedEv"); -TypedValue* fg_connection_aborted(HPHP::VM::ActRec *ar) { +TypedValue* fg_connection_aborted(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -65,7 +65,7 @@ _ZN4HPHP19f_connection_statusEv long fh_connection_status() asm("_ZN4HPHP19f_connection_statusEv"); -TypedValue* fg_connection_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_connection_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -97,7 +97,7 @@ _ZN4HPHP20f_connection_timeoutEv long fh_connection_timeout() asm("_ZN4HPHP20f_connection_timeoutEv"); -TypedValue* fg_connection_timeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_connection_timeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -131,8 +131,8 @@ name => rsi TypedValue* fh_constant(TypedValue* _rv, Value* name) asm("_ZN4HPHP10f_constantERKNS_6StringE"); -TypedValue * fg1_constant(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_constant(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_constant(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_constant(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_constant((rv), &args[-0].m_data); @@ -140,7 +140,7 @@ TypedValue * fg1_constant(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_constant(HPHP::VM::ActRec *ar) { +TypedValue* fg_constant(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -182,8 +182,8 @@ case_insensitive => rdx bool fh_define(Value* name, TypedValue* value, bool case_insensitive) asm("_ZN4HPHP8f_defineERKNS_6StringERKNS_7VariantEb"); -TypedValue * fg1_define(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_define(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_define(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_define(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -201,7 +201,7 @@ TypedValue * fg1_define(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_define(HPHP::VM::ActRec *ar) { +TypedValue* fg_define(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -242,8 +242,8 @@ autoload => rsi bool fh_defined(Value* name, bool autoload) asm("_ZN4HPHP9f_definedERKNS_6StringEb"); -TypedValue * fg1_defined(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_defined(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_defined(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_defined(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -261,7 +261,7 @@ TypedValue * fg1_defined(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_defined(HPHP::VM::ActRec *ar) { +TypedValue* fg_defined(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -302,7 +302,7 @@ status => rsi TypedValue* fh_die(TypedValue* _rv, TypedValue* status) asm("_ZN4HPHP5f_dieERKNS_7VariantE"); -TypedValue* fg_die(HPHP::VM::ActRec *ar) { +TypedValue* fg_die(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -336,7 +336,7 @@ status => rsi TypedValue* fh_exit(TypedValue* _rv, TypedValue* status) asm("_ZN4HPHP6f_exitERKNS_7VariantE"); -TypedValue* fg_exit(HPHP::VM::ActRec *ar) { +TypedValue* fg_exit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -370,8 +370,8 @@ code_str => rsi TypedValue* fh_eval(TypedValue* _rv, Value* code_str) asm("_ZN4HPHP6f_evalERKNS_6StringE"); -TypedValue * fg1_eval(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_eval(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_eval(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_eval(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_eval((rv), &args[-0].m_data); @@ -379,7 +379,7 @@ TypedValue * fg1_eval(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_eval(HPHP::VM::ActRec *ar) { +TypedValue* fg_eval(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -421,8 +421,8 @@ return_array => rdx TypedValue* fh_get_browser(TypedValue* _rv, Value* user_agent, bool return_array) asm("_ZN4HPHP13f_get_browserERKNS_6StringEb"); -TypedValue * fg1_get_browser(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_browser(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_browser(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_browser(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -441,7 +441,7 @@ TypedValue * fg1_get_browser(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_get_browser(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_browser(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -479,7 +479,7 @@ _ZN4HPHP17f___halt_compilerEv void fh___halt_compiler() asm("_ZN4HPHP17f___halt_compilerEv"); -TypedValue* fg___halt_compiler(HPHP::VM::ActRec *ar) { +TypedValue* fg___halt_compiler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -515,8 +515,8 @@ ret => rdx TypedValue* fh_highlight_file(TypedValue* _rv, Value* filename, bool ret) asm("_ZN4HPHP16f_highlight_fileERKNS_6StringEb"); -TypedValue * fg1_highlight_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_highlight_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_highlight_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_highlight_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -534,7 +534,7 @@ TypedValue * fg1_highlight_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_highlight_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_highlight_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -576,8 +576,8 @@ ret => rdx TypedValue* fh_show_source(TypedValue* _rv, Value* filename, bool ret) asm("_ZN4HPHP13f_show_sourceERKNS_6StringEb"); -TypedValue * fg1_show_source(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_show_source(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_show_source(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_show_source(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -595,7 +595,7 @@ TypedValue * fg1_show_source(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_show_source(HPHP::VM::ActRec *ar) { +TypedValue* fg_show_source(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -637,8 +637,8 @@ ret => rdx TypedValue* fh_highlight_string(TypedValue* _rv, Value* str, bool ret) asm("_ZN4HPHP18f_highlight_stringERKNS_6StringEb"); -TypedValue * fg1_highlight_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_highlight_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_highlight_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_highlight_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -656,7 +656,7 @@ TypedValue * fg1_highlight_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_highlight_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_highlight_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -696,8 +696,8 @@ setting => rdi long fh_ignore_user_abort(bool setting) asm("_ZN4HPHP19f_ignore_user_abortEb"); -TypedValue * fg1_ignore_user_abort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ignore_user_abort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ignore_user_abort(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ignore_user_abort(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToBooleanInPlace(args-0); @@ -705,7 +705,7 @@ TypedValue * fg1_ignore_user_abort(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ignore_user_abort(HPHP::VM::ActRec *ar) { +TypedValue* fg_ignore_user_abort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -748,8 +748,8 @@ _argv => rcx TypedValue* fh_pack(TypedValue* _rv, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP6f_packEiRKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_pack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pack(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pack(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Array extraArgs; @@ -770,7 +770,7 @@ TypedValue * fg1_pack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_pack(HPHP::VM::ActRec *ar) { +TypedValue* fg_pack(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -824,8 +824,8 @@ error_message => rsi bool fh_php_check_syntax(Value* filename, TypedValue* error_message) asm("_ZN4HPHP18f_php_check_syntaxERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_php_check_syntax(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_php_check_syntax(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_php_check_syntax(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_php_check_syntax(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -834,7 +834,7 @@ TypedValue * fg1_php_check_syntax(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_php_check_syntax(HPHP::VM::ActRec *ar) { +TypedValue* fg_php_check_syntax(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -876,8 +876,8 @@ filename => rsi Value* fh_php_strip_whitespace(Value* _rv, Value* filename) asm("_ZN4HPHP22f_php_strip_whitespaceERKNS_6StringE"); -TypedValue * fg1_php_strip_whitespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_php_strip_whitespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_php_strip_whitespace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_php_strip_whitespace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -886,7 +886,7 @@ TypedValue * fg1_php_strip_whitespace(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_php_strip_whitespace(HPHP::VM::ActRec *ar) { +TypedValue* fg_php_strip_whitespace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -927,8 +927,8 @@ seconds => rdi long fh_sleep(int seconds) asm("_ZN4HPHP7f_sleepEi"); -TypedValue * fg1_sleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sleep(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sleep(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -936,7 +936,7 @@ TypedValue * fg1_sleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sleep(HPHP::VM::ActRec *ar) { +TypedValue* fg_sleep(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -975,8 +975,8 @@ micro_seconds => rdi void fh_usleep(int micro_seconds) asm("_ZN4HPHP8f_usleepEi"); -TypedValue * fg1_usleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_usleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_usleep(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_usleep(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -985,7 +985,7 @@ TypedValue * fg1_usleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_usleep(HPHP::VM::ActRec *ar) { +TypedValue* fg_usleep(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1028,8 +1028,8 @@ nanoseconds => rdx TypedValue* fh_time_nanosleep(TypedValue* _rv, int seconds, int nanoseconds) asm("_ZN4HPHP16f_time_nanosleepEii"); -TypedValue * fg1_time_nanosleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_time_nanosleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_time_nanosleep(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_time_nanosleep(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -1042,7 +1042,7 @@ TypedValue * fg1_time_nanosleep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_time_nanosleep(HPHP::VM::ActRec *ar) { +TypedValue* fg_time_nanosleep(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1082,8 +1082,8 @@ timestamp => xmm0 bool fh_time_sleep_until(double timestamp) asm("_ZN4HPHP18f_time_sleep_untilEd"); -TypedValue * fg1_time_sleep_until(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_time_sleep_until(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_time_sleep_until(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_time_sleep_until(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToDoubleInPlace(args-0); @@ -1091,7 +1091,7 @@ TypedValue * fg1_time_sleep_until(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_time_sleep_until(HPHP::VM::ActRec *ar) { +TypedValue* fg_time_sleep_until(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1133,8 +1133,8 @@ more_entropy => rdx Value* fh_uniqid(Value* _rv, Value* prefix, bool more_entropy) asm("_ZN4HPHP8f_uniqidERKNS_6StringEb"); -TypedValue * fg1_uniqid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_uniqid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_uniqid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_uniqid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1154,7 +1154,7 @@ TypedValue * fg1_uniqid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_uniqid(HPHP::VM::ActRec *ar) { +TypedValue* fg_uniqid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1197,8 +1197,8 @@ data => rdx TypedValue* fh_unpack(TypedValue* _rv, Value* format, Value* data) asm("_ZN4HPHP8f_unpackERKNS_6StringES2_"); -TypedValue * fg1_unpack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_unpack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_unpack(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_unpack(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -1211,7 +1211,7 @@ TypedValue * fg1_unpack(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_unpack(HPHP::VM::ActRec *ar) { +TypedValue* fg_unpack(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1251,7 +1251,7 @@ _rv => rdi Value* fh_sys_getloadavg(Value* _rv) asm("_ZN4HPHP16f_sys_getloadavgEv"); -TypedValue* fg_sys_getloadavg(HPHP::VM::ActRec *ar) { +TypedValue* fg_sys_getloadavg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1286,8 +1286,8 @@ source => rsi Value* fh_token_get_all(Value* _rv, Value* source) asm("_ZN4HPHP15f_token_get_allERKNS_6StringE"); -TypedValue * fg1_token_get_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_token_get_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_token_get_all(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_token_get_all(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -1296,7 +1296,7 @@ TypedValue * fg1_token_get_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_token_get_all(HPHP::VM::ActRec *ar) { +TypedValue* fg_token_get_all(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1338,8 +1338,8 @@ token => rsi Value* fh_token_name(Value* _rv, long token) asm("_ZN4HPHP12f_token_nameEl"); -TypedValue * fg1_token_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_token_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_token_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_token_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1348,7 +1348,7 @@ TypedValue * fg1_token_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_token_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_token_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1390,7 +1390,7 @@ magic => rsi TypedValue* fh_hphp_process_abort(TypedValue* _rv, TypedValue* magic) asm("_ZN4HPHP20f_hphp_process_abortERKNS_7VariantE"); -TypedValue* fg_hphp_process_abort(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_process_abort(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1424,7 +1424,7 @@ v => rsi Value* fh_hphp_to_string(Value* _rv, TypedValue* v) asm("_ZN4HPHP16f_hphp_to_stringERKNS_7VariantE"); -TypedValue* fg_hphp_to_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_to_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_mysql.ext_hhvm.cpp b/hphp/runtime/ext/ext_mysql.ext_hhvm.cpp index e300792a2..14cc0daac 100644 --- a/hphp/runtime/ext/ext_mysql.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_mysql.ext_hhvm.cpp @@ -41,8 +41,8 @@ query_timeout_ms => st8 TypedValue* fh_mysql_connect(TypedValue* _rv, Value* server, Value* username, Value* password, bool new_link, int client_flags, int connect_timeout_ms, int query_timeout_ms) asm("_ZN4HPHP15f_mysql_connectERKNS_6StringES2_S2_biii"); -TypedValue * fg1_mysql_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_connect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_connect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 7 @@ -81,7 +81,7 @@ TypedValue * fg1_mysql_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mysql_connect(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_connect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -125,8 +125,8 @@ database => r8 TypedValue* fh_mysql_async_connect_start(TypedValue* _rv, Value* server, Value* username, Value* password, Value* database) asm("_ZN4HPHP27f_mysql_async_connect_startERKNS_6StringES2_S2_S2_"); -TypedValue * fg1_mysql_async_connect_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_async_connect_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_async_connect_start(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_async_connect_start(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -153,7 +153,7 @@ TypedValue * fg1_mysql_async_connect_start(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_mysql_async_connect_start(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_connect_start(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -193,7 +193,7 @@ link_identifier => rdi bool fh_mysql_async_connect_completed(TypedValue* link_identifier) asm("_ZN4HPHP31f_mysql_async_connect_completedERKNS_7VariantE"); -TypedValue* fg_mysql_async_connect_completed(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_connect_completed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -227,8 +227,8 @@ link_identifier => rsi bool fh_mysql_async_query_start(Value* query, TypedValue* link_identifier) asm("_ZN4HPHP25f_mysql_async_query_startERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_async_query_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_async_query_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_async_query_start(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_async_query_start(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -236,7 +236,7 @@ TypedValue * fg1_mysql_async_query_start(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_mysql_async_query_start(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_query_start(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -277,7 +277,7 @@ link_identifier => rsi TypedValue* fh_mysql_async_query_result(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP26f_mysql_async_query_resultERKNS_7VariantE"); -TypedValue* fg_mysql_async_query_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_query_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -310,7 +310,7 @@ result => rdi bool fh_mysql_async_query_completed(TypedValue* result) asm("_ZN4HPHP29f_mysql_async_query_completedERKNS_7VariantE"); -TypedValue* fg_mysql_async_query_completed(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_query_completed(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -345,8 +345,8 @@ result_type => rdx TypedValue* fh_mysql_async_fetch_array(TypedValue* _rv, TypedValue* result, int result_type) asm("_ZN4HPHP25f_mysql_async_fetch_arrayERKNS_7VariantEi"); -TypedValue * fg1_mysql_async_fetch_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_async_fetch_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_async_fetch_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_async_fetch_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_async_fetch_array((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(1)); @@ -354,7 +354,7 @@ TypedValue * fg1_mysql_async_fetch_array(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_mysql_async_fetch_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_fetch_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -396,8 +396,8 @@ timeout => xmm0 TypedValue* fh_mysql_async_wait_actionable(TypedValue* _rv, TypedValue* items, double timeout) asm("_ZN4HPHP29f_mysql_async_wait_actionableERKNS_7VariantEd"); -TypedValue * fg1_mysql_async_wait_actionable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_async_wait_actionable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_async_wait_actionable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_async_wait_actionable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToDoubleInPlace(args-1); fh_mysql_async_wait_actionable((rv), (args-0), (args[-1].m_data.dbl)); @@ -405,7 +405,7 @@ TypedValue * fg1_mysql_async_wait_actionable(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_mysql_async_wait_actionable(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_wait_actionable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -445,7 +445,7 @@ link_identifier => rdi long fh_mysql_async_status(TypedValue* link_identifier) asm("_ZN4HPHP20f_mysql_async_statusERKNS_7VariantE"); -TypedValue* fg_mysql_async_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_async_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -484,8 +484,8 @@ query_timeout_ms => st0 TypedValue* fh_mysql_pconnect(TypedValue* _rv, Value* server, Value* username, Value* password, int client_flags, int connect_timeout_ms, int query_timeout_ms) asm("_ZN4HPHP16f_mysql_pconnectERKNS_6StringES2_S2_iii"); -TypedValue * fg1_mysql_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_pconnect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_pconnect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -520,7 +520,7 @@ TypedValue * fg1_mysql_pconnect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_mysql_pconnect(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_pconnect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -568,8 +568,8 @@ query_timeout_ms => st16 TypedValue* fh_mysql_connect_with_db(TypedValue* _rv, Value* server, Value* username, Value* password, Value* database, bool new_link, int client_flags, int connect_timeout_ms, int query_timeout_ms) asm("_ZN4HPHP23f_mysql_connect_with_dbERKNS_6StringES2_S2_S2_biii"); -TypedValue * fg1_mysql_connect_with_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_connect_with_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_connect_with_db(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_connect_with_db(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 8 @@ -612,7 +612,7 @@ TypedValue * fg1_mysql_connect_with_db(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_mysql_connect_with_db(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_connect_with_db(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -659,8 +659,8 @@ query_timeout_ms => st8 TypedValue* fh_mysql_pconnect_with_db(TypedValue* _rv, Value* server, Value* username, Value* password, Value* database, int client_flags, int connect_timeout_ms, int query_timeout_ms) asm("_ZN4HPHP24f_mysql_pconnect_with_dbERKNS_6StringES2_S2_S2_iii"); -TypedValue * fg1_mysql_pconnect_with_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_pconnect_with_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_pconnect_with_db(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_pconnect_with_db(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 7 @@ -699,7 +699,7 @@ TypedValue * fg1_mysql_pconnect_with_db(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mysql_pconnect_with_db(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_pconnect_with_db(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -741,8 +741,8 @@ link_identifier => rdx TypedValue* fh_mysql_set_charset(TypedValue* _rv, Value* charset, TypedValue* link_identifier) asm("_ZN4HPHP19f_mysql_set_charsetERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_set_charset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_set_charset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_set_charset(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_set_charset(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -751,7 +751,7 @@ TypedValue * fg1_mysql_set_charset(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_set_charset(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_set_charset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -793,7 +793,7 @@ link_identifier => rsi TypedValue* fh_mysql_ping(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP12f_mysql_pingERKNS_7VariantE"); -TypedValue* fg_mysql_ping(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_ping(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -828,8 +828,8 @@ unescaped_string => rsi Value* fh_mysql_escape_string(Value* _rv, Value* unescaped_string) asm("_ZN4HPHP21f_mysql_escape_stringERKNS_6StringE"); -TypedValue * fg1_mysql_escape_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_escape_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_escape_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_escape_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -838,7 +838,7 @@ TypedValue * fg1_mysql_escape_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_mysql_escape_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_escape_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -881,8 +881,8 @@ link_identifier => rdx TypedValue* fh_mysql_real_escape_string(TypedValue* _rv, Value* unescaped_string, TypedValue* link_identifier) asm("_ZN4HPHP26f_mysql_real_escape_stringERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_real_escape_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_real_escape_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_real_escape_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_real_escape_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -891,7 +891,7 @@ TypedValue * fg1_mysql_real_escape_string(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_mysql_real_escape_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_real_escape_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -933,7 +933,7 @@ link_identifier => rsi TypedValue* fh_mysql_client_encoding(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP23f_mysql_client_encodingERKNS_7VariantE"); -TypedValue* fg_mysql_client_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_client_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -968,7 +968,7 @@ link_identifier => rsi TypedValue* fh_mysql_close(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP13f_mysql_closeERKNS_7VariantE"); -TypedValue* fg_mysql_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1003,7 +1003,7 @@ link_identifier => rsi TypedValue* fh_mysql_errno(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP13f_mysql_errnoERKNS_7VariantE"); -TypedValue* fg_mysql_errno(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_errno(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1038,7 +1038,7 @@ link_identifier => rsi TypedValue* fh_mysql_error(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP13f_mysql_errorERKNS_7VariantE"); -TypedValue* fg_mysql_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1073,7 +1073,7 @@ link_identifier => rsi TypedValue* fh_mysql_warning_count(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP21f_mysql_warning_countERKNS_7VariantE"); -TypedValue* fg_mysql_warning_count(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_warning_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1107,7 +1107,7 @@ _rv => rdi Value* fh_mysql_get_client_info(Value* _rv) asm("_ZN4HPHP23f_mysql_get_client_infoEv"); -TypedValue* fg_mysql_get_client_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_get_client_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1142,7 +1142,7 @@ link_identifier => rsi TypedValue* fh_mysql_get_host_info(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP21f_mysql_get_host_infoERKNS_7VariantE"); -TypedValue* fg_mysql_get_host_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_get_host_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1177,7 +1177,7 @@ link_identifier => rsi TypedValue* fh_mysql_get_proto_info(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP22f_mysql_get_proto_infoERKNS_7VariantE"); -TypedValue* fg_mysql_get_proto_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_get_proto_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1212,7 +1212,7 @@ link_identifier => rsi TypedValue* fh_mysql_get_server_info(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP23f_mysql_get_server_infoERKNS_7VariantE"); -TypedValue* fg_mysql_get_server_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_get_server_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1247,7 +1247,7 @@ link_identifier => rsi TypedValue* fh_mysql_info(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP12f_mysql_infoERKNS_7VariantE"); -TypedValue* fg_mysql_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1282,7 +1282,7 @@ link_identifier => rsi TypedValue* fh_mysql_insert_id(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP17f_mysql_insert_idERKNS_7VariantE"); -TypedValue* fg_mysql_insert_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_insert_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1317,7 +1317,7 @@ link_identifier => rsi TypedValue* fh_mysql_stat(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP12f_mysql_statERKNS_7VariantE"); -TypedValue* fg_mysql_stat(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_stat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1352,7 +1352,7 @@ link_identifier => rsi TypedValue* fh_mysql_thread_id(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP17f_mysql_thread_idERKNS_7VariantE"); -TypedValue* fg_mysql_thread_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_thread_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1388,8 +1388,8 @@ link_identifier => rdx TypedValue* fh_mysql_create_db(TypedValue* _rv, Value* db, TypedValue* link_identifier) asm("_ZN4HPHP17f_mysql_create_dbERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_create_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_create_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_create_db(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_create_db(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -1398,7 +1398,7 @@ TypedValue * fg1_mysql_create_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mysql_create_db(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_create_db(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1441,8 +1441,8 @@ link_identifier => rdx TypedValue* fh_mysql_select_db(TypedValue* _rv, Value* db, TypedValue* link_identifier) asm("_ZN4HPHP17f_mysql_select_dbERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_select_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_select_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_select_db(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_select_db(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -1451,7 +1451,7 @@ TypedValue * fg1_mysql_select_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mysql_select_db(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_select_db(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1494,8 +1494,8 @@ link_identifier => rdx TypedValue* fh_mysql_drop_db(TypedValue* _rv, Value* db, TypedValue* link_identifier) asm("_ZN4HPHP15f_mysql_drop_dbERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_drop_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_drop_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_drop_db(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_drop_db(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -1504,7 +1504,7 @@ TypedValue * fg1_mysql_drop_db(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mysql_drop_db(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_drop_db(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1546,7 +1546,7 @@ link_identifier => rsi TypedValue* fh_mysql_affected_rows(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP21f_mysql_affected_rowsERKNS_7VariantE"); -TypedValue* fg_mysql_affected_rows(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_affected_rows(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1581,8 +1581,8 @@ link_identifier => rsi bool fh_mysql_set_timeout(int query_timeout_ms, TypedValue* link_identifier) asm("_ZN4HPHP19f_mysql_set_timeoutEiRKNS_7VariantE"); -TypedValue * fg1_mysql_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_set_timeout(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_set_timeout(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1591,7 +1591,7 @@ TypedValue * fg1_mysql_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_set_timeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_set_timeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1634,8 +1634,8 @@ link_identifier => rdx TypedValue* fh_mysql_query(TypedValue* _rv, Value* query, TypedValue* link_identifier) asm("_ZN4HPHP13f_mysql_queryERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -1644,7 +1644,7 @@ TypedValue * fg1_mysql_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_mysql_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1687,8 +1687,8 @@ link_identifier => rdx TypedValue* fh_mysql_multi_query(TypedValue* _rv, Value* query, TypedValue* link_identifier) asm("_ZN4HPHP19f_mysql_multi_queryERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_multi_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_multi_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_multi_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_multi_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -1697,7 +1697,7 @@ TypedValue * fg1_mysql_multi_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_multi_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_multi_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1738,7 +1738,7 @@ link_identifier => rdi bool fh_mysql_next_result(TypedValue* link_identifier) asm("_ZN4HPHP19f_mysql_next_resultERKNS_7VariantE"); -TypedValue* fg_mysql_next_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_next_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1772,7 +1772,7 @@ link_identifier => rdi bool fh_mysql_more_results(TypedValue* link_identifier) asm("_ZN4HPHP20f_mysql_more_resultsERKNS_7VariantE"); -TypedValue* fg_mysql_more_results(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_more_results(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1807,7 +1807,7 @@ link_identifier => rsi TypedValue* fh_mysql_fetch_result(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP20f_mysql_fetch_resultERKNS_7VariantE"); -TypedValue* fg_mysql_fetch_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_fetch_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1843,8 +1843,8 @@ link_identifier => rdx TypedValue* fh_mysql_unbuffered_query(TypedValue* _rv, Value* query, TypedValue* link_identifier) asm("_ZN4HPHP24f_mysql_unbuffered_queryERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_unbuffered_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_unbuffered_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_unbuffered_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_unbuffered_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -1853,7 +1853,7 @@ TypedValue * fg1_mysql_unbuffered_query(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_mysql_unbuffered_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_unbuffered_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1897,8 +1897,8 @@ link_identifier => rcx TypedValue* fh_mysql_db_query(TypedValue* _rv, Value* database, Value* query, TypedValue* link_identifier) asm("_ZN4HPHP16f_mysql_db_queryERKNS_6StringES2_RKNS_7VariantE"); -TypedValue * fg1_mysql_db_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_db_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_db_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_db_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1917,7 +1917,7 @@ TypedValue * fg1_mysql_db_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_mysql_db_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_db_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1959,7 +1959,7 @@ link_identifier => rsi TypedValue* fh_mysql_list_dbs(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP16f_mysql_list_dbsERKNS_7VariantE"); -TypedValue* fg_mysql_list_dbs(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_list_dbs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1995,8 +1995,8 @@ link_identifier => rdx TypedValue* fh_mysql_list_tables(TypedValue* _rv, Value* database, TypedValue* link_identifier) asm("_ZN4HPHP19f_mysql_list_tablesERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_mysql_list_tables(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_list_tables(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_list_tables(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_list_tables(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -2005,7 +2005,7 @@ TypedValue * fg1_mysql_list_tables(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_list_tables(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_list_tables(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2049,8 +2049,8 @@ link_identifier => rcx TypedValue* fh_mysql_list_fields(TypedValue* _rv, Value* database_name, Value* table_name, TypedValue* link_identifier) asm("_ZN4HPHP19f_mysql_list_fieldsERKNS_6StringES2_RKNS_7VariantE"); -TypedValue * fg1_mysql_list_fields(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_list_fields(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_list_fields(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_list_fields(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -2069,7 +2069,7 @@ TypedValue * fg1_mysql_list_fields(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_list_fields(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_list_fields(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2111,7 +2111,7 @@ link_identifier => rsi TypedValue* fh_mysql_list_processes(TypedValue* _rv, TypedValue* link_identifier) asm("_ZN4HPHP22f_mysql_list_processesERKNS_7VariantE"); -TypedValue* fg_mysql_list_processes(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_list_processes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2148,8 +2148,8 @@ field => rcx TypedValue* fh_mysql_db_name(TypedValue* _rv, TypedValue* result, int row, TypedValue* field) asm("_ZN4HPHP15f_mysql_db_nameERKNS_7VariantEiS2_"); -TypedValue * fg1_mysql_db_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_db_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_db_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_db_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_db_name((rv), (args-0), (int)(args[-1].m_data.num), (count > 2) ? (args-2) : (TypedValue*)(&null_variant)); @@ -2157,7 +2157,7 @@ TypedValue * fg1_mysql_db_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_mysql_db_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_db_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2199,8 +2199,8 @@ i => rdx TypedValue* fh_mysql_tablename(TypedValue* _rv, TypedValue* result, int i) asm("_ZN4HPHP17f_mysql_tablenameERKNS_7VariantEi"); -TypedValue * fg1_mysql_tablename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_tablename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_tablename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_tablename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_tablename((rv), (args-0), (int)(args[-1].m_data.num)); @@ -2208,7 +2208,7 @@ TypedValue * fg1_mysql_tablename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mysql_tablename(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_tablename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2249,7 +2249,7 @@ result => rsi TypedValue* fh_mysql_num_fields(TypedValue* _rv, TypedValue* result) asm("_ZN4HPHP18f_mysql_num_fieldsERKNS_7VariantE"); -TypedValue* fg_mysql_num_fields(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_num_fields(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2283,7 +2283,7 @@ result => rsi TypedValue* fh_mysql_num_rows(TypedValue* _rv, TypedValue* result) asm("_ZN4HPHP16f_mysql_num_rowsERKNS_7VariantE"); -TypedValue* fg_mysql_num_rows(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_num_rows(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2317,7 +2317,7 @@ result => rsi TypedValue* fh_mysql_free_result(TypedValue* _rv, TypedValue* result) asm("_ZN4HPHP19f_mysql_free_resultERKNS_7VariantE"); -TypedValue* fg_mysql_free_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_free_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2351,8 +2351,8 @@ row => rsi bool fh_mysql_data_seek(TypedValue* result, int row) asm("_ZN4HPHP17f_mysql_data_seekERKNS_7VariantEi"); -TypedValue * fg1_mysql_data_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_data_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_data_seek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_data_seek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-1); @@ -2360,7 +2360,7 @@ TypedValue * fg1_mysql_data_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mysql_data_seek(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_data_seek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2401,7 +2401,7 @@ result => rsi TypedValue* fh_mysql_fetch_row(TypedValue* _rv, TypedValue* result) asm("_ZN4HPHP17f_mysql_fetch_rowERKNS_7VariantE"); -TypedValue* fg_mysql_fetch_row(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_fetch_row(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2435,7 +2435,7 @@ result => rsi TypedValue* fh_mysql_fetch_assoc(TypedValue* _rv, TypedValue* result) asm("_ZN4HPHP19f_mysql_fetch_assocERKNS_7VariantE"); -TypedValue* fg_mysql_fetch_assoc(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_fetch_assoc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2470,8 +2470,8 @@ result_type => rdx TypedValue* fh_mysql_fetch_array(TypedValue* _rv, TypedValue* result, int result_type) asm("_ZN4HPHP19f_mysql_fetch_arrayERKNS_7VariantEi"); -TypedValue * fg1_mysql_fetch_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_fetch_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_fetch_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_fetch_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_fetch_array((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(3)); @@ -2479,7 +2479,7 @@ TypedValue * fg1_mysql_fetch_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_fetch_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_fetch_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2520,7 +2520,7 @@ result => rsi TypedValue* fh_mysql_fetch_lengths(TypedValue* _rv, TypedValue* result) asm("_ZN4HPHP21f_mysql_fetch_lengthsERKNS_7VariantE"); -TypedValue* fg_mysql_fetch_lengths(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_fetch_lengths(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2556,8 +2556,8 @@ params => rcx TypedValue* fh_mysql_fetch_object(TypedValue* _rv, TypedValue* result, Value* class_name, Value* params) asm("_ZN4HPHP20f_mysql_fetch_objectERKNS_7VariantERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_mysql_fetch_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_fetch_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_fetch_object(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_fetch_object(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -2578,7 +2578,7 @@ TypedValue * fg1_mysql_fetch_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_mysql_fetch_object(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_fetch_object(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2623,8 +2623,8 @@ field => rcx TypedValue* fh_mysql_result(TypedValue* _rv, TypedValue* result, int row, TypedValue* field) asm("_ZN4HPHP14f_mysql_resultERKNS_7VariantEiS2_"); -TypedValue * fg1_mysql_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_result(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_result(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_result((rv), (args-0), (int)(args[-1].m_data.num), (count > 2) ? (args-2) : (TypedValue*)(&null_variant)); @@ -2632,7 +2632,7 @@ TypedValue * fg1_mysql_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_mysql_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2674,8 +2674,8 @@ field => rdx TypedValue* fh_mysql_fetch_field(TypedValue* _rv, TypedValue* result, int field) asm("_ZN4HPHP19f_mysql_fetch_fieldERKNS_7VariantEi"); -TypedValue * fg1_mysql_fetch_field(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_fetch_field(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_fetch_field(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_fetch_field(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_fetch_field((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(-1)); @@ -2683,7 +2683,7 @@ TypedValue * fg1_mysql_fetch_field(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_fetch_field(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_fetch_field(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2724,8 +2724,8 @@ field => rsi bool fh_mysql_field_seek(TypedValue* result, int field) asm("_ZN4HPHP18f_mysql_field_seekERKNS_7VariantEi"); -TypedValue * fg1_mysql_field_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_field_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_field_seek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_field_seek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-1); @@ -2733,7 +2733,7 @@ TypedValue * fg1_mysql_field_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_field_seek(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_field_seek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2775,8 +2775,8 @@ field => rdx TypedValue* fh_mysql_field_name(TypedValue* _rv, TypedValue* result, int field) asm("_ZN4HPHP18f_mysql_field_nameERKNS_7VariantEi"); -TypedValue * fg1_mysql_field_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_field_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_field_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_field_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_field_name((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(0)); @@ -2784,7 +2784,7 @@ TypedValue * fg1_mysql_field_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_field_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_field_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2826,8 +2826,8 @@ field => rdx TypedValue* fh_mysql_field_table(TypedValue* _rv, TypedValue* result, int field) asm("_ZN4HPHP19f_mysql_field_tableERKNS_7VariantEi"); -TypedValue * fg1_mysql_field_table(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_field_table(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_field_table(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_field_table(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_field_table((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(0)); @@ -2835,7 +2835,7 @@ TypedValue * fg1_mysql_field_table(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_field_table(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_field_table(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2877,8 +2877,8 @@ field => rdx TypedValue* fh_mysql_field_len(TypedValue* _rv, TypedValue* result, int field) asm("_ZN4HPHP17f_mysql_field_lenERKNS_7VariantEi"); -TypedValue * fg1_mysql_field_len(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_field_len(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_field_len(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_field_len(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_field_len((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(0)); @@ -2886,7 +2886,7 @@ TypedValue * fg1_mysql_field_len(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_mysql_field_len(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_field_len(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2928,8 +2928,8 @@ field => rdx TypedValue* fh_mysql_field_type(TypedValue* _rv, TypedValue* result, int field) asm("_ZN4HPHP18f_mysql_field_typeERKNS_7VariantEi"); -TypedValue * fg1_mysql_field_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_field_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_field_type(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_field_type(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_field_type((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(0)); @@ -2937,7 +2937,7 @@ TypedValue * fg1_mysql_field_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_field_type(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_field_type(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2979,8 +2979,8 @@ field => rdx TypedValue* fh_mysql_field_flags(TypedValue* _rv, TypedValue* result, int field) asm("_ZN4HPHP19f_mysql_field_flagsERKNS_7VariantEi"); -TypedValue * fg1_mysql_field_flags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_mysql_field_flags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_mysql_field_flags(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_mysql_field_flags(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-1); fh_mysql_field_flags((rv), (args-0), (count > 1) ? (int)(args[-1].m_data.num) : (int)(0)); @@ -2988,7 +2988,7 @@ TypedValue * fg1_mysql_field_flags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_mysql_field_flags(HPHP::VM::ActRec *ar) { +TypedValue* fg_mysql_field_flags(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_network.ext_hhvm.cpp b/hphp/runtime/ext/ext_network.ext_hhvm.cpp index fe03fa22a..0208ef83c 100644 --- a/hphp/runtime/ext/ext_network.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_network.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi TypedValue* fh_gethostname(TypedValue* _rv) asm("_ZN4HPHP13f_gethostnameEv"); -TypedValue* fg_gethostname(HPHP::VM::ActRec *ar) { +TypedValue* fg_gethostname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -68,8 +68,8 @@ ip_address => rsi TypedValue* fh_gethostbyaddr(TypedValue* _rv, Value* ip_address) asm("_ZN4HPHP15f_gethostbyaddrERKNS_6StringE"); -TypedValue * fg1_gethostbyaddr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gethostbyaddr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gethostbyaddr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gethostbyaddr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_gethostbyaddr((rv), &args[-0].m_data); @@ -77,7 +77,7 @@ TypedValue * fg1_gethostbyaddr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_gethostbyaddr(HPHP::VM::ActRec *ar) { +TypedValue* fg_gethostbyaddr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -118,8 +118,8 @@ hostname => rsi Value* fh_gethostbyname(Value* _rv, Value* hostname) asm("_ZN4HPHP15f_gethostbynameERKNS_6StringE"); -TypedValue * fg1_gethostbyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gethostbyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gethostbyname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gethostbyname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -128,7 +128,7 @@ TypedValue * fg1_gethostbyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_gethostbyname(HPHP::VM::ActRec *ar) { +TypedValue* fg_gethostbyname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -170,8 +170,8 @@ hostname => rsi TypedValue* fh_gethostbynamel(TypedValue* _rv, Value* hostname) asm("_ZN4HPHP16f_gethostbynamelERKNS_6StringE"); -TypedValue * fg1_gethostbynamel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gethostbynamel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gethostbynamel(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gethostbynamel(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_gethostbynamel((rv), &args[-0].m_data); @@ -179,7 +179,7 @@ TypedValue * fg1_gethostbynamel(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_gethostbynamel(HPHP::VM::ActRec *ar) { +TypedValue* fg_gethostbynamel(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -220,8 +220,8 @@ name => rsi TypedValue* fh_getprotobyname(TypedValue* _rv, Value* name) asm("_ZN4HPHP16f_getprotobynameERKNS_6StringE"); -TypedValue * fg1_getprotobyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getprotobyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getprotobyname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getprotobyname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_getprotobyname((rv), &args[-0].m_data); @@ -229,7 +229,7 @@ TypedValue * fg1_getprotobyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_getprotobyname(HPHP::VM::ActRec *ar) { +TypedValue* fg_getprotobyname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -270,8 +270,8 @@ number => rsi TypedValue* fh_getprotobynumber(TypedValue* _rv, int number) asm("_ZN4HPHP18f_getprotobynumberEi"); -TypedValue * fg1_getprotobynumber(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getprotobynumber(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getprotobynumber(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getprotobynumber(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_getprotobynumber((rv), (int)(args[-0].m_data.num)); @@ -279,7 +279,7 @@ TypedValue * fg1_getprotobynumber(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_getprotobynumber(HPHP::VM::ActRec *ar) { +TypedValue* fg_getprotobynumber(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -321,8 +321,8 @@ protocol => rdx TypedValue* fh_getservbyname(TypedValue* _rv, Value* service, Value* protocol) asm("_ZN4HPHP15f_getservbynameERKNS_6StringES2_"); -TypedValue * fg1_getservbyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getservbyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getservbyname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getservbyname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -335,7 +335,7 @@ TypedValue * fg1_getservbyname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_getservbyname(HPHP::VM::ActRec *ar) { +TypedValue* fg_getservbyname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -377,8 +377,8 @@ protocol => rdx TypedValue* fh_getservbyport(TypedValue* _rv, int port, Value* protocol) asm("_ZN4HPHP15f_getservbyportEiRKNS_6StringE"); -TypedValue * fg1_getservbyport(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getservbyport(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getservbyport(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getservbyport(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -391,7 +391,7 @@ TypedValue * fg1_getservbyport(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_getservbyport(HPHP::VM::ActRec *ar) { +TypedValue* fg_getservbyport(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -432,8 +432,8 @@ in_addr => rsi TypedValue* fh_inet_ntop(TypedValue* _rv, Value* in_addr) asm("_ZN4HPHP11f_inet_ntopERKNS_6StringE"); -TypedValue * fg1_inet_ntop(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_inet_ntop(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_inet_ntop(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_inet_ntop(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_inet_ntop((rv), &args[-0].m_data); @@ -441,7 +441,7 @@ TypedValue * fg1_inet_ntop(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_inet_ntop(HPHP::VM::ActRec *ar) { +TypedValue* fg_inet_ntop(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -482,8 +482,8 @@ address => rsi TypedValue* fh_inet_pton(TypedValue* _rv, Value* address) asm("_ZN4HPHP11f_inet_ptonERKNS_6StringE"); -TypedValue * fg1_inet_pton(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_inet_pton(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_inet_pton(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_inet_pton(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_inet_pton((rv), &args[-0].m_data); @@ -491,7 +491,7 @@ TypedValue * fg1_inet_pton(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_inet_pton(HPHP::VM::ActRec *ar) { +TypedValue* fg_inet_pton(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -532,8 +532,8 @@ ip_address => rsi TypedValue* fh_ip2long(TypedValue* _rv, Value* ip_address) asm("_ZN4HPHP9f_ip2longERKNS_6StringE"); -TypedValue * fg1_ip2long(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ip2long(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ip2long(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ip2long(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_ip2long((rv), &args[-0].m_data); @@ -541,7 +541,7 @@ TypedValue * fg1_ip2long(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ip2long(HPHP::VM::ActRec *ar) { +TypedValue* fg_ip2long(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -582,8 +582,8 @@ proper_address => rsi Value* fh_long2ip(Value* _rv, int proper_address) asm("_ZN4HPHP9f_long2ipEi"); -TypedValue * fg1_long2ip(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_long2ip(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_long2ip(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_long2ip(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -592,7 +592,7 @@ TypedValue * fg1_long2ip(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_long2ip(HPHP::VM::ActRec *ar) { +TypedValue* fg_long2ip(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -634,8 +634,8 @@ type => rsi bool fh_dns_check_record(Value* host, Value* type) asm("_ZN4HPHP18f_dns_check_recordERKNS_6StringES2_"); -TypedValue * fg1_dns_check_record(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dns_check_record(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dns_check_record(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dns_check_record(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -653,7 +653,7 @@ TypedValue * fg1_dns_check_record(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_dns_check_record(HPHP::VM::ActRec *ar) { +TypedValue* fg_dns_check_record(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -694,8 +694,8 @@ type => rsi bool fh_checkdnsrr(Value* host, Value* type) asm("_ZN4HPHP12f_checkdnsrrERKNS_6StringES2_"); -TypedValue * fg1_checkdnsrr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_checkdnsrr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_checkdnsrr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_checkdnsrr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -713,7 +713,7 @@ TypedValue * fg1_checkdnsrr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_checkdnsrr(HPHP::VM::ActRec *ar) { +TypedValue* fg_checkdnsrr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -757,8 +757,8 @@ addtl => r8 TypedValue* fh_dns_get_record(TypedValue* _rv, Value* hostname, int type, TypedValue* authns, TypedValue* addtl) asm("_ZN4HPHP16f_dns_get_recordERKNS_6StringEiRKNS_14VRefParamValueES5_"); -TypedValue * fg1_dns_get_record(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dns_get_record(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dns_get_record(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dns_get_record(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -780,7 +780,7 @@ TypedValue * fg1_dns_get_record(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_dns_get_record(HPHP::VM::ActRec *ar) { +TypedValue* fg_dns_get_record(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -824,8 +824,8 @@ weights => rdx bool fh_dns_get_mx(Value* hostname, TypedValue* mxhosts, TypedValue* weights) asm("_ZN4HPHP12f_dns_get_mxERKNS_6StringERKNS_14VRefParamValueES5_"); -TypedValue * fg1_dns_get_mx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dns_get_mx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dns_get_mx(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dns_get_mx(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -834,7 +834,7 @@ TypedValue * fg1_dns_get_mx(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_dns_get_mx(HPHP::VM::ActRec *ar) { +TypedValue* fg_dns_get_mx(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -877,8 +877,8 @@ weight => rdx bool fh_getmxrr(Value* hostname, TypedValue* mxhosts, TypedValue* weight) asm("_ZN4HPHP9f_getmxrrERKNS_6StringERKNS_14VRefParamValueES5_"); -TypedValue * fg1_getmxrr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getmxrr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getmxrr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getmxrr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -887,7 +887,7 @@ TypedValue * fg1_getmxrr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_getmxrr(HPHP::VM::ActRec *ar) { +TypedValue* fg_getmxrr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -929,8 +929,8 @@ stream => rsi TypedValue* fh_socket_get_status(TypedValue* _rv, Value* stream) asm("_ZN4HPHP19f_socket_get_statusERKNS_6ObjectE"); -TypedValue * fg1_socket_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_get_status(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_get_status(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_socket_get_status((rv), &args[-0].m_data); @@ -938,7 +938,7 @@ TypedValue * fg1_socket_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_socket_get_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_get_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -979,8 +979,8 @@ mode => rsi bool fh_socket_set_blocking(Value* stream, int mode) asm("_ZN4HPHP21f_socket_set_blockingERKNS_6ObjectEi"); -TypedValue * fg1_socket_set_blocking(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_set_blocking(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_set_blocking(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_set_blocking(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -993,7 +993,7 @@ TypedValue * fg1_socket_set_blocking(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_socket_set_blocking(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_set_blocking(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1035,8 +1035,8 @@ microseconds => rdx bool fh_socket_set_timeout(Value* stream, int seconds, int microseconds) asm("_ZN4HPHP20f_socket_set_timeoutERKNS_6ObjectEii"); -TypedValue * fg1_socket_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_set_timeout(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_set_timeout(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1057,7 +1057,7 @@ TypedValue * fg1_socket_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_socket_set_timeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_set_timeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1098,8 +1098,8 @@ http_response_code => rdx void fh_header(Value* str, bool replace, int http_response_code) asm("_ZN4HPHP8f_headerERKNS_6StringEbi"); -TypedValue * fg1_header(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_header(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_header(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_header(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1122,7 +1122,7 @@ TypedValue * fg1_header(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_header(HPHP::VM::ActRec *ar) { +TypedValue* fg_header(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1164,8 +1164,8 @@ response_code => rsi TypedValue* fh_http_response_code(TypedValue* _rv, int response_code) asm("_ZN4HPHP20f_http_response_codeEi"); -TypedValue * fg1_http_response_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_http_response_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_http_response_code(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_http_response_code(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_http_response_code((rv), (count > 0) ? (int)(args[-0].m_data.num) : (int)(0)); @@ -1173,7 +1173,7 @@ TypedValue * fg1_http_response_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_http_response_code(HPHP::VM::ActRec *ar) { +TypedValue* fg_http_response_code(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1213,7 +1213,7 @@ _rv => rdi Value* fh_headers_list(Value* _rv) asm("_ZN4HPHP14f_headers_listEv"); -TypedValue* fg_headers_list(HPHP::VM::ActRec *ar) { +TypedValue* fg_headers_list(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1246,7 +1246,7 @@ _ZN4HPHP23f_get_http_request_sizeEv int fh_get_http_request_size() asm("_ZN4HPHP23f_get_http_request_sizeEv"); -TypedValue* fg_get_http_request_size(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_http_request_size(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1280,7 +1280,7 @@ line => rsi bool fh_headers_sent(TypedValue* file, TypedValue* line) asm("_ZN4HPHP14f_headers_sentERKNS_14VRefParamValueES2_"); -TypedValue* fg_headers_sent(HPHP::VM::ActRec *ar) { +TypedValue* fg_headers_sent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1315,7 +1315,7 @@ callback => rdi bool fh_header_register_callback(TypedValue* callback) asm("_ZN4HPHP26f_header_register_callbackERKNS_7VariantE"); -TypedValue* fg_header_register_callback(HPHP::VM::ActRec *ar) { +TypedValue* fg_header_register_callback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1347,8 +1347,8 @@ name => rdi void fh_header_remove(Value* name) asm("_ZN4HPHP15f_header_removeERKNS_6StringE"); -TypedValue * fg1_header_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_header_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_header_remove(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_header_remove(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1357,7 +1357,7 @@ TypedValue * fg1_header_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_header_remove(HPHP::VM::ActRec *ar) { +TypedValue* fg_header_remove(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1404,8 +1404,8 @@ httponly => st0 bool fh_setcookie(Value* name, Value* value, long expire, Value* path, Value* domain, bool secure, bool httponly) asm("_ZN4HPHP11f_setcookieERKNS_6StringES2_lS2_S2_bb"); -TypedValue * fg1_setcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_setcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_setcookie(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_setcookie(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1443,7 +1443,7 @@ TypedValue * fg1_setcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_setcookie(HPHP::VM::ActRec *ar) { +TypedValue* fg_setcookie(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1489,8 +1489,8 @@ httponly => st0 bool fh_setrawcookie(Value* name, Value* value, long expire, Value* path, Value* domain, bool secure, bool httponly) asm("_ZN4HPHP14f_setrawcookieERKNS_6StringES2_lS2_S2_bb"); -TypedValue * fg1_setrawcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_setrawcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_setrawcookie(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_setrawcookie(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1528,7 +1528,7 @@ TypedValue * fg1_setrawcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_setrawcookie(HPHP::VM::ActRec *ar) { +TypedValue* fg_setrawcookie(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1566,7 +1566,7 @@ _ZN4HPHP25f_define_syslog_variablesEv void fh_define_syslog_variables() asm("_ZN4HPHP25f_define_syslog_variablesEv"); -TypedValue* fg_define_syslog_variables(HPHP::VM::ActRec *ar) { +TypedValue* fg_define_syslog_variables(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1602,8 +1602,8 @@ facility => rdx bool fh_openlog(Value* ident, int option, int facility) asm("_ZN4HPHP9f_openlogERKNS_6StringEii"); -TypedValue * fg1_openlog(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openlog(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openlog(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openlog(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -1619,7 +1619,7 @@ TypedValue * fg1_openlog(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_openlog(HPHP::VM::ActRec *ar) { +TypedValue* fg_openlog(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1658,7 +1658,7 @@ _ZN4HPHP10f_closelogEv bool fh_closelog() asm("_ZN4HPHP10f_closelogEv"); -TypedValue* fg_closelog(HPHP::VM::ActRec *ar) { +TypedValue* fg_closelog(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1692,8 +1692,8 @@ message => rsi bool fh_syslog(int priority, Value* message) asm("_ZN4HPHP8f_syslogEiRKNS_6StringE"); -TypedValue * fg1_syslog(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_syslog(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_syslog(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_syslog(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1706,7 +1706,7 @@ TypedValue * fg1_syslog(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_syslog(HPHP::VM::ActRec *ar) { +TypedValue* fg_syslog(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_openssl.ext_hhvm.cpp b/hphp/runtime/ext/ext_openssl.ext_hhvm.cpp index 05c197def..eb5d5da00 100644 --- a/hphp/runtime/ext/ext_openssl.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_openssl.ext_hhvm.cpp @@ -36,8 +36,8 @@ notext => rdx bool fh_openssl_csr_export_to_file(TypedValue* csr, Value* outfilename, bool notext) asm("_ZN4HPHP28f_openssl_csr_export_to_fileERKNS_7VariantERKNS_6StringEb"); -TypedValue * fg1_openssl_csr_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_csr_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_csr_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_csr_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -55,7 +55,7 @@ TypedValue * fg1_openssl_csr_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_openssl_csr_export_to_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_csr_export_to_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -97,8 +97,8 @@ notext => rdx bool fh_openssl_csr_export(TypedValue* csr, TypedValue* out, bool notext) asm("_ZN4HPHP20f_openssl_csr_exportERKNS_7VariantERKNS_14VRefParamValueEb"); -TypedValue * fg1_openssl_csr_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_csr_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_csr_export(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_csr_export(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-2); @@ -106,7 +106,7 @@ TypedValue * fg1_openssl_csr_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_openssl_csr_export(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_csr_export(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -147,7 +147,7 @@ csr => rsi TypedValue* fh_openssl_csr_get_public_key(TypedValue* _rv, TypedValue* csr) asm("_ZN4HPHP28f_openssl_csr_get_public_keyERKNS_7VariantE"); -TypedValue* fg_openssl_csr_get_public_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_csr_get_public_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -182,8 +182,8 @@ use_shortnames => rdx TypedValue* fh_openssl_csr_get_subject(TypedValue* _rv, TypedValue* csr, bool use_shortnames) asm("_ZN4HPHP25f_openssl_csr_get_subjectERKNS_7VariantEb"); -TypedValue * fg1_openssl_csr_get_subject(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_csr_get_subject(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_csr_get_subject(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_csr_get_subject(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_openssl_csr_get_subject((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(true)); @@ -191,7 +191,7 @@ TypedValue * fg1_openssl_csr_get_subject(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_openssl_csr_get_subject(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_csr_get_subject(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -235,8 +235,8 @@ extraattribs => r8 TypedValue* fh_openssl_csr_new(TypedValue* _rv, Value* dn, TypedValue* privkey, TypedValue* configargs, TypedValue* extraattribs) asm("_ZN4HPHP17f_openssl_csr_newERKNS_5ArrayERKNS_14VRefParamValueERKNS_7VariantES8_"); -TypedValue * fg1_openssl_csr_new(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_csr_new(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_csr_new(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_csr_new(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToArrayInPlace(args-0); fh_openssl_csr_new((rv), &args[-0].m_data, (args-1), (count > 2) ? (args-2) : (TypedValue*)(&null_variant), (count > 3) ? (args-3) : (TypedValue*)(&null_variant)); @@ -244,7 +244,7 @@ TypedValue * fg1_openssl_csr_new(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_openssl_csr_new(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_csr_new(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -290,8 +290,8 @@ serial => st0 TypedValue* fh_openssl_csr_sign(TypedValue* _rv, TypedValue* csr, TypedValue* cacert, TypedValue* priv_key, int days, TypedValue* configargs, int serial) asm("_ZN4HPHP18f_openssl_csr_signERKNS_7VariantES2_S2_iS2_i"); -TypedValue * fg1_openssl_csr_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_csr_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_csr_sign(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_csr_sign(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -310,7 +310,7 @@ TypedValue * fg1_openssl_csr_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_openssl_csr_sign(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_csr_sign(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -350,7 +350,7 @@ _rv => rdi TypedValue* fh_openssl_error_string(TypedValue* _rv) asm("_ZN4HPHP22f_openssl_error_stringEv"); -TypedValue* fg_openssl_error_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_error_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -386,8 +386,8 @@ priv_key_id => rcx bool fh_openssl_open(Value* sealed_data, TypedValue* open_data, Value* env_key, TypedValue* priv_key_id) asm("_ZN4HPHP14f_openssl_openERKNS_6StringERKNS_14VRefParamValueES2_RKNS_7VariantE"); -TypedValue * fg1_openssl_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_open(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_open(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -400,7 +400,7 @@ TypedValue * fg1_openssl_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_openssl_open(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_open(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -444,8 +444,8 @@ args => r8 bool fh_openssl_pkcs12_export_to_file(TypedValue* x509, Value* filename, TypedValue* priv_key, Value* pass, TypedValue* args) asm("_ZN4HPHP31f_openssl_pkcs12_export_to_fileERKNS_7VariantERKNS_6StringES2_S5_S2_"); -TypedValue * fg1_openssl_pkcs12_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkcs12_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkcs12_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkcs12_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -463,7 +463,7 @@ TypedValue * fg1_openssl_pkcs12_export_to_file(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_openssl_pkcs12_export_to_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkcs12_export_to_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -507,8 +507,8 @@ args => r8 bool fh_openssl_pkcs12_export(TypedValue* x509, TypedValue* out, TypedValue* priv_key, Value* pass, TypedValue* args) asm("_ZN4HPHP23f_openssl_pkcs12_exportERKNS_7VariantERKNS_14VRefParamValueES2_RKNS_6StringES2_"); -TypedValue * fg1_openssl_pkcs12_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkcs12_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkcs12_export(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkcs12_export(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-3); @@ -516,7 +516,7 @@ TypedValue * fg1_openssl_pkcs12_export(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_openssl_pkcs12_export(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkcs12_export(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -558,8 +558,8 @@ pass => rdx bool fh_openssl_pkcs12_read(Value* pkcs12, TypedValue* certs, Value* pass) asm("_ZN4HPHP21f_openssl_pkcs12_readERKNS_6StringERKNS_14VRefParamValueES2_"); -TypedValue * fg1_openssl_pkcs12_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkcs12_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkcs12_read(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkcs12_read(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -572,7 +572,7 @@ TypedValue * fg1_openssl_pkcs12_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_openssl_pkcs12_read(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkcs12_read(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -615,8 +615,8 @@ recipkey => rcx bool fh_openssl_pkcs7_decrypt(Value* infilename, Value* outfilename, TypedValue* recipcert, TypedValue* recipkey) asm("_ZN4HPHP23f_openssl_pkcs7_decryptERKNS_6StringES2_RKNS_7VariantES5_"); -TypedValue * fg1_openssl_pkcs7_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkcs7_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkcs7_decrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkcs7_decrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -634,7 +634,7 @@ TypedValue * fg1_openssl_pkcs7_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_openssl_pkcs7_decrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkcs7_decrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -679,8 +679,8 @@ cipherid => r9 bool fh_openssl_pkcs7_encrypt(Value* infilename, Value* outfilename, TypedValue* recipcerts, Value* headers, int flags, int cipherid) asm("_ZN4HPHP23f_openssl_pkcs7_encryptERKNS_6StringES2_RKNS_7VariantERKNS_5ArrayEii"); -TypedValue * fg1_openssl_pkcs7_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkcs7_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkcs7_encrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkcs7_encrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -708,7 +708,7 @@ TypedValue * fg1_openssl_pkcs7_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_openssl_pkcs7_encrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkcs7_encrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -754,8 +754,8 @@ extracerts => st0 bool fh_openssl_pkcs7_sign(Value* infilename, Value* outfilename, TypedValue* signcert, TypedValue* privkey, TypedValue* headers, int flags, Value* extracerts) asm("_ZN4HPHP20f_openssl_pkcs7_signERKNS_6StringES2_RKNS_7VariantES5_S5_iS2_"); -TypedValue * fg1_openssl_pkcs7_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkcs7_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkcs7_sign(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkcs7_sign(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -780,7 +780,7 @@ TypedValue * fg1_openssl_pkcs7_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_openssl_pkcs7_sign(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkcs7_sign(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -826,8 +826,8 @@ content => st0 TypedValue* fh_openssl_pkcs7_verify(TypedValue* _rv, Value* filename, int flags, Value* outfilename, Value* cainfo, Value* extracerts, Value* content) asm("_ZN4HPHP22f_openssl_pkcs7_verifyERKNS_6StringEiS2_RKNS_5ArrayES2_S2_"); -TypedValue * fg1_openssl_pkcs7_verify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkcs7_verify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkcs7_verify(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkcs7_verify(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -860,7 +860,7 @@ TypedValue * fg1_openssl_pkcs7_verify(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_openssl_pkcs7_verify(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkcs7_verify(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -903,8 +903,8 @@ configargs => rcx bool fh_openssl_pkey_export_to_file(TypedValue* key, Value* outfilename, Value* passphrase, TypedValue* configargs) asm("_ZN4HPHP29f_openssl_pkey_export_to_fileERKNS_7VariantERKNS_6StringES5_S2_"); -TypedValue * fg1_openssl_pkey_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkey_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkey_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkey_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -923,7 +923,7 @@ TypedValue * fg1_openssl_pkey_export_to_file(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_openssl_pkey_export_to_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkey_export_to_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -966,8 +966,8 @@ configargs => rcx bool fh_openssl_pkey_export(TypedValue* key, TypedValue* out, Value* passphrase, TypedValue* configargs) asm("_ZN4HPHP21f_openssl_pkey_exportERKNS_7VariantERKNS_14VRefParamValueERKNS_6StringES2_"); -TypedValue * fg1_openssl_pkey_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkey_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkey_export(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkey_export(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-2); @@ -975,7 +975,7 @@ TypedValue * fg1_openssl_pkey_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_openssl_pkey_export(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkey_export(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1014,8 +1014,8 @@ key => rdi void fh_openssl_pkey_free(Value* key) asm("_ZN4HPHP19f_openssl_pkey_freeERKNS_6ObjectE"); -TypedValue * fg1_openssl_pkey_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkey_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkey_free(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkey_free(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1024,7 +1024,7 @@ TypedValue * fg1_openssl_pkey_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_openssl_pkey_free(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkey_free(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1064,8 +1064,8 @@ key => rdi void fh_openssl_free_key(Value* key) asm("_ZN4HPHP18f_openssl_free_keyERKNS_6ObjectE"); -TypedValue * fg1_openssl_free_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_free_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_free_key(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_free_key(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1074,7 +1074,7 @@ TypedValue * fg1_openssl_free_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_openssl_free_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_free_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1116,8 +1116,8 @@ key => rsi Value* fh_openssl_pkey_get_details(Value* _rv, Value* key) asm("_ZN4HPHP26f_openssl_pkey_get_detailsERKNS_6ObjectE"); -TypedValue * fg1_openssl_pkey_get_details(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkey_get_details(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkey_get_details(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkey_get_details(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -1126,7 +1126,7 @@ TypedValue * fg1_openssl_pkey_get_details(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_openssl_pkey_get_details(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkey_get_details(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1169,8 +1169,8 @@ passphrase => rdx TypedValue* fh_openssl_pkey_get_private(TypedValue* _rv, TypedValue* key, Value* passphrase) asm("_ZN4HPHP26f_openssl_pkey_get_privateERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_openssl_pkey_get_private(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_pkey_get_private(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_pkey_get_private(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_pkey_get_private(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_openssl_pkey_get_private((rv), (args-0), (count > 1) ? &args[-1].m_data : (Value*)(&null_string)); @@ -1178,7 +1178,7 @@ TypedValue * fg1_openssl_pkey_get_private(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_openssl_pkey_get_private(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkey_get_private(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1220,8 +1220,8 @@ passphrase => rdx TypedValue* fh_openssl_get_privatekey(TypedValue* _rv, TypedValue* key, Value* passphrase) asm("_ZN4HPHP24f_openssl_get_privatekeyERKNS_7VariantERKNS_6StringE"); -TypedValue * fg1_openssl_get_privatekey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_get_privatekey(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_get_privatekey(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_get_privatekey(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-1); fh_openssl_get_privatekey((rv), (args-0), (count > 1) ? &args[-1].m_data : (Value*)(&null_string)); @@ -1229,7 +1229,7 @@ TypedValue * fg1_openssl_get_privatekey(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_openssl_get_privatekey(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_get_privatekey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1270,7 +1270,7 @@ certificate => rsi TypedValue* fh_openssl_pkey_get_public(TypedValue* _rv, TypedValue* certificate) asm("_ZN4HPHP25f_openssl_pkey_get_publicERKNS_7VariantE"); -TypedValue* fg_openssl_pkey_get_public(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkey_get_public(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1304,7 +1304,7 @@ certificate => rsi TypedValue* fh_openssl_get_publickey(TypedValue* _rv, TypedValue* certificate) asm("_ZN4HPHP23f_openssl_get_publickeyERKNS_7VariantE"); -TypedValue* fg_openssl_get_publickey(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_get_publickey(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1338,7 +1338,7 @@ configargs => rsi Value* fh_openssl_pkey_new(Value* _rv, TypedValue* configargs) asm("_ZN4HPHP18f_openssl_pkey_newERKNS_7VariantE"); -TypedValue* fg_openssl_pkey_new(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_pkey_new(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1375,8 +1375,8 @@ padding => rcx bool fh_openssl_private_decrypt(Value* data, TypedValue* decrypted, TypedValue* key, int padding) asm("_ZN4HPHP25f_openssl_private_decryptERKNS_6StringERKNS_14VRefParamValueERKNS_7VariantEi"); -TypedValue * fg1_openssl_private_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_private_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_private_decrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_private_decrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1394,7 +1394,7 @@ TypedValue * fg1_openssl_private_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_openssl_private_decrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_private_decrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1437,8 +1437,8 @@ padding => rcx bool fh_openssl_private_encrypt(Value* data, TypedValue* crypted, TypedValue* key, int padding) asm("_ZN4HPHP25f_openssl_private_encryptERKNS_6StringERKNS_14VRefParamValueERKNS_7VariantEi"); -TypedValue * fg1_openssl_private_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_private_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_private_encrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_private_encrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1456,7 +1456,7 @@ TypedValue * fg1_openssl_private_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_openssl_private_encrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_private_encrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1499,8 +1499,8 @@ padding => rcx bool fh_openssl_public_decrypt(Value* data, TypedValue* decrypted, TypedValue* key, int padding) asm("_ZN4HPHP24f_openssl_public_decryptERKNS_6StringERKNS_14VRefParamValueERKNS_7VariantEi"); -TypedValue * fg1_openssl_public_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_public_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_public_decrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_public_decrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1518,7 +1518,7 @@ TypedValue * fg1_openssl_public_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_openssl_public_decrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_public_decrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1561,8 +1561,8 @@ padding => rcx bool fh_openssl_public_encrypt(Value* data, TypedValue* crypted, TypedValue* key, int padding) asm("_ZN4HPHP24f_openssl_public_encryptERKNS_6StringERKNS_14VRefParamValueERKNS_7VariantEi"); -TypedValue * fg1_openssl_public_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_public_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_public_encrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_public_encrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1580,7 +1580,7 @@ TypedValue * fg1_openssl_public_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_openssl_public_encrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_public_encrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1624,8 +1624,8 @@ pub_key_ids => r8 TypedValue* fh_openssl_seal(TypedValue* _rv, Value* data, TypedValue* sealed_data, TypedValue* env_keys, Value* pub_key_ids) asm("_ZN4HPHP14f_openssl_sealERKNS_6StringERKNS_14VRefParamValueES5_RKNS_5ArrayE"); -TypedValue * fg1_openssl_seal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_seal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_seal(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_seal(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfArray) { tvCastToArrayInPlace(args-3); @@ -1638,7 +1638,7 @@ TypedValue * fg1_openssl_seal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_openssl_seal(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_seal(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1681,8 +1681,8 @@ signature_alg => rcx bool fh_openssl_sign(Value* data, TypedValue* signature, TypedValue* priv_key_id, int signature_alg) asm("_ZN4HPHP14f_openssl_signERKNS_6StringERKNS_14VRefParamValueERKNS_7VariantEi"); -TypedValue * fg1_openssl_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_sign(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_sign(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1700,7 +1700,7 @@ TypedValue * fg1_openssl_sign(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_openssl_sign(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_sign(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1744,8 +1744,8 @@ signature_alg => r8 TypedValue* fh_openssl_verify(TypedValue* _rv, Value* data, Value* signature, TypedValue* pub_key_id, int signature_alg) asm("_ZN4HPHP16f_openssl_verifyERKNS_6StringES2_RKNS_7VariantEi"); -TypedValue * fg1_openssl_verify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_verify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_verify(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_verify(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1766,7 +1766,7 @@ TypedValue * fg1_openssl_verify(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_openssl_verify(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_verify(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1807,7 +1807,7 @@ key => rsi bool fh_openssl_x509_check_private_key(TypedValue* cert, TypedValue* key) asm("_ZN4HPHP32f_openssl_x509_check_private_keyERKNS_7VariantES2_"); -TypedValue* fg_openssl_x509_check_private_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_x509_check_private_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1843,8 +1843,8 @@ untrustedfile => rcx long fh_openssl_x509_checkpurpose(TypedValue* x509cert, int purpose, Value* cainfo, Value* untrustedfile) asm("_ZN4HPHP27f_openssl_x509_checkpurposeERKNS_7VariantEiRKNS_5ArrayERKNS_6StringE"); -TypedValue * fg1_openssl_x509_checkpurpose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_x509_checkpurpose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_x509_checkpurpose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_x509_checkpurpose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -1866,7 +1866,7 @@ TypedValue * fg1_openssl_x509_checkpurpose(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_openssl_x509_checkpurpose(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_x509_checkpurpose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1908,8 +1908,8 @@ notext => rdx bool fh_openssl_x509_export_to_file(TypedValue* x509, Value* outfilename, bool notext) asm("_ZN4HPHP29f_openssl_x509_export_to_fileERKNS_7VariantERKNS_6StringEb"); -TypedValue * fg1_openssl_x509_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_x509_export_to_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_x509_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_x509_export_to_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1927,7 +1927,7 @@ TypedValue * fg1_openssl_x509_export_to_file(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_openssl_x509_export_to_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_x509_export_to_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1969,8 +1969,8 @@ notext => rdx bool fh_openssl_x509_export(TypedValue* x509, TypedValue* output, bool notext) asm("_ZN4HPHP21f_openssl_x509_exportERKNS_7VariantERKNS_14VRefParamValueEb"); -TypedValue * fg1_openssl_x509_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_x509_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_x509_export(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_x509_export(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-2); @@ -1978,7 +1978,7 @@ TypedValue * fg1_openssl_x509_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_openssl_x509_export(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_x509_export(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2017,8 +2017,8 @@ x509cert => rdi void fh_openssl_x509_free(Value* x509cert) asm("_ZN4HPHP19f_openssl_x509_freeERKNS_6ObjectE"); -TypedValue * fg1_openssl_x509_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_x509_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_x509_free(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_x509_free(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2027,7 +2027,7 @@ TypedValue * fg1_openssl_x509_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_openssl_x509_free(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_x509_free(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2070,8 +2070,8 @@ shortnames => rdx TypedValue* fh_openssl_x509_parse(TypedValue* _rv, TypedValue* x509cert, bool shortnames) asm("_ZN4HPHP20f_openssl_x509_parseERKNS_7VariantEb"); -TypedValue * fg1_openssl_x509_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_x509_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_x509_parse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_x509_parse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_openssl_x509_parse((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(true)); @@ -2079,7 +2079,7 @@ TypedValue * fg1_openssl_x509_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_openssl_x509_parse(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_x509_parse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2120,7 +2120,7 @@ x509certdata => rsi TypedValue* fh_openssl_x509_read(TypedValue* _rv, TypedValue* x509certdata) asm("_ZN4HPHP19f_openssl_x509_readERKNS_7VariantE"); -TypedValue* fg_openssl_x509_read(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_x509_read(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2155,8 +2155,8 @@ crypto_strong => rdx TypedValue* fh_openssl_random_pseudo_bytes(TypedValue* _rv, int length, TypedValue* crypto_strong) asm("_ZN4HPHP29f_openssl_random_pseudo_bytesEiRKNS_14VRefParamValueE"); -TypedValue * fg1_openssl_random_pseudo_bytes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_random_pseudo_bytes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_random_pseudo_bytes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_random_pseudo_bytes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); VRefParamValue defVal1 = false; @@ -2165,7 +2165,7 @@ TypedValue * fg1_openssl_random_pseudo_bytes(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_openssl_random_pseudo_bytes(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_random_pseudo_bytes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2207,8 +2207,8 @@ method => rsi TypedValue* fh_openssl_cipher_iv_length(TypedValue* _rv, Value* method) asm("_ZN4HPHP26f_openssl_cipher_iv_lengthERKNS_6StringE"); -TypedValue * fg1_openssl_cipher_iv_length(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_cipher_iv_length(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_cipher_iv_length(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_cipher_iv_length(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_openssl_cipher_iv_length((rv), &args[-0].m_data); @@ -2216,7 +2216,7 @@ TypedValue * fg1_openssl_cipher_iv_length(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_openssl_cipher_iv_length(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_cipher_iv_length(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2261,8 +2261,8 @@ iv => r9 TypedValue* fh_openssl_encrypt(TypedValue* _rv, Value* data, Value* method, Value* password, int options, Value* iv) asm("_ZN4HPHP17f_openssl_encryptERKNS_6StringES2_S2_iS2_"); -TypedValue * fg1_openssl_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_encrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_encrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -2290,7 +2290,7 @@ TypedValue * fg1_openssl_encrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_openssl_encrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_encrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2335,8 +2335,8 @@ iv => r9 TypedValue* fh_openssl_decrypt(TypedValue* _rv, Value* data, Value* method, Value* password, int options, Value* iv) asm("_ZN4HPHP17f_openssl_decryptERKNS_6StringES2_S2_iS2_"); -TypedValue * fg1_openssl_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_decrypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_decrypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -2364,7 +2364,7 @@ TypedValue * fg1_openssl_decrypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_openssl_decrypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_decrypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2407,8 +2407,8 @@ raw_output => rcx TypedValue* fh_openssl_digest(TypedValue* _rv, Value* data, Value* method, bool raw_output) asm("_ZN4HPHP16f_openssl_digestERKNS_6StringES2_b"); -TypedValue * fg1_openssl_digest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_digest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_digest(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_digest(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -2429,7 +2429,7 @@ TypedValue * fg1_openssl_digest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_openssl_digest(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_digest(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2470,8 +2470,8 @@ aliases => rsi Value* fh_openssl_get_cipher_methods(Value* _rv, bool aliases) asm("_ZN4HPHP28f_openssl_get_cipher_methodsEb"); -TypedValue * fg1_openssl_get_cipher_methods(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_get_cipher_methods(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_get_cipher_methods(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_get_cipher_methods(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -2480,7 +2480,7 @@ TypedValue * fg1_openssl_get_cipher_methods(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_openssl_get_cipher_methods(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_get_cipher_methods(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2522,8 +2522,8 @@ aliases => rsi Value* fh_openssl_get_md_methods(Value* _rv, bool aliases) asm("_ZN4HPHP24f_openssl_get_md_methodsEb"); -TypedValue * fg1_openssl_get_md_methods(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_openssl_get_md_methods(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_openssl_get_md_methods(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_openssl_get_md_methods(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -2532,7 +2532,7 @@ TypedValue * fg1_openssl_get_md_methods(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_openssl_get_md_methods(HPHP::VM::ActRec *ar) { +TypedValue* fg_openssl_get_md_methods(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_options.cpp b/hphp/runtime/ext/ext_options.cpp index fc93ca4fb..0d705a11a 100644 --- a/hphp/runtime/ext/ext_options.cpp +++ b/hphp/runtime/ext/ext_options.cpp @@ -676,8 +676,8 @@ int64_t f_memory_get_allocation() { MemoryManager *mm = MemoryManager::TheMemoryManager(); const MemoryUsageStats &stats = mm->getStats(true); int64_t ret = stats.totalAlloc; - ret -= VM::request_arena().slackEstimate() + - VM::varenv_arena().slackEstimate(); + ret -= request_arena().slackEstimate() + + varenv_arena().slackEstimate(); return ret; } return 0; @@ -697,8 +697,8 @@ int64_t f_memory_get_usage(bool real_usage /* = false */) { MemoryManager *mm = MemoryManager::TheMemoryManager(); const MemoryUsageStats &stats = mm->getStats(true); int64_t ret = real_usage ? stats.usage : stats.alloc; - ret -= VM::request_arena().slackEstimate() + - VM::varenv_arena().slackEstimate(); + ret -= request_arena().slackEstimate() + + varenv_arena().slackEstimate(); return ret; } return (int64_t)Process::GetProcessRSS(Process::GetProcessId()) * 1024 * 1024; diff --git a/hphp/runtime/ext/ext_options.ext_hhvm.cpp b/hphp/runtime/ext/ext_options.ext_hhvm.cpp index 81bac1b2f..c3dbc5d91 100644 --- a/hphp/runtime/ext/ext_options.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_options.ext_hhvm.cpp @@ -36,8 +36,8 @@ value => rdx TypedValue* fh_assert_options(TypedValue* _rv, int what, TypedValue* value) asm("_ZN4HPHP16f_assert_optionsEiRKNS_7VariantE"); -TypedValue * fg1_assert_options(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_assert_options(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_assert_options(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_assert_options(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_assert_options((rv), (int)(args[-0].m_data.num), (count > 1) ? (args-1) : (TypedValue*)(&null_variant)); @@ -45,7 +45,7 @@ TypedValue * fg1_assert_options(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_assert_options(HPHP::VM::ActRec *ar) { +TypedValue* fg_assert_options(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -86,7 +86,7 @@ assertion => rsi TypedValue* fh_assert(TypedValue* _rv, TypedValue* assertion) asm("_ZN4HPHP8f_assertERKNS_7VariantE"); -TypedValue* fg_assert(HPHP::VM::ActRec *ar) { +TypedValue* fg_assert(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -119,8 +119,8 @@ library => rdi long fh_dl(Value* library) asm("_ZN4HPHP4f_dlERKNS_6StringE"); -TypedValue * fg1_dl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dl(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dl(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -128,7 +128,7 @@ TypedValue * fg1_dl(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_dl(HPHP::VM::ActRec *ar) { +TypedValue* fg_dl(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -168,8 +168,8 @@ name => rdi bool fh_extension_loaded(Value* name) asm("_ZN4HPHP18f_extension_loadedERKNS_6StringE"); -TypedValue * fg1_extension_loaded(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_extension_loaded(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_extension_loaded(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_extension_loaded(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -177,7 +177,7 @@ TypedValue * fg1_extension_loaded(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_extension_loaded(HPHP::VM::ActRec *ar) { +TypedValue* fg_extension_loaded(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -218,8 +218,8 @@ zend_extensions => rsi Value* fh_get_loaded_extensions(Value* _rv, bool zend_extensions) asm("_ZN4HPHP23f_get_loaded_extensionsEb"); -TypedValue * fg1_get_loaded_extensions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_loaded_extensions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_loaded_extensions(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_loaded_extensions(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -228,7 +228,7 @@ TypedValue * fg1_get_loaded_extensions(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_get_loaded_extensions(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_loaded_extensions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -270,8 +270,8 @@ module_name => rsi Value* fh_get_extension_funcs(Value* _rv, Value* module_name) asm("_ZN4HPHP21f_get_extension_funcsERKNS_6StringE"); -TypedValue * fg1_get_extension_funcs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_extension_funcs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_extension_funcs(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_extension_funcs(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -280,7 +280,7 @@ TypedValue * fg1_get_extension_funcs(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_get_extension_funcs(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_extension_funcs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -322,8 +322,8 @@ option => rsi Value* fh_get_cfg_var(Value* _rv, Value* option) asm("_ZN4HPHP13f_get_cfg_varERKNS_6StringE"); -TypedValue * fg1_get_cfg_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_cfg_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_cfg_var(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_cfg_var(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -332,7 +332,7 @@ TypedValue * fg1_get_cfg_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_get_cfg_var(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_cfg_var(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -373,7 +373,7 @@ _rv => rdi Value* fh_get_current_user(Value* _rv) asm("_ZN4HPHP18f_get_current_userEv"); -TypedValue* fg_get_current_user(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_current_user(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -408,7 +408,7 @@ categorize => rsi Value* fh_get_defined_constants(Value* _rv, TypedValue* categorize) asm("_ZN4HPHP23f_get_defined_constantsERKNS_7VariantE"); -TypedValue* fg_get_defined_constants(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_defined_constants(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -442,7 +442,7 @@ _rv => rdi Value* fh_get_include_path(Value* _rv) asm("_ZN4HPHP18f_get_include_pathEv"); -TypedValue* fg_get_include_path(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_include_path(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -474,7 +474,7 @@ _ZN4HPHP22f_restore_include_pathEv void fh_restore_include_path() asm("_ZN4HPHP22f_restore_include_pathEv"); -TypedValue* fg_restore_include_path(HPHP::VM::ActRec *ar) { +TypedValue* fg_restore_include_path(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -509,8 +509,8 @@ new_include_path => rsi Value* fh_set_include_path(Value* _rv, Value* new_include_path) asm("_ZN4HPHP18f_set_include_pathERKNS_6StringE"); -TypedValue * fg1_set_include_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_set_include_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_set_include_path(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_set_include_path(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -519,7 +519,7 @@ TypedValue * fg1_set_include_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_set_include_path(HPHP::VM::ActRec *ar) { +TypedValue* fg_set_include_path(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -560,7 +560,7 @@ _rv => rdi Value* fh_get_included_files(Value* _rv) asm("_ZN4HPHP20f_get_included_filesEv"); -TypedValue* fg_get_included_files(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_included_files(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -594,7 +594,7 @@ _rv => rdi Value* fh_inclued_get_data(Value* _rv) asm("_ZN4HPHP18f_inclued_get_dataEv"); -TypedValue* fg_inclued_get_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_inclued_get_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -627,7 +627,7 @@ _ZN4HPHP22f_get_magic_quotes_gpcEv long fh_get_magic_quotes_gpc() asm("_ZN4HPHP22f_get_magic_quotes_gpcEv"); -TypedValue* fg_get_magic_quotes_gpc(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_magic_quotes_gpc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -659,7 +659,7 @@ _ZN4HPHP26f_get_magic_quotes_runtimeEv long fh_get_magic_quotes_runtime() asm("_ZN4HPHP26f_get_magic_quotes_runtimeEv"); -TypedValue* fg_get_magic_quotes_runtime(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_magic_quotes_runtime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -692,7 +692,7 @@ _rv => rdi Value* fh_get_required_files(Value* _rv) asm("_ZN4HPHP20f_get_required_filesEv"); -TypedValue* fg_get_required_files(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_required_files(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -727,8 +727,8 @@ varname => rsi TypedValue* fh_getenv(TypedValue* _rv, Value* varname) asm("_ZN4HPHP8f_getenvERKNS_6StringE"); -TypedValue * fg1_getenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getenv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getenv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_getenv((rv), &args[-0].m_data); @@ -736,7 +736,7 @@ TypedValue * fg1_getenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_getenv(HPHP::VM::ActRec *ar) { +TypedValue* fg_getenv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -775,7 +775,7 @@ _ZN4HPHP12f_getlastmodEv long fh_getlastmod() asm("_ZN4HPHP12f_getlastmodEv"); -TypedValue* fg_getlastmod(HPHP::VM::ActRec *ar) { +TypedValue* fg_getlastmod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -807,7 +807,7 @@ _ZN4HPHP10f_getmygidEv long fh_getmygid() asm("_ZN4HPHP10f_getmygidEv"); -TypedValue* fg_getmygid(HPHP::VM::ActRec *ar) { +TypedValue* fg_getmygid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -839,7 +839,7 @@ _ZN4HPHP12f_getmyinodeEv long fh_getmyinode() asm("_ZN4HPHP12f_getmyinodeEv"); -TypedValue* fg_getmyinode(HPHP::VM::ActRec *ar) { +TypedValue* fg_getmyinode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -871,7 +871,7 @@ _ZN4HPHP10f_getmypidEv long fh_getmypid() asm("_ZN4HPHP10f_getmypidEv"); -TypedValue* fg_getmypid(HPHP::VM::ActRec *ar) { +TypedValue* fg_getmypid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -903,7 +903,7 @@ _ZN4HPHP10f_getmyuidEv long fh_getmyuid() asm("_ZN4HPHP10f_getmyuidEv"); -TypedValue* fg_getmyuid(HPHP::VM::ActRec *ar) { +TypedValue* fg_getmyuid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -938,8 +938,8 @@ longopts => rdx Value* fh_getopt(Value* _rv, Value* options, TypedValue* longopts) asm("_ZN4HPHP8f_getoptERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_getopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getopt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getopt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -948,7 +948,7 @@ TypedValue * fg1_getopt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_getopt(HPHP::VM::ActRec *ar) { +TypedValue* fg_getopt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -990,8 +990,8 @@ who => rsi Value* fh_getrusage(Value* _rv, int who) asm("_ZN4HPHP11f_getrusageEi"); -TypedValue * fg1_getrusage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getrusage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getrusage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getrusage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToInt64InPlace(args-0); @@ -1000,7 +1000,7 @@ TypedValue * fg1_getrusage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_getrusage(HPHP::VM::ActRec *ar) { +TypedValue* fg_getrusage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1043,8 +1043,8 @@ nsec => rdx bool fh_clock_getres(int clk_id, TypedValue* sec, TypedValue* nsec) asm("_ZN4HPHP14f_clock_getresEiRKNS_14VRefParamValueES2_"); -TypedValue * fg1_clock_getres(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clock_getres(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clock_getres(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clock_getres(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1052,7 +1052,7 @@ TypedValue * fg1_clock_getres(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_clock_getres(HPHP::VM::ActRec *ar) { +TypedValue* fg_clock_getres(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1094,8 +1094,8 @@ nsec => rdx bool fh_clock_gettime(int clk_id, TypedValue* sec, TypedValue* nsec) asm("_ZN4HPHP15f_clock_gettimeEiRKNS_14VRefParamValueES2_"); -TypedValue * fg1_clock_gettime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clock_gettime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clock_gettime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clock_gettime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1103,7 +1103,7 @@ TypedValue * fg1_clock_gettime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_clock_gettime(HPHP::VM::ActRec *ar) { +TypedValue* fg_clock_gettime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1145,8 +1145,8 @@ nsec => rdx bool fh_clock_settime(int clk_id, long sec, long nsec) asm("_ZN4HPHP15f_clock_settimeEill"); -TypedValue * fg1_clock_settime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_clock_settime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_clock_settime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_clock_settime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -1162,7 +1162,7 @@ TypedValue * fg1_clock_settime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_clock_settime(HPHP::VM::ActRec *ar) { +TypedValue* fg_clock_settime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1201,7 +1201,7 @@ _ZN4HPHP15f_cpu_get_countEv long fh_cpu_get_count() asm("_ZN4HPHP15f_cpu_get_countEv"); -TypedValue* fg_cpu_get_count(HPHP::VM::ActRec *ar) { +TypedValue* fg_cpu_get_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1234,7 +1234,7 @@ _rv => rdi Value* fh_cpu_get_model(Value* _rv) asm("_ZN4HPHP15f_cpu_get_modelEv"); -TypedValue* fg_cpu_get_model(HPHP::VM::ActRec *ar) { +TypedValue* fg_cpu_get_model(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1270,8 +1270,8 @@ newvalue => rdx Value* fh_ini_alter(Value* _rv, Value* varname, Value* newvalue) asm("_ZN4HPHP11f_ini_alterERKNS_6StringES2_"); -TypedValue * fg1_ini_alter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ini_alter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ini_alter(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ini_alter(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1285,7 +1285,7 @@ TypedValue * fg1_ini_alter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_ini_alter(HPHP::VM::ActRec *ar) { +TypedValue* fg_ini_alter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1327,8 +1327,8 @@ extension => rsi Value* fh_ini_get_all(Value* _rv, Value* extension) asm("_ZN4HPHP13f_ini_get_allERKNS_6StringE"); -TypedValue * fg1_ini_get_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ini_get_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ini_get_all(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ini_get_all(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -1337,7 +1337,7 @@ TypedValue * fg1_ini_get_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ini_get_all(HPHP::VM::ActRec *ar) { +TypedValue* fg_ini_get_all(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1379,8 +1379,8 @@ varname => rsi Value* fh_ini_get(Value* _rv, Value* varname) asm("_ZN4HPHP9f_ini_getERKNS_6StringE"); -TypedValue * fg1_ini_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ini_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ini_get(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ini_get(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1389,7 +1389,7 @@ TypedValue * fg1_ini_get(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ini_get(HPHP::VM::ActRec *ar) { +TypedValue* fg_ini_get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1429,8 +1429,8 @@ varname => rdi void fh_ini_restore(Value* varname) asm("_ZN4HPHP13f_ini_restoreERKNS_6StringE"); -TypedValue * fg1_ini_restore(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ini_restore(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ini_restore(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ini_restore(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1439,7 +1439,7 @@ TypedValue * fg1_ini_restore(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_ini_restore(HPHP::VM::ActRec *ar) { +TypedValue* fg_ini_restore(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1482,8 +1482,8 @@ newvalue => rdx Value* fh_ini_set(Value* _rv, Value* varname, Value* newvalue) asm("_ZN4HPHP9f_ini_setERKNS_6StringES2_"); -TypedValue * fg1_ini_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ini_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ini_set(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ini_set(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1497,7 +1497,7 @@ TypedValue * fg1_ini_set(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ini_set(HPHP::VM::ActRec *ar) { +TypedValue* fg_ini_set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1537,7 +1537,7 @@ _ZN4HPHP23f_memory_get_allocationEv long fh_memory_get_allocation() asm("_ZN4HPHP23f_memory_get_allocationEv"); -TypedValue* fg_memory_get_allocation(HPHP::VM::ActRec *ar) { +TypedValue* fg_memory_get_allocation(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1570,8 +1570,8 @@ real_usage => rdi long fh_memory_get_peak_usage(bool real_usage) asm("_ZN4HPHP23f_memory_get_peak_usageEb"); -TypedValue * fg1_memory_get_peak_usage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memory_get_peak_usage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memory_get_peak_usage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memory_get_peak_usage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToBooleanInPlace(args-0); @@ -1579,7 +1579,7 @@ TypedValue * fg1_memory_get_peak_usage(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_memory_get_peak_usage(HPHP::VM::ActRec *ar) { +TypedValue* fg_memory_get_peak_usage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1619,8 +1619,8 @@ real_usage => rdi long fh_memory_get_usage(bool real_usage) asm("_ZN4HPHP18f_memory_get_usageEb"); -TypedValue * fg1_memory_get_usage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_memory_get_usage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_memory_get_usage(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_memory_get_usage(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToBooleanInPlace(args-0); @@ -1628,7 +1628,7 @@ TypedValue * fg1_memory_get_usage(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_memory_get_usage(HPHP::VM::ActRec *ar) { +TypedValue* fg_memory_get_usage(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1668,7 +1668,7 @@ _rv => rdi Value* fh_php_ini_scanned_files(Value* _rv) asm("_ZN4HPHP23f_php_ini_scanned_filesEv"); -TypedValue* fg_php_ini_scanned_files(HPHP::VM::ActRec *ar) { +TypedValue* fg_php_ini_scanned_files(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1702,7 +1702,7 @@ _rv => rdi Value* fh_php_logo_guid(Value* _rv) asm("_ZN4HPHP15f_php_logo_guidEv"); -TypedValue* fg_php_logo_guid(HPHP::VM::ActRec *ar) { +TypedValue* fg_php_logo_guid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1736,7 +1736,7 @@ _rv => rdi Value* fh_php_sapi_name(Value* _rv) asm("_ZN4HPHP15f_php_sapi_nameEv"); -TypedValue* fg_php_sapi_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_php_sapi_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1771,8 +1771,8 @@ mode => rsi Value* fh_php_uname(Value* _rv, Value* mode) asm("_ZN4HPHP11f_php_unameERKNS_6StringE"); -TypedValue * fg1_php_uname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_php_uname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_php_uname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_php_uname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1781,7 +1781,7 @@ TypedValue * fg1_php_uname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_php_uname(HPHP::VM::ActRec *ar) { +TypedValue* fg_php_uname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1822,8 +1822,8 @@ flag => rdi bool fh_phpcredits(int flag) asm("_ZN4HPHP12f_phpcreditsEi"); -TypedValue * fg1_phpcredits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_phpcredits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_phpcredits(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_phpcredits(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1831,7 +1831,7 @@ TypedValue * fg1_phpcredits(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_phpcredits(HPHP::VM::ActRec *ar) { +TypedValue* fg_phpcredits(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1871,8 +1871,8 @@ what => rdi bool fh_phpinfo(int what) asm("_ZN4HPHP9f_phpinfoEi"); -TypedValue * fg1_phpinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_phpinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_phpinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_phpinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1880,7 +1880,7 @@ TypedValue * fg1_phpinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_phpinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_phpinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1921,8 +1921,8 @@ extension => rsi Value* fh_phpversion(Value* _rv, Value* extension) asm("_ZN4HPHP12f_phpversionERKNS_6StringE"); -TypedValue * fg1_phpversion(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_phpversion(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_phpversion(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_phpversion(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1931,7 +1931,7 @@ TypedValue * fg1_phpversion(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_phpversion(HPHP::VM::ActRec *ar) { +TypedValue* fg_phpversion(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1972,8 +1972,8 @@ setting => rdi bool fh_putenv(Value* setting) asm("_ZN4HPHP8f_putenvERKNS_6StringE"); -TypedValue * fg1_putenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_putenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_putenv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_putenv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1981,7 +1981,7 @@ TypedValue * fg1_putenv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_putenv(HPHP::VM::ActRec *ar) { +TypedValue* fg_putenv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2021,8 +2021,8 @@ new_setting => rdi bool fh_set_magic_quotes_runtime(bool new_setting) asm("_ZN4HPHP26f_set_magic_quotes_runtimeEb"); -TypedValue * fg1_set_magic_quotes_runtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_set_magic_quotes_runtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_set_magic_quotes_runtime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_set_magic_quotes_runtime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-0); @@ -2030,7 +2030,7 @@ TypedValue * fg1_set_magic_quotes_runtime(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_set_magic_quotes_runtime(HPHP::VM::ActRec *ar) { +TypedValue* fg_set_magic_quotes_runtime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2069,8 +2069,8 @@ seconds => rdi void fh_set_time_limit(int seconds) asm("_ZN4HPHP16f_set_time_limitEi"); -TypedValue * fg1_set_time_limit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_set_time_limit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_set_time_limit(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_set_time_limit(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2079,7 +2079,7 @@ TypedValue * fg1_set_time_limit(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_set_time_limit(HPHP::VM::ActRec *ar) { +TypedValue* fg_set_time_limit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2120,7 +2120,7 @@ _rv => rdi Value* fh_sys_get_temp_dir(Value* _rv) asm("_ZN4HPHP18f_sys_get_temp_dirEv"); -TypedValue* fg_sys_get_temp_dir(HPHP::VM::ActRec *ar) { +TypedValue* fg_sys_get_temp_dir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2157,8 +2157,8 @@ sop => rcx TypedValue* fh_version_compare(TypedValue* _rv, Value* version1, Value* version2, Value* sop) asm("_ZN4HPHP17f_version_compareERKNS_6StringES2_S2_"); -TypedValue * fg1_version_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_version_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_version_compare(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_version_compare(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -2179,7 +2179,7 @@ TypedValue * fg1_version_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_version_compare(HPHP::VM::ActRec *ar) { +TypedValue* fg_version_compare(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2218,7 +2218,7 @@ _ZN4HPHP12f_gc_enabledEv bool fh_gc_enabled() asm("_ZN4HPHP12f_gc_enabledEv"); -TypedValue* fg_gc_enabled(HPHP::VM::ActRec *ar) { +TypedValue* fg_gc_enabled(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2249,7 +2249,7 @@ _ZN4HPHP11f_gc_enableEv void fh_gc_enable() asm("_ZN4HPHP11f_gc_enableEv"); -TypedValue* fg_gc_enable(HPHP::VM::ActRec *ar) { +TypedValue* fg_gc_enable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2281,7 +2281,7 @@ _ZN4HPHP12f_gc_disableEv void fh_gc_disable() asm("_ZN4HPHP12f_gc_disableEv"); -TypedValue* fg_gc_disable(HPHP::VM::ActRec *ar) { +TypedValue* fg_gc_disable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2314,7 +2314,7 @@ _ZN4HPHP19f_gc_collect_cyclesEv long fh_gc_collect_cycles() asm("_ZN4HPHP19f_gc_collect_cyclesEv"); -TypedValue* fg_gc_collect_cycles(HPHP::VM::ActRec *ar) { +TypedValue* fg_gc_collect_cycles(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2347,7 +2347,7 @@ _rv => rdi Value* fh_zend_logo_guid(Value* _rv) asm("_ZN4HPHP16f_zend_logo_guidEv"); -TypedValue* fg_zend_logo_guid(HPHP::VM::ActRec *ar) { +TypedValue* fg_zend_logo_guid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2380,7 +2380,7 @@ _ZN4HPHP16f_zend_thread_idEv long fh_zend_thread_id() asm("_ZN4HPHP16f_zend_thread_idEv"); -TypedValue* fg_zend_thread_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_zend_thread_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2413,7 +2413,7 @@ _rv => rdi Value* fh_zend_version(Value* _rv) asm("_ZN4HPHP14f_zend_versionEv"); -TypedValue* fg_zend_version(HPHP::VM::ActRec *ar) { +TypedValue* fg_zend_version(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_output.ext_hhvm.cpp b/hphp/runtime/ext/ext_output.ext_hhvm.cpp index df1399f7b..b2f7f2971 100644 --- a/hphp/runtime/ext/ext_output.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_output.ext_hhvm.cpp @@ -36,8 +36,8 @@ erase => rdx bool fh_ob_start(TypedValue* output_callback, int chunk_size, bool erase) asm("_ZN4HPHP10f_ob_startERKNS_7VariantEib"); -TypedValue * fg1_ob_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ob_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ob_start(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ob_start(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -58,7 +58,7 @@ TypedValue * fg1_ob_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ob_start(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_start(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -97,7 +97,7 @@ _ZN4HPHP10f_ob_cleanEv void fh_ob_clean() asm("_ZN4HPHP10f_ob_cleanEv"); -TypedValue* fg_ob_clean(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_clean(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -129,7 +129,7 @@ _ZN4HPHP10f_ob_flushEv void fh_ob_flush() asm("_ZN4HPHP10f_ob_flushEv"); -TypedValue* fg_ob_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -162,7 +162,7 @@ _ZN4HPHP14f_ob_end_cleanEv bool fh_ob_end_clean() asm("_ZN4HPHP14f_ob_end_cleanEv"); -TypedValue* fg_ob_end_clean(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_end_clean(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -194,7 +194,7 @@ _ZN4HPHP14f_ob_end_flushEv bool fh_ob_end_flush() asm("_ZN4HPHP14f_ob_end_flushEv"); -TypedValue* fg_ob_end_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_end_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -225,7 +225,7 @@ _ZN4HPHP7f_flushEv void fh_flush() asm("_ZN4HPHP7f_flushEv"); -TypedValue* fg_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -259,7 +259,7 @@ _rv => rdi Value* fh_ob_get_clean(Value* _rv) asm("_ZN4HPHP14f_ob_get_cleanEv"); -TypedValue* fg_ob_get_clean(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_get_clean(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -293,7 +293,7 @@ _rv => rdi Value* fh_ob_get_contents(Value* _rv) asm("_ZN4HPHP17f_ob_get_contentsEv"); -TypedValue* fg_ob_get_contents(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_get_contents(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -327,7 +327,7 @@ _rv => rdi Value* fh_ob_get_flush(Value* _rv) asm("_ZN4HPHP14f_ob_get_flushEv"); -TypedValue* fg_ob_get_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_get_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -360,7 +360,7 @@ _ZN4HPHP15f_ob_get_lengthEv long fh_ob_get_length() asm("_ZN4HPHP15f_ob_get_lengthEv"); -TypedValue* fg_ob_get_length(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_get_length(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -392,7 +392,7 @@ _ZN4HPHP14f_ob_get_levelEv long fh_ob_get_level() asm("_ZN4HPHP14f_ob_get_levelEv"); -TypedValue* fg_ob_get_level(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_get_level(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -426,8 +426,8 @@ full_status => rsi Value* fh_ob_get_status(Value* _rv, bool full_status) asm("_ZN4HPHP15f_ob_get_statusEb"); -TypedValue * fg1_ob_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ob_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ob_get_status(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ob_get_status(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -436,7 +436,7 @@ TypedValue * fg1_ob_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_ob_get_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_get_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -479,8 +479,8 @@ mode => rdx Value* fh_ob_gzhandler(Value* _rv, Value* buffer, int mode) asm("_ZN4HPHP14f_ob_gzhandlerERKNS_6StringEi"); -TypedValue * fg1_ob_gzhandler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ob_gzhandler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ob_gzhandler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ob_gzhandler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if ((args-1)->m_type != KindOfInt64) { @@ -494,7 +494,7 @@ TypedValue * fg1_ob_gzhandler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_ob_gzhandler(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_gzhandler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -534,8 +534,8 @@ flag => rdi void fh_ob_implicit_flush(bool flag) asm("_ZN4HPHP19f_ob_implicit_flushEb"); -TypedValue * fg1_ob_implicit_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ob_implicit_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ob_implicit_flush(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ob_implicit_flush(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -544,7 +544,7 @@ TypedValue * fg1_ob_implicit_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_ob_implicit_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_implicit_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -585,7 +585,7 @@ _rv => rdi Value* fh_ob_list_handlers(Value* _rv) asm("_ZN4HPHP18f_ob_list_handlersEv"); -TypedValue* fg_ob_list_handlers(HPHP::VM::ActRec *ar) { +TypedValue* fg_ob_list_handlers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -620,8 +620,8 @@ value => rsi bool fh_output_add_rewrite_var(Value* name, Value* value) asm("_ZN4HPHP24f_output_add_rewrite_varERKNS_6StringES2_"); -TypedValue * fg1_output_add_rewrite_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_output_add_rewrite_var(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_output_add_rewrite_var(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_output_add_rewrite_var(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -634,7 +634,7 @@ TypedValue * fg1_output_add_rewrite_var(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_output_add_rewrite_var(HPHP::VM::ActRec *ar) { +TypedValue* fg_output_add_rewrite_var(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -673,7 +673,7 @@ _ZN4HPHP27f_output_reset_rewrite_varsEv bool fh_output_reset_rewrite_vars() asm("_ZN4HPHP27f_output_reset_rewrite_varsEv"); -TypedValue* fg_output_reset_rewrite_vars(HPHP::VM::ActRec *ar) { +TypedValue* fg_output_reset_rewrite_vars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -706,8 +706,8 @@ value => rsi void fh_hphp_crash_log(Value* name, Value* value) asm("_ZN4HPHP16f_hphp_crash_logERKNS_6StringES2_"); -TypedValue * fg1_hphp_crash_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_crash_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_crash_log(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_crash_log(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -721,7 +721,7 @@ TypedValue * fg1_hphp_crash_log(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_hphp_crash_log(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_crash_log(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -762,8 +762,8 @@ value => rsi void fh_hphp_stats(Value* name, long value) asm("_ZN4HPHP12f_hphp_statsERKNS_6StringEl"); -TypedValue * fg1_hphp_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_stats(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_stats(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -777,7 +777,7 @@ TypedValue * fg1_hphp_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_hphp_stats(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_stats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -818,8 +818,8 @@ name => rdi long fh_hphp_get_stats(Value* name) asm("_ZN4HPHP16f_hphp_get_statsERKNS_6StringE"); -TypedValue * fg1_hphp_get_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_get_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_get_stats(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_get_stats(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -827,7 +827,7 @@ TypedValue * fg1_hphp_get_stats(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_hphp_get_stats(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_stats(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -867,7 +867,7 @@ _rv => rdi Value* fh_hphp_get_status(Value* _rv) asm("_ZN4HPHP17f_hphp_get_statusEv"); -TypedValue* fg_hphp_get_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -901,7 +901,7 @@ _rv => rdi Value* fh_hphp_get_iostatus(Value* _rv) asm("_ZN4HPHP19f_hphp_get_iostatusEv"); -TypedValue* fg_hphp_get_iostatus(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_iostatus(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -934,8 +934,8 @@ name => rdi void fh_hphp_set_iostatus_address(Value* name) asm("_ZN4HPHP27f_hphp_set_iostatus_addressERKNS_6StringE"); -TypedValue * fg1_hphp_set_iostatus_address(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_set_iostatus_address(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_set_iostatus_address(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_set_iostatus_address(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -944,7 +944,7 @@ TypedValue * fg1_hphp_set_iostatus_address(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_set_iostatus_address(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_set_iostatus_address(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -986,8 +986,8 @@ get_as_float => rsi TypedValue* fh_hphp_get_timers(TypedValue* _rv, bool get_as_float) asm("_ZN4HPHP17f_hphp_get_timersEb"); -TypedValue * fg1_hphp_get_timers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_get_timers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_get_timers(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_get_timers(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-0); fh_hphp_get_timers((rv), (count > 0) ? (bool)(args[-0].m_data.num) : (bool)(true)); @@ -995,7 +995,7 @@ TypedValue * fg1_hphp_get_timers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_hphp_get_timers(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_timers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1036,8 +1036,8 @@ serialize => rsi TypedValue* fh_hphp_output_global_state(TypedValue* _rv, bool serialize) asm("_ZN4HPHP26f_hphp_output_global_stateEb"); -TypedValue * fg1_hphp_output_global_state(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_output_global_state(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_output_global_state(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_output_global_state(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-0); fh_hphp_output_global_state((rv), (count > 0) ? (bool)(args[-0].m_data.num) : (bool)(true)); @@ -1045,7 +1045,7 @@ TypedValue * fg1_hphp_output_global_state(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_output_global_state(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_output_global_state(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1084,7 +1084,7 @@ _ZN4HPHP26f_hphp_instruction_counterEv long fh_hphp_instruction_counter() asm("_ZN4HPHP26f_hphp_instruction_counterEv"); -TypedValue* fg_hphp_instruction_counter(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_instruction_counter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1117,7 +1117,7 @@ _rv => rdi TypedValue* fh_hphp_get_hardware_counters(TypedValue* _rv) asm("_ZN4HPHP28f_hphp_get_hardware_countersEv"); -TypedValue* fg_hphp_get_hardware_counters(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_hardware_counters(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1150,8 +1150,8 @@ events => rdi bool fh_hphp_set_hardware_events(Value* events) asm("_ZN4HPHP26f_hphp_set_hardware_eventsERKNS_6StringE"); -TypedValue * fg1_hphp_set_hardware_events(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_set_hardware_events(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_set_hardware_events(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_set_hardware_events(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1160,7 +1160,7 @@ TypedValue * fg1_hphp_set_hardware_events(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_set_hardware_events(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_set_hardware_events(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1199,7 +1199,7 @@ _ZN4HPHP28f_hphp_clear_hardware_eventsEv void fh_hphp_clear_hardware_events() asm("_ZN4HPHP28f_hphp_clear_hardware_eventsEv"); -TypedValue* fg_hphp_clear_hardware_events(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_clear_hardware_events(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_pdo.ext_hhvm.cpp b/hphp/runtime/ext/ext_pdo.ext_hhvm.cpp index 214278f82..cc2b4cffe 100644 --- a/hphp/runtime/ext/ext_pdo.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_pdo.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi Value* fh_pdo_drivers(Value* _rv) asm("_ZN4HPHP13f_pdo_driversEv"); -TypedValue* fg_pdo_drivers(HPHP::VM::ActRec *ar) { +TypedValue* fg_pdo_drivers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -81,8 +81,8 @@ options => r8 void th_3PDO___construct(ObjectData* this_, Value* dsn, Value* username, Value* password, Value* options) asm("_ZN4HPHP5c_PDO13t___constructERKNS_6StringES3_S3_RKNS_5ArrayE"); -TypedValue* tg1_3PDO___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -109,7 +109,7 @@ TypedValue* tg1_3PDO___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_3PDO___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -156,8 +156,8 @@ options => rcx TypedValue* th_3PDO_prepare(TypedValue* _rv, ObjectData* this_, Value* statement, Value* options) asm("_ZN4HPHP5c_PDO9t_prepareERKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_3PDO_prepare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO_prepare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO_prepare(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO_prepare(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -175,7 +175,7 @@ TypedValue* tg1_3PDO_prepare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* tg_3PDO_prepare(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_prepare(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -218,7 +218,7 @@ this_ => rdi bool th_3PDO_begintransaction(ObjectData* this_) asm("_ZN4HPHP5c_PDO18t_begintransactionEv"); -TypedValue* tg_3PDO_begintransaction(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_begintransaction(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -254,7 +254,7 @@ this_ => rdi bool th_3PDO_commit(ObjectData* this_) asm("_ZN4HPHP5c_PDO8t_commitEv"); -TypedValue* tg_3PDO_commit(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_commit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -290,7 +290,7 @@ this_ => rdi bool th_3PDO_rollback(ObjectData* this_) asm("_ZN4HPHP5c_PDO10t_rollbackEv"); -TypedValue* tg_3PDO_rollback(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_rollback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -328,8 +328,8 @@ value => rdx bool th_3PDO_setattribute(ObjectData* this_, long attribute, TypedValue* value) asm("_ZN4HPHP5c_PDO14t_setattributeElRKNS_7VariantE"); -TypedValue* tg1_3PDO_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO_setattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO_setattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -337,7 +337,7 @@ TypedValue* tg1_3PDO_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_3PDO_setattribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_setattribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -382,8 +382,8 @@ attribute => rdx TypedValue* th_3PDO_getattribute(TypedValue* _rv, ObjectData* this_, long attribute) asm("_ZN4HPHP5c_PDO14t_getattributeEl"); -TypedValue* tg1_3PDO_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO_getattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO_getattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_3PDO_getattribute((rv), (this_), (long)(args[-0].m_data.num)); @@ -391,7 +391,7 @@ TypedValue* tg1_3PDO_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_3PDO_getattribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_getattribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -436,8 +436,8 @@ query => rdx TypedValue* th_3PDO_exec(TypedValue* _rv, ObjectData* this_, Value* query) asm("_ZN4HPHP5c_PDO6t_execERKNS_6StringE"); -TypedValue* tg1_3PDO_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO_exec(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO_exec(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_3PDO_exec((rv), (this_), &args[-0].m_data); @@ -445,7 +445,7 @@ TypedValue* tg1_3PDO_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, O return rv; } -TypedValue* tg_3PDO_exec(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_exec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -490,8 +490,8 @@ seqname => rdx TypedValue* th_3PDO_lastinsertid(TypedValue* _rv, ObjectData* this_, Value* seqname) asm("_ZN4HPHP5c_PDO14t_lastinsertidERKNS_6StringE"); -TypedValue* tg1_3PDO_lastinsertid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO_lastinsertid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO_lastinsertid(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO_lastinsertid(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_3PDO_lastinsertid((rv), (this_), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -499,7 +499,7 @@ TypedValue* tg1_3PDO_lastinsertid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_3PDO_lastinsertid(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_lastinsertid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -543,7 +543,7 @@ this_ => rsi TypedValue* th_3PDO_errorcode(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP5c_PDO11t_errorcodeEv"); -TypedValue* tg_3PDO_errorcode(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_errorcode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -580,7 +580,7 @@ this_ => rsi Value* th_3PDO_errorinfo(Value* _rv, ObjectData* this_) asm("_ZN4HPHP5c_PDO11t_errorinfoEv"); -TypedValue* tg_3PDO_errorinfo(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_errorinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -619,8 +619,8 @@ sql => rdx TypedValue* th_3PDO_query(TypedValue* _rv, ObjectData* this_, Value* sql) asm("_ZN4HPHP5c_PDO7t_queryERKNS_6StringE"); -TypedValue* tg1_3PDO_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO_query(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO_query(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_3PDO_query((rv), (this_), &args[-0].m_data); @@ -628,7 +628,7 @@ TypedValue* tg1_3PDO_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, return rv; } -TypedValue* tg_3PDO_query(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -674,8 +674,8 @@ paramtype => rcx TypedValue* th_3PDO_quote(TypedValue* _rv, ObjectData* this_, Value* str, long paramtype) asm("_ZN4HPHP5c_PDO7t_quoteERKNS_6StringEl"); -TypedValue* tg1_3PDO_quote(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_3PDO_quote(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_3PDO_quote(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_3PDO_quote(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -693,7 +693,7 @@ TypedValue* tg1_3PDO_quote(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, return rv; } -TypedValue* tg_3PDO_quote(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_quote(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -737,7 +737,7 @@ this_ => rsi TypedValue* th_3PDO___wakeup(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP5c_PDO10t___wakeupEv"); -TypedValue* tg_3PDO___wakeup(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO___wakeup(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -774,7 +774,7 @@ this_ => rsi TypedValue* th_3PDO___sleep(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP5c_PDO9t___sleepEv"); -TypedValue* tg_3PDO___sleep(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO___sleep(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -811,7 +811,7 @@ cls_ => rsi Value* th_3PDO_getavailabledrivers(Value* _rv, char const* cls_) asm("_ZN4HPHP5c_PDO22ti_getavailabledriversEPKc"); -TypedValue* tg_3PDO_getavailabledrivers(HPHP::VM::ActRec *ar) { +TypedValue* tg_3PDO_getavailabledrivers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -852,7 +852,7 @@ this_ => rdi void th_12PDOStatement___construct(ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement13t___constructEv"); -TypedValue* tg_12PDOStatement___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -891,8 +891,8 @@ params => rdx TypedValue* th_12PDOStatement_execute(TypedValue* _rv, ObjectData* this_, Value* params) asm("_ZN4HPHP14c_PDOStatement9t_executeERKNS_5ArrayE"); -TypedValue* tg1_12PDOStatement_execute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_execute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_execute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_execute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToArrayInPlace(args-0); th_12PDOStatement_execute((rv), (this_), (count > 0) ? &args[-0].m_data : (Value*)(&null_array)); @@ -900,7 +900,7 @@ TypedValue* tg1_12PDOStatement_execute(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_12PDOStatement_execute(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_execute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -947,8 +947,8 @@ offset => r8 TypedValue* th_12PDOStatement_fetch(TypedValue* _rv, ObjectData* this_, long how, long orientation, long offset) asm("_ZN4HPHP14c_PDOStatement7t_fetchElll"); -TypedValue* tg1_12PDOStatement_fetch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_fetch(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_fetch(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_fetch(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -971,7 +971,7 @@ TypedValue* tg1_12PDOStatement_fetch(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_12PDOStatement_fetch(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_fetch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1017,8 +1017,8 @@ ctor_args => rcx TypedValue* th_12PDOStatement_fetchobject(TypedValue* _rv, ObjectData* this_, Value* class_name, TypedValue* ctor_args) asm("_ZN4HPHP14c_PDOStatement13t_fetchobjectERKNS_6StringERKNS_7VariantE"); -TypedValue* tg1_12PDOStatement_fetchobject(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_fetchobject(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_fetchobject(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_fetchobject(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Variant defVal1; @@ -1027,7 +1027,7 @@ TypedValue* tg1_12PDOStatement_fetchobject(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_12PDOStatement_fetchobject(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_fetchobject(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1073,8 +1073,8 @@ column_numner => rdx TypedValue* th_12PDOStatement_fetchcolumn(TypedValue* _rv, ObjectData* this_, long column_numner) asm("_ZN4HPHP14c_PDOStatement13t_fetchcolumnEl"); -TypedValue* tg1_12PDOStatement_fetchcolumn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_fetchcolumn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_fetchcolumn(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_fetchcolumn(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_12PDOStatement_fetchcolumn((rv), (this_), (count > 0) ? (long)(args[-0].m_data.num) : (long)(0)); @@ -1082,7 +1082,7 @@ TypedValue* tg1_12PDOStatement_fetchcolumn(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_12PDOStatement_fetchcolumn(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_fetchcolumn(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1129,8 +1129,8 @@ ctor_args => r8 TypedValue* th_12PDOStatement_fetchall(TypedValue* _rv, ObjectData* this_, long how, TypedValue* class_name, TypedValue* ctor_args) asm("_ZN4HPHP14c_PDOStatement10t_fetchallElRKNS_7VariantES3_"); -TypedValue* tg1_12PDOStatement_fetchall(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_fetchall(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_fetchall(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_fetchall(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); Variant defVal1; @@ -1140,7 +1140,7 @@ TypedValue* tg1_12PDOStatement_fetchall(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_12PDOStatement_fetchall(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_fetchall(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1188,8 +1188,8 @@ type => rcx bool th_12PDOStatement_bindvalue(ObjectData* this_, TypedValue* paramno, TypedValue* param, long type) asm("_ZN4HPHP14c_PDOStatement11t_bindvalueERKNS_7VariantES3_l"); -TypedValue* tg1_12PDOStatement_bindvalue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_bindvalue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_bindvalue(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_bindvalue(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-2); @@ -1197,7 +1197,7 @@ TypedValue* tg1_12PDOStatement_bindvalue(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_12PDOStatement_bindvalue(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_bindvalue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1245,8 +1245,8 @@ driver_params => r9 bool th_12PDOStatement_bindparam(ObjectData* this_, TypedValue* paramno, TypedValue* param, long type, long max_value_len, TypedValue* driver_params) asm("_ZN4HPHP14c_PDOStatement11t_bindparamERKNS_7VariantERKNS_14VRefParamValueEllS3_"); -TypedValue* tg1_12PDOStatement_bindparam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_bindparam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_bindparam(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_bindparam(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1267,7 +1267,7 @@ TypedValue* tg1_12PDOStatement_bindparam(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_12PDOStatement_bindparam(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_bindparam(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1316,8 +1316,8 @@ driver_params => r9 bool th_12PDOStatement_bindcolumn(ObjectData* this_, TypedValue* paramno, TypedValue* param, long type, long max_value_len, TypedValue* driver_params) asm("_ZN4HPHP14c_PDOStatement12t_bindcolumnERKNS_7VariantERKNS_14VRefParamValueEllS3_"); -TypedValue* tg1_12PDOStatement_bindcolumn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_bindcolumn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_bindcolumn(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_bindcolumn(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1338,7 +1338,7 @@ TypedValue* tg1_12PDOStatement_bindcolumn(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_12PDOStatement_bindcolumn(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_bindcolumn(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1382,7 +1382,7 @@ this_ => rdi long th_12PDOStatement_rowcount(ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement10t_rowcountEv"); -TypedValue* tg_12PDOStatement_rowcount(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_rowcount(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1419,7 +1419,7 @@ this_ => rsi TypedValue* th_12PDOStatement_errorcode(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement11t_errorcodeEv"); -TypedValue* tg_12PDOStatement_errorcode(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_errorcode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1456,7 +1456,7 @@ this_ => rsi Value* th_12PDOStatement_errorinfo(Value* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement11t_errorinfoEv"); -TypedValue* tg_12PDOStatement_errorinfo(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_errorinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1496,8 +1496,8 @@ value => rcx TypedValue* th_12PDOStatement_setattribute(TypedValue* _rv, ObjectData* this_, long attribute, TypedValue* value) asm("_ZN4HPHP14c_PDOStatement14t_setattributeElRKNS_7VariantE"); -TypedValue* tg1_12PDOStatement_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_setattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_setattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_12PDOStatement_setattribute((rv), (this_), (long)(args[-0].m_data.num), (args-1)); @@ -1505,7 +1505,7 @@ TypedValue* tg1_12PDOStatement_setattribute(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_12PDOStatement_setattribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_setattribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1550,8 +1550,8 @@ attribute => rdx TypedValue* th_12PDOStatement_getattribute(TypedValue* _rv, ObjectData* this_, long attribute) asm("_ZN4HPHP14c_PDOStatement14t_getattributeEl"); -TypedValue* tg1_12PDOStatement_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_getattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_getattribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_12PDOStatement_getattribute((rv), (this_), (long)(args[-0].m_data.num)); @@ -1559,7 +1559,7 @@ TypedValue* tg1_12PDOStatement_getattribute(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_12PDOStatement_getattribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_getattribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1602,7 +1602,7 @@ this_ => rdi long th_12PDOStatement_columncount(ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement13t_columncountEv"); -TypedValue* tg_12PDOStatement_columncount(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_columncount(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1640,8 +1640,8 @@ column => rdx TypedValue* th_12PDOStatement_getcolumnmeta(TypedValue* _rv, ObjectData* this_, long column) asm("_ZN4HPHP14c_PDOStatement15t_getcolumnmetaEl"); -TypedValue* tg1_12PDOStatement_getcolumnmeta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_getcolumnmeta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_getcolumnmeta(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_getcolumnmeta(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_12PDOStatement_getcolumnmeta((rv), (this_), (long)(args[-0].m_data.num)); @@ -1649,7 +1649,7 @@ TypedValue* tg1_12PDOStatement_getcolumnmeta(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_12PDOStatement_getcolumnmeta(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_getcolumnmeta(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1695,8 +1695,8 @@ _argv => rcx bool th_12PDOStatement_setfetchmode(ObjectData* this_, int64_t _argc, long mode, Value* _argv) asm("_ZN4HPHP14c_PDOStatement14t_setfetchmodeEilRKNS_5ArrayE"); -TypedValue* tg1_12PDOStatement_setfetchmode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_12PDOStatement_setfetchmode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_12PDOStatement_setfetchmode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_12PDOStatement_setfetchmode(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1717,7 +1717,7 @@ TypedValue* tg1_12PDOStatement_setfetchmode(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_12PDOStatement_setfetchmode(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_setfetchmode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1773,7 +1773,7 @@ this_ => rdi bool th_12PDOStatement_nextrowset(ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement12t_nextrowsetEv"); -TypedValue* tg_12PDOStatement_nextrowset(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_nextrowset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1809,7 +1809,7 @@ this_ => rdi bool th_12PDOStatement_closecursor(ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement13t_closecursorEv"); -TypedValue* tg_12PDOStatement_closecursor(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_closecursor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1846,7 +1846,7 @@ this_ => rsi TypedValue* th_12PDOStatement_debugdumpparams(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement17t_debugdumpparamsEv"); -TypedValue* tg_12PDOStatement_debugdumpparams(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_debugdumpparams(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1883,7 +1883,7 @@ this_ => rsi TypedValue* th_12PDOStatement_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement9t_currentEv"); -TypedValue* tg_12PDOStatement_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1920,7 +1920,7 @@ this_ => rsi TypedValue* th_12PDOStatement_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement5t_keyEv"); -TypedValue* tg_12PDOStatement_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1957,7 +1957,7 @@ this_ => rsi TypedValue* th_12PDOStatement_next(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement6t_nextEv"); -TypedValue* tg_12PDOStatement_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1994,7 +1994,7 @@ this_ => rsi TypedValue* th_12PDOStatement_rewind(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement8t_rewindEv"); -TypedValue* tg_12PDOStatement_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2031,7 +2031,7 @@ this_ => rsi TypedValue* th_12PDOStatement_valid(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement7t_validEv"); -TypedValue* tg_12PDOStatement_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2068,7 +2068,7 @@ this_ => rsi TypedValue* th_12PDOStatement___wakeup(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement10t___wakeupEv"); -TypedValue* tg_12PDOStatement___wakeup(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement___wakeup(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2105,7 +2105,7 @@ this_ => rsi TypedValue* th_12PDOStatement___sleep(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP14c_PDOStatement9t___sleepEv"); -TypedValue* tg_12PDOStatement___sleep(HPHP::VM::ActRec *ar) { +TypedValue* tg_12PDOStatement___sleep(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_posix.ext_hhvm.cpp b/hphp/runtime/ext/ext_posix.ext_hhvm.cpp index 99251547f..504efd008 100644 --- a/hphp/runtime/ext/ext_posix.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_posix.ext_hhvm.cpp @@ -35,8 +35,8 @@ mode => rsi bool fh_posix_access(Value* file, int mode) asm("_ZN4HPHP14f_posix_accessERKNS_6StringEi"); -TypedValue * fg1_posix_access(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_access(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_access(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_access(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -54,7 +54,7 @@ TypedValue * fg1_posix_access(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_posix_access(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_access(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -94,7 +94,7 @@ _rv => rdi Value* fh_posix_ctermid(Value* _rv) asm("_ZN4HPHP15f_posix_ctermidEv"); -TypedValue* fg_posix_ctermid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_ctermid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -127,7 +127,7 @@ _ZN4HPHP22f_posix_get_last_errorEv long fh_posix_get_last_error() asm("_ZN4HPHP22f_posix_get_last_errorEv"); -TypedValue* fg_posix_get_last_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_get_last_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -160,7 +160,7 @@ _rv => rdi Value* fh_posix_getcwd(Value* _rv) asm("_ZN4HPHP14f_posix_getcwdEv"); -TypedValue* fg_posix_getcwd(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getcwd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -193,7 +193,7 @@ _ZN4HPHP15f_posix_getegidEv long fh_posix_getegid() asm("_ZN4HPHP15f_posix_getegidEv"); -TypedValue* fg_posix_getegid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getegid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -225,7 +225,7 @@ _ZN4HPHP15f_posix_geteuidEv long fh_posix_geteuid() asm("_ZN4HPHP15f_posix_geteuidEv"); -TypedValue* fg_posix_geteuid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_geteuid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -257,7 +257,7 @@ _ZN4HPHP14f_posix_getgidEv long fh_posix_getgid() asm("_ZN4HPHP14f_posix_getgidEv"); -TypedValue* fg_posix_getgid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getgid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -291,8 +291,8 @@ gid => rsi TypedValue* fh_posix_getgrgid(TypedValue* _rv, int gid) asm("_ZN4HPHP16f_posix_getgrgidEi"); -TypedValue * fg1_posix_getgrgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_getgrgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_getgrgid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_getgrgid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_posix_getgrgid((rv), (int)(args[-0].m_data.num)); @@ -300,7 +300,7 @@ TypedValue * fg1_posix_getgrgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_posix_getgrgid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getgrgid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -341,8 +341,8 @@ name => rsi TypedValue* fh_posix_getgrnam(TypedValue* _rv, Value* name) asm("_ZN4HPHP16f_posix_getgrnamERKNS_6StringE"); -TypedValue * fg1_posix_getgrnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_getgrnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_getgrnam(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_getgrnam(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_posix_getgrnam((rv), &args[-0].m_data); @@ -350,7 +350,7 @@ TypedValue * fg1_posix_getgrnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_posix_getgrnam(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getgrnam(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -390,7 +390,7 @@ _rv => rdi TypedValue* fh_posix_getgroups(TypedValue* _rv) asm("_ZN4HPHP17f_posix_getgroupsEv"); -TypedValue* fg_posix_getgroups(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getgroups(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -423,7 +423,7 @@ _rv => rdi TypedValue* fh_posix_getlogin(TypedValue* _rv) asm("_ZN4HPHP16f_posix_getloginEv"); -TypedValue* fg_posix_getlogin(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getlogin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -457,8 +457,8 @@ pid => rsi TypedValue* fh_posix_getpgid(TypedValue* _rv, int pid) asm("_ZN4HPHP15f_posix_getpgidEi"); -TypedValue * fg1_posix_getpgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_getpgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_getpgid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_getpgid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_posix_getpgid((rv), (int)(args[-0].m_data.num)); @@ -466,7 +466,7 @@ TypedValue * fg1_posix_getpgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_posix_getpgid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getpgid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -505,7 +505,7 @@ _ZN4HPHP15f_posix_getpgrpEv long fh_posix_getpgrp() asm("_ZN4HPHP15f_posix_getpgrpEv"); -TypedValue* fg_posix_getpgrp(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getpgrp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -537,7 +537,7 @@ _ZN4HPHP14f_posix_getpidEv long fh_posix_getpid() asm("_ZN4HPHP14f_posix_getpidEv"); -TypedValue* fg_posix_getpid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getpid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -569,7 +569,7 @@ _ZN4HPHP15f_posix_getppidEv long fh_posix_getppid() asm("_ZN4HPHP15f_posix_getppidEv"); -TypedValue* fg_posix_getppid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getppid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -603,8 +603,8 @@ username => rsi TypedValue* fh_posix_getpwnam(TypedValue* _rv, Value* username) asm("_ZN4HPHP16f_posix_getpwnamERKNS_6StringE"); -TypedValue * fg1_posix_getpwnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_getpwnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_getpwnam(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_getpwnam(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_posix_getpwnam((rv), &args[-0].m_data); @@ -612,7 +612,7 @@ TypedValue * fg1_posix_getpwnam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_posix_getpwnam(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getpwnam(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -653,8 +653,8 @@ uid => rsi TypedValue* fh_posix_getpwuid(TypedValue* _rv, int uid) asm("_ZN4HPHP16f_posix_getpwuidEi"); -TypedValue * fg1_posix_getpwuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_getpwuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_getpwuid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_getpwuid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_posix_getpwuid((rv), (int)(args[-0].m_data.num)); @@ -662,7 +662,7 @@ TypedValue * fg1_posix_getpwuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_posix_getpwuid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getpwuid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -702,7 +702,7 @@ _rv => rdi TypedValue* fh_posix_getrlimit(TypedValue* _rv) asm("_ZN4HPHP17f_posix_getrlimitEv"); -TypedValue* fg_posix_getrlimit(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getrlimit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -736,8 +736,8 @@ pid => rsi TypedValue* fh_posix_getsid(TypedValue* _rv, int pid) asm("_ZN4HPHP14f_posix_getsidEi"); -TypedValue * fg1_posix_getsid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_getsid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_getsid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_getsid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_posix_getsid((rv), (int)(args[-0].m_data.num)); @@ -745,7 +745,7 @@ TypedValue * fg1_posix_getsid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_posix_getsid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getsid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -784,7 +784,7 @@ _ZN4HPHP14f_posix_getuidEv long fh_posix_getuid() asm("_ZN4HPHP14f_posix_getuidEv"); -TypedValue* fg_posix_getuid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_getuid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -818,8 +818,8 @@ base_group_id => rsi bool fh_posix_initgroups(Value* name, int base_group_id) asm("_ZN4HPHP18f_posix_initgroupsERKNS_6StringEi"); -TypedValue * fg1_posix_initgroups(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_initgroups(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_initgroups(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_initgroups(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -832,7 +832,7 @@ TypedValue * fg1_posix_initgroups(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_posix_initgroups(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_initgroups(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -872,7 +872,7 @@ fd => rdi bool fh_posix_isatty(TypedValue* fd) asm("_ZN4HPHP14f_posix_isattyERKNS_7VariantE"); -TypedValue* fg_posix_isatty(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_isatty(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -906,8 +906,8 @@ sig => rsi bool fh_posix_kill(int pid, int sig) asm("_ZN4HPHP12f_posix_killEii"); -TypedValue * fg1_posix_kill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_kill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_kill(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_kill(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -920,7 +920,7 @@ TypedValue * fg1_posix_kill(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_posix_kill(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_kill(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -961,8 +961,8 @@ mode => rsi bool fh_posix_mkfifo(Value* pathname, int mode) asm("_ZN4HPHP14f_posix_mkfifoERKNS_6StringEi"); -TypedValue * fg1_posix_mkfifo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_mkfifo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_mkfifo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_mkfifo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -975,7 +975,7 @@ TypedValue * fg1_posix_mkfifo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_posix_mkfifo(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_mkfifo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1018,8 +1018,8 @@ minor => rcx bool fh_posix_mknod(Value* pathname, int mode, int major, int minor) asm("_ZN4HPHP13f_posix_mknodERKNS_6StringEiii"); -TypedValue * fg1_posix_mknod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_mknod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_mknod(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_mknod(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1044,7 +1044,7 @@ TypedValue * fg1_posix_mknod(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_posix_mknod(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_mknod(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1084,8 +1084,8 @@ gid => rdi bool fh_posix_setegid(int gid) asm("_ZN4HPHP15f_posix_setegidEi"); -TypedValue * fg1_posix_setegid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_setegid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_setegid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_setegid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1093,7 +1093,7 @@ TypedValue * fg1_posix_setegid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_posix_setegid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_setegid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1133,8 +1133,8 @@ uid => rdi bool fh_posix_seteuid(int uid) asm("_ZN4HPHP15f_posix_seteuidEi"); -TypedValue * fg1_posix_seteuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_seteuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_seteuid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_seteuid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1142,7 +1142,7 @@ TypedValue * fg1_posix_seteuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_posix_seteuid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_seteuid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1182,8 +1182,8 @@ gid => rdi bool fh_posix_setgid(int gid) asm("_ZN4HPHP14f_posix_setgidEi"); -TypedValue * fg1_posix_setgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_setgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_setgid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_setgid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1191,7 +1191,7 @@ TypedValue * fg1_posix_setgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_posix_setgid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_setgid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1232,8 +1232,8 @@ pgid => rsi bool fh_posix_setpgid(int pid, int pgid) asm("_ZN4HPHP15f_posix_setpgidEii"); -TypedValue * fg1_posix_setpgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_setpgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_setpgid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_setpgid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1246,7 +1246,7 @@ TypedValue * fg1_posix_setpgid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_posix_setpgid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_setpgid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1285,7 +1285,7 @@ _ZN4HPHP14f_posix_setsidEv long fh_posix_setsid() asm("_ZN4HPHP14f_posix_setsidEv"); -TypedValue* fg_posix_setsid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_setsid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1318,8 +1318,8 @@ uid => rdi bool fh_posix_setuid(int uid) asm("_ZN4HPHP14f_posix_setuidEi"); -TypedValue * fg1_posix_setuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_setuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_setuid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_setuid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1327,7 +1327,7 @@ TypedValue * fg1_posix_setuid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_posix_setuid(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_setuid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1368,8 +1368,8 @@ errnum => rsi Value* fh_posix_strerror(Value* _rv, int errnum) asm("_ZN4HPHP16f_posix_strerrorEi"); -TypedValue * fg1_posix_strerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_posix_strerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_posix_strerror(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_posix_strerror(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1378,7 +1378,7 @@ TypedValue * fg1_posix_strerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_posix_strerror(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_strerror(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1419,7 +1419,7 @@ _rv => rdi TypedValue* fh_posix_times(TypedValue* _rv) asm("_ZN4HPHP13f_posix_timesEv"); -TypedValue* fg_posix_times(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_times(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1453,7 +1453,7 @@ fd => rsi TypedValue* fh_posix_ttyname(TypedValue* _rv, TypedValue* fd) asm("_ZN4HPHP15f_posix_ttynameERKNS_7VariantE"); -TypedValue* fg_posix_ttyname(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_ttyname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1486,7 +1486,7 @@ _rv => rdi TypedValue* fh_posix_uname(TypedValue* _rv) asm("_ZN4HPHP13f_posix_unameEv"); -TypedValue* fg_posix_uname(HPHP::VM::ActRec *ar) { +TypedValue* fg_posix_uname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_preg.ext_hhvm.cpp b/hphp/runtime/ext/ext_preg.ext_hhvm.cpp index b99478f6e..955b2bb36 100644 --- a/hphp/runtime/ext/ext_preg.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_preg.ext_hhvm.cpp @@ -37,8 +37,8 @@ flags => rcx TypedValue* fh_preg_grep(TypedValue* _rv, Value* pattern, Value* input, int flags) asm("_ZN4HPHP11f_preg_grepERKNS_6StringERKNS_5ArrayEi"); -TypedValue * fg1_preg_grep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_preg_grep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_preg_grep(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_preg_grep(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -59,7 +59,7 @@ TypedValue * fg1_preg_grep(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_preg_grep(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_grep(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -104,8 +104,8 @@ offset => r9 TypedValue* fh_preg_match(TypedValue* _rv, Value* pattern, Value* subject, TypedValue* matches, int flags, int offset) asm("_ZN4HPHP12f_preg_matchERKNS_6StringES2_RKNS_14VRefParamValueEii"); -TypedValue * fg1_preg_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_preg_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_preg_match(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_preg_match(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -132,7 +132,7 @@ TypedValue * fg1_preg_match(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_preg_match(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_match(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -178,8 +178,8 @@ offset => r9 TypedValue* fh_preg_match_all(TypedValue* _rv, Value* pattern, Value* subject, TypedValue* matches, int flags, int offset) asm("_ZN4HPHP16f_preg_match_allERKNS_6StringES2_RKNS_14VRefParamValueEii"); -TypedValue * fg1_preg_match_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_preg_match_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_preg_match_all(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_preg_match_all(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -204,7 +204,7 @@ TypedValue * fg1_preg_match_all(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_preg_match_all(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_match_all(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -249,8 +249,8 @@ count => r9 TypedValue* fh_preg_replace(TypedValue* _rv, TypedValue* pattern, TypedValue* replacement, TypedValue* subject, int limit, TypedValue* count) asm("_ZN4HPHP14f_preg_replaceERKNS_7VariantES2_S2_iRKNS_14VRefParamValueE"); -TypedValue * fg1_preg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_preg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_preg_replace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_preg_replace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-3); VRefParamValue defVal4 = uninit_null(); @@ -259,7 +259,7 @@ TypedValue * fg1_preg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_preg_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -305,8 +305,8 @@ count => r9 TypedValue* fh_preg_replace_callback(TypedValue* _rv, TypedValue* pattern, TypedValue* callback, TypedValue* subject, int limit, TypedValue* count) asm("_ZN4HPHP23f_preg_replace_callbackERKNS_7VariantES2_S2_iRKNS_14VRefParamValueE"); -TypedValue * fg1_preg_replace_callback(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_preg_replace_callback(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_preg_replace_callback(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_preg_replace_callback(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-3); VRefParamValue defVal4 = uninit_null(); @@ -315,7 +315,7 @@ TypedValue * fg1_preg_replace_callback(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_preg_replace_callback(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_replace_callback(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -360,8 +360,8 @@ flags => r8 TypedValue* fh_preg_split(TypedValue* _rv, TypedValue* pattern, TypedValue* subject, int limit, int flags) asm("_ZN4HPHP12f_preg_splitERKNS_7VariantES2_ii"); -TypedValue * fg1_preg_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_preg_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_preg_split(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_preg_split(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -380,7 +380,7 @@ TypedValue * fg1_preg_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_preg_split(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_split(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -422,8 +422,8 @@ delimiter => rdx Value* fh_preg_quote(Value* _rv, Value* str, Value* delimiter) asm("_ZN4HPHP12f_preg_quoteERKNS_6StringES2_"); -TypedValue * fg1_preg_quote(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_preg_quote(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_preg_quote(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_preg_quote(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -442,7 +442,7 @@ TypedValue * fg1_preg_quote(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_preg_quote(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_quote(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -482,7 +482,7 @@ _ZN4HPHP17f_preg_last_errorEv long fh_preg_last_error() asm("_ZN4HPHP17f_preg_last_errorEv"); -TypedValue* fg_preg_last_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_preg_last_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -518,8 +518,8 @@ str => rcx Value* fh_ereg_replace(Value* _rv, Value* pattern, Value* replacement, Value* str) asm("_ZN4HPHP14f_ereg_replaceERKNS_6StringES2_S2_"); -TypedValue * fg1_ereg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ereg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ereg_replace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ereg_replace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -536,7 +536,7 @@ TypedValue * fg1_ereg_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_ereg_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_ereg_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -580,8 +580,8 @@ str => rcx Value* fh_eregi_replace(Value* _rv, Value* pattern, Value* replacement, Value* str) asm("_ZN4HPHP15f_eregi_replaceERKNS_6StringES2_S2_"); -TypedValue * fg1_eregi_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_eregi_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_eregi_replace(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_eregi_replace(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -598,7 +598,7 @@ TypedValue * fg1_eregi_replace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_eregi_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_eregi_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -642,8 +642,8 @@ regs => rcx TypedValue* fh_ereg(TypedValue* _rv, Value* pattern, Value* str, TypedValue* regs) asm("_ZN4HPHP6f_eregERKNS_6StringES2_RKNS_14VRefParamValueE"); -TypedValue * fg1_ereg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ereg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ereg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ereg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -662,7 +662,7 @@ TypedValue * fg1_ereg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ereg(HPHP::VM::ActRec *ar) { +TypedValue* fg_ereg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -706,8 +706,8 @@ regs => rcx TypedValue* fh_eregi(TypedValue* _rv, Value* pattern, Value* str, TypedValue* regs) asm("_ZN4HPHP7f_eregiERKNS_6StringES2_RKNS_14VRefParamValueE"); -TypedValue * fg1_eregi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_eregi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_eregi(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_eregi(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -726,7 +726,7 @@ TypedValue * fg1_eregi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_eregi(HPHP::VM::ActRec *ar) { +TypedValue* fg_eregi(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -770,8 +770,8 @@ limit => rcx TypedValue* fh_split(TypedValue* _rv, Value* pattern, Value* str, int limit) asm("_ZN4HPHP7f_splitERKNS_6StringES2_i"); -TypedValue * fg1_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_split(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_split(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -792,7 +792,7 @@ TypedValue * fg1_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_split(HPHP::VM::ActRec *ar) { +TypedValue* fg_split(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -835,8 +835,8 @@ limit => rcx TypedValue* fh_spliti(TypedValue* _rv, Value* pattern, Value* str, int limit) asm("_ZN4HPHP8f_splitiERKNS_6StringES2_i"); -TypedValue * fg1_spliti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_spliti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_spliti(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_spliti(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -857,7 +857,7 @@ TypedValue * fg1_spliti(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_spliti(HPHP::VM::ActRec *ar) { +TypedValue* fg_spliti(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -898,8 +898,8 @@ str => rsi Value* fh_sql_regcase(Value* _rv, Value* str) asm("_ZN4HPHP13f_sql_regcaseERKNS_6StringE"); -TypedValue * fg1_sql_regcase(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sql_regcase(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sql_regcase(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sql_regcase(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -908,7 +908,7 @@ TypedValue * fg1_sql_regcase(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_sql_regcase(HPHP::VM::ActRec *ar) { +TypedValue* fg_sql_regcase(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_process.ext_hhvm.cpp b/hphp/runtime/ext/ext_process.ext_hhvm.cpp index 2d5efc50e..3586dbe96 100644 --- a/hphp/runtime/ext/ext_process.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_process.ext_hhvm.cpp @@ -34,8 +34,8 @@ seconds => rdi long fh_pcntl_alarm(int seconds) asm("_ZN4HPHP13f_pcntl_alarmEi"); -TypedValue * fg1_pcntl_alarm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_alarm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_alarm(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_alarm(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -43,7 +43,7 @@ TypedValue * fg1_pcntl_alarm(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_pcntl_alarm(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_alarm(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -84,8 +84,8 @@ envs => rdx void fh_pcntl_exec(Value* path, Value* args, Value* envs) asm("_ZN4HPHP12f_pcntl_execERKNS_6StringERKNS_5ArrayES5_"); -TypedValue * fg1_pcntl_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_exec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_exec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -108,7 +108,7 @@ TypedValue * fg1_pcntl_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_pcntl_exec(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_exec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -148,7 +148,7 @@ _ZN4HPHP12f_pcntl_forkEv long fh_pcntl_fork() asm("_ZN4HPHP12f_pcntl_forkEv"); -TypedValue* fg_pcntl_fork(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_fork(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -183,8 +183,8 @@ process_identifier => rdx TypedValue* fh_pcntl_getpriority(TypedValue* _rv, int pid, int process_identifier) asm("_ZN4HPHP19f_pcntl_getpriorityEii"); -TypedValue * fg1_pcntl_getpriority(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_getpriority(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_getpriority(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_getpriority(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -203,7 +203,7 @@ TypedValue * fg1_pcntl_getpriority(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_pcntl_getpriority(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_getpriority(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -245,8 +245,8 @@ process_identifier => rdx bool fh_pcntl_setpriority(int priority, int pid, int process_identifier) asm("_ZN4HPHP19f_pcntl_setpriorityEiii"); -TypedValue * fg1_pcntl_setpriority(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_setpriority(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_setpriority(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_setpriority(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -268,7 +268,7 @@ TypedValue * fg1_pcntl_setpriority(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_pcntl_setpriority(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_setpriority(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -310,8 +310,8 @@ restart_syscalls => rdx bool fh_pcntl_signal(int signo, TypedValue* handler, bool restart_syscalls) asm("_ZN4HPHP14f_pcntl_signalEiRKNS_7VariantEb"); -TypedValue * fg1_pcntl_signal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_signal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_signal(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_signal(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -329,7 +329,7 @@ TypedValue * fg1_pcntl_signal(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_pcntl_signal(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_signal(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -370,8 +370,8 @@ options => rsi long fh_pcntl_wait(TypedValue* status, int options) asm("_ZN4HPHP12f_pcntl_waitERKNS_14VRefParamValueEi"); -TypedValue * fg1_pcntl_wait(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_wait(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_wait(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_wait(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-1); @@ -379,7 +379,7 @@ TypedValue * fg1_pcntl_wait(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_pcntl_wait(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_wait(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -421,8 +421,8 @@ options => rdx long fh_pcntl_waitpid(int pid, TypedValue* status, int options) asm("_ZN4HPHP15f_pcntl_waitpidEiRKNS_14VRefParamValueEi"); -TypedValue * fg1_pcntl_waitpid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_waitpid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_waitpid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_waitpid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -440,7 +440,7 @@ TypedValue * fg1_pcntl_waitpid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_pcntl_waitpid(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_waitpid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -480,8 +480,8 @@ status => rdi long fh_pcntl_wexitstatus(int status) asm("_ZN4HPHP19f_pcntl_wexitstatusEi"); -TypedValue * fg1_pcntl_wexitstatus(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_wexitstatus(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_wexitstatus(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_wexitstatus(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -489,7 +489,7 @@ TypedValue * fg1_pcntl_wexitstatus(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_pcntl_wexitstatus(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_wexitstatus(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -529,8 +529,8 @@ status => rdi bool fh_pcntl_wifexited(int status) asm("_ZN4HPHP17f_pcntl_wifexitedEi"); -TypedValue * fg1_pcntl_wifexited(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_wifexited(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_wifexited(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_wifexited(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -538,7 +538,7 @@ TypedValue * fg1_pcntl_wifexited(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_pcntl_wifexited(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_wifexited(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -578,8 +578,8 @@ status => rdi bool fh_pcntl_wifsignaled(int status) asm("_ZN4HPHP19f_pcntl_wifsignaledEi"); -TypedValue * fg1_pcntl_wifsignaled(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_wifsignaled(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_wifsignaled(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_wifsignaled(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -587,7 +587,7 @@ TypedValue * fg1_pcntl_wifsignaled(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_pcntl_wifsignaled(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_wifsignaled(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -627,8 +627,8 @@ status => rdi bool fh_pcntl_wifstopped(int status) asm("_ZN4HPHP18f_pcntl_wifstoppedEi"); -TypedValue * fg1_pcntl_wifstopped(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_wifstopped(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_wifstopped(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_wifstopped(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -636,7 +636,7 @@ TypedValue * fg1_pcntl_wifstopped(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_pcntl_wifstopped(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_wifstopped(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -676,8 +676,8 @@ status => rdi long fh_pcntl_wstopsig(int status) asm("_ZN4HPHP16f_pcntl_wstopsigEi"); -TypedValue * fg1_pcntl_wstopsig(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_wstopsig(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_wstopsig(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_wstopsig(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -685,7 +685,7 @@ TypedValue * fg1_pcntl_wstopsig(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_pcntl_wstopsig(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_wstopsig(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -725,8 +725,8 @@ status => rdi long fh_pcntl_wtermsig(int status) asm("_ZN4HPHP16f_pcntl_wtermsigEi"); -TypedValue * fg1_pcntl_wtermsig(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pcntl_wtermsig(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pcntl_wtermsig(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pcntl_wtermsig(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -734,7 +734,7 @@ TypedValue * fg1_pcntl_wtermsig(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_pcntl_wtermsig(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_wtermsig(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -773,7 +773,7 @@ _ZN4HPHP23f_pcntl_signal_dispatchEv bool fh_pcntl_signal_dispatch() asm("_ZN4HPHP23f_pcntl_signal_dispatchEv"); -TypedValue* fg_pcntl_signal_dispatch(HPHP::VM::ActRec *ar) { +TypedValue* fg_pcntl_signal_dispatch(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -807,8 +807,8 @@ cmd => rsi Value* fh_shell_exec(Value* _rv, Value* cmd) asm("_ZN4HPHP12f_shell_execERKNS_6StringE"); -TypedValue * fg1_shell_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_shell_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_shell_exec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_shell_exec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -817,7 +817,7 @@ TypedValue * fg1_shell_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_shell_exec(HPHP::VM::ActRec *ar) { +TypedValue* fg_shell_exec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -861,8 +861,8 @@ return_var => rcx Value* fh_exec(Value* _rv, Value* command, TypedValue* output, TypedValue* return_var) asm("_ZN4HPHP6f_execERKNS_6StringERKNS_14VRefParamValueES5_"); -TypedValue * fg1_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_exec(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_exec(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -873,7 +873,7 @@ TypedValue * fg1_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_exec(HPHP::VM::ActRec *ar) { +TypedValue* fg_exec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -916,8 +916,8 @@ return_var => rsi void fh_passthru(Value* command, TypedValue* return_var) asm("_ZN4HPHP10f_passthruERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_passthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_passthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_passthru(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_passthru(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -927,7 +927,7 @@ TypedValue * fg1_passthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_passthru(HPHP::VM::ActRec *ar) { +TypedValue* fg_passthru(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -971,8 +971,8 @@ return_var => rdx Value* fh_system(Value* _rv, Value* command, TypedValue* return_var) asm("_ZN4HPHP8f_systemERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_system(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_system(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_system(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_system(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -982,7 +982,7 @@ TypedValue * fg1_system(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_system(HPHP::VM::ActRec *ar) { +TypedValue* fg_system(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1030,8 +1030,8 @@ other_options => st0 TypedValue* fh_proc_open(TypedValue* _rv, Value* cmd, Value* descriptorspec, TypedValue* pipes, Value* cwd, TypedValue* env, TypedValue* other_options) asm("_ZN4HPHP11f_proc_openERKNS_6StringERKNS_5ArrayERKNS_14VRefParamValueES2_RKNS_7VariantESB_"); -TypedValue * fg1_proc_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_proc_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_proc_open(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_proc_open(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1054,7 +1054,7 @@ TypedValue * fg1_proc_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_proc_open(HPHP::VM::ActRec *ar) { +TypedValue* fg_proc_open(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1095,8 +1095,8 @@ signal => rsi bool fh_proc_terminate(Value* process, int signal) asm("_ZN4HPHP16f_proc_terminateERKNS_6ObjectEi"); -TypedValue * fg1_proc_terminate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_proc_terminate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_proc_terminate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_proc_terminate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1114,7 +1114,7 @@ TypedValue * fg1_proc_terminate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_proc_terminate(HPHP::VM::ActRec *ar) { +TypedValue* fg_proc_terminate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1154,8 +1154,8 @@ process => rdi long fh_proc_close(Value* process) asm("_ZN4HPHP12f_proc_closeERKNS_6ObjectE"); -TypedValue * fg1_proc_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_proc_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_proc_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_proc_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1163,7 +1163,7 @@ TypedValue * fg1_proc_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_proc_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_proc_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1204,8 +1204,8 @@ process => rsi Value* fh_proc_get_status(Value* _rv, Value* process) asm("_ZN4HPHP17f_proc_get_statusERKNS_6ObjectE"); -TypedValue * fg1_proc_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_proc_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_proc_get_status(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_proc_get_status(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToObjectInPlace(args-0); @@ -1214,7 +1214,7 @@ TypedValue * fg1_proc_get_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_proc_get_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_proc_get_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1255,8 +1255,8 @@ increment => rdi bool fh_proc_nice(int increment) asm("_ZN4HPHP11f_proc_niceEi"); -TypedValue * fg1_proc_nice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_proc_nice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_proc_nice(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_proc_nice(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1264,7 +1264,7 @@ TypedValue * fg1_proc_nice(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_proc_nice(HPHP::VM::ActRec *ar) { +TypedValue* fg_proc_nice(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1305,8 +1305,8 @@ arg => rsi Value* fh_escapeshellarg(Value* _rv, Value* arg) asm("_ZN4HPHP16f_escapeshellargERKNS_6StringE"); -TypedValue * fg1_escapeshellarg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_escapeshellarg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_escapeshellarg(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_escapeshellarg(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1315,7 +1315,7 @@ TypedValue * fg1_escapeshellarg(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_escapeshellarg(HPHP::VM::ActRec *ar) { +TypedValue* fg_escapeshellarg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1357,8 +1357,8 @@ command => rsi Value* fh_escapeshellcmd(Value* _rv, Value* command) asm("_ZN4HPHP16f_escapeshellcmdERKNS_6StringE"); -TypedValue * fg1_escapeshellcmd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_escapeshellcmd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_escapeshellcmd(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_escapeshellcmd(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1367,7 +1367,7 @@ TypedValue * fg1_escapeshellcmd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_escapeshellcmd(HPHP::VM::ActRec *ar) { +TypedValue* fg_escapeshellcmd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_reflection.cpp b/hphp/runtime/ext/ext_reflection.cpp index 783ca3613..0631c6c7c 100644 --- a/hphp/runtime/ext/ext_reflection.cpp +++ b/hphp/runtime/ext/ext_reflection.cpp @@ -122,14 +122,14 @@ int get_modifiers(int attribute, bool cls) { return php_modifier; } -int get_modifiers(VM::Attr attrs, bool cls) { +int get_modifiers(Attr attrs, bool cls) { int php_modifier = 0; - if (attrs & VM::AttrAbstract) php_modifier |= cls ? 0x20 : 0x02; - if (attrs & VM::AttrFinal) php_modifier |= cls ? 0x40 : 0x04; - if (attrs & VM::AttrStatic) php_modifier |= 0x01; - if (attrs & VM::AttrPublic) php_modifier |= 0x100; - if (attrs & VM::AttrProtected) php_modifier |= 0x200; - if (attrs & VM::AttrPrivate) php_modifier |= 0x400; + if (attrs & AttrAbstract) php_modifier |= cls ? 0x20 : 0x02; + if (attrs & AttrFinal) php_modifier |= cls ? 0x40 : 0x04; + if (attrs & AttrStatic) php_modifier |= 0x01; + if (attrs & AttrPublic) php_modifier |= 0x100; + if (attrs & AttrProtected) php_modifier |= 0x200; + if (attrs & AttrPrivate) php_modifier |= 0x400; return php_modifier; } @@ -323,7 +323,7 @@ static void set_function_info(Array &ret, const ClassInfo::MethodInfo *info, static void set_function_info(Array &ret, const VM::Func* func) { // return type - if (func->attrs() & VM::AttrReference) { + if (func->attrs() & AttrReference) { ret.set(s_ref, true_varNR); } if (func->isBuiltin()) { @@ -442,7 +442,7 @@ static bool isConstructor(const VM::Func* func) { if (func->cls()) return func == func->cls()->getCtor(); /* A same named function is not a constructor in a trait, or if the function was imported from a trait */ - if ((pcls->attrs() | func->attrs()) & VM::AttrTrait) return false; + if ((pcls->attrs() | func->attrs()) & AttrTrait) return false; if (!strcasecmp("__construct", func->name()->data())) return true; return pcls->name()->isame(func->name()); } @@ -488,7 +488,7 @@ Array f_hphp_get_method_info(CVarRef cls, CVarRef name) { CStrRef method_name = name.toString(); const VM::Func* func = c->lookupMethod(method_name.get()); if (!func) { - if (c->attrs() & VM::AttrAbstract) { + if (c->attrs() & AttrAbstract) { VM::ClassSet::const_iterator it = c->allInterfaces().begin(), end = c->allInterfaces().end(); while (it != end) { @@ -721,16 +721,16 @@ Array f_hphp_get_class_info(CVarRef name) { if (false && ClassInfo::HipHopSpecific) { ret.set(s_hphp, true_varNR); } - if (cls->attrs() & VM::AttrFinal) { + if (cls->attrs() & AttrFinal) { ret.set(s_final, true_varNR); } - if (cls->attrs() & VM::AttrAbstract) { + if (cls->attrs() & AttrAbstract) { ret.set(s_abstract, true_varNR); } - if (cls->attrs() & VM::AttrInterface) { + if (cls->attrs() & AttrInterface) { ret.set(s_interface, true_varNR); } - if (cls->attrs() & VM::AttrTrait) { + if (cls->attrs() & AttrTrait) { ret.set(s_trait, true_varNR); } ret.set(s_modifiers, VarNR(get_modifiers(cls->attrs(), true))); @@ -741,7 +741,7 @@ Array f_hphp_get_class_info(CVarRef name) { Array arr = Array::Create(); VM::Func* const* methods = cls->preClass()->methods(); size_t const numMethods = cls->preClass()->numMethods(); - for (VM::Slot i = 0; i < numMethods; ++i) { + for (Slot i = 0; i < numMethods; ++i) { const VM::Func* m = methods[i]; if (isdigit(m->name()->data()[0])) continue; Array info = Array::Create(); @@ -750,7 +750,7 @@ Array f_hphp_get_class_info(CVarRef name) { } VM::Func* const* clsMethods = cls->methods(); - for (VM::Slot i = cls->traitsBeginIdx(); + for (Slot i = cls->traitsBeginIdx(); i < cls->traitsEndIdx(); ++i) { const VM::Func* m = clsMethods[i]; @@ -770,10 +770,10 @@ Array f_hphp_get_class_info(CVarRef name) { const VM::Class::Prop* properties = cls->declProperties(); const size_t nProps = cls->numDeclProperties(); - for (VM::Slot i = 0; i < nProps; ++i) { + for (Slot i = 0; i < nProps; ++i) { const VM::Class::Prop& prop = properties[i]; Array info = Array::Create(); - if ((prop.m_attrs & VM::AttrPrivate) == VM::AttrPrivate) { + if ((prop.m_attrs & AttrPrivate) == AttrPrivate) { if (prop.m_class == cls) { set_instance_prop_info(info, &prop); arrPriv.set(*(String*)(&prop.m_name), VarNR(info)); @@ -787,10 +787,10 @@ Array f_hphp_get_class_info(CVarRef name) { const VM::Class::SProp* staticProperties = cls->staticProperties(); const size_t nSProps = cls->numStaticProperties(); - for (VM::Slot i = 0; i < nSProps; ++i) { + for (Slot i = 0; i < nSProps; ++i) { const VM::Class::SProp& prop = staticProperties[i]; Array info = Array::Create(); - if ((prop.m_attrs & VM::AttrPrivate) == VM::AttrPrivate) { + if ((prop.m_attrs & AttrPrivate) == AttrPrivate) { if (prop.m_class == cls) { set_static_prop_info(info, &prop); arrPriv.set(*(String*)(&prop.m_name), VarNR(info)); diff --git a/hphp/runtime/ext/ext_reflection.ext_hhvm.cpp b/hphp/runtime/ext/ext_reflection.ext_hhvm.cpp index d5a4bc034..f26cd1b99 100644 --- a/hphp/runtime/ext/ext_reflection.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_reflection.ext_hhvm.cpp @@ -35,8 +35,8 @@ name => rsi Value* fh_hphp_get_extension_info(Value* _rv, Value* name) asm("_ZN4HPHP25f_hphp_get_extension_infoERKNS_6StringE"); -TypedValue * fg1_hphp_get_extension_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_get_extension_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_get_extension_info(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_get_extension_info(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -45,7 +45,7 @@ TypedValue * fg1_hphp_get_extension_info(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_hphp_get_extension_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_extension_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -88,7 +88,7 @@ name => rdx Value* fh_hphp_get_method_info(Value* _rv, TypedValue* cname, TypedValue* name) asm("_ZN4HPHP22f_hphp_get_method_infoERKNS_7VariantES2_"); -TypedValue* fg_hphp_get_method_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_method_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -123,7 +123,7 @@ closure => rsi Value* fh_hphp_get_closure_info(Value* _rv, TypedValue* closure) asm("_ZN4HPHP23f_hphp_get_closure_infoERKNS_7VariantE"); -TypedValue* fg_hphp_get_closure_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_closure_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -159,7 +159,7 @@ name => rdx TypedValue* fh_hphp_get_class_constant(TypedValue* _rv, TypedValue* cls, TypedValue* name) asm("_ZN4HPHP25f_hphp_get_class_constantERKNS_7VariantES2_"); -TypedValue* fg_hphp_get_class_constant(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_class_constant(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -193,7 +193,7 @@ name => rsi Value* fh_hphp_get_class_info(Value* _rv, TypedValue* name) asm("_ZN4HPHP21f_hphp_get_class_infoERKNS_7VariantE"); -TypedValue* fg_hphp_get_class_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_class_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -228,8 +228,8 @@ name => rsi Value* fh_hphp_get_function_info(Value* _rv, Value* name) asm("_ZN4HPHP24f_hphp_get_function_infoERKNS_6StringE"); -TypedValue * fg1_hphp_get_function_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_get_function_info(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_get_function_info(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_get_function_info(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToStringInPlace(args-0); @@ -238,7 +238,7 @@ TypedValue * fg1_hphp_get_function_info(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_hphp_get_function_info(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_function_info(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -281,8 +281,8 @@ params => rdx TypedValue* fh_hphp_invoke(TypedValue* _rv, Value* name, Value* params) asm("_ZN4HPHP13f_hphp_invokeERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_hphp_invoke(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_invoke(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_invoke(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_invoke(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfArray) { tvCastToArrayInPlace(args-1); @@ -295,7 +295,7 @@ TypedValue * fg1_hphp_invoke(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_hphp_invoke(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_invoke(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -339,8 +339,8 @@ params => r8 TypedValue* fh_hphp_invoke_method(TypedValue* _rv, TypedValue* obj, Value* cls, Value* name, Value* params) asm("_ZN4HPHP20f_hphp_invoke_methodERKNS_7VariantERKNS_6StringES5_RKNS_5ArrayE"); -TypedValue * fg1_hphp_invoke_method(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_invoke_method(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_invoke_method(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_invoke_method(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfArray) { tvCastToArrayInPlace(args-3); @@ -356,7 +356,7 @@ TypedValue * fg1_hphp_invoke_method(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_hphp_invoke_method(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_invoke_method(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -397,8 +397,8 @@ name => rsi bool fh_hphp_instanceof(Value* obj, Value* name) asm("_ZN4HPHP17f_hphp_instanceofERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_instanceof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_instanceof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_instanceof(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_instanceof(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -411,7 +411,7 @@ TypedValue * fg1_hphp_instanceof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_hphp_instanceof(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_instanceof(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -453,8 +453,8 @@ params => rdx Value* fh_hphp_create_object(Value* _rv, Value* name, Value* params) asm("_ZN4HPHP20f_hphp_create_objectERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_hphp_create_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_create_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_create_object(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_create_object(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-1)->m_type != KindOfArray) { @@ -468,7 +468,7 @@ TypedValue * fg1_hphp_create_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_hphp_create_object(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_create_object(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -510,8 +510,8 @@ name => rsi Value* fh_hphp_create_object_without_constructor(Value* _rv, Value* name) asm("_ZN4HPHP40f_hphp_create_object_without_constructorERKNS_6StringE"); -TypedValue * fg1_hphp_create_object_without_constructor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_create_object_without_constructor(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_create_object_without_constructor(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_create_object_without_constructor(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -520,7 +520,7 @@ TypedValue * fg1_hphp_create_object_without_constructor(TypedValue* rv, HPHP::VM return rv; } -TypedValue* fg_hphp_create_object_without_constructor(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_create_object_without_constructor(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -564,8 +564,8 @@ prop => rcx TypedValue* fh_hphp_get_property(TypedValue* _rv, Value* obj, Value* cls, Value* prop) asm("_ZN4HPHP19f_hphp_get_propertyERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_hphp_get_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_get_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_get_property(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_get_property(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -581,7 +581,7 @@ TypedValue * fg1_hphp_get_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_hphp_get_property(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_property(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -623,8 +623,8 @@ value => rcx void fh_hphp_set_property(Value* obj, Value* cls, Value* prop, TypedValue* value) asm("_ZN4HPHP19f_hphp_set_propertyERKNS_6ObjectERKNS_6StringES5_RKNS_7VariantE"); -TypedValue * fg1_hphp_set_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_set_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_set_property(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_set_property(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -641,7 +641,7 @@ TypedValue * fg1_hphp_set_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_hphp_set_property(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_set_property(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -684,8 +684,8 @@ prop => rdx TypedValue* fh_hphp_get_static_property(TypedValue* _rv, Value* cls, Value* prop) asm("_ZN4HPHP26f_hphp_get_static_propertyERKNS_6StringES2_"); -TypedValue * fg1_hphp_get_static_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_get_static_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_get_static_property(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_get_static_property(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -698,7 +698,7 @@ TypedValue * fg1_hphp_get_static_property(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_get_static_property(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_static_property(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -739,8 +739,8 @@ value => rdx void fh_hphp_set_static_property(Value* cls, Value* prop, TypedValue* value) asm("_ZN4HPHP26f_hphp_set_static_propertyERKNS_6StringES2_RKNS_7VariantE"); -TypedValue * fg1_hphp_set_static_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_set_static_property(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_set_static_property(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_set_static_property(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -754,7 +754,7 @@ TypedValue * fg1_hphp_set_static_property(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_set_static_property(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_set_static_property(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -796,8 +796,8 @@ name => rsi Value* fh_hphp_get_original_class_name(Value* _rv, Value* name) asm("_ZN4HPHP30f_hphp_get_original_class_nameERKNS_6StringE"); -TypedValue * fg1_hphp_get_original_class_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_get_original_class_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_get_original_class_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_get_original_class_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -806,7 +806,7 @@ TypedValue * fg1_hphp_get_original_class_name(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_get_original_class_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_original_class_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -846,7 +846,7 @@ _ZN4HPHP31f_hphp_scalar_typehints_enabledEv bool fh_hphp_scalar_typehints_enabled() asm("_ZN4HPHP31f_hphp_scalar_typehints_enabledEv"); -TypedValue* fg_hphp_scalar_typehints_enabled(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_scalar_typehints_enabled(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_server.ext_hhvm.cpp b/hphp/runtime/ext/ext_server.ext_hhvm.cpp index 2c0f80b2d..23322bad3 100644 --- a/hphp/runtime/ext/ext_server.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_server.ext_hhvm.cpp @@ -33,7 +33,7 @@ _ZN4HPHP35f_dangling_server_proxy_old_requestEv bool fh_dangling_server_proxy_old_request() asm("_ZN4HPHP35f_dangling_server_proxy_old_requestEv"); -TypedValue* fg_dangling_server_proxy_old_request(HPHP::VM::ActRec *ar) { +TypedValue* fg_dangling_server_proxy_old_request(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -66,8 +66,8 @@ host => rdi bool fh_dangling_server_proxy_new_request(Value* host) asm("_ZN4HPHP35f_dangling_server_proxy_new_requestERKNS_6StringE"); -TypedValue * fg1_dangling_server_proxy_new_request(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_dangling_server_proxy_new_request(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_dangling_server_proxy_new_request(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_dangling_server_proxy_new_request(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -75,7 +75,7 @@ TypedValue * fg1_dangling_server_proxy_new_request(TypedValue* rv, HPHP::VM::Act return rv; } -TypedValue* fg_dangling_server_proxy_new_request(HPHP::VM::ActRec *ar) { +TypedValue* fg_dangling_server_proxy_new_request(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -114,7 +114,7 @@ _ZN4HPHP27f_pagelet_server_is_enabledEv bool fh_pagelet_server_is_enabled() asm("_ZN4HPHP27f_pagelet_server_is_enabledEv"); -TypedValue* fg_pagelet_server_is_enabled(HPHP::VM::ActRec *ar) { +TypedValue* fg_pagelet_server_is_enabled(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -151,8 +151,8 @@ files => r8 Value* fh_pagelet_server_task_start(Value* _rv, Value* url, Value* headers, Value* post_data, Value* files) asm("_ZN4HPHP27f_pagelet_server_task_startERKNS_6StringERKNS_5ArrayES2_S5_"); -TypedValue * fg1_pagelet_server_task_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pagelet_server_task_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pagelet_server_task_start(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pagelet_server_task_start(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -179,7 +179,7 @@ TypedValue * fg1_pagelet_server_task_start(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_pagelet_server_task_start(HPHP::VM::ActRec *ar) { +TypedValue* fg_pagelet_server_task_start(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -220,8 +220,8 @@ task => rdi long fh_pagelet_server_task_status(Value* task) asm("_ZN4HPHP28f_pagelet_server_task_statusERKNS_6ObjectE"); -TypedValue * fg1_pagelet_server_task_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pagelet_server_task_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pagelet_server_task_status(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pagelet_server_task_status(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -229,7 +229,7 @@ TypedValue * fg1_pagelet_server_task_status(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_pagelet_server_task_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_pagelet_server_task_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -273,8 +273,8 @@ timeout_ms => r8 Value* fh_pagelet_server_task_result(Value* _rv, Value* task, TypedValue* headers, TypedValue* code, long timeout_ms) asm("_ZN4HPHP28f_pagelet_server_task_resultERKNS_6ObjectERKNS_14VRefParamValueES5_l"); -TypedValue * fg1_pagelet_server_task_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pagelet_server_task_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pagelet_server_task_result(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pagelet_server_task_result(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -293,7 +293,7 @@ TypedValue * fg1_pagelet_server_task_result(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_pagelet_server_task_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_pagelet_server_task_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -332,7 +332,7 @@ _ZN4HPHP22f_pagelet_server_flushEv void fh_pagelet_server_flush() asm("_ZN4HPHP22f_pagelet_server_flushEv"); -TypedValue* fg_pagelet_server_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_pagelet_server_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -369,8 +369,8 @@ host => rcx bool fh_xbox_send_message(Value* msg, TypedValue* ret, long timeout_ms, Value* host) asm("_ZN4HPHP19f_xbox_send_messageERKNS_6StringERKNS_14VRefParamValueElS2_"); -TypedValue * fg1_xbox_send_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xbox_send_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xbox_send_message(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xbox_send_message(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -392,7 +392,7 @@ TypedValue * fg1_xbox_send_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xbox_send_message(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_send_message(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -434,8 +434,8 @@ host => rsi bool fh_xbox_post_message(Value* msg, Value* host) asm("_ZN4HPHP19f_xbox_post_messageERKNS_6StringES2_"); -TypedValue * fg1_xbox_post_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xbox_post_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xbox_post_message(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xbox_post_message(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -454,7 +454,7 @@ TypedValue * fg1_xbox_post_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xbox_post_message(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_post_message(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -496,8 +496,8 @@ message => rsi Value* fh_xbox_task_start(Value* _rv, Value* message) asm("_ZN4HPHP17f_xbox_task_startERKNS_6StringE"); -TypedValue * fg1_xbox_task_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xbox_task_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xbox_task_start(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xbox_task_start(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -506,7 +506,7 @@ TypedValue * fg1_xbox_task_start(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_xbox_task_start(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_task_start(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -547,8 +547,8 @@ task => rdi bool fh_xbox_task_status(Value* task) asm("_ZN4HPHP18f_xbox_task_statusERKNS_6ObjectE"); -TypedValue * fg1_xbox_task_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xbox_task_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xbox_task_status(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xbox_task_status(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -556,7 +556,7 @@ TypedValue * fg1_xbox_task_status(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xbox_task_status(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_task_status(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -598,8 +598,8 @@ ret => rdx long fh_xbox_task_result(Value* task, long timeout_ms, TypedValue* ret) asm("_ZN4HPHP18f_xbox_task_resultERKNS_6ObjectElRKNS_14VRefParamValueE"); -TypedValue * fg1_xbox_task_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xbox_task_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xbox_task_result(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xbox_task_result(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-1)->m_type != KindOfInt64) { @@ -612,7 +612,7 @@ TypedValue * fg1_xbox_task_result(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xbox_task_result(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_task_result(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -653,8 +653,8 @@ msg => rsi TypedValue* fh_xbox_process_call_message(TypedValue* _rv, Value* msg) asm("_ZN4HPHP27f_xbox_process_call_messageERKNS_6StringE"); -TypedValue * fg1_xbox_process_call_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xbox_process_call_message(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xbox_process_call_message(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xbox_process_call_message(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_xbox_process_call_message((rv), &args[-0].m_data); @@ -662,7 +662,7 @@ TypedValue * fg1_xbox_process_call_message(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_xbox_process_call_message(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_process_call_message(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -701,7 +701,7 @@ _ZN4HPHP25f_xbox_get_thread_timeoutEv long fh_xbox_get_thread_timeout() asm("_ZN4HPHP25f_xbox_get_thread_timeoutEv"); -TypedValue* fg_xbox_get_thread_timeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_get_thread_timeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -733,8 +733,8 @@ timeout => rdi void fh_xbox_set_thread_timeout(int timeout) asm("_ZN4HPHP25f_xbox_set_thread_timeoutEi"); -TypedValue * fg1_xbox_set_thread_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xbox_set_thread_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xbox_set_thread_timeout(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xbox_set_thread_timeout(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -743,7 +743,7 @@ TypedValue * fg1_xbox_set_thread_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xbox_set_thread_timeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_set_thread_timeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -782,7 +782,7 @@ _ZN4HPHP28f_xbox_schedule_thread_resetEv void fh_xbox_schedule_thread_reset() asm("_ZN4HPHP28f_xbox_schedule_thread_resetEv"); -TypedValue* fg_xbox_schedule_thread_reset(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_schedule_thread_reset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -815,7 +815,7 @@ _ZN4HPHP22f_xbox_get_thread_timeEv long fh_xbox_get_thread_time() asm("_ZN4HPHP22f_xbox_get_thread_timeEv"); -TypedValue* fg_xbox_get_thread_time(HPHP::VM::ActRec *ar) { +TypedValue* fg_xbox_get_thread_time(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_session.ext_hhvm.cpp b/hphp/runtime/ext/ext_session.ext_hhvm.cpp index 84cf96362..16e188bed 100644 --- a/hphp/runtime/ext/ext_session.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_session.ext_hhvm.cpp @@ -37,8 +37,8 @@ httponly => r8 void fh_session_set_cookie_params(long lifetime, Value* path, Value* domain, TypedValue* secure, TypedValue* httponly) asm("_ZN4HPHP27f_session_set_cookie_paramsElRKNS_6StringES2_RKNS_7VariantES5_"); -TypedValue * fg1_session_set_cookie_params(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_set_cookie_params(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_set_cookie_params(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_set_cookie_params(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -65,7 +65,7 @@ TypedValue * fg1_session_set_cookie_params(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_session_set_cookie_params(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_set_cookie_params(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -108,7 +108,7 @@ _rv => rdi Value* fh_session_get_cookie_params(Value* _rv) asm("_ZN4HPHP27f_session_get_cookie_paramsEv"); -TypedValue* fg_session_get_cookie_params(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_get_cookie_params(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -143,8 +143,8 @@ newname => rsi Value* fh_session_name(Value* _rv, Value* newname) asm("_ZN4HPHP14f_session_nameERKNS_6StringE"); -TypedValue * fg1_session_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -153,7 +153,7 @@ TypedValue * fg1_session_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_session_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -195,8 +195,8 @@ newname => rsi TypedValue* fh_session_module_name(TypedValue* _rv, Value* newname) asm("_ZN4HPHP21f_session_module_nameERKNS_6StringE"); -TypedValue * fg1_session_module_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_module_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_module_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_module_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_session_module_name((rv), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -204,7 +204,7 @@ TypedValue * fg1_session_module_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_session_module_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_module_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -249,8 +249,8 @@ gc => r9 bool fh_session_set_save_handler(Value* open, Value* close, Value* read, Value* write, Value* destroy, Value* gc) asm("_ZN4HPHP26f_session_set_save_handlerERKNS_6StringES2_S2_S2_S2_S2_"); -TypedValue * fg1_session_set_save_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_set_save_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_set_save_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_set_save_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-5)->m_type)) { @@ -275,7 +275,7 @@ TypedValue * fg1_session_set_save_handler(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_session_set_save_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_set_save_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -316,8 +316,8 @@ newname => rsi Value* fh_session_save_path(Value* _rv, Value* newname) asm("_ZN4HPHP19f_session_save_pathERKNS_6StringE"); -TypedValue * fg1_session_save_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_save_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_save_path(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_save_path(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -326,7 +326,7 @@ TypedValue * fg1_session_save_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_session_save_path(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_save_path(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -368,8 +368,8 @@ newid => rsi Value* fh_session_id(Value* _rv, Value* newid) asm("_ZN4HPHP12f_session_idERKNS_6StringE"); -TypedValue * fg1_session_id(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_id(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_id(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_id(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -378,7 +378,7 @@ TypedValue * fg1_session_id(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_session_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -419,8 +419,8 @@ delete_old_session => rdi bool fh_session_regenerate_id(bool delete_old_session) asm("_ZN4HPHP23f_session_regenerate_idEb"); -TypedValue * fg1_session_regenerate_id(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_regenerate_id(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_regenerate_id(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_regenerate_id(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-0); @@ -428,7 +428,7 @@ TypedValue * fg1_session_regenerate_id(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_session_regenerate_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_regenerate_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -469,8 +469,8 @@ new_cache_limiter => rsi Value* fh_session_cache_limiter(Value* _rv, Value* new_cache_limiter) asm("_ZN4HPHP23f_session_cache_limiterERKNS_6StringE"); -TypedValue * fg1_session_cache_limiter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_cache_limiter(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_cache_limiter(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_cache_limiter(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -479,7 +479,7 @@ TypedValue * fg1_session_cache_limiter(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_session_cache_limiter(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_cache_limiter(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -520,8 +520,8 @@ new_cache_expire => rdi long fh_session_cache_expire(Value* new_cache_expire) asm("_ZN4HPHP22f_session_cache_expireERKNS_6StringE"); -TypedValue * fg1_session_cache_expire(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_cache_expire(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_cache_expire(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_cache_expire(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -529,7 +529,7 @@ TypedValue * fg1_session_cache_expire(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_session_cache_expire(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_cache_expire(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -569,7 +569,7 @@ _rv => rdi TypedValue* fh_session_encode(TypedValue* _rv) asm("_ZN4HPHP16f_session_encodeEv"); -TypedValue* fg_session_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -602,8 +602,8 @@ data => rdi bool fh_session_decode(Value* data) asm("_ZN4HPHP16f_session_decodeERKNS_6StringE"); -TypedValue * fg1_session_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -611,7 +611,7 @@ TypedValue * fg1_session_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_session_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -650,7 +650,7 @@ _ZN4HPHP15f_session_startEv bool fh_session_start() asm("_ZN4HPHP15f_session_startEv"); -TypedValue* fg_session_start(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_start(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -682,7 +682,7 @@ _ZN4HPHP17f_session_destroyEv bool fh_session_destroy() asm("_ZN4HPHP17f_session_destroyEv"); -TypedValue* fg_session_destroy(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_destroy(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -715,7 +715,7 @@ _rv => rdi TypedValue* fh_session_unset(TypedValue* _rv) asm("_ZN4HPHP15f_session_unsetEv"); -TypedValue* fg_session_unset(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_unset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -746,7 +746,7 @@ _ZN4HPHP16f_session_commitEv void fh_session_commit() asm("_ZN4HPHP16f_session_commitEv"); -TypedValue* fg_session_commit(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_commit(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -778,7 +778,7 @@ _ZN4HPHP21f_session_write_closeEv void fh_session_write_close() asm("_ZN4HPHP21f_session_write_closeEv"); -TypedValue* fg_session_write_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_write_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -814,7 +814,7 @@ _argv => rdx bool fh_session_register(int64_t _argc, TypedValue* var_names, Value* _argv) asm("_ZN4HPHP18f_session_registerEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_session_register(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_register(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -860,8 +860,8 @@ varname => rdi bool fh_session_unregister(Value* varname) asm("_ZN4HPHP20f_session_unregisterERKNS_6StringE"); -TypedValue * fg1_session_unregister(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_unregister(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_unregister(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_unregister(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -869,7 +869,7 @@ TypedValue * fg1_session_unregister(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_session_unregister(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_unregister(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -909,8 +909,8 @@ varname => rdi bool fh_session_is_registered(Value* varname) asm("_ZN4HPHP23f_session_is_registeredERKNS_6StringE"); -TypedValue * fg1_session_is_registered(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_session_is_registered(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_session_is_registered(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_session_is_registered(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -918,7 +918,7 @@ TypedValue * fg1_session_is_registered(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_session_is_registered(HPHP::VM::ActRec *ar) { +TypedValue* fg_session_is_registered(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_simplexml.ext_hhvm.cpp b/hphp/runtime/ext/ext_simplexml.ext_hhvm.cpp index 0ba494cc2..79d62b5b2 100644 --- a/hphp/runtime/ext/ext_simplexml.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_simplexml.ext_hhvm.cpp @@ -39,8 +39,8 @@ is_prefix => r9 TypedValue* fh_simplexml_load_string(TypedValue* _rv, Value* data, Value* class_name, long options, Value* ns, bool is_prefix) asm("_ZN4HPHP23f_simplexml_load_stringERKNS_6StringES2_lS2_b"); -TypedValue * fg1_simplexml_load_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_simplexml_load_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_simplexml_load_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_simplexml_load_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -71,7 +71,7 @@ TypedValue * fg1_simplexml_load_string(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_simplexml_load_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_simplexml_load_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -117,8 +117,8 @@ is_prefix => r9 TypedValue* fh_simplexml_load_file(TypedValue* _rv, Value* filename, Value* class_name, long options, Value* ns, bool is_prefix) asm("_ZN4HPHP21f_simplexml_load_fileERKNS_6StringES2_lS2_b"); -TypedValue * fg1_simplexml_load_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_simplexml_load_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_simplexml_load_file(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_simplexml_load_file(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -149,7 +149,7 @@ TypedValue * fg1_simplexml_load_file(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_simplexml_load_file(HPHP::VM::ActRec *ar) { +TypedValue* fg_simplexml_load_file(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -190,7 +190,7 @@ _rv => rdi TypedValue* fh_libxml_get_errors(TypedValue* _rv) asm("_ZN4HPHP19f_libxml_get_errorsEv"); -TypedValue* fg_libxml_get_errors(HPHP::VM::ActRec *ar) { +TypedValue* fg_libxml_get_errors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -223,7 +223,7 @@ _rv => rdi TypedValue* fh_libxml_get_last_error(TypedValue* _rv) asm("_ZN4HPHP23f_libxml_get_last_errorEv"); -TypedValue* fg_libxml_get_last_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_libxml_get_last_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -254,7 +254,7 @@ _ZN4HPHP21f_libxml_clear_errorsEv void fh_libxml_clear_errors() asm("_ZN4HPHP21f_libxml_clear_errorsEv"); -TypedValue* fg_libxml_clear_errors(HPHP::VM::ActRec *ar) { +TypedValue* fg_libxml_clear_errors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -288,7 +288,7 @@ use_errors => rdi bool fh_libxml_use_internal_errors(TypedValue* use_errors) asm("_ZN4HPHP28f_libxml_use_internal_errorsERKNS_7VariantE"); -TypedValue* fg_libxml_use_internal_errors(HPHP::VM::ActRec *ar) { +TypedValue* fg_libxml_use_internal_errors(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -320,8 +320,8 @@ streams_context => rdi void fh_libxml_set_streams_context(Value* streams_context) asm("_ZN4HPHP28f_libxml_set_streams_contextERKNS_6ObjectE"); -TypedValue * fg1_libxml_set_streams_context(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_libxml_set_streams_context(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_libxml_set_streams_context(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_libxml_set_streams_context(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -330,7 +330,7 @@ TypedValue * fg1_libxml_set_streams_context(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_libxml_set_streams_context(HPHP::VM::ActRec *ar) { +TypedValue* fg_libxml_set_streams_context(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -371,8 +371,8 @@ disable => rdi bool fh_libxml_disable_entity_loader(bool disable) asm("_ZN4HPHP30f_libxml_disable_entity_loaderEb"); -TypedValue * fg1_libxml_disable_entity_loader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_libxml_disable_entity_loader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_libxml_disable_entity_loader(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_libxml_disable_entity_loader(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-0); @@ -380,7 +380,7 @@ TypedValue * fg1_libxml_disable_entity_loader(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_libxml_disable_entity_loader(HPHP::VM::ActRec *ar) { +TypedValue* fg_libxml_disable_entity_loader(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -434,8 +434,8 @@ is_prefix => r9 void th_16SimpleXMLElement___construct(ObjectData* this_, Value* data, long options, bool data_is_url, Value* ns, bool is_prefix) asm("_ZN4HPHP18c_SimpleXMLElement13t___constructERKNS_6StringElbS3_b"); -TypedValue* tg1_16SimpleXMLElement___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -466,7 +466,7 @@ TypedValue* tg1_16SimpleXMLElement___construct(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_16SimpleXMLElement___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -511,7 +511,7 @@ index => rsi bool th_16SimpleXMLElement_offsetExists(ObjectData* this_, TypedValue* index) asm("_ZN4HPHP18c_SimpleXMLElement14t_offsetexistsERKNS_7VariantE"); -TypedValue* tg_16SimpleXMLElement_offsetExists(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_offsetExists(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -549,7 +549,7 @@ index => rdx TypedValue* th_16SimpleXMLElement_offsetGet(TypedValue* _rv, ObjectData* this_, TypedValue* index) asm("_ZN4HPHP18c_SimpleXMLElement11t_offsetgetERKNS_7VariantE"); -TypedValue* tg_16SimpleXMLElement_offsetGet(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_offsetGet(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -586,7 +586,7 @@ newvalue => rdx void th_16SimpleXMLElement_offsetSet(ObjectData* this_, TypedValue* index, TypedValue* newvalue) asm("_ZN4HPHP18c_SimpleXMLElement11t_offsetsetERKNS_7VariantES3_"); -TypedValue* tg_16SimpleXMLElement_offsetSet(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_offsetSet(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -623,7 +623,7 @@ index => rsi void th_16SimpleXMLElement_offsetUnset(ObjectData* this_, TypedValue* index) asm("_ZN4HPHP18c_SimpleXMLElement13t_offsetunsetERKNS_7VariantE"); -TypedValue* tg_16SimpleXMLElement_offsetUnset(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_offsetUnset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -661,7 +661,7 @@ this_ => rsi TypedValue* th_16SimpleXMLElement_getIterator(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP18c_SimpleXMLElement13t_getiteratorEv"); -TypedValue* tg_16SimpleXMLElement_getIterator(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_getIterator(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -697,7 +697,7 @@ this_ => rdi long th_16SimpleXMLElement_count(ObjectData* this_) asm("_ZN4HPHP18c_SimpleXMLElement7t_countEv"); -TypedValue* tg_16SimpleXMLElement_count(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -735,8 +735,8 @@ path => rdx TypedValue* th_16SimpleXMLElement_xpath(TypedValue* _rv, ObjectData* this_, Value* path) asm("_ZN4HPHP18c_SimpleXMLElement7t_xpathERKNS_6StringE"); -TypedValue* tg1_16SimpleXMLElement_xpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_xpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_xpath(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_xpath(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_16SimpleXMLElement_xpath((rv), (this_), &args[-0].m_data); @@ -744,7 +744,7 @@ TypedValue* tg1_16SimpleXMLElement_xpath(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_16SimpleXMLElement_xpath(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_xpath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -789,8 +789,8 @@ ns => rdx bool th_16SimpleXMLElement_registerXPathNamespace(ObjectData* this_, Value* prefix, Value* ns) asm("_ZN4HPHP18c_SimpleXMLElement24t_registerxpathnamespaceERKNS_6StringES3_"); -TypedValue* tg1_16SimpleXMLElement_registerXPathNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_registerXPathNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_registerXPathNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_registerXPathNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -803,7 +803,7 @@ TypedValue* tg1_16SimpleXMLElement_registerXPathNamespace(TypedValue* rv, HPHP:: return rv; } -TypedValue* tg_16SimpleXMLElement_registerXPathNamespace(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_registerXPathNamespace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -848,8 +848,8 @@ filename => rdx TypedValue* th_16SimpleXMLElement_asXML(TypedValue* _rv, ObjectData* this_, Value* filename) asm("_ZN4HPHP18c_SimpleXMLElement7t_asxmlERKNS_6StringE"); -TypedValue* tg1_16SimpleXMLElement_asXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_asXML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_asXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_asXML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_16SimpleXMLElement_asXML((rv), (this_), (count > 0) ? &args[-0].m_data : (Value*)(&empty_string)); @@ -857,7 +857,7 @@ TypedValue* tg1_16SimpleXMLElement_asXML(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_16SimpleXMLElement_asXML(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_asXML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -902,8 +902,8 @@ recursive => rdx Value* th_16SimpleXMLElement_getNamespaces(Value* _rv, ObjectData* this_, bool recursive) asm("_ZN4HPHP18c_SimpleXMLElement15t_getnamespacesEb"); -TypedValue* tg1_16SimpleXMLElement_getNamespaces(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_getNamespaces(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_getNamespaces(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_getNamespaces(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -912,7 +912,7 @@ TypedValue* tg1_16SimpleXMLElement_getNamespaces(TypedValue* rv, HPHP::VM::ActRe return rv; } -TypedValue* tg_16SimpleXMLElement_getNamespaces(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_getNamespaces(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -958,8 +958,8 @@ recursive => rdx Value* th_16SimpleXMLElement_getDocNamespaces(Value* _rv, ObjectData* this_, bool recursive) asm("_ZN4HPHP18c_SimpleXMLElement18t_getdocnamespacesEb"); -TypedValue* tg1_16SimpleXMLElement_getDocNamespaces(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_getDocNamespaces(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_getDocNamespaces(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_getDocNamespaces(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; tvCastToBooleanInPlace(args-0); @@ -968,7 +968,7 @@ TypedValue* tg1_16SimpleXMLElement_getDocNamespaces(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* tg_16SimpleXMLElement_getDocNamespaces(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_getDocNamespaces(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1015,8 +1015,8 @@ is_prefix => rcx Value* th_16SimpleXMLElement_children(Value* _rv, ObjectData* this_, Value* ns, bool is_prefix) asm("_ZN4HPHP18c_SimpleXMLElement10t_childrenERKNS_6StringEb"); -TypedValue* tg1_16SimpleXMLElement_children(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_children(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_children(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_children(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -1036,7 +1036,7 @@ TypedValue* tg1_16SimpleXMLElement_children(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_16SimpleXMLElement_children(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_children(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1081,7 +1081,7 @@ this_ => rsi Value* th_16SimpleXMLElement_getName(Value* _rv, ObjectData* this_) asm("_ZN4HPHP18c_SimpleXMLElement9t_getnameEv"); -TypedValue* tg_16SimpleXMLElement_getName(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_getName(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1121,8 +1121,8 @@ is_prefix => rcx Value* th_16SimpleXMLElement_attributes(Value* _rv, ObjectData* this_, Value* ns, bool is_prefix) asm("_ZN4HPHP18c_SimpleXMLElement12t_attributesERKNS_6StringEb"); -TypedValue* tg1_16SimpleXMLElement_attributes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_attributes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_attributes(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_attributes(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -1142,7 +1142,7 @@ TypedValue* tg1_16SimpleXMLElement_attributes(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* tg_16SimpleXMLElement_attributes(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_attributes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1190,8 +1190,8 @@ ns => r8 TypedValue* th_16SimpleXMLElement_addChild(TypedValue* _rv, ObjectData* this_, Value* qname, Value* value, Value* ns) asm("_ZN4HPHP18c_SimpleXMLElement10t_addchildERKNS_6StringES3_S3_"); -TypedValue* tg1_16SimpleXMLElement_addChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_addChild(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_addChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_addChild(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1213,7 +1213,7 @@ TypedValue* tg1_16SimpleXMLElement_addChild(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_16SimpleXMLElement_addChild(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_addChild(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1258,8 +1258,8 @@ ns => rcx void th_16SimpleXMLElement_addAttribute(ObjectData* this_, Value* qname, Value* value, Value* ns) asm("_ZN4HPHP18c_SimpleXMLElement14t_addattributeERKNS_6StringES3_S3_"); -TypedValue* tg1_16SimpleXMLElement_addAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_16SimpleXMLElement_addAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_16SimpleXMLElement_addAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_16SimpleXMLElement_addAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1282,7 +1282,7 @@ TypedValue* tg1_16SimpleXMLElement_addAttribute(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* tg_16SimpleXMLElement_addAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement_addAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1327,7 +1327,7 @@ this_ => rsi Value* th_16SimpleXMLElement___toString(Value* _rv, ObjectData* this_) asm("_ZN4HPHP18c_SimpleXMLElement12t___tostringEv"); -TypedValue* tg_16SimpleXMLElement___toString(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement___toString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1366,7 +1366,7 @@ name => rdx TypedValue* th_16SimpleXMLElement___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP18c_SimpleXMLElement7t___getENS_7VariantE"); -TypedValue* tg_16SimpleXMLElement___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1405,7 +1405,7 @@ value => rcx TypedValue* th_16SimpleXMLElement___set(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* value) asm("_ZN4HPHP18c_SimpleXMLElement7t___setENS_7VariantES1_"); -TypedValue* tg_16SimpleXMLElement___set(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement___set(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1442,7 +1442,7 @@ name => rsi bool th_16SimpleXMLElement___isset(ObjectData* this_, TypedValue* name) asm("_ZN4HPHP18c_SimpleXMLElement9t___issetENS_7VariantE"); -TypedValue* tg_16SimpleXMLElement___isset(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement___isset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1480,7 +1480,7 @@ name => rdx TypedValue* th_16SimpleXMLElement___unset(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP18c_SimpleXMLElement9t___unsetENS_7VariantE"); -TypedValue* tg_16SimpleXMLElement___unset(HPHP::VM::ActRec *ar) { +TypedValue* tg_16SimpleXMLElement___unset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1525,7 +1525,7 @@ this_ => rdi void th_11LibXMLError___construct(ObjectData* this_) asm("_ZN4HPHP13c_LibXMLError13t___constructEv"); -TypedValue* tg_11LibXMLError___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11LibXMLError___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1571,7 +1571,7 @@ this_ => rdi void th_24SimpleXMLElementIterator___construct(ObjectData* this_) asm("_ZN4HPHP26c_SimpleXMLElementIterator13t___constructEv"); -TypedValue* tg_24SimpleXMLElementIterator___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SimpleXMLElementIterator___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1609,7 +1609,7 @@ this_ => rsi TypedValue* th_24SimpleXMLElementIterator_current(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP26c_SimpleXMLElementIterator9t_currentEv"); -TypedValue* tg_24SimpleXMLElementIterator_current(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SimpleXMLElementIterator_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1646,7 +1646,7 @@ this_ => rsi TypedValue* th_24SimpleXMLElementIterator_key(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP26c_SimpleXMLElementIterator5t_keyEv"); -TypedValue* tg_24SimpleXMLElementIterator_key(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SimpleXMLElementIterator_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1683,7 +1683,7 @@ this_ => rsi TypedValue* th_24SimpleXMLElementIterator_next(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP26c_SimpleXMLElementIterator6t_nextEv"); -TypedValue* tg_24SimpleXMLElementIterator_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SimpleXMLElementIterator_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1720,7 +1720,7 @@ this_ => rsi TypedValue* th_24SimpleXMLElementIterator_rewind(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP26c_SimpleXMLElementIterator8t_rewindEv"); -TypedValue* tg_24SimpleXMLElementIterator_rewind(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SimpleXMLElementIterator_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1757,7 +1757,7 @@ this_ => rsi TypedValue* th_24SimpleXMLElementIterator_valid(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP26c_SimpleXMLElementIterator7t_validEv"); -TypedValue* tg_24SimpleXMLElementIterator_valid(HPHP::VM::ActRec *ar) { +TypedValue* tg_24SimpleXMLElementIterator_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_soap.ext_hhvm.cpp b/hphp/runtime/ext/ext_soap.ext_hhvm.cpp index a1bcb5e65..0979c6cdd 100644 --- a/hphp/runtime/ext/ext_soap.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_soap.ext_hhvm.cpp @@ -34,8 +34,8 @@ handler => rdi bool fh_use_soap_error_handler(bool handler) asm("_ZN4HPHP24f_use_soap_error_handlerEb"); -TypedValue * fg1_use_soap_error_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_use_soap_error_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_use_soap_error_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_use_soap_error_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-0); @@ -43,7 +43,7 @@ TypedValue * fg1_use_soap_error_handler(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_use_soap_error_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_use_soap_error_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -83,7 +83,7 @@ fault => rdi bool fh_is_soap_fault(TypedValue* fault) asm("_ZN4HPHP15f_is_soap_faultERKNS_7VariantE"); -TypedValue* fg_is_soap_fault(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_soap_fault(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -115,7 +115,7 @@ _ZN4HPHP22f__soap_active_versionEv long fh__soap_active_version() asm("_ZN4HPHP22f__soap_active_versionEv"); -TypedValue* fg__soap_active_version(HPHP::VM::ActRec *ar) { +TypedValue* fg__soap_active_version(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -159,8 +159,8 @@ options => rdx void th_10SoapServer___construct(ObjectData* this_, TypedValue* wsdl, Value* options) asm("_ZN4HPHP12c_SoapServer13t___constructERKNS_7VariantERKNS_5ArrayE"); -TypedValue* tg1_10SoapServer___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapServer___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapServer___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapServer___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -169,7 +169,7 @@ TypedValue* tg1_10SoapServer___construct(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10SoapServer___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -215,8 +215,8 @@ _argv => rcx void th_10SoapServer_setclass(ObjectData* this_, int64_t _argc, Value* name, Value* _argv) asm("_ZN4HPHP12c_SoapServer10t_setclassEiRKNS_6StringERKNS_5ArrayE"); -TypedValue* tg1_10SoapServer_setclass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapServer_setclass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapServer_setclass(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapServer_setclass(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -238,7 +238,7 @@ TypedValue* tg1_10SoapServer_setclass(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_10SoapServer_setclass(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_setclass(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -295,8 +295,8 @@ obj => rsi void th_10SoapServer_setobject(ObjectData* this_, Value* obj) asm("_ZN4HPHP12c_SoapServer11t_setobjectERKNS_6ObjectE"); -TypedValue* tg1_10SoapServer_setobject(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapServer_setobject(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapServer_setobject(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapServer_setobject(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -305,7 +305,7 @@ TypedValue* tg1_10SoapServer_setobject(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_10SoapServer_setobject(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_setobject(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -349,7 +349,7 @@ func => rsi void th_10SoapServer_addfunction(ObjectData* this_, TypedValue* func) asm("_ZN4HPHP12c_SoapServer13t_addfunctionERKNS_7VariantE"); -TypedValue* tg_10SoapServer_addfunction(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_addfunction(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -387,7 +387,7 @@ this_ => rsi TypedValue* th_10SoapServer_getfunctions(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_SoapServer14t_getfunctionsEv"); -TypedValue* tg_10SoapServer_getfunctions(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_getfunctions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -423,8 +423,8 @@ request => rsi void th_10SoapServer_handle(ObjectData* this_, Value* request) asm("_ZN4HPHP12c_SoapServer8t_handleERKNS_6StringE"); -TypedValue* tg1_10SoapServer_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapServer_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapServer_handle(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapServer_handle(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -433,7 +433,7 @@ TypedValue* tg1_10SoapServer_handle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_10SoapServer_handle(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_handle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -477,8 +477,8 @@ mode => rsi void th_10SoapServer_setpersistence(ObjectData* this_, long mode) asm("_ZN4HPHP12c_SoapServer16t_setpersistenceEl"); -TypedValue* tg1_10SoapServer_setpersistence(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapServer_setpersistence(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapServer_setpersistence(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapServer_setpersistence(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -487,7 +487,7 @@ TypedValue* tg1_10SoapServer_setpersistence(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_10SoapServer_setpersistence(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_setpersistence(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -535,8 +535,8 @@ name => r9 void th_10SoapServer_fault(ObjectData* this_, TypedValue* code, Value* fault, Value* actor, TypedValue* detail, Value* name) asm("_ZN4HPHP12c_SoapServer7t_faultERKNS_7VariantERKNS_6StringES6_S3_S6_"); -TypedValue* tg1_10SoapServer_fault(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapServer_fault(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapServer_fault(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapServer_fault(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -561,7 +561,7 @@ TypedValue* tg1_10SoapServer_fault(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_10SoapServer_fault(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_fault(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -606,8 +606,8 @@ fault => rsi void th_10SoapServer_addsoapheader(ObjectData* this_, Value* fault) asm("_ZN4HPHP12c_SoapServer15t_addsoapheaderERKNS_6ObjectE"); -TypedValue* tg1_10SoapServer_addsoapheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapServer_addsoapheader(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapServer_addsoapheader(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapServer_addsoapheader(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -616,7 +616,7 @@ TypedValue* tg1_10SoapServer_addsoapheader(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10SoapServer_addsoapheader(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapServer_addsoapheader(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -671,8 +671,8 @@ options => rdx void th_10SoapClient___construct(ObjectData* this_, TypedValue* wsdl, Value* options) asm("_ZN4HPHP12c_SoapClient13t___constructERKNS_7VariantERKNS_5ArrayE"); -TypedValue* tg1_10SoapClient___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapClient___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapClient___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapClient___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -681,7 +681,7 @@ TypedValue* tg1_10SoapClient___construct(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10SoapClient___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -728,7 +728,7 @@ args => rcx TypedValue* th_10SoapClient___call(TypedValue* _rv, ObjectData* this_, TypedValue* name, TypedValue* args) asm("_ZN4HPHP12c_SoapClient8t___callENS_7VariantES1_"); -TypedValue* tg_10SoapClient___call(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___call(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -770,8 +770,8 @@ output_headers => st0 TypedValue* th_10SoapClient___soapcall(TypedValue* _rv, ObjectData* this_, Value* name, Value* args, Value* options, TypedValue* input_headers, TypedValue* output_headers) asm("_ZN4HPHP12c_SoapClient12t___soapcallERKNS_6StringERKNS_5ArrayES6_RKNS_7VariantERKNS_14VRefParamValueE"); -TypedValue* tg1_10SoapClient___soapcall(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapClient___soapcall(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapClient___soapcall(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapClient___soapcall(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -795,7 +795,7 @@ TypedValue* tg1_10SoapClient___soapcall(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_10SoapClient___soapcall(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___soapcall(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -840,7 +840,7 @@ this_ => rsi TypedValue* th_10SoapClient___getlastrequest(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_SoapClient18t___getlastrequestEv"); -TypedValue* tg_10SoapClient___getlastrequest(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___getlastrequest(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -877,7 +877,7 @@ this_ => rsi TypedValue* th_10SoapClient___getlastresponse(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_SoapClient19t___getlastresponseEv"); -TypedValue* tg_10SoapClient___getlastresponse(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___getlastresponse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -914,7 +914,7 @@ this_ => rsi TypedValue* th_10SoapClient___getlastrequestheaders(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_SoapClient25t___getlastrequestheadersEv"); -TypedValue* tg_10SoapClient___getlastrequestheaders(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___getlastrequestheaders(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -951,7 +951,7 @@ this_ => rsi TypedValue* th_10SoapClient___getlastresponseheaders(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_SoapClient26t___getlastresponseheadersEv"); -TypedValue* tg_10SoapClient___getlastresponseheaders(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___getlastresponseheaders(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -988,7 +988,7 @@ this_ => rsi TypedValue* th_10SoapClient___getfunctions(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_SoapClient16t___getfunctionsEv"); -TypedValue* tg_10SoapClient___getfunctions(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___getfunctions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1025,7 +1025,7 @@ this_ => rsi TypedValue* th_10SoapClient___gettypes(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP12c_SoapClient12t___gettypesEv"); -TypedValue* tg_10SoapClient___gettypes(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___gettypes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1067,8 +1067,8 @@ oneway => st0 TypedValue* th_10SoapClient___dorequest(TypedValue* _rv, ObjectData* this_, Value* buf, Value* location, Value* action, long version, bool oneway) asm("_ZN4HPHP12c_SoapClient13t___dorequestERKNS_6StringES3_S3_lb"); -TypedValue* tg1_10SoapClient___dorequest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapClient___dorequest(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapClient___dorequest(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapClient___dorequest(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1095,7 +1095,7 @@ TypedValue* tg1_10SoapClient___dorequest(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10SoapClient___dorequest(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___dorequest(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1141,8 +1141,8 @@ value => rcx TypedValue* th_10SoapClient___setcookie(TypedValue* _rv, ObjectData* this_, Value* name, Value* value) asm("_ZN4HPHP12c_SoapClient13t___setcookieERKNS_6StringES3_"); -TypedValue* tg1_10SoapClient___setcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapClient___setcookie(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapClient___setcookie(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapClient___setcookie(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1160,7 +1160,7 @@ TypedValue* tg1_10SoapClient___setcookie(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10SoapClient___setcookie(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___setcookie(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1205,8 +1205,8 @@ new_location => rdx TypedValue* th_10SoapClient___setlocation(TypedValue* _rv, ObjectData* this_, Value* new_location) asm("_ZN4HPHP12c_SoapClient15t___setlocationERKNS_6StringE"); -TypedValue* tg1_10SoapClient___setlocation(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapClient___setlocation(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapClient___setlocation(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapClient___setlocation(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_10SoapClient___setlocation((rv), (this_), (count > 0) ? &args[-0].m_data : (Value*)(&null_string)); @@ -1214,7 +1214,7 @@ TypedValue* tg1_10SoapClient___setlocation(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_10SoapClient___setlocation(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___setlocation(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1258,7 +1258,7 @@ headers => rsi bool th_10SoapClient___setsoapheaders(ObjectData* this_, TypedValue* headers) asm("_ZN4HPHP12c_SoapClient18t___setsoapheadersERKNS_7VariantE"); -TypedValue* tg_10SoapClient___setsoapheaders(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapClient___setsoapheaders(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1309,8 +1309,8 @@ node_namespace => st0 void th_7SoapVar___construct(ObjectData* this_, TypedValue* data, TypedValue* type, Value* type_name, Value* type_namespace, Value* node_name, Value* node_namespace) asm("_ZN4HPHP9c_SoapVar13t___constructERKNS_7VariantES3_RKNS_6StringES6_S6_S6_"); -TypedValue* tg1_7SoapVar___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SoapVar___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SoapVar___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SoapVar___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1338,7 +1338,7 @@ TypedValue* tg1_7SoapVar___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7SoapVar___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SoapVar___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1393,8 +1393,8 @@ name => rdx void th_9SoapParam___construct(ObjectData* this_, TypedValue* data, Value* name) asm("_ZN4HPHP11c_SoapParam13t___constructERKNS_7VariantERKNS_6StringE"); -TypedValue* tg1_9SoapParam___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9SoapParam___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9SoapParam___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9SoapParam___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1403,7 +1403,7 @@ TypedValue* tg1_9SoapParam___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_9SoapParam___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_9SoapParam___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1461,8 +1461,8 @@ actor => r9 void th_10SoapHeader___construct(ObjectData* this_, Value* ns, Value* name, TypedValue* data, bool mustunderstand, TypedValue* actor) asm("_ZN4HPHP12c_SoapHeader13t___constructERKNS_6StringES3_RKNS_7VariantEbS6_"); -TypedValue* tg1_10SoapHeader___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_10SoapHeader___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_10SoapHeader___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_10SoapHeader___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1488,7 +1488,7 @@ TypedValue* tg1_10SoapHeader___construct(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_10SoapHeader___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_10SoapHeader___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_socket.ext_hhvm.cpp b/hphp/runtime/ext/ext_socket.ext_hhvm.cpp index 1ff621e98..2f43c7ad5 100644 --- a/hphp/runtime/ext/ext_socket.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_socket.ext_hhvm.cpp @@ -39,8 +39,8 @@ timeout => xmm0 TypedValue* fh_fsockopen(TypedValue* _rv, Value* hostname, int port, TypedValue* errnum, TypedValue* errstr, double timeout) asm("_ZN4HPHP11f_fsockopenERKNS_6StringEiRKNS_14VRefParamValueES5_d"); -TypedValue * fg1_fsockopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fsockopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fsockopen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fsockopen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -66,7 +66,7 @@ TypedValue * fg1_fsockopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_fsockopen(HPHP::VM::ActRec *ar) { +TypedValue* fg_fsockopen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -113,8 +113,8 @@ timeout => xmm0 TypedValue* fh_pfsockopen(TypedValue* _rv, Value* hostname, int port, TypedValue* errnum, TypedValue* errstr, double timeout) asm("_ZN4HPHP12f_pfsockopenERKNS_6StringEiRKNS_14VRefParamValueES5_d"); -TypedValue * fg1_pfsockopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_pfsockopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_pfsockopen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_pfsockopen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -140,7 +140,7 @@ TypedValue * fg1_pfsockopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_pfsockopen(HPHP::VM::ActRec *ar) { +TypedValue* fg_pfsockopen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -185,8 +185,8 @@ protocol => rcx TypedValue* fh_socket_create(TypedValue* _rv, int domain, int type, int protocol) asm("_ZN4HPHP15f_socket_createEiii"); -TypedValue * fg1_socket_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -202,7 +202,7 @@ TypedValue * fg1_socket_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_socket_create(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -244,8 +244,8 @@ backlog => rdx TypedValue* fh_socket_create_listen(TypedValue* _rv, int port, int backlog) asm("_ZN4HPHP22f_socket_create_listenEii"); -TypedValue * fg1_socket_create_listen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_create_listen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_create_listen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_create_listen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -263,7 +263,7 @@ TypedValue * fg1_socket_create_listen(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_socket_create_listen(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_create_listen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -306,8 +306,8 @@ fd => rcx bool fh_socket_create_pair(int domain, int type, int protocol, TypedValue* fd) asm("_ZN4HPHP20f_socket_create_pairEiiiRKNS_14VRefParamValueE"); -TypedValue * fg1_socket_create_pair(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_create_pair(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_create_pair(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_create_pair(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -323,7 +323,7 @@ TypedValue * fg1_socket_create_pair(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_socket_create_pair(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_create_pair(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -366,8 +366,8 @@ optname => rcx TypedValue* fh_socket_get_option(TypedValue* _rv, Value* socket, int level, int optname) asm("_ZN4HPHP19f_socket_get_optionERKNS_6ObjectEii"); -TypedValue * fg1_socket_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_get_option(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_get_option(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -383,7 +383,7 @@ TypedValue * fg1_socket_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_socket_get_option(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_get_option(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -425,8 +425,8 @@ port => rdx bool fh_socket_getpeername(Value* socket, TypedValue* address, TypedValue* port) asm("_ZN4HPHP20f_socket_getpeernameERKNS_6ObjectERKNS_14VRefParamValueES5_"); -TypedValue * fg1_socket_getpeername(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_getpeername(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_getpeername(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_getpeername(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -435,7 +435,7 @@ TypedValue * fg1_socket_getpeername(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_socket_getpeername(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_getpeername(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -478,8 +478,8 @@ port => rdx bool fh_socket_getsockname(Value* socket, TypedValue* address, TypedValue* port) asm("_ZN4HPHP20f_socket_getsocknameERKNS_6ObjectERKNS_14VRefParamValueES5_"); -TypedValue * fg1_socket_getsockname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_getsockname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_getsockname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_getsockname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -488,7 +488,7 @@ TypedValue * fg1_socket_getsockname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_socket_getsockname(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_getsockname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -529,8 +529,8 @@ socket => rdi bool fh_socket_set_block(Value* socket) asm("_ZN4HPHP18f_socket_set_blockERKNS_6ObjectE"); -TypedValue * fg1_socket_set_block(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_set_block(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_set_block(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_set_block(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -538,7 +538,7 @@ TypedValue * fg1_socket_set_block(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_socket_set_block(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_set_block(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -578,8 +578,8 @@ socket => rdi bool fh_socket_set_nonblock(Value* socket) asm("_ZN4HPHP21f_socket_set_nonblockERKNS_6ObjectE"); -TypedValue * fg1_socket_set_nonblock(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_set_nonblock(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_set_nonblock(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_set_nonblock(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -587,7 +587,7 @@ TypedValue * fg1_socket_set_nonblock(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_socket_set_nonblock(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_set_nonblock(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -630,8 +630,8 @@ optval => rcx bool fh_socket_set_option(Value* socket, int level, int optname, TypedValue* optval) asm("_ZN4HPHP19f_socket_set_optionERKNS_6ObjectEiiRKNS_7VariantE"); -TypedValue * fg1_socket_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_set_option(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_set_option(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfInt64) { @@ -647,7 +647,7 @@ TypedValue * fg1_socket_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_socket_set_option(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_set_option(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -689,8 +689,8 @@ port => rdx bool fh_socket_connect(Value* socket, Value* address, int port) asm("_ZN4HPHP16f_socket_connectERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_socket_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_connect(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_connect(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -711,7 +711,7 @@ TypedValue * fg1_socket_connect(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_socket_connect(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_connect(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -753,8 +753,8 @@ port => rdx bool fh_socket_bind(Value* socket, Value* address, int port) asm("_ZN4HPHP13f_socket_bindERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_socket_bind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_bind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_bind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_bind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -775,7 +775,7 @@ TypedValue * fg1_socket_bind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_socket_bind(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_bind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -816,8 +816,8 @@ backlog => rsi bool fh_socket_listen(Value* socket, int backlog) asm("_ZN4HPHP15f_socket_listenERKNS_6ObjectEi"); -TypedValue * fg1_socket_listen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_listen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_listen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_listen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -835,7 +835,7 @@ TypedValue * fg1_socket_listen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_socket_listen(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_listen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -880,8 +880,8 @@ tv_usec => r9 TypedValue* fh_socket_select(TypedValue* _rv, TypedValue* read, TypedValue* write, TypedValue* except, TypedValue* vtv_sec, int tv_usec) asm("_ZN4HPHP15f_socket_selectERKNS_14VRefParamValueES2_S2_RKNS_7VariantEi"); -TypedValue * fg1_socket_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_select(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_select(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-4); fh_socket_select((rv), (args-0), (args-1), (args-2), (args-3), (count > 4) ? (int)(args[-4].m_data.num) : (int)(0)); @@ -889,7 +889,7 @@ TypedValue * fg1_socket_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_socket_select(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_select(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -933,8 +933,8 @@ errstr => r8 TypedValue* fh_socket_server(TypedValue* _rv, Value* hostname, int port, TypedValue* errnum, TypedValue* errstr) asm("_ZN4HPHP15f_socket_serverERKNS_6StringEiRKNS_14VRefParamValueES5_"); -TypedValue * fg1_socket_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_server(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_server(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -956,7 +956,7 @@ TypedValue * fg1_socket_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_socket_server(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_server(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -999,8 +999,8 @@ socket => rsi TypedValue* fh_socket_accept(TypedValue* _rv, Value* socket) asm("_ZN4HPHP15f_socket_acceptERKNS_6ObjectE"); -TypedValue * fg1_socket_accept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_accept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_accept(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_accept(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_socket_accept((rv), &args[-0].m_data); @@ -1008,7 +1008,7 @@ TypedValue * fg1_socket_accept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_socket_accept(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_accept(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1051,8 +1051,8 @@ type => rcx TypedValue* fh_socket_read(TypedValue* _rv, Value* socket, int length, int type) asm("_ZN4HPHP13f_socket_readERKNS_6ObjectEii"); -TypedValue * fg1_socket_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_read(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_read(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1073,7 +1073,7 @@ TypedValue * fg1_socket_read(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_socket_read(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_read(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1116,8 +1116,8 @@ length => rcx TypedValue* fh_socket_write(TypedValue* _rv, Value* socket, Value* buffer, int length) asm("_ZN4HPHP14f_socket_writeERKNS_6ObjectERKNS_6StringEi"); -TypedValue * fg1_socket_write(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_write(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_write(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_write(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1138,7 +1138,7 @@ TypedValue * fg1_socket_write(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_socket_write(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_write(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1182,8 +1182,8 @@ flags => r8 TypedValue* fh_socket_send(TypedValue* _rv, Value* socket, Value* buf, int len, int flags) asm("_ZN4HPHP13f_socket_sendERKNS_6ObjectERKNS_6StringEii"); -TypedValue * fg1_socket_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_send(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_send(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -1202,7 +1202,7 @@ TypedValue * fg1_socket_send(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_socket_send(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_send(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1248,8 +1248,8 @@ port => st0 TypedValue* fh_socket_sendto(TypedValue* _rv, Value* socket, Value* buf, int len, int flags, Value* addr, int port) asm("_ZN4HPHP15f_socket_sendtoERKNS_6ObjectERKNS_6StringEiiS5_i"); -TypedValue * fg1_socket_sendto(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_sendto(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_sendto(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_sendto(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1279,7 +1279,7 @@ TypedValue * fg1_socket_sendto(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_socket_sendto(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_sendto(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1323,8 +1323,8 @@ flags => r8 TypedValue* fh_socket_recv(TypedValue* _rv, Value* socket, TypedValue* buf, int len, int flags) asm("_ZN4HPHP13f_socket_recvERKNS_6ObjectERKNS_14VRefParamValueEii"); -TypedValue * fg1_socket_recv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_recv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_recv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_recv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-3)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-3); @@ -1340,7 +1340,7 @@ TypedValue * fg1_socket_recv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_socket_recv(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_recv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1386,8 +1386,8 @@ port => st0 TypedValue* fh_socket_recvfrom(TypedValue* _rv, Value* socket, TypedValue* buf, int len, int flags, TypedValue* name, TypedValue* port) asm("_ZN4HPHP17f_socket_recvfromERKNS_6ObjectERKNS_14VRefParamValueEiiS5_S5_"); -TypedValue * fg1_socket_recvfrom(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_recvfrom(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_recvfrom(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_recvfrom(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1409,7 +1409,7 @@ TypedValue * fg1_socket_recvfrom(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_socket_recvfrom(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_recvfrom(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1451,8 +1451,8 @@ how => rsi bool fh_socket_shutdown(Value* socket, int how) asm("_ZN4HPHP17f_socket_shutdownERKNS_6ObjectEi"); -TypedValue * fg1_socket_shutdown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_shutdown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_shutdown(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_shutdown(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1470,7 +1470,7 @@ TypedValue * fg1_socket_shutdown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_socket_shutdown(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_shutdown(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1509,8 +1509,8 @@ socket => rdi void fh_socket_close(Value* socket) asm("_ZN4HPHP14f_socket_closeERKNS_6ObjectE"); -TypedValue * fg1_socket_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_close(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_close(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1519,7 +1519,7 @@ TypedValue * fg1_socket_close(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_socket_close(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1561,8 +1561,8 @@ errnum => rsi Value* fh_socket_strerror(Value* _rv, int errnum) asm("_ZN4HPHP17f_socket_strerrorEi"); -TypedValue * fg1_socket_strerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_strerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_strerror(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_strerror(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1571,7 +1571,7 @@ TypedValue * fg1_socket_strerror(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_socket_strerror(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_strerror(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1612,8 +1612,8 @@ socket => rdi long fh_socket_last_error(Value* socket) asm("_ZN4HPHP19f_socket_last_errorERKNS_6ObjectE"); -TypedValue * fg1_socket_last_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_last_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_last_error(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_last_error(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1621,7 +1621,7 @@ TypedValue * fg1_socket_last_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_socket_last_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_last_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1660,8 +1660,8 @@ socket => rdi void fh_socket_clear_error(Value* socket) asm("_ZN4HPHP20f_socket_clear_errorERKNS_6ObjectE"); -TypedValue * fg1_socket_clear_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_socket_clear_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_socket_clear_error(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_socket_clear_error(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1670,7 +1670,7 @@ TypedValue * fg1_socket_clear_error(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_socket_clear_error(HPHP::VM::ActRec *ar) { +TypedValue* fg_socket_clear_error(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1717,8 +1717,8 @@ flags => st0 TypedValue* fh_getaddrinfo(TypedValue* _rv, Value* host, Value* port, int family, int socktype, int protocol, int flags) asm("_ZN4HPHP13f_getaddrinfoERKNS_6StringES2_iiii"); -TypedValue * fg1_getaddrinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_getaddrinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_getaddrinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_getaddrinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1751,7 +1751,7 @@ TypedValue * fg1_getaddrinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_getaddrinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_getaddrinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_spl.ext_hhvm.cpp b/hphp/runtime/ext/ext_spl.ext_hhvm.cpp index b933bc9ab..b1943c3ae 100644 --- a/hphp/runtime/ext/ext_spl.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_spl.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi Value* fh_spl_classes(Value* _rv) asm("_ZN4HPHP13f_spl_classesEv"); -TypedValue* fg_spl_classes(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_classes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -69,8 +69,8 @@ obj => rsi Value* fh_spl_object_hash(Value* _rv, Value* obj) asm("_ZN4HPHP17f_spl_object_hashERKNS_6ObjectE"); -TypedValue * fg1_spl_object_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_spl_object_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_spl_object_hash(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_spl_object_hash(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -79,7 +79,7 @@ TypedValue * fg1_spl_object_hash(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_spl_object_hash(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_object_hash(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -120,8 +120,8 @@ obj => rdi long fh_hphp_object_pointer(Value* obj) asm("_ZN4HPHP21f_hphp_object_pointerERKNS_6ObjectE"); -TypedValue * fg1_hphp_object_pointer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_object_pointer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_object_pointer(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_object_pointer(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -129,7 +129,7 @@ TypedValue * fg1_hphp_object_pointer(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_hphp_object_pointer(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_object_pointer(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -169,7 +169,7 @@ _rv => rdi TypedValue* fh_hphp_get_this(TypedValue* _rv) asm("_ZN4HPHP15f_hphp_get_thisEv"); -TypedValue* fg_hphp_get_this(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_this(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -204,8 +204,8 @@ autoload => rdx TypedValue* fh_class_implements(TypedValue* _rv, TypedValue* obj, bool autoload) asm("_ZN4HPHP18f_class_implementsERKNS_7VariantEb"); -TypedValue * fg1_class_implements(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_class_implements(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_class_implements(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_class_implements(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_class_implements((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(true)); @@ -213,7 +213,7 @@ TypedValue * fg1_class_implements(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_class_implements(HPHP::VM::ActRec *ar) { +TypedValue* fg_class_implements(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -255,8 +255,8 @@ autoload => rdx TypedValue* fh_class_parents(TypedValue* _rv, TypedValue* obj, bool autoload) asm("_ZN4HPHP15f_class_parentsERKNS_7VariantEb"); -TypedValue * fg1_class_parents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_class_parents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_class_parents(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_class_parents(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_class_parents((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(true)); @@ -264,7 +264,7 @@ TypedValue * fg1_class_parents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_class_parents(HPHP::VM::ActRec *ar) { +TypedValue* fg_class_parents(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -306,8 +306,8 @@ autoload => rdx TypedValue* fh_class_uses(TypedValue* _rv, TypedValue* obj, bool autoload) asm("_ZN4HPHP12f_class_usesERKNS_7VariantEb"); -TypedValue * fg1_class_uses(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_class_uses(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_class_uses(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_class_uses(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_class_uses((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(true)); @@ -315,7 +315,7 @@ TypedValue * fg1_class_uses(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_class_uses(HPHP::VM::ActRec *ar) { +TypedValue* fg_class_uses(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -358,8 +358,8 @@ params => rcx TypedValue* fh_iterator_apply(TypedValue* _rv, TypedValue* obj, TypedValue* func, Value* params) asm("_ZN4HPHP16f_iterator_applyERKNS_7VariantES2_RKNS_5ArrayE"); -TypedValue * fg1_iterator_apply(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iterator_apply(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iterator_apply(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iterator_apply(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToArrayInPlace(args-2); fh_iterator_apply((rv), (args-0), (args-1), (count > 2) ? &args[-2].m_data : (Value*)(&null_array)); @@ -367,7 +367,7 @@ TypedValue * fg1_iterator_apply(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_iterator_apply(HPHP::VM::ActRec *ar) { +TypedValue* fg_iterator_apply(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -408,7 +408,7 @@ obj => rsi TypedValue* fh_iterator_count(TypedValue* _rv, TypedValue* obj) asm("_ZN4HPHP16f_iterator_countERKNS_7VariantE"); -TypedValue* fg_iterator_count(HPHP::VM::ActRec *ar) { +TypedValue* fg_iterator_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -443,8 +443,8 @@ use_keys => rdx TypedValue* fh_iterator_to_array(TypedValue* _rv, TypedValue* obj, bool use_keys) asm("_ZN4HPHP19f_iterator_to_arrayERKNS_7VariantEb"); -TypedValue * fg1_iterator_to_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_iterator_to_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_iterator_to_array(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_iterator_to_array(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_iterator_to_array((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(true)); @@ -452,7 +452,7 @@ TypedValue * fg1_iterator_to_array(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_iterator_to_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_iterator_to_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -491,8 +491,8 @@ class_name => rdi void fh_spl_autoload_call(Value* class_name) asm("_ZN4HPHP19f_spl_autoload_callERKNS_6StringE"); -TypedValue * fg1_spl_autoload_call(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_spl_autoload_call(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_spl_autoload_call(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_spl_autoload_call(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -501,7 +501,7 @@ TypedValue * fg1_spl_autoload_call(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_spl_autoload_call(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_autoload_call(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -543,8 +543,8 @@ file_extensions => rsi Value* fh_spl_autoload_extensions(Value* _rv, Value* file_extensions) asm("_ZN4HPHP25f_spl_autoload_extensionsERKNS_6StringE"); -TypedValue * fg1_spl_autoload_extensions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_spl_autoload_extensions(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_spl_autoload_extensions(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_spl_autoload_extensions(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -553,7 +553,7 @@ TypedValue * fg1_spl_autoload_extensions(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_spl_autoload_extensions(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_autoload_extensions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -594,7 +594,7 @@ _rv => rdi TypedValue* fh_spl_autoload_functions(TypedValue* _rv) asm("_ZN4HPHP24f_spl_autoload_functionsEv"); -TypedValue* fg_spl_autoload_functions(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_autoload_functions(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -629,8 +629,8 @@ prepend => rdx bool fh_spl_autoload_register(TypedValue* autoload_function, bool throws, bool prepend) asm("_ZN4HPHP23f_spl_autoload_registerERKNS_7VariantEbb"); -TypedValue * fg1_spl_autoload_register(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_spl_autoload_register(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_spl_autoload_register(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_spl_autoload_register(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -650,7 +650,7 @@ TypedValue * fg1_spl_autoload_register(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_spl_autoload_register(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_autoload_register(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -690,7 +690,7 @@ autoload_function => rdi bool fh_spl_autoload_unregister(TypedValue* autoload_function) asm("_ZN4HPHP25f_spl_autoload_unregisterERKNS_7VariantE"); -TypedValue* fg_spl_autoload_unregister(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_autoload_unregister(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -723,8 +723,8 @@ file_extensions => rsi void fh_spl_autoload(Value* class_name, Value* file_extensions) asm("_ZN4HPHP14f_spl_autoloadERKNS_6StringES2_"); -TypedValue * fg1_spl_autoload(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_spl_autoload(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_spl_autoload(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_spl_autoload(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -743,7 +743,7 @@ TypedValue * fg1_spl_autoload(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_spl_autoload(HPHP::VM::ActRec *ar) { +TypedValue* fg_spl_autoload(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_splfile.ext_hhvm.cpp b/hphp/runtime/ext/ext_splfile.ext_hhvm.cpp index 6e8fcc9c5..a4ba20718 100644 --- a/hphp/runtime/ext/ext_splfile.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_splfile.ext_hhvm.cpp @@ -36,8 +36,8 @@ file_name => rdx Value* fh_hphp_splfileinfo___construct(Value* _rv, Value* obj, Value* file_name) asm("_ZN4HPHP30f_hphp_splfileinfo___constructERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_splfileinfo___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo___construct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo___construct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -51,7 +51,7 @@ TypedValue * fg1_hphp_splfileinfo___construct(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo___construct(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -92,8 +92,8 @@ obj => rdi long fh_hphp_splfileinfo_getatime(Value* obj) asm("_ZN4HPHP27f_hphp_splfileinfo_getatimeERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getatime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getatime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getatime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getatime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -101,7 +101,7 @@ TypedValue * fg1_hphp_splfileinfo_getatime(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getatime(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getatime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -143,8 +143,8 @@ suffix => rdx Value* fh_hphp_splfileinfo_getbasename(Value* _rv, Value* obj, Value* suffix) asm("_ZN4HPHP30f_hphp_splfileinfo_getbasenameERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_splfileinfo_getbasename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getbasename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getbasename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getbasename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -158,7 +158,7 @@ TypedValue * fg1_hphp_splfileinfo_getbasename(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_getbasename(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getbasename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -199,8 +199,8 @@ obj => rdi long fh_hphp_splfileinfo_getctime(Value* obj) asm("_ZN4HPHP27f_hphp_splfileinfo_getctimeERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getctime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getctime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getctime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getctime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -208,7 +208,7 @@ TypedValue * fg1_hphp_splfileinfo_getctime(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getctime(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getctime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -250,8 +250,8 @@ class_name => rdx Value* fh_hphp_splfileinfo_getfileinfo(Value* _rv, Value* obj, Value* class_name) asm("_ZN4HPHP30f_hphp_splfileinfo_getfileinfoERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_splfileinfo_getfileinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getfileinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getfileinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getfileinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -265,7 +265,7 @@ TypedValue * fg1_hphp_splfileinfo_getfileinfo(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_getfileinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getfileinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -307,8 +307,8 @@ obj => rsi Value* fh_hphp_splfileinfo_getfilename(Value* _rv, Value* obj) asm("_ZN4HPHP30f_hphp_splfileinfo_getfilenameERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getfilename(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getfilename(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getfilename(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -317,7 +317,7 @@ TypedValue * fg1_hphp_splfileinfo_getfilename(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_getfilename(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getfilename(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -358,8 +358,8 @@ obj => rdi long fh_hphp_splfileinfo_getgroup(Value* obj) asm("_ZN4HPHP27f_hphp_splfileinfo_getgroupERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getgroup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getgroup(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getgroup(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getgroup(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -367,7 +367,7 @@ TypedValue * fg1_hphp_splfileinfo_getgroup(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getgroup(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getgroup(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -407,8 +407,8 @@ obj => rdi long fh_hphp_splfileinfo_getinode(Value* obj) asm("_ZN4HPHP27f_hphp_splfileinfo_getinodeERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getinode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getinode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getinode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getinode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -416,7 +416,7 @@ TypedValue * fg1_hphp_splfileinfo_getinode(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getinode(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getinode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -457,8 +457,8 @@ obj => rsi Value* fh_hphp_splfileinfo_getlinktarget(Value* _rv, Value* obj) asm("_ZN4HPHP32f_hphp_splfileinfo_getlinktargetERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getlinktarget(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getlinktarget(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getlinktarget(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getlinktarget(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -467,7 +467,7 @@ TypedValue * fg1_hphp_splfileinfo_getlinktarget(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_hphp_splfileinfo_getlinktarget(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getlinktarget(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -508,8 +508,8 @@ obj => rdi long fh_hphp_splfileinfo_getmtime(Value* obj) asm("_ZN4HPHP27f_hphp_splfileinfo_getmtimeERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getmtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getmtime(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getmtime(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getmtime(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -517,7 +517,7 @@ TypedValue * fg1_hphp_splfileinfo_getmtime(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getmtime(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getmtime(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -557,8 +557,8 @@ obj => rdi long fh_hphp_splfileinfo_getowner(Value* obj) asm("_ZN4HPHP27f_hphp_splfileinfo_getownerERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getowner(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getowner(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getowner(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getowner(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -566,7 +566,7 @@ TypedValue * fg1_hphp_splfileinfo_getowner(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getowner(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getowner(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -607,8 +607,8 @@ obj => rsi Value* fh_hphp_splfileinfo_getpath(Value* _rv, Value* obj) asm("_ZN4HPHP26f_hphp_splfileinfo_getpathERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getpath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getpath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -617,7 +617,7 @@ TypedValue * fg1_hphp_splfileinfo_getpath(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getpath(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getpath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -660,8 +660,8 @@ class_name => rdx Value* fh_hphp_splfileinfo_getpathinfo(Value* _rv, Value* obj, Value* class_name) asm("_ZN4HPHP30f_hphp_splfileinfo_getpathinfoERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_splfileinfo_getpathinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getpathinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getpathinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getpathinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -675,7 +675,7 @@ TypedValue * fg1_hphp_splfileinfo_getpathinfo(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_getpathinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getpathinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -717,8 +717,8 @@ obj => rsi Value* fh_hphp_splfileinfo_getpathname(Value* _rv, Value* obj) asm("_ZN4HPHP30f_hphp_splfileinfo_getpathnameERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getpathname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getpathname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getpathname(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getpathname(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -727,7 +727,7 @@ TypedValue * fg1_hphp_splfileinfo_getpathname(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_getpathname(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getpathname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -768,8 +768,8 @@ obj => rdi long fh_hphp_splfileinfo_getperms(Value* obj) asm("_ZN4HPHP27f_hphp_splfileinfo_getpermsERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getperms(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getperms(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getperms(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getperms(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -777,7 +777,7 @@ TypedValue * fg1_hphp_splfileinfo_getperms(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getperms(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getperms(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -818,8 +818,8 @@ obj => rsi TypedValue* fh_hphp_splfileinfo_getrealpath(TypedValue* _rv, Value* obj) asm("_ZN4HPHP30f_hphp_splfileinfo_getrealpathERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getrealpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getrealpath(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getrealpath(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getrealpath(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_splfileinfo_getrealpath((rv), &args[-0].m_data); @@ -827,7 +827,7 @@ TypedValue * fg1_hphp_splfileinfo_getrealpath(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_getrealpath(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getrealpath(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -867,8 +867,8 @@ obj => rdi long fh_hphp_splfileinfo_getsize(Value* obj) asm("_ZN4HPHP26f_hphp_splfileinfo_getsizeERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_getsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_getsize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_getsize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_getsize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -876,7 +876,7 @@ TypedValue * fg1_hphp_splfileinfo_getsize(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_getsize(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_getsize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -917,8 +917,8 @@ obj => rsi Value* fh_hphp_splfileinfo_gettype(Value* _rv, Value* obj) asm("_ZN4HPHP26f_hphp_splfileinfo_gettypeERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_gettype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_gettype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_gettype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_gettype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -927,7 +927,7 @@ TypedValue * fg1_hphp_splfileinfo_gettype(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_gettype(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_gettype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -968,8 +968,8 @@ obj => rdi bool fh_hphp_splfileinfo_isdir(Value* obj) asm("_ZN4HPHP24f_hphp_splfileinfo_isdirERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_isdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_isdir(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_isdir(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_isdir(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -977,7 +977,7 @@ TypedValue * fg1_hphp_splfileinfo_isdir(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_hphp_splfileinfo_isdir(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_isdir(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1017,8 +1017,8 @@ obj => rdi bool fh_hphp_splfileinfo_isexecutable(Value* obj) asm("_ZN4HPHP31f_hphp_splfileinfo_isexecutableERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_isexecutable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_isexecutable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_isexecutable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_isexecutable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1026,7 +1026,7 @@ TypedValue * fg1_hphp_splfileinfo_isexecutable(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_isexecutable(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_isexecutable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1066,8 +1066,8 @@ obj => rdi bool fh_hphp_splfileinfo_isfile(Value* obj) asm("_ZN4HPHP25f_hphp_splfileinfo_isfileERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_isfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_isfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_isfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_isfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1075,7 +1075,7 @@ TypedValue * fg1_hphp_splfileinfo_isfile(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_hphp_splfileinfo_isfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_isfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1115,8 +1115,8 @@ obj => rdi bool fh_hphp_splfileinfo_islink(Value* obj) asm("_ZN4HPHP25f_hphp_splfileinfo_islinkERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_islink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_islink(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_islink(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_islink(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1124,7 +1124,7 @@ TypedValue * fg1_hphp_splfileinfo_islink(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_hphp_splfileinfo_islink(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_islink(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1164,8 +1164,8 @@ obj => rdi bool fh_hphp_splfileinfo_isreadable(Value* obj) asm("_ZN4HPHP29f_hphp_splfileinfo_isreadableERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_isreadable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_isreadable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_isreadable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_isreadable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1173,7 +1173,7 @@ TypedValue * fg1_hphp_splfileinfo_isreadable(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_splfileinfo_isreadable(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_isreadable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1213,8 +1213,8 @@ obj => rdi bool fh_hphp_splfileinfo_iswritable(Value* obj) asm("_ZN4HPHP29f_hphp_splfileinfo_iswritableERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo_iswritable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_iswritable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_iswritable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_iswritable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1222,7 +1222,7 @@ TypedValue * fg1_hphp_splfileinfo_iswritable(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_splfileinfo_iswritable(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_iswritable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1266,8 +1266,8 @@ context => r8 Value* fh_hphp_splfileinfo_openfile(Value* _rv, Value* obj, Value* open_mode, bool use_include_path, TypedValue* context) asm("_ZN4HPHP27f_hphp_splfileinfo_openfileERKNS_6ObjectERKNS_6StringEbRKNS_7VariantE"); -TypedValue * fg1_hphp_splfileinfo_openfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_openfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_openfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_openfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-2)->m_type != KindOfBoolean) { @@ -1284,7 +1284,7 @@ TypedValue * fg1_hphp_splfileinfo_openfile(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileinfo_openfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_openfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1325,8 +1325,8 @@ class_name => rsi void fh_hphp_splfileinfo_setfileclass(Value* obj, Value* class_name) asm("_ZN4HPHP31f_hphp_splfileinfo_setfileclassERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_splfileinfo_setfileclass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_setfileclass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_setfileclass(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_setfileclass(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1340,7 +1340,7 @@ TypedValue * fg1_hphp_splfileinfo_setfileclass(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_setfileclass(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_setfileclass(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1381,8 +1381,8 @@ class_name => rsi void fh_hphp_splfileinfo_setinfoclass(Value* obj, Value* class_name) asm("_ZN4HPHP31f_hphp_splfileinfo_setinfoclassERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_splfileinfo_setinfoclass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo_setinfoclass(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo_setinfoclass(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo_setinfoclass(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1396,7 +1396,7 @@ TypedValue * fg1_hphp_splfileinfo_setinfoclass(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileinfo_setinfoclass(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo_setinfoclass(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1438,8 +1438,8 @@ obj => rsi Value* fh_hphp_splfileinfo___tostring(Value* _rv, Value* obj) asm("_ZN4HPHP29f_hphp_splfileinfo___tostringERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileinfo___tostring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileinfo___tostring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileinfo___tostring(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileinfo___tostring(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1448,7 +1448,7 @@ TypedValue * fg1_hphp_splfileinfo___tostring(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_splfileinfo___tostring(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileinfo___tostring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1494,8 +1494,8 @@ context => r9 Value* fh_hphp_splfileobject___construct(Value* _rv, Value* obj, Value* filename, Value* open_mode, bool use_include_path, TypedValue* context) asm("_ZN4HPHP32f_hphp_splfileobject___constructERKNS_6ObjectERKNS_6StringES5_bRKNS_7VariantE"); -TypedValue * fg1_hphp_splfileobject___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject___construct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject___construct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if ((args-3)->m_type != KindOfBoolean) { @@ -1515,7 +1515,7 @@ TypedValue * fg1_hphp_splfileobject___construct(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_hphp_splfileobject___construct(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1557,8 +1557,8 @@ obj => rsi TypedValue* fh_hphp_splfileobject_current(TypedValue* _rv, Value* obj) asm("_ZN4HPHP28f_hphp_splfileobject_currentERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_current(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_current(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_current(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_splfileobject_current((rv), &args[-0].m_data); @@ -1566,7 +1566,7 @@ TypedValue * fg1_hphp_splfileobject_current(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_hphp_splfileobject_current(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_current(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1606,8 +1606,8 @@ obj => rdi bool fh_hphp_splfileobject_eof(Value* obj) asm("_ZN4HPHP24f_hphp_splfileobject_eofERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_eof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_eof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_eof(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_eof(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1615,7 +1615,7 @@ TypedValue * fg1_hphp_splfileobject_eof(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_hphp_splfileobject_eof(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_eof(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1655,8 +1655,8 @@ obj => rdi bool fh_hphp_splfileobject_fflush(Value* obj) asm("_ZN4HPHP27f_hphp_splfileobject_fflushERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_fflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fflush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fflush(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fflush(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1664,7 +1664,7 @@ TypedValue * fg1_hphp_splfileobject_fflush(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fflush(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fflush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1705,8 +1705,8 @@ obj => rsi Value* fh_hphp_splfileobject_fgetc(Value* _rv, Value* obj) asm("_ZN4HPHP26f_hphp_splfileobject_fgetcERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_fgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fgetc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fgetc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1715,7 +1715,7 @@ TypedValue * fg1_hphp_splfileobject_fgetc(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fgetc(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fgetc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1760,8 +1760,8 @@ escape => r8 TypedValue* fh_hphp_splfileobject_fgetcsv(TypedValue* _rv, Value* obj, Value* delimiter, Value* enclosure, Value* escape) asm("_ZN4HPHP28f_hphp_splfileobject_fgetcsvERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_hphp_splfileobject_fgetcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fgetcsv(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fgetcsv(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fgetcsv(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-3)->m_type)) { tvCastToStringInPlace(args-3); @@ -1780,7 +1780,7 @@ TypedValue * fg1_hphp_splfileobject_fgetcsv(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_hphp_splfileobject_fgetcsv(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fgetcsv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1821,8 +1821,8 @@ obj => rsi Value* fh_hphp_splfileobject_fgets(Value* _rv, Value* obj) asm("_ZN4HPHP26f_hphp_splfileobject_fgetsERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_fgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fgets(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fgets(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -1831,7 +1831,7 @@ TypedValue * fg1_hphp_splfileobject_fgets(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fgets(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fgets(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1874,8 +1874,8 @@ allowable_tags => rdx Value* fh_hphp_splfileobject_fgetss(Value* _rv, Value* obj, Value* allowable_tags) asm("_ZN4HPHP27f_hphp_splfileobject_fgetssERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_hphp_splfileobject_fgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fgetss(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fgetss(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1889,7 +1889,7 @@ TypedValue * fg1_hphp_splfileobject_fgetss(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fgetss(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fgetss(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1931,8 +1931,8 @@ wouldblock => rsi bool fh_hphp_splfileobject_flock(Value* obj, TypedValue* wouldblock) asm("_ZN4HPHP26f_hphp_splfileobject_flockERKNS_6ObjectERKNS_14VRefParamValueE"); -TypedValue * fg1_hphp_splfileobject_flock(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_flock(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_flock(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_flock(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1940,7 +1940,7 @@ TypedValue * fg1_hphp_splfileobject_flock(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_flock(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_flock(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1980,8 +1980,8 @@ obj => rdi long fh_hphp_splfileobject_fpassthru(Value* obj) asm("_ZN4HPHP30f_hphp_splfileobject_fpassthruERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_fpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fpassthru(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fpassthru(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1989,7 +1989,7 @@ TypedValue * fg1_hphp_splfileobject_fpassthru(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileobject_fpassthru(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fpassthru(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2033,8 +2033,8 @@ _argv => r8 TypedValue* fh_hphp_splfileobject_fscanf(TypedValue* _rv, long _argc, Value* obj, Value* format, TypedValue* _argv) asm("_ZN4HPHP27f_hphp_splfileobject_fscanfElRKNS_6ObjectERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_hphp_splfileobject_fscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fscanf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fscanf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-2)->m_type)) { tvCastToStringInPlace(args-2); @@ -2050,7 +2050,7 @@ TypedValue * fg1_hphp_splfileobject_fscanf(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fscanf(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fscanf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2092,8 +2092,8 @@ whence => rdx long fh_hphp_splfileobject_fseek(Value* obj, long offset, long whence) asm("_ZN4HPHP26f_hphp_splfileobject_fseekERKNS_6ObjectEll"); -TypedValue * fg1_hphp_splfileobject_fseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fseek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fseek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-2)->m_type != KindOfInt64) { @@ -2109,7 +2109,7 @@ TypedValue * fg1_hphp_splfileobject_fseek(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fseek(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fseek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2150,8 +2150,8 @@ obj => rsi TypedValue* fh_hphp_splfileobject_fstat(TypedValue* _rv, Value* obj) asm("_ZN4HPHP26f_hphp_splfileobject_fstatERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_fstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fstat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fstat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fstat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_splfileobject_fstat((rv), &args[-0].m_data); @@ -2159,7 +2159,7 @@ TypedValue * fg1_hphp_splfileobject_fstat(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fstat(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fstat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2199,8 +2199,8 @@ obj => rdi long fh_hphp_splfileobject_ftell(Value* obj) asm("_ZN4HPHP26f_hphp_splfileobject_ftellERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_ftell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_ftell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_ftell(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_ftell(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2208,7 +2208,7 @@ TypedValue * fg1_hphp_splfileobject_ftell(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_ftell(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_ftell(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2249,8 +2249,8 @@ size => rsi bool fh_hphp_splfileobject_ftruncate(Value* obj, long size) asm("_ZN4HPHP30f_hphp_splfileobject_ftruncateERKNS_6ObjectEl"); -TypedValue * fg1_hphp_splfileobject_ftruncate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_ftruncate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_ftruncate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_ftruncate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -2263,7 +2263,7 @@ TypedValue * fg1_hphp_splfileobject_ftruncate(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_hphp_splfileobject_ftruncate(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_ftruncate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2305,8 +2305,8 @@ length => rdx long fh_hphp_splfileobject_fwrite(Value* obj, Value* str, long length) asm("_ZN4HPHP27f_hphp_splfileobject_fwriteERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_hphp_splfileobject_fwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_fwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_fwrite(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_fwrite(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-2)->m_type != KindOfInt64) { @@ -2322,7 +2322,7 @@ TypedValue * fg1_hphp_splfileobject_fwrite(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_fwrite(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_fwrite(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2363,8 +2363,8 @@ obj => rsi TypedValue* fh_hphp_splfileobject_getcvscontrol(TypedValue* _rv, Value* obj) asm("_ZN4HPHP34f_hphp_splfileobject_getcvscontrolERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_getcvscontrol(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_getcvscontrol(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_getcvscontrol(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_getcvscontrol(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_hphp_splfileobject_getcvscontrol((rv), &args[-0].m_data); @@ -2372,7 +2372,7 @@ TypedValue * fg1_hphp_splfileobject_getcvscontrol(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_hphp_splfileobject_getcvscontrol(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_getcvscontrol(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2412,8 +2412,8 @@ obj => rdi long fh_hphp_splfileobject_getflags(Value* obj) asm("_ZN4HPHP29f_hphp_splfileobject_getflagsERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_getflags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_getflags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_getflags(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_getflags(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2421,7 +2421,7 @@ TypedValue * fg1_hphp_splfileobject_getflags(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_splfileobject_getflags(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_getflags(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2461,8 +2461,8 @@ obj => rdi long fh_hphp_splfileobject_getmaxlinelen(Value* obj) asm("_ZN4HPHP34f_hphp_splfileobject_getmaxlinelenERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_getmaxlinelen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_getmaxlinelen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_getmaxlinelen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_getmaxlinelen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2470,7 +2470,7 @@ TypedValue * fg1_hphp_splfileobject_getmaxlinelen(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_hphp_splfileobject_getmaxlinelen(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_getmaxlinelen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2510,8 +2510,8 @@ obj => rdi long fh_hphp_splfileobject_key(Value* obj) asm("_ZN4HPHP24f_hphp_splfileobject_keyERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_key(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_key(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_key(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -2519,7 +2519,7 @@ TypedValue * fg1_hphp_splfileobject_key(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_hphp_splfileobject_key(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_key(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2558,8 +2558,8 @@ obj => rdi void fh_hphp_splfileobject_next(Value* obj) asm("_ZN4HPHP25f_hphp_splfileobject_nextERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_next(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_next(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2568,7 +2568,7 @@ TypedValue * fg1_hphp_splfileobject_next(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_hphp_splfileobject_next(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2608,8 +2608,8 @@ obj => rdi void fh_hphp_splfileobject_rewind(Value* obj) asm("_ZN4HPHP27f_hphp_splfileobject_rewindERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_rewind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_rewind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2618,7 +2618,7 @@ TypedValue * fg1_hphp_splfileobject_rewind(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_rewind(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_rewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2659,8 +2659,8 @@ obj => rdi bool fh_hphp_splfileobject_valid(Value* obj) asm("_ZN4HPHP26f_hphp_splfileobject_validERKNS_6ObjectE"); -TypedValue * fg1_hphp_splfileobject_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_valid(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_valid(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_valid(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2668,7 +2668,7 @@ TypedValue * fg1_hphp_splfileobject_valid(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_hphp_splfileobject_valid(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_valid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2708,8 +2708,8 @@ line_pos => rsi void fh_hphp_splfileobject_seek(Value* obj, long line_pos) asm("_ZN4HPHP25f_hphp_splfileobject_seekERKNS_6ObjectEl"); -TypedValue * fg1_hphp_splfileobject_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_seek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_seek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_seek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2723,7 +2723,7 @@ TypedValue * fg1_hphp_splfileobject_seek(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_hphp_splfileobject_seek(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_seek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2766,8 +2766,8 @@ escape => rcx void fh_hphp_splfileobject_setcsvcontrol(Value* obj, Value* delimiter, Value* enclosure, Value* escape) asm("_ZN4HPHP34f_hphp_splfileobject_setcsvcontrolERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_hphp_splfileobject_setcsvcontrol(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_setcsvcontrol(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_setcsvcontrol(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_setcsvcontrol(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2787,7 +2787,7 @@ TypedValue * fg1_hphp_splfileobject_setcsvcontrol(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_hphp_splfileobject_setcsvcontrol(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_setcsvcontrol(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2828,8 +2828,8 @@ flags => rsi void fh_hphp_splfileobject_setflags(Value* obj, long flags) asm("_ZN4HPHP29f_hphp_splfileobject_setflagsERKNS_6ObjectEl"); -TypedValue * fg1_hphp_splfileobject_setflags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_setflags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_setflags(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_setflags(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2843,7 +2843,7 @@ TypedValue * fg1_hphp_splfileobject_setflags(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_splfileobject_setflags(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_setflags(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2884,8 +2884,8 @@ max_len => rsi void fh_hphp_splfileobject_setmaxlinelen(Value* obj, long max_len) asm("_ZN4HPHP34f_hphp_splfileobject_setmaxlinelenERKNS_6ObjectEl"); -TypedValue * fg1_hphp_splfileobject_setmaxlinelen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_splfileobject_setmaxlinelen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_splfileobject_setmaxlinelen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_splfileobject_setmaxlinelen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -2899,7 +2899,7 @@ TypedValue * fg1_hphp_splfileobject_setmaxlinelen(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* fg_hphp_splfileobject_setmaxlinelen(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_splfileobject_setmaxlinelen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_sqlite3.ext_hhvm.cpp b/hphp/runtime/ext/ext_sqlite3.ext_hhvm.cpp index 273f215ff..698a06e51 100644 --- a/hphp/runtime/ext/ext_sqlite3.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_sqlite3.ext_hhvm.cpp @@ -46,8 +46,8 @@ encryption_key => rcx void th_7SQLite3___construct(ObjectData* this_, Value* filename, long flags, Value* encryption_key) asm("_ZN4HPHP9c_SQLite313t___constructERKNS_6StringElS3_"); -TypedValue* tg1_7SQLite3___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -70,7 +70,7 @@ TypedValue* tg1_7SQLite3___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7SQLite3___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -116,8 +116,8 @@ encryption_key => rcx void th_7SQLite3_open(ObjectData* this_, Value* filename, long flags, Value* encryption_key) asm("_ZN4HPHP9c_SQLite36t_openERKNS_6StringElS3_"); -TypedValue* tg1_7SQLite3_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_open(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_open(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -140,7 +140,7 @@ TypedValue* tg1_7SQLite3_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* tg_7SQLite3_open(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_open(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -185,8 +185,8 @@ msecs => rsi bool th_7SQLite3_busytimeout(ObjectData* this_, long msecs) asm("_ZN4HPHP9c_SQLite313t_busytimeoutEl"); -TypedValue* tg1_7SQLite3_busytimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_busytimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_busytimeout(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_busytimeout(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -194,7 +194,7 @@ TypedValue* tg1_7SQLite3_busytimeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7SQLite3_busytimeout(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_busytimeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -237,7 +237,7 @@ this_ => rdi bool th_7SQLite3_close(ObjectData* this_) asm("_ZN4HPHP9c_SQLite37t_closeEv"); -TypedValue* tg_7SQLite3_close(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -274,8 +274,8 @@ sql => rsi bool th_7SQLite3_exec(ObjectData* this_, Value* sql) asm("_ZN4HPHP9c_SQLite36t_execERKNS_6StringE"); -TypedValue* tg1_7SQLite3_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_exec(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_exec(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -283,7 +283,7 @@ TypedValue* tg1_7SQLite3_exec(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* tg_7SQLite3_exec(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_exec(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -327,7 +327,7 @@ this_ => rsi Value* th_7SQLite3_version(Value* _rv, ObjectData* this_) asm("_ZN4HPHP9c_SQLite39t_versionEv"); -TypedValue* tg_7SQLite3_version(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_version(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -364,7 +364,7 @@ this_ => rdi long th_7SQLite3_lastinsertrowid(ObjectData* this_) asm("_ZN4HPHP9c_SQLite317t_lastinsertrowidEv"); -TypedValue* tg_7SQLite3_lastinsertrowid(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_lastinsertrowid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -400,7 +400,7 @@ this_ => rdi long th_7SQLite3_lasterrorcode(ObjectData* this_) asm("_ZN4HPHP9c_SQLite315t_lasterrorcodeEv"); -TypedValue* tg_7SQLite3_lasterrorcode(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_lasterrorcode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -437,7 +437,7 @@ this_ => rsi Value* th_7SQLite3_lasterrormsg(Value* _rv, ObjectData* this_) asm("_ZN4HPHP9c_SQLite314t_lasterrormsgEv"); -TypedValue* tg_7SQLite3_lasterrormsg(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_lasterrormsg(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -475,8 +475,8 @@ extension => rsi bool th_7SQLite3_loadextension(ObjectData* this_, Value* extension) asm("_ZN4HPHP9c_SQLite315t_loadextensionERKNS_6StringE"); -TypedValue* tg1_7SQLite3_loadextension(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_loadextension(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_loadextension(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_loadextension(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -484,7 +484,7 @@ TypedValue* tg1_7SQLite3_loadextension(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* tg_7SQLite3_loadextension(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_loadextension(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -527,7 +527,7 @@ this_ => rdi long th_7SQLite3_changes(ObjectData* this_) asm("_ZN4HPHP9c_SQLite39t_changesEv"); -TypedValue* tg_7SQLite3_changes(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_changes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -565,8 +565,8 @@ sql => rdx Value* th_7SQLite3_escapestring(Value* _rv, ObjectData* this_, Value* sql) asm("_ZN4HPHP9c_SQLite314t_escapestringERKNS_6StringE"); -TypedValue* tg1_7SQLite3_escapestring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_escapestring(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_escapestring(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_escapestring(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -575,7 +575,7 @@ TypedValue* tg1_7SQLite3_escapestring(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_7SQLite3_escapestring(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_escapestring(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -621,8 +621,8 @@ sql => rdx TypedValue* th_7SQLite3_prepare(TypedValue* _rv, ObjectData* this_, Value* sql) asm("_ZN4HPHP9c_SQLite39t_prepareERKNS_6StringE"); -TypedValue* tg1_7SQLite3_prepare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_prepare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_prepare(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_prepare(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_7SQLite3_prepare((rv), (this_), &args[-0].m_data); @@ -630,7 +630,7 @@ TypedValue* tg1_7SQLite3_prepare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_7SQLite3_prepare(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_prepare(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -675,8 +675,8 @@ sql => rdx TypedValue* th_7SQLite3_query(TypedValue* _rv, ObjectData* this_, Value* sql) asm("_ZN4HPHP9c_SQLite37t_queryERKNS_6StringE"); -TypedValue* tg1_7SQLite3_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_query(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_query(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_7SQLite3_query((rv), (this_), &args[-0].m_data); @@ -684,7 +684,7 @@ TypedValue* tg1_7SQLite3_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_7SQLite3_query(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -730,8 +730,8 @@ entire_row => rcx TypedValue* th_7SQLite3_querysingle(TypedValue* _rv, ObjectData* this_, Value* sql, bool entire_row) asm("_ZN4HPHP9c_SQLite313t_querysingleERKNS_6StringEb"); -TypedValue* tg1_7SQLite3_querysingle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_querysingle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_querysingle(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_querysingle(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -749,7 +749,7 @@ TypedValue* tg1_7SQLite3_querysingle(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_7SQLite3_querysingle(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_querysingle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -795,8 +795,8 @@ argcount => rcx bool th_7SQLite3_createfunction(ObjectData* this_, Value* name, TypedValue* callback, long argcount) asm("_ZN4HPHP9c_SQLite316t_createfunctionERKNS_6StringERKNS_7VariantEl"); -TypedValue* tg1_7SQLite3_createfunction(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_createfunction(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_createfunction(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_createfunction(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -814,7 +814,7 @@ TypedValue* tg1_7SQLite3_createfunction(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_7SQLite3_createfunction(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_createfunction(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -861,8 +861,8 @@ argcount => r8 bool th_7SQLite3_createaggregate(ObjectData* this_, Value* name, TypedValue* step, TypedValue* final, long argcount) asm("_ZN4HPHP9c_SQLite317t_createaggregateERKNS_6StringERKNS_7VariantES6_l"); -TypedValue* tg1_7SQLite3_createaggregate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_createaggregate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_createaggregate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_createaggregate(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -880,7 +880,7 @@ TypedValue* tg1_7SQLite3_createaggregate(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_7SQLite3_createaggregate(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_createaggregate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -927,8 +927,8 @@ dbname => r8 bool th_7SQLite3_openblob(ObjectData* this_, Value* table, Value* column, long rowid, Value* dbname) asm("_ZN4HPHP9c_SQLite310t_openblobERKNS_6StringES3_lS3_"); -TypedValue* tg1_7SQLite3_openblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_7SQLite3_openblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_7SQLite3_openblob(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_7SQLite3_openblob(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -952,7 +952,7 @@ TypedValue* tg1_7SQLite3_openblob(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_7SQLite3_openblob(HPHP::VM::ActRec *ar) { +TypedValue* tg_7SQLite3_openblob(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1006,8 +1006,8 @@ statement => rdx void th_11SQLite3Stmt___construct(ObjectData* this_, Value* dbobject, Value* statement) asm("_ZN4HPHP13c_SQLite3Stmt13t___constructERKNS_6ObjectERKNS_6StringE"); -TypedValue* tg1_11SQLite3Stmt___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11SQLite3Stmt___construct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11SQLite3Stmt___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11SQLite3Stmt___construct(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -1021,7 +1021,7 @@ TypedValue* tg1_11SQLite3Stmt___construct(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_11SQLite3Stmt___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1065,7 +1065,7 @@ this_ => rdi long th_11SQLite3Stmt_paramcount(ObjectData* this_) asm("_ZN4HPHP13c_SQLite3Stmt12t_paramcountEv"); -TypedValue* tg_11SQLite3Stmt_paramcount(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt_paramcount(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1101,7 +1101,7 @@ this_ => rdi bool th_11SQLite3Stmt_close(ObjectData* this_) asm("_ZN4HPHP13c_SQLite3Stmt7t_closeEv"); -TypedValue* tg_11SQLite3Stmt_close(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1137,7 +1137,7 @@ this_ => rdi bool th_11SQLite3Stmt_reset(ObjectData* this_) asm("_ZN4HPHP13c_SQLite3Stmt7t_resetEv"); -TypedValue* tg_11SQLite3Stmt_reset(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt_reset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1173,7 +1173,7 @@ this_ => rdi bool th_11SQLite3Stmt_clear(ObjectData* this_) asm("_ZN4HPHP13c_SQLite3Stmt7t_clearEv"); -TypedValue* tg_11SQLite3Stmt_clear(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt_clear(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1212,8 +1212,8 @@ type => rcx bool th_11SQLite3Stmt_bindparam(ObjectData* this_, TypedValue* name, TypedValue* parameter, long type) asm("_ZN4HPHP13c_SQLite3Stmt11t_bindparamERKNS_7VariantERKNS_14VRefParamValueEl"); -TypedValue* tg1_11SQLite3Stmt_bindparam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11SQLite3Stmt_bindparam(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11SQLite3Stmt_bindparam(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11SQLite3Stmt_bindparam(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-2); @@ -1221,7 +1221,7 @@ TypedValue* tg1_11SQLite3Stmt_bindparam(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_11SQLite3Stmt_bindparam(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt_bindparam(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1267,8 +1267,8 @@ type => rcx bool th_11SQLite3Stmt_bindvalue(ObjectData* this_, TypedValue* name, TypedValue* parameter, long type) asm("_ZN4HPHP13c_SQLite3Stmt11t_bindvalueERKNS_7VariantES3_l"); -TypedValue* tg1_11SQLite3Stmt_bindvalue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_11SQLite3Stmt_bindvalue(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_11SQLite3Stmt_bindvalue(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_11SQLite3Stmt_bindvalue(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-2); @@ -1276,7 +1276,7 @@ TypedValue* tg1_11SQLite3Stmt_bindvalue(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_11SQLite3Stmt_bindvalue(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt_bindvalue(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1320,7 +1320,7 @@ this_ => rsi TypedValue* th_11SQLite3Stmt_execute(TypedValue* _rv, ObjectData* this_) asm("_ZN4HPHP13c_SQLite3Stmt9t_executeEv"); -TypedValue* tg_11SQLite3Stmt_execute(HPHP::VM::ActRec *ar) { +TypedValue* tg_11SQLite3Stmt_execute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1365,7 +1365,7 @@ this_ => rdi void th_13SQLite3Result___construct(ObjectData* this_) asm("_ZN4HPHP15c_SQLite3Result13t___constructEv"); -TypedValue* tg_13SQLite3Result___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_13SQLite3Result___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1402,7 +1402,7 @@ this_ => rdi long th_13SQLite3Result_numcolumns(ObjectData* this_) asm("_ZN4HPHP15c_SQLite3Result12t_numcolumnsEv"); -TypedValue* tg_13SQLite3Result_numcolumns(HPHP::VM::ActRec *ar) { +TypedValue* tg_13SQLite3Result_numcolumns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1440,8 +1440,8 @@ column => rdx Value* th_13SQLite3Result_columnname(Value* _rv, ObjectData* this_, long column) asm("_ZN4HPHP15c_SQLite3Result12t_columnnameEl"); -TypedValue* tg1_13SQLite3Result_columnname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_13SQLite3Result_columnname(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_13SQLite3Result_columnname(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_13SQLite3Result_columnname(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1450,7 +1450,7 @@ TypedValue* tg1_13SQLite3Result_columnname(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_13SQLite3Result_columnname(HPHP::VM::ActRec *ar) { +TypedValue* tg_13SQLite3Result_columnname(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1495,8 +1495,8 @@ column => rsi long th_13SQLite3Result_columntype(ObjectData* this_, long column) asm("_ZN4HPHP15c_SQLite3Result12t_columntypeEl"); -TypedValue* tg1_13SQLite3Result_columntype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_13SQLite3Result_columntype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_13SQLite3Result_columntype(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_13SQLite3Result_columntype(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -1504,7 +1504,7 @@ TypedValue* tg1_13SQLite3Result_columntype(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_13SQLite3Result_columntype(HPHP::VM::ActRec *ar) { +TypedValue* tg_13SQLite3Result_columntype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1549,8 +1549,8 @@ mode => rdx TypedValue* th_13SQLite3Result_fetcharray(TypedValue* _rv, ObjectData* this_, long mode) asm("_ZN4HPHP15c_SQLite3Result12t_fetcharrayEl"); -TypedValue* tg1_13SQLite3Result_fetcharray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_13SQLite3Result_fetcharray(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_13SQLite3Result_fetcharray(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_13SQLite3Result_fetcharray(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_13SQLite3Result_fetcharray((rv), (this_), (count > 0) ? (long)(args[-0].m_data.num) : (long)(k_SQLITE3_BOTH)); @@ -1558,7 +1558,7 @@ TypedValue* tg1_13SQLite3Result_fetcharray(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_13SQLite3Result_fetcharray(HPHP::VM::ActRec *ar) { +TypedValue* tg_13SQLite3Result_fetcharray(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1601,7 +1601,7 @@ this_ => rdi bool th_13SQLite3Result_reset(ObjectData* this_) asm("_ZN4HPHP15c_SQLite3Result7t_resetEv"); -TypedValue* tg_13SQLite3Result_reset(HPHP::VM::ActRec *ar) { +TypedValue* tg_13SQLite3Result_reset(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1637,7 +1637,7 @@ this_ => rdi bool th_13SQLite3Result_finalize(ObjectData* this_) asm("_ZN4HPHP15c_SQLite3Result10t_finalizeEv"); -TypedValue* tg_13SQLite3Result_finalize(HPHP::VM::ActRec *ar) { +TypedValue* tg_13SQLite3Result_finalize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_stream.ext_hhvm.cpp b/hphp/runtime/ext/ext_stream.ext_hhvm.cpp index cd71d21eb..04a01d827 100644 --- a/hphp/runtime/ext/ext_stream.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_stream.ext_hhvm.cpp @@ -36,8 +36,8 @@ params => rdx Value* fh_stream_context_create(Value* _rv, Value* options, Value* params) asm("_ZN4HPHP23f_stream_context_createERKNS_5ArrayES2_"); -TypedValue * fg1_stream_context_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_context_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_context_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_context_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -57,7 +57,7 @@ TypedValue * fg1_stream_context_create(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_stream_context_create(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_context_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -99,8 +99,8 @@ options => rsi Value* fh_stream_context_get_default(Value* _rv, Value* options) asm("_ZN4HPHP28f_stream_context_get_defaultERKNS_5ArrayE"); -TypedValue * fg1_stream_context_get_default(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_context_get_default(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_context_get_default(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_context_get_default(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToArrayInPlace(args-0); @@ -109,7 +109,7 @@ TypedValue * fg1_stream_context_get_default(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_stream_context_get_default(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_context_get_default(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -151,8 +151,8 @@ stream_or_context => rsi TypedValue* fh_stream_context_get_options(TypedValue* _rv, Value* stream_or_context) asm("_ZN4HPHP28f_stream_context_get_optionsERKNS_6ObjectE"); -TypedValue * fg1_stream_context_get_options(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_context_get_options(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_context_get_options(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_context_get_options(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_stream_context_get_options((rv), &args[-0].m_data); @@ -160,7 +160,7 @@ TypedValue * fg1_stream_context_get_options(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_stream_context_get_options(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_context_get_options(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -203,8 +203,8 @@ value => rcx bool fh_stream_context_set_option(Value* stream_or_context, TypedValue* wrapper, Value* option, TypedValue* value) asm("_ZN4HPHP27f_stream_context_set_optionERKNS_6ObjectERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_stream_context_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_context_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_context_set_option(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_context_set_option(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -223,7 +223,7 @@ TypedValue * fg1_stream_context_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_stream_context_set_option(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_context_set_option(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -264,8 +264,8 @@ params => rsi bool fh_stream_context_set_param(Value* stream_or_context, Value* params) asm("_ZN4HPHP26f_stream_context_set_paramERKNS_6ObjectERKNS_5ArrayE"); -TypedValue * fg1_stream_context_set_param(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_context_set_param(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_context_set_param(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_context_set_param(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfArray) { @@ -278,7 +278,7 @@ TypedValue * fg1_stream_context_set_param(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_stream_context_set_param(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_context_set_param(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -322,8 +322,8 @@ offset => r8 TypedValue* fh_stream_copy_to_stream(TypedValue* _rv, Value* source, Value* dest, int maxlength, int offset) asm("_ZN4HPHP23f_stream_copy_to_streamERKNS_6ObjectES2_ii"); -TypedValue * fg1_stream_copy_to_stream(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_copy_to_stream(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_copy_to_stream(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_copy_to_stream(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -348,7 +348,7 @@ TypedValue * fg1_stream_copy_to_stream(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_stream_copy_to_stream(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_copy_to_stream(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -389,8 +389,8 @@ encoding => rsi bool fh_stream_encoding(Value* stream, Value* encoding) asm("_ZN4HPHP17f_stream_encodingERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_stream_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_encoding(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_encoding(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -408,7 +408,7 @@ TypedValue * fg1_stream_encoding(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_stream_encoding(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_encoding(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -448,8 +448,8 @@ bucket => rsi void fh_stream_bucket_append(Value* brigade, Value* bucket) asm("_ZN4HPHP22f_stream_bucket_appendERKNS_6ObjectES2_"); -TypedValue * fg1_stream_bucket_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_bucket_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_bucket_append(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_bucket_append(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -463,7 +463,7 @@ TypedValue * fg1_stream_bucket_append(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_bucket_append(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_bucket_append(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -504,8 +504,8 @@ bucket => rsi void fh_stream_bucket_prepend(Value* brigade, Value* bucket) asm("_ZN4HPHP23f_stream_bucket_prependERKNS_6ObjectES2_"); -TypedValue * fg1_stream_bucket_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_bucket_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_bucket_prepend(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_bucket_prepend(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -519,7 +519,7 @@ TypedValue * fg1_stream_bucket_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_stream_bucket_prepend(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_bucket_prepend(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -561,8 +561,8 @@ brigade => rsi Value* fh_stream_bucket_make_writeable(Value* _rv, Value* brigade) asm("_ZN4HPHP30f_stream_bucket_make_writeableERKNS_6ObjectE"); -TypedValue * fg1_stream_bucket_make_writeable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_bucket_make_writeable(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_bucket_make_writeable(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_bucket_make_writeable(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToObjectInPlace(args-0); @@ -571,7 +571,7 @@ TypedValue * fg1_stream_bucket_make_writeable(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_stream_bucket_make_writeable(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_bucket_make_writeable(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -614,8 +614,8 @@ buffer => rdx Value* fh_stream_bucket_new(Value* _rv, Value* stream, Value* buffer) asm("_ZN4HPHP19f_stream_bucket_newERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_stream_bucket_new(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_bucket_new(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_bucket_new(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_bucket_new(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -629,7 +629,7 @@ TypedValue * fg1_stream_bucket_new(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_stream_bucket_new(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_bucket_new(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -671,8 +671,8 @@ classname => rsi bool fh_stream_filter_register(Value* filtername, Value* classname) asm("_ZN4HPHP24f_stream_filter_registerERKNS_6StringES2_"); -TypedValue * fg1_stream_filter_register(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_filter_register(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_filter_register(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_filter_register(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -685,7 +685,7 @@ TypedValue * fg1_stream_filter_register(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_stream_filter_register(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_filter_register(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -725,8 +725,8 @@ stream_filter => rdi bool fh_stream_filter_remove(Value* stream_filter) asm("_ZN4HPHP22f_stream_filter_removeERKNS_6ObjectE"); -TypedValue * fg1_stream_filter_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_filter_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_filter_remove(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_filter_remove(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -734,7 +734,7 @@ TypedValue * fg1_stream_filter_remove(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_filter_remove(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_filter_remove(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -778,8 +778,8 @@ params => r8 Value* fh_stream_filter_append(Value* _rv, Value* stream, Value* filtername, int read_write, TypedValue* params) asm("_ZN4HPHP22f_stream_filter_appendERKNS_6ObjectERKNS_6StringEiRKNS_7VariantE"); -TypedValue * fg1_stream_filter_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_filter_append(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_filter_append(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_filter_append(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -802,7 +802,7 @@ TypedValue * fg1_stream_filter_append(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_filter_append(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_filter_append(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -847,8 +847,8 @@ params => r8 Value* fh_stream_filter_prepend(Value* _rv, Value* stream, Value* filtername, int read_write, TypedValue* params) asm("_ZN4HPHP23f_stream_filter_prependERKNS_6ObjectERKNS_6StringEiRKNS_7VariantE"); -TypedValue * fg1_stream_filter_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_filter_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_filter_prepend(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_filter_prepend(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -871,7 +871,7 @@ TypedValue * fg1_stream_filter_prepend(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_stream_filter_prepend(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_filter_prepend(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -915,8 +915,8 @@ offset => rcx TypedValue* fh_stream_get_contents(TypedValue* _rv, Value* handle, int maxlen, int offset) asm("_ZN4HPHP21f_stream_get_contentsERKNS_6ObjectEii"); -TypedValue * fg1_stream_get_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_get_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_get_contents(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_get_contents(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -938,7 +938,7 @@ TypedValue * fg1_stream_get_contents(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_stream_get_contents(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_get_contents(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -978,7 +978,7 @@ _rv => rdi Value* fh_stream_get_filters(Value* _rv) asm("_ZN4HPHP20f_stream_get_filtersEv"); -TypedValue* fg_stream_get_filters(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_get_filters(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1015,8 +1015,8 @@ ending => rcx TypedValue* fh_stream_get_line(TypedValue* _rv, Value* handle, int length, Value* ending) asm("_ZN4HPHP17f_stream_get_lineERKNS_6ObjectEiRKNS_6StringE"); -TypedValue * fg1_stream_get_line(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_get_line(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_get_line(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_get_line(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1038,7 +1038,7 @@ TypedValue * fg1_stream_get_line(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_stream_get_line(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_get_line(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1079,8 +1079,8 @@ stream => rsi TypedValue* fh_stream_get_meta_data(TypedValue* _rv, Value* stream) asm("_ZN4HPHP22f_stream_get_meta_dataERKNS_6ObjectE"); -TypedValue * fg1_stream_get_meta_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_get_meta_data(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_get_meta_data(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_get_meta_data(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_stream_get_meta_data((rv), &args[-0].m_data); @@ -1088,7 +1088,7 @@ TypedValue * fg1_stream_get_meta_data(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_get_meta_data(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_get_meta_data(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1128,7 +1128,7 @@ _rv => rdi Value* fh_stream_get_transports(Value* _rv) asm("_ZN4HPHP23f_stream_get_transportsEv"); -TypedValue* fg_stream_get_transports(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_get_transports(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1162,7 +1162,7 @@ _rv => rdi Value* fh_stream_get_wrappers(Value* _rv) asm("_ZN4HPHP21f_stream_get_wrappersEv"); -TypedValue* fg_stream_get_wrappers(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_get_wrappers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1197,8 +1197,8 @@ classname => rsi bool fh_stream_register_wrapper(Value* protocol, Value* classname) asm("_ZN4HPHP25f_stream_register_wrapperERKNS_6StringES2_"); -TypedValue * fg1_stream_register_wrapper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_register_wrapper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_register_wrapper(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_register_wrapper(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1211,7 +1211,7 @@ TypedValue * fg1_stream_register_wrapper(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_stream_register_wrapper(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_register_wrapper(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1252,8 +1252,8 @@ classname => rsi bool fh_stream_wrapper_register(Value* protocol, Value* classname) asm("_ZN4HPHP25f_stream_wrapper_registerERKNS_6StringES2_"); -TypedValue * fg1_stream_wrapper_register(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_wrapper_register(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_wrapper_register(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_wrapper_register(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1266,7 +1266,7 @@ TypedValue * fg1_stream_wrapper_register(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_stream_wrapper_register(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_wrapper_register(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1306,8 +1306,8 @@ protocol => rdi bool fh_stream_wrapper_restore(Value* protocol) asm("_ZN4HPHP24f_stream_wrapper_restoreERKNS_6StringE"); -TypedValue * fg1_stream_wrapper_restore(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_wrapper_restore(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_wrapper_restore(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_wrapper_restore(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1315,7 +1315,7 @@ TypedValue * fg1_stream_wrapper_restore(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_stream_wrapper_restore(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_wrapper_restore(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1355,8 +1355,8 @@ protocol => rdi bool fh_stream_wrapper_unregister(Value* protocol) asm("_ZN4HPHP27f_stream_wrapper_unregisterERKNS_6StringE"); -TypedValue * fg1_stream_wrapper_unregister(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_wrapper_unregister(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_wrapper_unregister(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_wrapper_unregister(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1364,7 +1364,7 @@ TypedValue * fg1_stream_wrapper_unregister(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_stream_wrapper_unregister(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_wrapper_unregister(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1406,8 +1406,8 @@ context => rdx Value* fh_stream_resolve_include_path(Value* _rv, Value* filename, Value* context) asm("_ZN4HPHP29f_stream_resolve_include_pathERKNS_6StringERKNS_6ObjectE"); -TypedValue * fg1_stream_resolve_include_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_resolve_include_path(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_resolve_include_path(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_resolve_include_path(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1426,7 +1426,7 @@ TypedValue * fg1_stream_resolve_include_path(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_stream_resolve_include_path(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_resolve_include_path(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1472,8 +1472,8 @@ tv_usec => r9 TypedValue* fh_stream_select(TypedValue* _rv, TypedValue* read, TypedValue* write, TypedValue* except, TypedValue* vtv_sec, int tv_usec) asm("_ZN4HPHP15f_stream_selectERKNS_14VRefParamValueES2_S2_RKNS_7VariantEi"); -TypedValue * fg1_stream_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_select(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_select(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-4); fh_stream_select((rv), (args-0), (args-1), (args-2), (args-3), (count > 4) ? (int)(args[-4].m_data.num) : (int)(0)); @@ -1481,7 +1481,7 @@ TypedValue * fg1_stream_select(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_stream_select(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_select(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1522,8 +1522,8 @@ mode => rsi bool fh_stream_set_blocking(Value* stream, int mode) asm("_ZN4HPHP21f_stream_set_blockingERKNS_6ObjectEi"); -TypedValue * fg1_stream_set_blocking(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_set_blocking(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_set_blocking(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_set_blocking(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -1536,7 +1536,7 @@ TypedValue * fg1_stream_set_blocking(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_stream_set_blocking(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_set_blocking(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1578,8 +1578,8 @@ microseconds => rdx bool fh_stream_set_timeout(Value* stream, int seconds, int microseconds) asm("_ZN4HPHP20f_stream_set_timeoutERKNS_6ObjectEii"); -TypedValue * fg1_stream_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_set_timeout(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_set_timeout(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1600,7 +1600,7 @@ TypedValue * fg1_stream_set_timeout(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_stream_set_timeout(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_set_timeout(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1641,8 +1641,8 @@ buffer => rsi long fh_stream_set_write_buffer(Value* stream, int buffer) asm("_ZN4HPHP25f_stream_set_write_bufferERKNS_6ObjectEi"); -TypedValue * fg1_stream_set_write_buffer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_set_write_buffer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_set_write_buffer(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_set_write_buffer(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-1)->m_type != KindOfInt64) { @@ -1655,7 +1655,7 @@ TypedValue * fg1_stream_set_write_buffer(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_stream_set_write_buffer(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_set_write_buffer(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1696,8 +1696,8 @@ buffer => rsi long fh_set_file_buffer(Value* stream, int buffer) asm("_ZN4HPHP17f_set_file_bufferERKNS_6ObjectEi"); -TypedValue * fg1_set_file_buffer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_set_file_buffer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_set_file_buffer(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_set_file_buffer(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if ((args-1)->m_type != KindOfInt64) { @@ -1710,7 +1710,7 @@ TypedValue * fg1_set_file_buffer(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_set_file_buffer(HPHP::VM::ActRec *ar) { +TypedValue* fg_set_file_buffer(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1753,8 +1753,8 @@ peername => rdx TypedValue* fh_stream_socket_accept(TypedValue* _rv, Value* server_socket, double timeout, TypedValue* peername) asm("_ZN4HPHP22f_stream_socket_acceptERKNS_6ObjectEdRKNS_14VRefParamValueE"); -TypedValue * fg1_stream_socket_accept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_accept(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_accept(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_accept(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1774,7 +1774,7 @@ TypedValue * fg1_stream_socket_accept(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_socket_accept(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_accept(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1820,8 +1820,8 @@ context => r9 TypedValue* fh_stream_socket_server(TypedValue* _rv, Value* local_socket, TypedValue* errnum, TypedValue* errstr, int flags, Value* context) asm("_ZN4HPHP22f_stream_socket_serverERKNS_6StringERKNS_14VRefParamValueES5_iRKNS_6ObjectE"); -TypedValue * fg1_stream_socket_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_server(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_server(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_server(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -1847,7 +1847,7 @@ TypedValue * fg1_stream_socket_server(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_socket_server(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_server(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1895,8 +1895,8 @@ context => r9 TypedValue* fh_stream_socket_client(TypedValue* _rv, Value* remote_socket, TypedValue* errnum, TypedValue* errstr, double timeout, int flags, Value* context) asm("_ZN4HPHP22f_stream_socket_clientERKNS_6StringERKNS_14VRefParamValueES5_diRKNS_6ObjectE"); -TypedValue * fg1_stream_socket_client(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_client(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_client(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_client(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 6 @@ -1926,7 +1926,7 @@ TypedValue * fg1_stream_socket_client(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_socket_client(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_client(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1972,8 +1972,8 @@ session_stream => r8 TypedValue* fh_stream_socket_enable_crypto(TypedValue* _rv, Value* stream, bool enable, int crypto_type, Value* session_stream) asm("_ZN4HPHP29f_stream_socket_enable_cryptoERKNS_6ObjectEbiS2_"); -TypedValue * fg1_stream_socket_enable_crypto(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_enable_crypto(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_enable_crypto(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_enable_crypto(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1998,7 +1998,7 @@ TypedValue * fg1_stream_socket_enable_crypto(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_stream_socket_enable_crypto(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_enable_crypto(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2040,8 +2040,8 @@ want_peer => rdx TypedValue* fh_stream_socket_get_name(TypedValue* _rv, Value* handle, bool want_peer) asm("_ZN4HPHP24f_stream_socket_get_nameERKNS_6ObjectEb"); -TypedValue * fg1_stream_socket_get_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_get_name(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_get_name(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_get_name(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-1); @@ -2054,7 +2054,7 @@ TypedValue * fg1_stream_socket_get_name(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_stream_socket_get_name(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_get_name(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2097,8 +2097,8 @@ protocol => rcx TypedValue* fh_stream_socket_pair(TypedValue* _rv, int domain, int type, int protocol) asm("_ZN4HPHP20f_stream_socket_pairEiii"); -TypedValue * fg1_stream_socket_pair(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_pair(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_pair(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_pair(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -2114,7 +2114,7 @@ TypedValue * fg1_stream_socket_pair(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_stream_socket_pair(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_pair(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2158,8 +2158,8 @@ address => r8 TypedValue* fh_stream_socket_recvfrom(TypedValue* _rv, Value* socket, int length, int flags, Value* address) asm("_ZN4HPHP24f_stream_socket_recvfromERKNS_6ObjectEiiRKNS_6StringE"); -TypedValue * fg1_stream_socket_recvfrom(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_recvfrom(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_recvfrom(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_recvfrom(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2184,7 +2184,7 @@ TypedValue * fg1_stream_socket_recvfrom(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_stream_socket_recvfrom(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_recvfrom(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2228,8 +2228,8 @@ address => r8 TypedValue* fh_stream_socket_sendto(TypedValue* _rv, Value* socket, Value* data, int flags, Value* address) asm("_ZN4HPHP22f_stream_socket_sendtoERKNS_6ObjectERKNS_6StringEiS5_"); -TypedValue * fg1_stream_socket_sendto(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_sendto(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_sendto(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_sendto(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -2254,7 +2254,7 @@ TypedValue * fg1_stream_socket_sendto(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_stream_socket_sendto(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_sendto(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2295,8 +2295,8 @@ how => rsi bool fh_stream_socket_shutdown(Value* stream, int how) asm("_ZN4HPHP24f_stream_socket_shutdownERKNS_6ObjectEi"); -TypedValue * fg1_stream_socket_shutdown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stream_socket_shutdown(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stream_socket_shutdown(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stream_socket_shutdown(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -2309,7 +2309,7 @@ TypedValue * fg1_stream_socket_shutdown(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_stream_socket_shutdown(HPHP::VM::ActRec *ar) { +TypedValue* fg_stream_socket_shutdown(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_string.ext_hhvm.cpp b/hphp/runtime/ext/ext_string.ext_hhvm.cpp index 64c079573..788bd9d7a 100644 --- a/hphp/runtime/ext/ext_string.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_string.ext_hhvm.cpp @@ -36,8 +36,8 @@ charlist => rdx Value* fh_addcslashes(Value* _rv, Value* str, Value* charlist) asm("_ZN4HPHP13f_addcslashesERKNS_6StringES2_"); -TypedValue * fg1_addcslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_addcslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_addcslashes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_addcslashes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -51,7 +51,7 @@ TypedValue * fg1_addcslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_addcslashes(HPHP::VM::ActRec *ar) { +TypedValue* fg_addcslashes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -93,8 +93,8 @@ str => rsi Value* fh_stripcslashes(Value* _rv, Value* str) asm("_ZN4HPHP15f_stripcslashesERKNS_6StringE"); -TypedValue * fg1_stripcslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stripcslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stripcslashes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stripcslashes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -103,7 +103,7 @@ TypedValue * fg1_stripcslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_stripcslashes(HPHP::VM::ActRec *ar) { +TypedValue* fg_stripcslashes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -145,8 +145,8 @@ str => rsi Value* fh_addslashes(Value* _rv, Value* str) asm("_ZN4HPHP12f_addslashesERKNS_6StringE"); -TypedValue * fg1_addslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_addslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_addslashes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_addslashes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -155,7 +155,7 @@ TypedValue * fg1_addslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_addslashes(HPHP::VM::ActRec *ar) { +TypedValue* fg_addslashes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -197,8 +197,8 @@ str => rsi Value* fh_stripslashes(Value* _rv, Value* str) asm("_ZN4HPHP14f_stripslashesERKNS_6StringE"); -TypedValue * fg1_stripslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stripslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stripslashes(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stripslashes(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -207,7 +207,7 @@ TypedValue * fg1_stripslashes(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_stripslashes(HPHP::VM::ActRec *ar) { +TypedValue* fg_stripslashes(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -249,8 +249,8 @@ str => rsi Value* fh_bin2hex(Value* _rv, Value* str) asm("_ZN4HPHP9f_bin2hexERKNS_6StringE"); -TypedValue * fg1_bin2hex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_bin2hex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_bin2hex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_bin2hex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -259,7 +259,7 @@ TypedValue * fg1_bin2hex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_bin2hex(HPHP::VM::ActRec *ar) { +TypedValue* fg_bin2hex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -301,8 +301,8 @@ str => rsi TypedValue* fh_hex2bin(TypedValue* _rv, Value* str) asm("_ZN4HPHP9f_hex2binERKNS_6StringE"); -TypedValue * fg1_hex2bin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hex2bin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hex2bin(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hex2bin(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_hex2bin((rv), &args[-0].m_data); @@ -310,7 +310,7 @@ TypedValue * fg1_hex2bin(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_hex2bin(HPHP::VM::ActRec *ar) { +TypedValue* fg_hex2bin(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -351,8 +351,8 @@ str => rsi Value* fh_nl2br(Value* _rv, Value* str) asm("_ZN4HPHP7f_nl2brERKNS_6StringE"); -TypedValue * fg1_nl2br(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_nl2br(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_nl2br(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_nl2br(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -361,7 +361,7 @@ TypedValue * fg1_nl2br(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_nl2br(HPHP::VM::ActRec *ar) { +TypedValue* fg_nl2br(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -403,8 +403,8 @@ str => rsi Value* fh_quotemeta(Value* _rv, Value* str) asm("_ZN4HPHP11f_quotemetaERKNS_6StringE"); -TypedValue * fg1_quotemeta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_quotemeta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_quotemeta(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_quotemeta(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -413,7 +413,7 @@ TypedValue * fg1_quotemeta(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_quotemeta(HPHP::VM::ActRec *ar) { +TypedValue* fg_quotemeta(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -455,8 +455,8 @@ str => rsi Value* fh_str_shuffle(Value* _rv, Value* str) asm("_ZN4HPHP13f_str_shuffleERKNS_6StringE"); -TypedValue * fg1_str_shuffle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_str_shuffle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_str_shuffle(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_str_shuffle(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -465,7 +465,7 @@ TypedValue * fg1_str_shuffle(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_str_shuffle(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_shuffle(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -507,8 +507,8 @@ str => rsi Value* fh_strrev(Value* _rv, Value* str) asm("_ZN4HPHP8f_strrevERKNS_6StringE"); -TypedValue * fg1_strrev(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strrev(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strrev(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strrev(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -517,7 +517,7 @@ TypedValue * fg1_strrev(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strrev(HPHP::VM::ActRec *ar) { +TypedValue* fg_strrev(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -559,8 +559,8 @@ str => rsi Value* fh_strtolower(Value* _rv, Value* str) asm("_ZN4HPHP12f_strtolowerERKNS_6StringE"); -TypedValue * fg1_strtolower(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strtolower(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strtolower(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strtolower(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -569,7 +569,7 @@ TypedValue * fg1_strtolower(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_strtolower(HPHP::VM::ActRec *ar) { +TypedValue* fg_strtolower(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -611,8 +611,8 @@ str => rsi Value* fh_strtoupper(Value* _rv, Value* str) asm("_ZN4HPHP12f_strtoupperERKNS_6StringE"); -TypedValue * fg1_strtoupper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strtoupper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strtoupper(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strtoupper(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -621,7 +621,7 @@ TypedValue * fg1_strtoupper(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_strtoupper(HPHP::VM::ActRec *ar) { +TypedValue* fg_strtoupper(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -663,8 +663,8 @@ str => rsi Value* fh_ucfirst(Value* _rv, Value* str) asm("_ZN4HPHP9f_ucfirstERKNS_6StringE"); -TypedValue * fg1_ucfirst(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ucfirst(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ucfirst(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ucfirst(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -673,7 +673,7 @@ TypedValue * fg1_ucfirst(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ucfirst(HPHP::VM::ActRec *ar) { +TypedValue* fg_ucfirst(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -715,8 +715,8 @@ str => rsi Value* fh_lcfirst(Value* _rv, Value* str) asm("_ZN4HPHP9f_lcfirstERKNS_6StringE"); -TypedValue * fg1_lcfirst(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_lcfirst(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_lcfirst(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_lcfirst(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -725,7 +725,7 @@ TypedValue * fg1_lcfirst(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_lcfirst(HPHP::VM::ActRec *ar) { +TypedValue* fg_lcfirst(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -767,8 +767,8 @@ str => rsi Value* fh_ucwords(Value* _rv, Value* str) asm("_ZN4HPHP9f_ucwordsERKNS_6StringE"); -TypedValue * fg1_ucwords(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ucwords(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ucwords(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ucwords(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -777,7 +777,7 @@ TypedValue * fg1_ucwords(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ucwords(HPHP::VM::ActRec *ar) { +TypedValue* fg_ucwords(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -820,8 +820,8 @@ allowable_tags => rdx Value* fh_strip_tags(Value* _rv, Value* str, Value* allowable_tags) asm("_ZN4HPHP12f_strip_tagsERKNS_6StringES2_"); -TypedValue * fg1_strip_tags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strip_tags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strip_tags(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strip_tags(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -840,7 +840,7 @@ TypedValue * fg1_strip_tags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_strip_tags(HPHP::VM::ActRec *ar) { +TypedValue* fg_strip_tags(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -883,8 +883,8 @@ charlist => rdx Value* fh_trim(Value* _rv, Value* str, Value* charlist) asm("_ZN4HPHP6f_trimERKNS_6StringES2_"); -TypedValue * fg1_trim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_trim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_trim(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_trim(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -903,7 +903,7 @@ TypedValue * fg1_trim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_trim(HPHP::VM::ActRec *ar) { +TypedValue* fg_trim(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -946,8 +946,8 @@ charlist => rdx Value* fh_ltrim(Value* _rv, Value* str, Value* charlist) asm("_ZN4HPHP7f_ltrimERKNS_6StringES2_"); -TypedValue * fg1_ltrim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ltrim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ltrim(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ltrim(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -966,7 +966,7 @@ TypedValue * fg1_ltrim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ltrim(HPHP::VM::ActRec *ar) { +TypedValue* fg_ltrim(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1009,8 +1009,8 @@ charlist => rdx Value* fh_rtrim(Value* _rv, Value* str, Value* charlist) asm("_ZN4HPHP7f_rtrimERKNS_6StringES2_"); -TypedValue * fg1_rtrim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rtrim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rtrim(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rtrim(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1029,7 +1029,7 @@ TypedValue * fg1_rtrim(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_rtrim(HPHP::VM::ActRec *ar) { +TypedValue* fg_rtrim(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1072,8 +1072,8 @@ charlist => rdx Value* fh_chop(Value* _rv, Value* str, Value* charlist) asm("_ZN4HPHP6f_chopERKNS_6StringES2_"); -TypedValue * fg1_chop(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chop(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chop(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chop(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1092,7 +1092,7 @@ TypedValue * fg1_chop(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_chop(HPHP::VM::ActRec *ar) { +TypedValue* fg_chop(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1136,8 +1136,8 @@ limit => rcx TypedValue* fh_explode(TypedValue* _rv, Value* delimiter, Value* str, int limit) asm("_ZN4HPHP9f_explodeERKNS_6StringES2_i"); -TypedValue * fg1_explode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_explode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_explode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_explode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1158,7 +1158,7 @@ TypedValue * fg1_explode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_explode(HPHP::VM::ActRec *ar) { +TypedValue* fg_explode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1200,7 +1200,7 @@ arg2 => rdx Value* fh_implode(Value* _rv, TypedValue* arg1, TypedValue* arg2) asm("_ZN4HPHP9f_implodeERKNS_7VariantES2_"); -TypedValue* fg_implode(HPHP::VM::ActRec *ar) { +TypedValue* fg_implode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1236,7 +1236,7 @@ pieces => rdx Value* fh_join(Value* _rv, TypedValue* glue, TypedValue* pieces) asm("_ZN4HPHP6f_joinERKNS_7VariantES2_"); -TypedValue* fg_join(HPHP::VM::ActRec *ar) { +TypedValue* fg_join(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1272,8 +1272,8 @@ split_length => rdx TypedValue* fh_str_split(TypedValue* _rv, Value* str, int split_length) asm("_ZN4HPHP11f_str_splitERKNS_6StringEi"); -TypedValue * fg1_str_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_str_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_str_split(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_str_split(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1291,7 +1291,7 @@ TypedValue * fg1_str_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_str_split(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_split(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1334,8 +1334,8 @@ end => rcx TypedValue* fh_chunk_split(TypedValue* _rv, Value* body, int chunklen, Value* end) asm("_ZN4HPHP13f_chunk_splitERKNS_6StringEiS2_"); -TypedValue * fg1_chunk_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chunk_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chunk_split(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chunk_split(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1358,7 +1358,7 @@ TypedValue * fg1_chunk_split(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_chunk_split(HPHP::VM::ActRec *ar) { +TypedValue* fg_chunk_split(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1401,8 +1401,8 @@ token => rdx TypedValue* fh_strtok(TypedValue* _rv, Value* str, TypedValue* token) asm("_ZN4HPHP8f_strtokERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_strtok(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strtok(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strtok(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strtok(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_strtok((rv), &args[-0].m_data, (count > 1) ? (args-1) : (TypedValue*)(&null_variant)); @@ -1410,7 +1410,7 @@ TypedValue * fg1_strtok(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strtok(HPHP::VM::ActRec *ar) { +TypedValue* fg_strtok(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1454,7 +1454,7 @@ count => r8 TypedValue* fh_str_replace(TypedValue* _rv, TypedValue* search, TypedValue* replace, TypedValue* subject, TypedValue* count) asm("_ZN4HPHP13f_str_replaceERKNS_7VariantES2_S2_RKNS_14VRefParamValueE"); -TypedValue* fg_str_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1492,7 +1492,7 @@ count => r8 TypedValue* fh_str_ireplace(TypedValue* _rv, TypedValue* search, TypedValue* replace, TypedValue* subject, TypedValue* count) asm("_ZN4HPHP14f_str_ireplaceERKNS_7VariantES2_S2_RKNS_14VRefParamValueE"); -TypedValue* fg_str_ireplace(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_ireplace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1530,7 +1530,7 @@ length => r8 TypedValue* fh_substr_replace(TypedValue* _rv, TypedValue* str, TypedValue* replacement, TypedValue* start, TypedValue* length) asm("_ZN4HPHP16f_substr_replaceERKNS_7VariantES2_S2_S2_"); -TypedValue* fg_substr_replace(HPHP::VM::ActRec *ar) { +TypedValue* fg_substr_replace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1567,8 +1567,8 @@ length => rcx TypedValue* fh_substr(TypedValue* _rv, Value* str, int start, int length) asm("_ZN4HPHP8f_substrERKNS_6StringEii"); -TypedValue * fg1_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_substr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_substr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1589,7 +1589,7 @@ TypedValue * fg1_substr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_substr(HPHP::VM::ActRec *ar) { +TypedValue* fg_substr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1633,8 +1633,8 @@ pad_type => r8 Value* fh_str_pad(Value* _rv, Value* input, int pad_length, Value* pad_string, int pad_type) asm("_ZN4HPHP9f_str_padERKNS_6StringEiS2_i"); -TypedValue * fg1_str_pad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_str_pad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_str_pad(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_str_pad(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1661,7 +1661,7 @@ TypedValue * fg1_str_pad(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_str_pad(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_pad(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1705,8 +1705,8 @@ multiplier => rdx Value* fh_str_repeat(Value* _rv, Value* input, int multiplier) asm("_ZN4HPHP12f_str_repeatERKNS_6StringEi"); -TypedValue * fg1_str_repeat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_str_repeat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_str_repeat(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_str_repeat(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if ((args-1)->m_type != KindOfInt64) { @@ -1720,7 +1720,7 @@ TypedValue * fg1_str_repeat(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_str_repeat(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_repeat(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1765,8 +1765,8 @@ cut => r8 TypedValue* fh_wordwrap(TypedValue* _rv, Value* str, int width, Value* wordbreak, bool cut) asm("_ZN4HPHP10f_wordwrapERKNS_6StringEiS2_b"); -TypedValue * fg1_wordwrap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_wordwrap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_wordwrap(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_wordwrap(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -1793,7 +1793,7 @@ TypedValue * fg1_wordwrap(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_wordwrap(HPHP::VM::ActRec *ar) { +TypedValue* fg_wordwrap(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1837,8 +1837,8 @@ charset => rcx Value* fh_html_entity_decode(Value* _rv, Value* str, int quote_style, Value* charset) asm("_ZN4HPHP20f_html_entity_decodeERKNS_6StringEiS2_"); -TypedValue * fg1_html_entity_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_html_entity_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_html_entity_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_html_entity_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1862,7 +1862,7 @@ TypedValue * fg1_html_entity_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_html_entity_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_html_entity_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1908,8 +1908,8 @@ double_encode => r8 Value* fh_htmlentities(Value* _rv, Value* str, int quote_style, Value* charset, bool double_encode) asm("_ZN4HPHP14f_htmlentitiesERKNS_6StringEiS2_b"); -TypedValue * fg1_htmlentities(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_htmlentities(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_htmlentities(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_htmlentities(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -1937,7 +1937,7 @@ TypedValue * fg1_htmlentities(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_htmlentities(HPHP::VM::ActRec *ar) { +TypedValue* fg_htmlentities(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1981,8 +1981,8 @@ quote_style => rdx Value* fh_htmlspecialchars_decode(Value* _rv, Value* str, int quote_style) asm("_ZN4HPHP25f_htmlspecialchars_decodeERKNS_6StringEi"); -TypedValue * fg1_htmlspecialchars_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_htmlspecialchars_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_htmlspecialchars_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_htmlspecialchars_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2001,7 +2001,7 @@ TypedValue * fg1_htmlspecialchars_decode(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_htmlspecialchars_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_htmlspecialchars_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2046,8 +2046,8 @@ double_encode => r8 Value* fh_htmlspecialchars(Value* _rv, Value* str, int quote_style, Value* charset, bool double_encode) asm("_ZN4HPHP18f_htmlspecialcharsERKNS_6StringEiS2_b"); -TypedValue * fg1_htmlspecialchars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_htmlspecialchars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_htmlspecialchars(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_htmlspecialchars(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2075,7 +2075,7 @@ TypedValue * fg1_htmlspecialchars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_htmlspecialchars(HPHP::VM::ActRec *ar) { +TypedValue* fg_htmlspecialchars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2121,8 +2121,8 @@ extra => r8 Value* fh_fb_htmlspecialchars(Value* _rv, Value* str, int quote_style, Value* charset, Value* extra) asm("_ZN4HPHP21f_fb_htmlspecialcharsERKNS_6StringEiS2_RKNS_5ArrayE"); -TypedValue * fg1_fb_htmlspecialchars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_fb_htmlspecialchars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_fb_htmlspecialchars(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_fb_htmlspecialchars(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2151,7 +2151,7 @@ TypedValue * fg1_fb_htmlspecialchars(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_fb_htmlspecialchars(HPHP::VM::ActRec *ar) { +TypedValue* fg_fb_htmlspecialchars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2195,8 +2195,8 @@ str => rsi Value* fh_quoted_printable_encode(Value* _rv, Value* str) asm("_ZN4HPHP25f_quoted_printable_encodeERKNS_6StringE"); -TypedValue * fg1_quoted_printable_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_quoted_printable_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_quoted_printable_encode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_quoted_printable_encode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -2205,7 +2205,7 @@ TypedValue * fg1_quoted_printable_encode(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_quoted_printable_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_quoted_printable_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2247,8 +2247,8 @@ str => rsi Value* fh_quoted_printable_decode(Value* _rv, Value* str) asm("_ZN4HPHP25f_quoted_printable_decodeERKNS_6StringE"); -TypedValue * fg1_quoted_printable_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_quoted_printable_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_quoted_printable_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_quoted_printable_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -2257,7 +2257,7 @@ TypedValue * fg1_quoted_printable_decode(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_quoted_printable_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_quoted_printable_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2299,8 +2299,8 @@ data => rsi TypedValue* fh_convert_uudecode(TypedValue* _rv, Value* data) asm("_ZN4HPHP18f_convert_uudecodeERKNS_6StringE"); -TypedValue * fg1_convert_uudecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_convert_uudecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_convert_uudecode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_convert_uudecode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_convert_uudecode((rv), &args[-0].m_data); @@ -2308,7 +2308,7 @@ TypedValue * fg1_convert_uudecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_convert_uudecode(HPHP::VM::ActRec *ar) { +TypedValue* fg_convert_uudecode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2349,8 +2349,8 @@ data => rsi TypedValue* fh_convert_uuencode(TypedValue* _rv, Value* data) asm("_ZN4HPHP18f_convert_uuencodeERKNS_6StringE"); -TypedValue * fg1_convert_uuencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_convert_uuencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_convert_uuencode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_convert_uuencode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_convert_uuencode((rv), &args[-0].m_data); @@ -2358,7 +2358,7 @@ TypedValue * fg1_convert_uuencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_convert_uuencode(HPHP::VM::ActRec *ar) { +TypedValue* fg_convert_uuencode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2399,8 +2399,8 @@ str => rsi Value* fh_str_rot13(Value* _rv, Value* str) asm("_ZN4HPHP11f_str_rot13ERKNS_6StringE"); -TypedValue * fg1_str_rot13(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_str_rot13(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_str_rot13(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_str_rot13(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -2409,7 +2409,7 @@ TypedValue * fg1_str_rot13(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_str_rot13(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_rot13(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2450,8 +2450,8 @@ str => rdi long fh_crc32(Value* str) asm("_ZN4HPHP7f_crc32ERKNS_6StringE"); -TypedValue * fg1_crc32(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_crc32(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_crc32(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_crc32(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -2459,7 +2459,7 @@ TypedValue * fg1_crc32(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_crc32(HPHP::VM::ActRec *ar) { +TypedValue* fg_crc32(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2501,8 +2501,8 @@ salt => rdx Value* fh_crypt(Value* _rv, Value* str, Value* salt) asm("_ZN4HPHP7f_cryptERKNS_6StringES2_"); -TypedValue * fg1_crypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_crypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_crypt(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_crypt(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2521,7 +2521,7 @@ TypedValue * fg1_crypt(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_crypt(HPHP::VM::ActRec *ar) { +TypedValue* fg_crypt(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2564,8 +2564,8 @@ raw_output => rdx Value* fh_md5(Value* _rv, Value* str, bool raw_output) asm("_ZN4HPHP5f_md5ERKNS_6StringEb"); -TypedValue * fg1_md5(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_md5(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_md5(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_md5(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2584,7 +2584,7 @@ TypedValue * fg1_md5(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_md5(HPHP::VM::ActRec *ar) { +TypedValue* fg_md5(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2627,8 +2627,8 @@ raw_output => rdx Value* fh_sha1(Value* _rv, Value* str, bool raw_output) asm("_ZN4HPHP6f_sha1ERKNS_6StringEb"); -TypedValue * fg1_sha1(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sha1(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sha1(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sha1(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2647,7 +2647,7 @@ TypedValue * fg1_sha1(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sha1(HPHP::VM::ActRec *ar) { +TypedValue* fg_sha1(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2691,8 +2691,8 @@ to => rcx TypedValue* fh_strtr(TypedValue* _rv, Value* str, TypedValue* from, TypedValue* to) asm("_ZN4HPHP7f_strtrERKNS_6StringERKNS_7VariantES5_"); -TypedValue * fg1_strtr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strtr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strtr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strtr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_strtr((rv), &args[-0].m_data, (args-1), (count > 2) ? (args-2) : (TypedValue*)(&null_variant)); @@ -2700,7 +2700,7 @@ TypedValue * fg1_strtr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strtr(HPHP::VM::ActRec *ar) { +TypedValue* fg_strtr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2743,8 +2743,8 @@ to => rcx Value* fh_convert_cyr_string(Value* _rv, Value* str, Value* from, Value* to) asm("_ZN4HPHP20f_convert_cyr_stringERKNS_6StringES2_S2_"); -TypedValue * fg1_convert_cyr_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_convert_cyr_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_convert_cyr_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_convert_cyr_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -2761,7 +2761,7 @@ TypedValue * fg1_convert_cyr_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_convert_cyr_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_convert_cyr_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2804,8 +2804,8 @@ quote_style => rdx Value* fh_get_html_translation_table(Value* _rv, int table, int quote_style) asm("_ZN4HPHP28f_get_html_translation_tableEii"); -TypedValue * fg1_get_html_translation_table(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_html_translation_table(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_html_translation_table(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_html_translation_table(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -2825,7 +2825,7 @@ TypedValue * fg1_get_html_translation_table(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_get_html_translation_table(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_html_translation_table(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2868,8 +2868,8 @@ max_chars_per_line => rdx Value* fh_hebrev(Value* _rv, Value* hebrew_text, int max_chars_per_line) asm("_ZN4HPHP8f_hebrevERKNS_6StringEi"); -TypedValue * fg1_hebrev(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hebrev(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hebrev(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hebrev(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2888,7 +2888,7 @@ TypedValue * fg1_hebrev(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_hebrev(HPHP::VM::ActRec *ar) { +TypedValue* fg_hebrev(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2931,8 +2931,8 @@ max_chars_per_line => rdx Value* fh_hebrevc(Value* _rv, Value* hebrew_text, int max_chars_per_line) asm("_ZN4HPHP9f_hebrevcERKNS_6StringEi"); -TypedValue * fg1_hebrevc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hebrevc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hebrevc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hebrevc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2951,7 +2951,7 @@ TypedValue * fg1_hebrevc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_hebrevc(HPHP::VM::ActRec *ar) { +TypedValue* fg_hebrevc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2996,8 +2996,8 @@ _argv => r8 TypedValue* fh_setlocale(TypedValue* _rv, int64_t _argc, int category, TypedValue* locale, Value* _argv) asm("_ZN4HPHP11f_setlocaleEiiRKNS_7VariantERKNS_5ArrayE"); -TypedValue * fg1_setlocale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_setlocale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_setlocale(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_setlocale(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); Array extraArgs; @@ -3018,7 +3018,7 @@ TypedValue * fg1_setlocale(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_setlocale(HPHP::VM::ActRec *ar) { +TypedValue* fg_setlocale(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3071,7 +3071,7 @@ _rv => rdi Value* fh_localeconv(Value* _rv) asm("_ZN4HPHP12f_localeconvEv"); -TypedValue* fg_localeconv(HPHP::VM::ActRec *ar) { +TypedValue* fg_localeconv(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3106,8 +3106,8 @@ item => rsi Value* fh_nl_langinfo(Value* _rv, int item) asm("_ZN4HPHP13f_nl_langinfoEi"); -TypedValue * fg1_nl_langinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_nl_langinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_nl_langinfo(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_nl_langinfo(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -3116,7 +3116,7 @@ TypedValue * fg1_nl_langinfo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_nl_langinfo(HPHP::VM::ActRec *ar) { +TypedValue* fg_nl_langinfo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3160,8 +3160,8 @@ _argv => rcx TypedValue* fh_printf(TypedValue* _rv, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP8f_printfEiRKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_printf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_printf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_printf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_printf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Array extraArgs; @@ -3182,7 +3182,7 @@ TypedValue * fg1_printf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_printf(HPHP::VM::ActRec *ar) { +TypedValue* fg_printf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3237,8 +3237,8 @@ args => rdx TypedValue* fh_vprintf(TypedValue* _rv, Value* format, Value* args) asm("_ZN4HPHP9f_vprintfERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_vprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_vprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_vprintf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_vprintf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfArray) { tvCastToArrayInPlace(args-1); @@ -3251,7 +3251,7 @@ TypedValue * fg1_vprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_vprintf(HPHP::VM::ActRec *ar) { +TypedValue* fg_vprintf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3294,8 +3294,8 @@ _argv => rcx TypedValue* fh_sprintf(TypedValue* _rv, int64_t _argc, Value* format, Value* _argv) asm("_ZN4HPHP9f_sprintfEiRKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_sprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sprintf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sprintf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); Array extraArgs; @@ -3316,7 +3316,7 @@ TypedValue * fg1_sprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sprintf(HPHP::VM::ActRec *ar) { +TypedValue* fg_sprintf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3371,8 +3371,8 @@ args => rdx TypedValue* fh_vsprintf(TypedValue* _rv, Value* format, Value* args) asm("_ZN4HPHP10f_vsprintfERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_vsprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_vsprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_vsprintf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_vsprintf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfArray) { tvCastToArrayInPlace(args-1); @@ -3385,7 +3385,7 @@ TypedValue * fg1_vsprintf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_vsprintf(HPHP::VM::ActRec *ar) { +TypedValue* fg_vsprintf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3429,8 +3429,8 @@ _argv => r8 TypedValue* fh_sscanf(TypedValue* _rv, int64_t _argc, Value* str, Value* format, Value* _argv) asm("_ZN4HPHP8f_sscanfEiRKNS_6StringES2_RKNS_5ArrayE"); -TypedValue * fg1_sscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sscanf(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sscanf(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -3456,7 +3456,7 @@ TypedValue * fg1_sscanf(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_sscanf(HPHP::VM::ActRec *ar) { +TypedValue* fg_sscanf(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3510,8 +3510,8 @@ ascii => rsi Value* fh_chr(Value* _rv, long ascii) asm("_ZN4HPHP5f_chrEl"); -TypedValue * fg1_chr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_chr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_chr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_chr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -3520,7 +3520,7 @@ TypedValue * fg1_chr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_chr(HPHP::VM::ActRec *ar) { +TypedValue* fg_chr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3561,8 +3561,8 @@ str => rdi long fh_ord(Value* str) asm("_ZN4HPHP5f_ordERKNS_6StringE"); -TypedValue * fg1_ord(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_ord(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_ord(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_ord(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToStringInPlace(args-0); @@ -3570,7 +3570,7 @@ TypedValue * fg1_ord(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_ord(HPHP::VM::ActRec *ar) { +TypedValue* fg_ord(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3612,8 +3612,8 @@ number => xmm0 TypedValue* fh_money_format(TypedValue* _rv, Value* format, double number) asm("_ZN4HPHP14f_money_formatERKNS_6StringEd"); -TypedValue * fg1_money_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_money_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_money_format(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_money_format(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfDouble) { tvCastToDoubleInPlace(args-1); @@ -3626,7 +3626,7 @@ TypedValue * fg1_money_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_money_format(HPHP::VM::ActRec *ar) { +TypedValue* fg_money_format(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3670,8 +3670,8 @@ thousands_sep => rcx Value* fh_number_format(Value* _rv, double number, int decimals, Value* dec_point, Value* thousands_sep) asm("_ZN4HPHP15f_number_formatEdiRKNS_6StringES2_"); -TypedValue * fg1_number_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_number_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_number_format(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_number_format(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -3700,7 +3700,7 @@ TypedValue * fg1_number_format(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_number_format(HPHP::VM::ActRec *ar) { +TypedValue* fg_number_format(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3744,8 +3744,8 @@ str2 => rsi long fh_strcmp(Value* str1, Value* str2) asm("_ZN4HPHP8f_strcmpERKNS_6StringES2_"); -TypedValue * fg1_strcmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strcmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strcmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strcmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -3758,7 +3758,7 @@ TypedValue * fg1_strcmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strcmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_strcmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3801,8 +3801,8 @@ len => rcx TypedValue* fh_strncmp(TypedValue* _rv, Value* str1, Value* str2, int len) asm("_ZN4HPHP9f_strncmpERKNS_6StringES2_i"); -TypedValue * fg1_strncmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strncmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strncmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strncmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -3818,7 +3818,7 @@ TypedValue * fg1_strncmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strncmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_strncmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3859,8 +3859,8 @@ str2 => rsi long fh_strnatcmp(Value* str1, Value* str2) asm("_ZN4HPHP11f_strnatcmpERKNS_6StringES2_"); -TypedValue * fg1_strnatcmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strnatcmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strnatcmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strnatcmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -3873,7 +3873,7 @@ TypedValue * fg1_strnatcmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_strnatcmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_strnatcmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3914,8 +3914,8 @@ str2 => rsi long fh_strcasecmp(Value* str1, Value* str2) asm("_ZN4HPHP12f_strcasecmpERKNS_6StringES2_"); -TypedValue * fg1_strcasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strcasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strcasecmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strcasecmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -3928,7 +3928,7 @@ TypedValue * fg1_strcasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_strcasecmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_strcasecmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3971,8 +3971,8 @@ len => rcx TypedValue* fh_strncasecmp(TypedValue* _rv, Value* str1, Value* str2, int len) asm("_ZN4HPHP13f_strncasecmpERKNS_6StringES2_i"); -TypedValue * fg1_strncasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strncasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strncasecmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strncasecmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-2); @@ -3988,7 +3988,7 @@ TypedValue * fg1_strncasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_strncasecmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_strncasecmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4029,8 +4029,8 @@ str2 => rsi long fh_strnatcasecmp(Value* str1, Value* str2) asm("_ZN4HPHP15f_strnatcasecmpERKNS_6StringES2_"); -TypedValue * fg1_strnatcasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strnatcasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strnatcasecmp(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strnatcasecmp(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -4043,7 +4043,7 @@ TypedValue * fg1_strnatcasecmp(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_strnatcasecmp(HPHP::VM::ActRec *ar) { +TypedValue* fg_strnatcasecmp(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4084,8 +4084,8 @@ str2 => rsi long fh_strcoll(Value* str1, Value* str2) asm("_ZN4HPHP9f_strcollERKNS_6StringES2_"); -TypedValue * fg1_strcoll(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strcoll(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strcoll(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strcoll(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -4098,7 +4098,7 @@ TypedValue * fg1_strcoll(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strcoll(HPHP::VM::ActRec *ar) { +TypedValue* fg_strcoll(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4143,8 +4143,8 @@ case_insensitivity => r9 TypedValue* fh_substr_compare(TypedValue* _rv, Value* main_str, Value* str, int offset, int length, bool case_insensitivity) asm("_ZN4HPHP16f_substr_compareERKNS_6StringES2_iib"); -TypedValue * fg1_substr_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_substr_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_substr_compare(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_substr_compare(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 5 @@ -4172,7 +4172,7 @@ TypedValue * fg1_substr_compare(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_substr_compare(HPHP::VM::ActRec *ar) { +TypedValue* fg_substr_compare(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4214,8 +4214,8 @@ needle => rdx TypedValue* fh_strchr(TypedValue* _rv, Value* haystack, TypedValue* needle) asm("_ZN4HPHP8f_strchrERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_strchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strchr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strchr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_strchr((rv), &args[-0].m_data, (args-1)); @@ -4223,7 +4223,7 @@ TypedValue * fg1_strchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strchr(HPHP::VM::ActRec *ar) { +TypedValue* fg_strchr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4265,8 +4265,8 @@ needle => rdx TypedValue* fh_strrchr(TypedValue* _rv, Value* haystack, TypedValue* needle) asm("_ZN4HPHP9f_strrchrERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_strrchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strrchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strrchr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strrchr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_strrchr((rv), &args[-0].m_data, (args-1)); @@ -4274,7 +4274,7 @@ TypedValue * fg1_strrchr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strrchr(HPHP::VM::ActRec *ar) { +TypedValue* fg_strrchr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4317,8 +4317,8 @@ before_needle => rcx TypedValue* fh_strstr(TypedValue* _rv, Value* haystack, TypedValue* needle, bool before_needle) asm("_ZN4HPHP8f_strstrERKNS_6StringERKNS_7VariantEb"); -TypedValue * fg1_strstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strstr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strstr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -4336,7 +4336,7 @@ TypedValue * fg1_strstr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strstr(HPHP::VM::ActRec *ar) { +TypedValue* fg_strstr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4378,8 +4378,8 @@ needle => rdx TypedValue* fh_stristr(TypedValue* _rv, Value* haystack, TypedValue* needle) asm("_ZN4HPHP9f_stristrERKNS_6StringERKNS_7VariantE"); -TypedValue * fg1_stristr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stristr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stristr(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stristr(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_stristr((rv), &args[-0].m_data, (args-1)); @@ -4387,7 +4387,7 @@ TypedValue * fg1_stristr(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_stristr(HPHP::VM::ActRec *ar) { +TypedValue* fg_stristr(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4429,8 +4429,8 @@ char_list => rdx TypedValue* fh_strpbrk(TypedValue* _rv, Value* haystack, Value* char_list) asm("_ZN4HPHP9f_strpbrkERKNS_6StringES2_"); -TypedValue * fg1_strpbrk(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strpbrk(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strpbrk(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strpbrk(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -4443,7 +4443,7 @@ TypedValue * fg1_strpbrk(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strpbrk(HPHP::VM::ActRec *ar) { +TypedValue* fg_strpbrk(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4486,8 +4486,8 @@ offset => rcx TypedValue* fh_strpos(TypedValue* _rv, Value* haystack, TypedValue* needle, int offset) asm("_ZN4HPHP8f_strposERKNS_6StringERKNS_7VariantEi"); -TypedValue * fg1_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strpos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strpos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -4505,7 +4505,7 @@ TypedValue * fg1_strpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_strpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4548,8 +4548,8 @@ offset => rcx TypedValue* fh_stripos(TypedValue* _rv, Value* haystack, TypedValue* needle, int offset) asm("_ZN4HPHP9f_striposERKNS_6StringERKNS_7VariantEi"); -TypedValue * fg1_stripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_stripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_stripos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_stripos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -4567,7 +4567,7 @@ TypedValue * fg1_stripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_stripos(HPHP::VM::ActRec *ar) { +TypedValue* fg_stripos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4610,8 +4610,8 @@ offset => rcx TypedValue* fh_strrpos(TypedValue* _rv, Value* haystack, TypedValue* needle, int offset) asm("_ZN4HPHP9f_strrposERKNS_6StringERKNS_7VariantEi"); -TypedValue * fg1_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strrpos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strrpos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -4629,7 +4629,7 @@ TypedValue * fg1_strrpos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strrpos(HPHP::VM::ActRec *ar) { +TypedValue* fg_strrpos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4672,8 +4672,8 @@ offset => rcx TypedValue* fh_strripos(TypedValue* _rv, Value* haystack, TypedValue* needle, int offset) asm("_ZN4HPHP10f_strriposERKNS_6StringERKNS_7VariantEi"); -TypedValue * fg1_strripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strripos(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strripos(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -4691,7 +4691,7 @@ TypedValue * fg1_strripos(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strripos(HPHP::VM::ActRec *ar) { +TypedValue* fg_strripos(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4735,8 +4735,8 @@ length => r8 TypedValue* fh_substr_count(TypedValue* _rv, Value* haystack, Value* needle, int offset, int length) asm("_ZN4HPHP14f_substr_countERKNS_6StringES2_ii"); -TypedValue * fg1_substr_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_substr_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_substr_count(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_substr_count(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -4761,7 +4761,7 @@ TypedValue * fg1_substr_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_substr_count(HPHP::VM::ActRec *ar) { +TypedValue* fg_substr_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4805,8 +4805,8 @@ length => r8 TypedValue* fh_strspn(TypedValue* _rv, Value* str1, Value* str2, int start, int length) asm("_ZN4HPHP8f_strspnERKNS_6StringES2_ii"); -TypedValue * fg1_strspn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strspn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strspn(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strspn(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -4831,7 +4831,7 @@ TypedValue * fg1_strspn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strspn(HPHP::VM::ActRec *ar) { +TypedValue* fg_strspn(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4875,8 +4875,8 @@ length => r8 TypedValue* fh_strcspn(TypedValue* _rv, Value* str1, Value* str2, int start, int length) asm("_ZN4HPHP9f_strcspnERKNS_6StringES2_ii"); -TypedValue * fg1_strcspn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_strcspn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_strcspn(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_strcspn(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 4 @@ -4901,7 +4901,7 @@ TypedValue * fg1_strcspn(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_strcspn(HPHP::VM::ActRec *ar) { +TypedValue* fg_strcspn(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4942,7 +4942,7 @@ vstr => rsi TypedValue* fh_strlen(TypedValue* _rv, TypedValue* vstr) asm("_ZN4HPHP8f_strlenERKNS_7VariantE"); -TypedValue* fg_strlen(HPHP::VM::ActRec *ar) { +TypedValue* fg_strlen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4977,8 +4977,8 @@ mode => rdx TypedValue* fh_count_chars(TypedValue* _rv, Value* str, long mode) asm("_ZN4HPHP13f_count_charsERKNS_6StringEl"); -TypedValue * fg1_count_chars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_count_chars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_count_chars(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_count_chars(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -4996,7 +4996,7 @@ TypedValue * fg1_count_chars(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_count_chars(HPHP::VM::ActRec *ar) { +TypedValue* fg_count_chars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5039,8 +5039,8 @@ charlist => rcx TypedValue* fh_str_word_count(TypedValue* _rv, Value* str, long format, Value* charlist) asm("_ZN4HPHP16f_str_word_countERKNS_6StringElS2_"); -TypedValue * fg1_str_word_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_str_word_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_str_word_count(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_str_word_count(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -5062,7 +5062,7 @@ TypedValue * fg1_str_word_count(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_str_word_count(HPHP::VM::ActRec *ar) { +TypedValue* fg_str_word_count(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5106,8 +5106,8 @@ cost_del => r8 long fh_levenshtein(Value* str1, Value* str2, int cost_ins, int cost_rep, int cost_del) asm("_ZN4HPHP13f_levenshteinERKNS_6StringES2_iii"); -TypedValue * fg1_levenshtein(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_levenshtein(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_levenshtein(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_levenshtein(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -5136,7 +5136,7 @@ TypedValue * fg1_levenshtein(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_levenshtein(HPHP::VM::ActRec *ar) { +TypedValue* fg_levenshtein(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5178,8 +5178,8 @@ percent => rdx long fh_similar_text(Value* first, Value* second, TypedValue* percent) asm("_ZN4HPHP14f_similar_textERKNS_6StringES2_RKNS_14VRefParamValueE"); -TypedValue * fg1_similar_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_similar_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_similar_text(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_similar_text(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -5198,7 +5198,7 @@ TypedValue * fg1_similar_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_similar_text(HPHP::VM::ActRec *ar) { +TypedValue* fg_similar_text(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5240,8 +5240,8 @@ str => rsi TypedValue* fh_soundex(TypedValue* _rv, Value* str) asm("_ZN4HPHP9f_soundexERKNS_6StringE"); -TypedValue * fg1_soundex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_soundex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_soundex(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_soundex(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_soundex((rv), &args[-0].m_data); @@ -5249,7 +5249,7 @@ TypedValue * fg1_soundex(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_soundex(HPHP::VM::ActRec *ar) { +TypedValue* fg_soundex(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5291,8 +5291,8 @@ phones => rdx TypedValue* fh_metaphone(TypedValue* _rv, Value* str, int phones) asm("_ZN4HPHP11f_metaphoneERKNS_6StringEi"); -TypedValue * fg1_metaphone(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_metaphone(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_metaphone(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_metaphone(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -5310,7 +5310,7 @@ TypedValue * fg1_metaphone(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_metaphone(HPHP::VM::ActRec *ar) { +TypedValue* fg_metaphone(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -5350,8 +5350,8 @@ arr => rsi void fh_parse_str(Value* str, TypedValue* arr) asm("_ZN4HPHP11f_parse_strERKNS_6StringERKNS_14VRefParamValueE"); -TypedValue * fg1_parse_str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_parse_str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_parse_str(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_parse_str(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -5361,7 +5361,7 @@ TypedValue * fg1_parse_str(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_parse_str(HPHP::VM::ActRec *ar) { +TypedValue* fg_parse_str(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_thread.ext_hhvm.cpp b/hphp/runtime/ext/ext_thread.ext_hhvm.cpp index ce25e8bf5..2646cf898 100644 --- a/hphp/runtime/ext/ext_thread.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_thread.ext_hhvm.cpp @@ -33,7 +33,7 @@ _ZN4HPHP24f_hphp_is_service_threadEv bool fh_hphp_is_service_thread() asm("_ZN4HPHP24f_hphp_is_service_threadEv"); -TypedValue* fg_hphp_is_service_thread(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_is_service_thread(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -64,7 +64,7 @@ _ZN4HPHP29f_hphp_service_thread_startedEv void fh_hphp_service_thread_started() asm("_ZN4HPHP29f_hphp_service_thread_startedEv"); -TypedValue* fg_hphp_service_thread_started(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_service_thread_started(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -98,8 +98,8 @@ timeout => rdi bool fh_hphp_service_thread_stopped(int timeout) asm("_ZN4HPHP29f_hphp_service_thread_stoppedEi"); -TypedValue * fg1_hphp_service_thread_stopped(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_hphp_service_thread_stopped(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_hphp_service_thread_stopped(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_hphp_service_thread_stopped(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -107,7 +107,7 @@ TypedValue * fg1_hphp_service_thread_stopped(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_hphp_service_thread_stopped(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_service_thread_stopped(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -146,7 +146,7 @@ _ZN4HPHP31f_hphp_thread_is_warmup_enabledEv bool fh_hphp_thread_is_warmup_enabled() asm("_ZN4HPHP31f_hphp_thread_is_warmup_enabledEv"); -TypedValue* fg_hphp_thread_is_warmup_enabled(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_thread_is_warmup_enabled(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -177,7 +177,7 @@ _ZN4HPHP32f_hphp_thread_set_warmup_enabledEv void fh_hphp_thread_set_warmup_enabled() asm("_ZN4HPHP32f_hphp_thread_set_warmup_enabledEv"); -TypedValue* fg_hphp_thread_set_warmup_enabled(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_thread_set_warmup_enabled(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -210,7 +210,7 @@ _ZN4HPHP20f_hphp_get_thread_idEv long fh_hphp_get_thread_id() asm("_ZN4HPHP20f_hphp_get_thread_idEv"); -TypedValue* fg_hphp_get_thread_id(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_get_thread_id(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -242,7 +242,7 @@ _ZN4HPHP13f_hphp_gettidEv int fh_hphp_gettid() asm("_ZN4HPHP13f_hphp_gettidEv"); -TypedValue* fg_hphp_gettid(HPHP::VM::ActRec *ar) { +TypedValue* fg_hphp_gettid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_url.ext_hhvm.cpp b/hphp/runtime/ext/ext_url.ext_hhvm.cpp index 05cefdb8a..88be8bded 100644 --- a/hphp/runtime/ext/ext_url.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_url.ext_hhvm.cpp @@ -36,8 +36,8 @@ strict => rdx TypedValue* fh_base64_decode(TypedValue* _rv, Value* data, bool strict) asm("_ZN4HPHP15f_base64_decodeERKNS_6StringEb"); -TypedValue * fg1_base64_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_base64_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_base64_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_base64_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -55,7 +55,7 @@ TypedValue * fg1_base64_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_base64_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_base64_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -96,8 +96,8 @@ data => rsi Value* fh_base64_encode(Value* _rv, Value* data) asm("_ZN4HPHP15f_base64_encodeERKNS_6StringE"); -TypedValue * fg1_base64_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_base64_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_base64_encode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_base64_encode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -106,7 +106,7 @@ TypedValue * fg1_base64_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_base64_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_base64_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -149,8 +149,8 @@ format => rdx TypedValue* fh_get_headers(TypedValue* _rv, Value* url, int format) asm("_ZN4HPHP13f_get_headersERKNS_6StringEi"); -TypedValue * fg1_get_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_headers(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_headers(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -168,7 +168,7 @@ TypedValue * fg1_get_headers(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_get_headers(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_headers(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -210,8 +210,8 @@ use_include_path => rdx Value* fh_get_meta_tags(Value* _rv, Value* filename, bool use_include_path) asm("_ZN4HPHP15f_get_meta_tagsERKNS_6StringEb"); -TypedValue * fg1_get_meta_tags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_meta_tags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_meta_tags(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_meta_tags(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfArray; switch (count) { @@ -230,7 +230,7 @@ TypedValue * fg1_get_meta_tags(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_get_meta_tags(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_meta_tags(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -274,8 +274,8 @@ arg_separator => rcx TypedValue* fh_http_build_query(TypedValue* _rv, TypedValue* formdata, Value* numeric_prefix, Value* arg_separator) asm("_ZN4HPHP18f_http_build_queryERKNS_7VariantERKNS_6StringES5_"); -TypedValue * fg1_http_build_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_http_build_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_http_build_query(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_http_build_query(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -294,7 +294,7 @@ TypedValue * fg1_http_build_query(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_http_build_query(HPHP::VM::ActRec *ar) { +TypedValue* fg_http_build_query(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -336,8 +336,8 @@ component => rdx TypedValue* fh_parse_url(TypedValue* _rv, Value* url, int component) asm("_ZN4HPHP11f_parse_urlERKNS_6StringEi"); -TypedValue * fg1_parse_url(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_parse_url(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_parse_url(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_parse_url(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -355,7 +355,7 @@ TypedValue * fg1_parse_url(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_parse_url(HPHP::VM::ActRec *ar) { +TypedValue* fg_parse_url(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -396,8 +396,8 @@ str => rsi Value* fh_rawurldecode(Value* _rv, Value* str) asm("_ZN4HPHP14f_rawurldecodeERKNS_6StringE"); -TypedValue * fg1_rawurldecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rawurldecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rawurldecode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rawurldecode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -406,7 +406,7 @@ TypedValue * fg1_rawurldecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_rawurldecode(HPHP::VM::ActRec *ar) { +TypedValue* fg_rawurldecode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -448,8 +448,8 @@ str => rsi Value* fh_rawurlencode(Value* _rv, Value* str) asm("_ZN4HPHP14f_rawurlencodeERKNS_6StringE"); -TypedValue * fg1_rawurlencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_rawurlencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_rawurlencode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_rawurlencode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -458,7 +458,7 @@ TypedValue * fg1_rawurlencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_rawurlencode(HPHP::VM::ActRec *ar) { +TypedValue* fg_rawurlencode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -500,8 +500,8 @@ str => rsi Value* fh_urldecode(Value* _rv, Value* str) asm("_ZN4HPHP11f_urldecodeERKNS_6StringE"); -TypedValue * fg1_urldecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_urldecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_urldecode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_urldecode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -510,7 +510,7 @@ TypedValue * fg1_urldecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_urldecode(HPHP::VM::ActRec *ar) { +TypedValue* fg_urldecode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -552,8 +552,8 @@ str => rsi Value* fh_urlencode(Value* _rv, Value* str) asm("_ZN4HPHP11f_urlencodeERKNS_6StringE"); -TypedValue * fg1_urlencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_urlencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_urlencode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_urlencode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -562,7 +562,7 @@ TypedValue * fg1_urlencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_urlencode(HPHP::VM::ActRec *ar) { +TypedValue* fg_urlencode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_variable.cpp b/hphp/runtime/ext/ext_variable.cpp index d140df9dd..5884f1094 100644 --- a/hphp/runtime/ext/ext_variable.cpp +++ b/hphp/runtime/ext/ext_variable.cpp @@ -190,7 +190,7 @@ Variant f_unserialize(CStrRef str, CArrRef class_whitelist /* = empty_array */) // variable table Array f_get_defined_vars() { - HPHP::VM::VarEnv* v = g_vmContext->getVarEnv(); + VarEnv* v = g_vmContext->getVarEnv(); if (v) { return v->getDefinedVariables(); } else { @@ -214,7 +214,7 @@ int64_t f_extract(CArrRef var_array, int extract_type /* = EXTR_OVERWRITE */, bool reference = extract_type & EXTR_REFS; extract_type &= ~EXTR_REFS; - HPHP::VM::VarEnv* v = g_vmContext->getVarEnv(); + VarEnv* v = g_vmContext->getVarEnv(); if (!v) return 0; int count = 0; for (ArrayIter iter(var_array); iter; ++iter) { diff --git a/hphp/runtime/ext/ext_variable.ext_hhvm.cpp b/hphp/runtime/ext/ext_variable.ext_hhvm.cpp index 34bb69971..1a35ab7c0 100644 --- a/hphp/runtime/ext/ext_variable.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_variable.ext_hhvm.cpp @@ -34,7 +34,7 @@ var => rdi bool fh_is_bool(TypedValue* var) asm("_ZN4HPHP9f_is_boolERKNS_7VariantE"); -TypedValue* fg_is_bool(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_bool(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -67,7 +67,7 @@ var => rdi bool fh_is_int(TypedValue* var) asm("_ZN4HPHP8f_is_intERKNS_7VariantE"); -TypedValue* fg_is_int(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_int(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -100,7 +100,7 @@ var => rdi bool fh_is_integer(TypedValue* var) asm("_ZN4HPHP12f_is_integerERKNS_7VariantE"); -TypedValue* fg_is_integer(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_integer(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -133,7 +133,7 @@ var => rdi bool fh_is_long(TypedValue* var) asm("_ZN4HPHP9f_is_longERKNS_7VariantE"); -TypedValue* fg_is_long(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_long(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -166,7 +166,7 @@ var => rdi bool fh_is_double(TypedValue* var) asm("_ZN4HPHP11f_is_doubleERKNS_7VariantE"); -TypedValue* fg_is_double(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_double(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -199,7 +199,7 @@ var => rdi bool fh_is_float(TypedValue* var) asm("_ZN4HPHP10f_is_floatERKNS_7VariantE"); -TypedValue* fg_is_float(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_float(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -232,7 +232,7 @@ var => rdi bool fh_is_numeric(TypedValue* var) asm("_ZN4HPHP12f_is_numericERKNS_7VariantE"); -TypedValue* fg_is_numeric(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_numeric(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -265,7 +265,7 @@ var => rdi bool fh_is_real(TypedValue* var) asm("_ZN4HPHP9f_is_realERKNS_7VariantE"); -TypedValue* fg_is_real(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_real(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -298,7 +298,7 @@ var => rdi bool fh_is_string(TypedValue* var) asm("_ZN4HPHP11f_is_stringERKNS_7VariantE"); -TypedValue* fg_is_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -331,7 +331,7 @@ var => rdi bool fh_is_scalar(TypedValue* var) asm("_ZN4HPHP11f_is_scalarERKNS_7VariantE"); -TypedValue* fg_is_scalar(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_scalar(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -364,7 +364,7 @@ var => rdi bool fh_is_array(TypedValue* var) asm("_ZN4HPHP10f_is_arrayERKNS_7VariantE"); -TypedValue* fg_is_array(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_array(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -397,7 +397,7 @@ var => rdi bool fh_is_object(TypedValue* var) asm("_ZN4HPHP11f_is_objectERKNS_7VariantE"); -TypedValue* fg_is_object(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_object(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -430,7 +430,7 @@ var => rdi bool fh_is_resource(TypedValue* var) asm("_ZN4HPHP13f_is_resourceERKNS_7VariantE"); -TypedValue* fg_is_resource(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_resource(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -463,7 +463,7 @@ var => rdi bool fh_is_null(TypedValue* var) asm("_ZN4HPHP9f_is_nullERKNS_7VariantE"); -TypedValue* fg_is_null(HPHP::VM::ActRec *ar) { +TypedValue* fg_is_null(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -497,7 +497,7 @@ v => rsi Value* fh_gettype(Value* _rv, TypedValue* v) asm("_ZN4HPHP9f_gettypeERKNS_7VariantE"); -TypedValue* fg_gettype(HPHP::VM::ActRec *ar) { +TypedValue* fg_gettype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -532,8 +532,8 @@ handle => rsi Value* fh_get_resource_type(Value* _rv, Value* handle) asm("_ZN4HPHP19f_get_resource_typeERKNS_6ObjectE"); -TypedValue * fg1_get_resource_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_get_resource_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_get_resource_type(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_get_resource_type(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToObjectInPlace(args-0); @@ -542,7 +542,7 @@ TypedValue * fg1_get_resource_type(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_get_resource_type(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_resource_type(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -584,8 +584,8 @@ base => rsi long fh_intval(TypedValue* v, long base) asm("_ZN4HPHP8f_intvalERKNS_7VariantEl"); -TypedValue * fg1_intval(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_intval(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_intval(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_intval(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-1); @@ -593,7 +593,7 @@ TypedValue * fg1_intval(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_intval(HPHP::VM::ActRec *ar) { +TypedValue* fg_intval(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -633,7 +633,7 @@ v => rdi double fh_doubleval(TypedValue* v) asm("_ZN4HPHP11f_doublevalERKNS_7VariantE"); -TypedValue* fg_doubleval(HPHP::VM::ActRec *ar) { +TypedValue* fg_doubleval(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -666,7 +666,7 @@ v => rdi double fh_floatval(TypedValue* v) asm("_ZN4HPHP10f_floatvalERKNS_7VariantE"); -TypedValue* fg_floatval(HPHP::VM::ActRec *ar) { +TypedValue* fg_floatval(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -700,7 +700,7 @@ v => rsi Value* fh_strval(Value* _rv, TypedValue* v) asm("_ZN4HPHP8f_strvalERKNS_7VariantE"); -TypedValue* fg_strval(HPHP::VM::ActRec *ar) { +TypedValue* fg_strval(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -735,8 +735,8 @@ type => rsi bool fh_settype(TypedValue* var, Value* type) asm("_ZN4HPHP9f_settypeERKNS_14VRefParamValueERKNS_6StringE"); -TypedValue * fg1_settype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_settype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_settype(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_settype(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-1); @@ -744,7 +744,7 @@ TypedValue * fg1_settype(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_settype(HPHP::VM::ActRec *ar) { +TypedValue* fg_settype(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -786,8 +786,8 @@ ret => rdx TypedValue* fh_print_r(TypedValue* _rv, TypedValue* expression, bool ret) asm("_ZN4HPHP9f_print_rERKNS_7VariantEb"); -TypedValue * fg1_print_r(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_print_r(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_print_r(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_print_r(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_print_r((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(false)); @@ -795,7 +795,7 @@ TypedValue * fg1_print_r(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_print_r(HPHP::VM::ActRec *ar) { +TypedValue* fg_print_r(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -837,8 +837,8 @@ ret => rdx TypedValue* fh_var_export(TypedValue* _rv, TypedValue* expression, bool ret) asm("_ZN4HPHP12f_var_exportERKNS_7VariantEb"); -TypedValue * fg1_var_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_var_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_var_export(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_var_export(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-1); fh_var_export((rv), (args-0), (count > 1) ? (bool)(args[-1].m_data.num) : (bool)(false)); @@ -846,7 +846,7 @@ TypedValue * fg1_var_export(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_var_export(HPHP::VM::ActRec *ar) { +TypedValue* fg_var_export(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -887,7 +887,7 @@ _argv => rdx void fh_var_dump(int64_t _argc, TypedValue* expression, Value* _argv) asm("_ZN4HPHP10f_var_dumpEiRKNS_7VariantERKNS_5ArrayE"); -TypedValue* fg_var_dump(HPHP::VM::ActRec *ar) { +TypedValue* fg_var_dump(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -933,7 +933,7 @@ variable => rdi void fh_debug_zval_dump(TypedValue* variable) asm("_ZN4HPHP17f_debug_zval_dumpERKNS_7VariantE"); -TypedValue* fg_debug_zval_dump(HPHP::VM::ActRec *ar) { +TypedValue* fg_debug_zval_dump(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -969,8 +969,8 @@ class_whitelist => rdx TypedValue* fh_unserialize(TypedValue* _rv, Value* str, Value* class_whitelist) asm("_ZN4HPHP13f_unserializeERKNS_6StringERKNS_5ArrayE"); -TypedValue * fg1_unserialize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_unserialize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_unserialize(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_unserialize(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -989,7 +989,7 @@ TypedValue * fg1_unserialize(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_unserialize(HPHP::VM::ActRec *ar) { +TypedValue* fg_unserialize(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1030,7 +1030,7 @@ _rv => rdi Value* fh_get_defined_vars(Value* _rv) asm("_ZN4HPHP18f_get_defined_varsEv"); -TypedValue* fg_get_defined_vars(HPHP::VM::ActRec *ar) { +TypedValue* fg_get_defined_vars(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1065,8 +1065,8 @@ prefix => rsi bool fh_import_request_variables(Value* types, Value* prefix) asm("_ZN4HPHP26f_import_request_variablesERKNS_6StringES2_"); -TypedValue * fg1_import_request_variables(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_import_request_variables(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_import_request_variables(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_import_request_variables(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1084,7 +1084,7 @@ TypedValue * fg1_import_request_variables(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_import_request_variables(HPHP::VM::ActRec *ar) { +TypedValue* fg_import_request_variables(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1126,8 +1126,8 @@ prefix => rdx long fh_extract(Value* var_array, int extract_type, Value* prefix) asm("_ZN4HPHP9f_extractERKNS_5ArrayEiRKNS_6StringE"); -TypedValue * fg1_extract(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_extract(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_extract(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_extract(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -1149,7 +1149,7 @@ TypedValue * fg1_extract(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_extract(HPHP::VM::ActRec *ar) { +TypedValue* fg_extract(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_xml.ext_hhvm.cpp b/hphp/runtime/ext/ext_xml.ext_hhvm.cpp index f4fa1de02..16c0a8e65 100644 --- a/hphp/runtime/ext/ext_xml.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_xml.ext_hhvm.cpp @@ -35,8 +35,8 @@ encoding => rsi Value* fh_xml_parser_create(Value* _rv, Value* encoding) asm("_ZN4HPHP19f_xml_parser_createERKNS_6StringE"); -TypedValue * fg1_xml_parser_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_parser_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_parser_create(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_parser_create(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -45,7 +45,7 @@ TypedValue * fg1_xml_parser_create(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xml_parser_create(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_parser_create(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -86,8 +86,8 @@ parser => rdi bool fh_xml_parser_free(Value* parser) asm("_ZN4HPHP17f_xml_parser_freeERKNS_6ObjectE"); -TypedValue * fg1_xml_parser_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_parser_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_parser_free(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_parser_free(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -95,7 +95,7 @@ TypedValue * fg1_xml_parser_free(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_xml_parser_free(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_parser_free(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -137,8 +137,8 @@ is_final => rdx long fh_xml_parse(Value* parser, Value* data, bool is_final) asm("_ZN4HPHP11f_xml_parseERKNS_6ObjectERKNS_6StringEb"); -TypedValue * fg1_xml_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_parse(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_parse(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -159,7 +159,7 @@ TypedValue * fg1_xml_parse(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_xml_parse(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_parse(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -202,8 +202,8 @@ index => rcx long fh_xml_parse_into_struct(Value* parser, Value* data, TypedValue* values, TypedValue* index) asm("_ZN4HPHP23f_xml_parse_into_structERKNS_6ObjectERKNS_6StringERKNS_14VRefParamValueES8_"); -TypedValue * fg1_xml_parse_into_struct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_parse_into_struct(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_parse_into_struct(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_parse_into_struct(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; switch (count) { @@ -222,7 +222,7 @@ TypedValue * fg1_xml_parse_into_struct(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_xml_parse_into_struct(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_parse_into_struct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -265,8 +265,8 @@ separator => rdx Value* fh_xml_parser_create_ns(Value* _rv, Value* encoding, Value* separator) asm("_ZN4HPHP22f_xml_parser_create_nsERKNS_6StringES2_"); -TypedValue * fg1_xml_parser_create_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_parser_create_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_parser_create_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_parser_create_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -286,7 +286,7 @@ TypedValue * fg1_xml_parser_create_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_xml_parser_create_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_parser_create_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -329,8 +329,8 @@ option => rdx TypedValue* fh_xml_parser_get_option(TypedValue* _rv, Value* parser, int option) asm("_ZN4HPHP23f_xml_parser_get_optionERKNS_6ObjectEi"); -TypedValue * fg1_xml_parser_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_parser_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_parser_get_option(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_parser_get_option(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-1)->m_type != KindOfInt64) { tvCastToInt64InPlace(args-1); @@ -343,7 +343,7 @@ TypedValue * fg1_xml_parser_get_option(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_xml_parser_get_option(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_parser_get_option(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -385,8 +385,8 @@ value => rdx bool fh_xml_parser_set_option(Value* parser, int option, TypedValue* value) asm("_ZN4HPHP23f_xml_parser_set_optionERKNS_6ObjectEiRKNS_7VariantE"); -TypedValue * fg1_xml_parser_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_parser_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_parser_set_option(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_parser_set_option(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfInt64) { @@ -399,7 +399,7 @@ TypedValue * fg1_xml_parser_set_option(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_xml_parser_set_option(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_parser_set_option(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -440,8 +440,8 @@ handler => rsi bool fh_xml_set_character_data_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP32f_xml_set_character_data_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_character_data_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_character_data_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_character_data_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_character_data_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -449,7 +449,7 @@ TypedValue * fg1_xml_set_character_data_handler(TypedValue* rv, HPHP::VM::ActRec return rv; } -TypedValue* fg_xml_set_character_data_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_character_data_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -490,8 +490,8 @@ handler => rsi bool fh_xml_set_default_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP25f_xml_set_default_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_default_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_default_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_default_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_default_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -499,7 +499,7 @@ TypedValue * fg1_xml_set_default_handler(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xml_set_default_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_default_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -541,8 +541,8 @@ end_element_handler => rdx bool fh_xml_set_element_handler(Value* parser, TypedValue* start_element_handler, TypedValue* end_element_handler) asm("_ZN4HPHP25f_xml_set_element_handlerERKNS_6ObjectERKNS_7VariantES5_"); -TypedValue * fg1_xml_set_element_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_element_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_element_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_element_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -550,7 +550,7 @@ TypedValue * fg1_xml_set_element_handler(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xml_set_element_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_element_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -591,8 +591,8 @@ handler => rsi bool fh_xml_set_processing_instruction_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP40f_xml_set_processing_instruction_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_processing_instruction_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_processing_instruction_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_processing_instruction_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_processing_instruction_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -600,7 +600,7 @@ TypedValue * fg1_xml_set_processing_instruction_handler(TypedValue* rv, HPHP::VM return rv; } -TypedValue* fg_xml_set_processing_instruction_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_processing_instruction_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -641,8 +641,8 @@ handler => rsi bool fh_xml_set_start_namespace_decl_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP38f_xml_set_start_namespace_decl_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_start_namespace_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_start_namespace_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_start_namespace_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_start_namespace_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -650,7 +650,7 @@ TypedValue * fg1_xml_set_start_namespace_decl_handler(TypedValue* rv, HPHP::VM:: return rv; } -TypedValue* fg_xml_set_start_namespace_decl_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_start_namespace_decl_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -691,8 +691,8 @@ handler => rsi bool fh_xml_set_end_namespace_decl_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP36f_xml_set_end_namespace_decl_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_end_namespace_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_end_namespace_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_end_namespace_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_end_namespace_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -700,7 +700,7 @@ TypedValue * fg1_xml_set_end_namespace_decl_handler(TypedValue* rv, HPHP::VM::Ac return rv; } -TypedValue* fg_xml_set_end_namespace_decl_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_end_namespace_decl_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -741,8 +741,8 @@ handler => rsi bool fh_xml_set_unparsed_entity_decl_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP38f_xml_set_unparsed_entity_decl_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_unparsed_entity_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_unparsed_entity_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_unparsed_entity_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_unparsed_entity_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -750,7 +750,7 @@ TypedValue * fg1_xml_set_unparsed_entity_decl_handler(TypedValue* rv, HPHP::VM:: return rv; } -TypedValue* fg_xml_set_unparsed_entity_decl_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_unparsed_entity_decl_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -791,8 +791,8 @@ handler => rsi bool fh_xml_set_external_entity_ref_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP37f_xml_set_external_entity_ref_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_external_entity_ref_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_external_entity_ref_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_external_entity_ref_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_external_entity_ref_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -800,7 +800,7 @@ TypedValue * fg1_xml_set_external_entity_ref_handler(TypedValue* rv, HPHP::VM::A return rv; } -TypedValue* fg_xml_set_external_entity_ref_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_external_entity_ref_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -841,8 +841,8 @@ handler => rsi bool fh_xml_set_notation_decl_handler(Value* parser, TypedValue* handler) asm("_ZN4HPHP31f_xml_set_notation_decl_handlerERKNS_6ObjectERKNS_7VariantE"); -TypedValue * fg1_xml_set_notation_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_notation_decl_handler(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_notation_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_notation_decl_handler(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -850,7 +850,7 @@ TypedValue * fg1_xml_set_notation_decl_handler(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_xml_set_notation_decl_handler(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_notation_decl_handler(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -891,8 +891,8 @@ object => rsi bool fh_xml_set_object(Value* parser, TypedValue* object) asm("_ZN4HPHP16f_xml_set_objectERKNS_6ObjectERKNS_14VRefParamValueE"); -TypedValue * fg1_xml_set_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_set_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_set_object(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_set_object(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -900,7 +900,7 @@ TypedValue * fg1_xml_set_object(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_xml_set_object(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_set_object(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -940,8 +940,8 @@ parser => rdi long fh_xml_get_current_byte_index(Value* parser) asm("_ZN4HPHP28f_xml_get_current_byte_indexERKNS_6ObjectE"); -TypedValue * fg1_xml_get_current_byte_index(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_get_current_byte_index(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_get_current_byte_index(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_get_current_byte_index(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -949,7 +949,7 @@ TypedValue * fg1_xml_get_current_byte_index(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_xml_get_current_byte_index(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_get_current_byte_index(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -989,8 +989,8 @@ parser => rdi long fh_xml_get_current_column_number(Value* parser) asm("_ZN4HPHP31f_xml_get_current_column_numberERKNS_6ObjectE"); -TypedValue * fg1_xml_get_current_column_number(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_get_current_column_number(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_get_current_column_number(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_get_current_column_number(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -998,7 +998,7 @@ TypedValue * fg1_xml_get_current_column_number(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_xml_get_current_column_number(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_get_current_column_number(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1038,8 +1038,8 @@ parser => rdi long fh_xml_get_current_line_number(Value* parser) asm("_ZN4HPHP29f_xml_get_current_line_numberERKNS_6ObjectE"); -TypedValue * fg1_xml_get_current_line_number(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_get_current_line_number(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_get_current_line_number(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_get_current_line_number(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1047,7 +1047,7 @@ TypedValue * fg1_xml_get_current_line_number(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_xml_get_current_line_number(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_get_current_line_number(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1087,8 +1087,8 @@ parser => rdi long fh_xml_get_error_code(Value* parser) asm("_ZN4HPHP20f_xml_get_error_codeERKNS_6ObjectE"); -TypedValue * fg1_xml_get_error_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_get_error_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_get_error_code(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_get_error_code(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToObjectInPlace(args-0); @@ -1096,7 +1096,7 @@ TypedValue * fg1_xml_get_error_code(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_xml_get_error_code(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_get_error_code(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1137,8 +1137,8 @@ code => rsi Value* fh_xml_error_string(Value* _rv, int code) asm("_ZN4HPHP18f_xml_error_stringEi"); -TypedValue * fg1_xml_error_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xml_error_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xml_error_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xml_error_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToInt64InPlace(args-0); @@ -1147,7 +1147,7 @@ TypedValue * fg1_xml_error_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xml_error_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_xml_error_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1189,8 +1189,8 @@ data => rsi Value* fh_utf8_decode(Value* _rv, Value* data) asm("_ZN4HPHP13f_utf8_decodeERKNS_6StringE"); -TypedValue * fg1_utf8_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_utf8_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_utf8_decode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_utf8_decode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1199,7 +1199,7 @@ TypedValue * fg1_utf8_decode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_utf8_decode(HPHP::VM::ActRec *ar) { +TypedValue* fg_utf8_decode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1241,8 +1241,8 @@ data => rsi Value* fh_utf8_encode(Value* _rv, Value* data) asm("_ZN4HPHP13f_utf8_encodeERKNS_6StringE"); -TypedValue * fg1_utf8_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_utf8_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_utf8_encode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_utf8_encode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToStringInPlace(args-0); @@ -1251,7 +1251,7 @@ TypedValue * fg1_utf8_encode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_utf8_encode(HPHP::VM::ActRec *ar) { +TypedValue* fg_utf8_encode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_xmlreader.ext_hhvm.cpp b/hphp/runtime/ext/ext_xmlreader.ext_hhvm.cpp index 043d1d5e3..3850031c8 100644 --- a/hphp/runtime/ext/ext_xmlreader.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_xmlreader.ext_hhvm.cpp @@ -43,7 +43,7 @@ this_ => rdi void th_9XMLReader___construct(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader13t___constructEv"); -TypedValue* tg_9XMLReader___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -83,8 +83,8 @@ options => rcx bool th_9XMLReader_open(ObjectData* this_, Value* uri, Value* encoding, long options) asm("_ZN4HPHP11c_XMLReader6t_openERKNS_6StringES3_l"); -TypedValue* tg1_9XMLReader_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_open(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_open(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -106,7 +106,7 @@ TypedValue* tg1_9XMLReader_open(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* tg_9XMLReader_open(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_open(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -152,8 +152,8 @@ options => rcx bool th_9XMLReader_XML(ObjectData* this_, Value* source, Value* encoding, long options) asm("_ZN4HPHP11c_XMLReader5t_xmlERKNS_6StringES3_l"); -TypedValue* tg1_9XMLReader_XML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_XML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_XML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_XML(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -175,7 +175,7 @@ TypedValue* tg1_9XMLReader_XML(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* tg_9XMLReader_XML(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_XML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -218,7 +218,7 @@ this_ => rdi bool th_9XMLReader_close(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader7t_closeEv"); -TypedValue* tg_9XMLReader_close(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_close(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -254,7 +254,7 @@ this_ => rdi bool th_9XMLReader_read(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader6t_readEv"); -TypedValue* tg_9XMLReader_read(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_read(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -291,8 +291,8 @@ localname => rsi bool th_9XMLReader_next(ObjectData* this_, Value* localname) asm("_ZN4HPHP11c_XMLReader6t_nextERKNS_6StringE"); -TypedValue* tg1_9XMLReader_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_next(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_next(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -300,7 +300,7 @@ TypedValue* tg1_9XMLReader_next(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* tg_9XMLReader_next(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_next(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -344,7 +344,7 @@ this_ => rsi Value* th_9XMLReader_readString(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_XMLReader12t_readstringEv"); -TypedValue* tg_9XMLReader_readString(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_readString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -382,7 +382,7 @@ this_ => rsi Value* th_9XMLReader_readInnerXML(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_XMLReader14t_readinnerxmlEv"); -TypedValue* tg_9XMLReader_readInnerXML(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_readInnerXML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -420,7 +420,7 @@ this_ => rsi Value* th_9XMLReader_readOuterXML(Value* _rv, ObjectData* this_) asm("_ZN4HPHP11c_XMLReader14t_readouterxmlEv"); -TypedValue* tg_9XMLReader_readOuterXML(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_readOuterXML(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -457,7 +457,7 @@ this_ => rdi bool th_9XMLReader_moveToNextAttribute(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader21t_movetonextattributeEv"); -TypedValue* tg_9XMLReader_moveToNextAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_moveToNextAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -495,8 +495,8 @@ name => rdx TypedValue* th_9XMLReader_getAttribute(TypedValue* _rv, ObjectData* this_, Value* name) asm("_ZN4HPHP11c_XMLReader14t_getattributeERKNS_6StringE"); -TypedValue* tg1_9XMLReader_getAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_getAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_getAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_getAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_9XMLReader_getAttribute((rv), (this_), &args[-0].m_data); @@ -504,7 +504,7 @@ TypedValue* tg1_9XMLReader_getAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_9XMLReader_getAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_getAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -549,8 +549,8 @@ index => rdx TypedValue* th_9XMLReader_getAttributeNo(TypedValue* _rv, ObjectData* this_, long index) asm("_ZN4HPHP11c_XMLReader16t_getattributenoEl"); -TypedValue* tg1_9XMLReader_getAttributeNo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_getAttributeNo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_getAttributeNo(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_getAttributeNo(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); th_9XMLReader_getAttributeNo((rv), (this_), (long)(args[-0].m_data.num)); @@ -558,7 +558,7 @@ TypedValue* tg1_9XMLReader_getAttributeNo(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLReader_getAttributeNo(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_getAttributeNo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -604,8 +604,8 @@ namespaceURI => rcx TypedValue* th_9XMLReader_getAttributeNs(TypedValue* _rv, ObjectData* this_, Value* name, Value* namespaceURI) asm("_ZN4HPHP11c_XMLReader16t_getattributensERKNS_6StringES3_"); -TypedValue* tg1_9XMLReader_getAttributeNs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_getAttributeNs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_getAttributeNs(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_getAttributeNs(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -618,7 +618,7 @@ TypedValue* tg1_9XMLReader_getAttributeNs(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLReader_getAttributeNs(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_getAttributeNs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -662,8 +662,8 @@ name => rsi bool th_9XMLReader_moveToAttribute(ObjectData* this_, Value* name) asm("_ZN4HPHP11c_XMLReader17t_movetoattributeERKNS_6StringE"); -TypedValue* tg1_9XMLReader_moveToAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_moveToAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_moveToAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_moveToAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -671,7 +671,7 @@ TypedValue* tg1_9XMLReader_moveToAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLReader_moveToAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_moveToAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -715,8 +715,8 @@ index => rsi bool th_9XMLReader_moveToAttributeNo(ObjectData* this_, long index) asm("_ZN4HPHP11c_XMLReader19t_movetoattributenoEl"); -TypedValue* tg1_9XMLReader_moveToAttributeNo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_moveToAttributeNo(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_moveToAttributeNo(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_moveToAttributeNo(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -724,7 +724,7 @@ TypedValue* tg1_9XMLReader_moveToAttributeNo(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_9XMLReader_moveToAttributeNo(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_moveToAttributeNo(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -769,8 +769,8 @@ namespaceURI => rdx bool th_9XMLReader_moveToAttributeNs(ObjectData* this_, Value* name, Value* namespaceURI) asm("_ZN4HPHP11c_XMLReader19t_movetoattributensERKNS_6StringES3_"); -TypedValue* tg1_9XMLReader_moveToAttributeNs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_moveToAttributeNs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_moveToAttributeNs(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_moveToAttributeNs(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -783,7 +783,7 @@ TypedValue* tg1_9XMLReader_moveToAttributeNs(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_9XMLReader_moveToAttributeNs(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_moveToAttributeNs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -826,7 +826,7 @@ this_ => rdi bool th_9XMLReader_moveToElement(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader15t_movetoelementEv"); -TypedValue* tg_9XMLReader_moveToElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_moveToElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -862,7 +862,7 @@ this_ => rdi bool th_9XMLReader_moveToFirstAttribute(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader22t_movetofirstattributeEv"); -TypedValue* tg_9XMLReader_moveToFirstAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_moveToFirstAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -898,7 +898,7 @@ this_ => rdi bool th_9XMLReader_isValid(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader9t_isvalidEv"); -TypedValue* tg_9XMLReader_isValid(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_isValid(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -934,7 +934,7 @@ this_ => rdi bool th_9XMLReader_expand(ObjectData* this_) asm("_ZN4HPHP11c_XMLReader8t_expandEv"); -TypedValue* tg_9XMLReader_expand(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_expand(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -972,7 +972,7 @@ name => rdx TypedValue* th_9XMLReader___get(TypedValue* _rv, ObjectData* this_, TypedValue* name) asm("_ZN4HPHP11c_XMLReader7t___getENS_7VariantE"); -TypedValue* tg_9XMLReader___get(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader___get(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1009,8 +1009,8 @@ property => rsi bool th_9XMLReader_getParserProperty(ObjectData* this_, long property) asm("_ZN4HPHP11c_XMLReader19t_getparserpropertyEl"); -TypedValue* tg1_9XMLReader_getParserProperty(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_getParserProperty(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_getParserProperty(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_getParserProperty(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToInt64InPlace(args-0); @@ -1018,7 +1018,7 @@ TypedValue* tg1_9XMLReader_getParserProperty(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_9XMLReader_getParserProperty(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_getParserProperty(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1063,8 +1063,8 @@ prefix => rdx TypedValue* th_9XMLReader_lookupNamespace(TypedValue* _rv, ObjectData* this_, Value* prefix) asm("_ZN4HPHP11c_XMLReader17t_lookupnamespaceERKNS_6StringE"); -TypedValue* tg1_9XMLReader_lookupNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_lookupNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_lookupNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_lookupNamespace(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); th_9XMLReader_lookupNamespace((rv), (this_), &args[-0].m_data); @@ -1072,7 +1072,7 @@ TypedValue* tg1_9XMLReader_lookupNamespace(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLReader_lookupNamespace(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_lookupNamespace(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1116,8 +1116,8 @@ source => rsi bool th_9XMLReader_setSchema(ObjectData* this_, Value* source) asm("_ZN4HPHP11c_XMLReader11t_setschemaERKNS_6StringE"); -TypedValue* tg1_9XMLReader_setSchema(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_setSchema(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_setSchema(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_setSchema(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1125,7 +1125,7 @@ TypedValue* tg1_9XMLReader_setSchema(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_9XMLReader_setSchema(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_setSchema(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1170,8 +1170,8 @@ value => rdx bool th_9XMLReader_setParserProperty(ObjectData* this_, long property, bool value) asm("_ZN4HPHP11c_XMLReader19t_setparserpropertyElb"); -TypedValue* tg1_9XMLReader_setParserProperty(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_setParserProperty(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_setParserProperty(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_setParserProperty(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfBoolean) { @@ -1184,7 +1184,7 @@ TypedValue* tg1_9XMLReader_setParserProperty(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* tg_9XMLReader_setParserProperty(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_setParserProperty(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1228,8 +1228,8 @@ filename => rsi bool th_9XMLReader_setRelaxNGSchema(ObjectData* this_, Value* filename) asm("_ZN4HPHP11c_XMLReader18t_setrelaxngschemaERKNS_6StringE"); -TypedValue* tg1_9XMLReader_setRelaxNGSchema(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_setRelaxNGSchema(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_setRelaxNGSchema(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_setRelaxNGSchema(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1237,7 +1237,7 @@ TypedValue* tg1_9XMLReader_setRelaxNGSchema(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_9XMLReader_setRelaxNGSchema(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_setRelaxNGSchema(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1281,8 +1281,8 @@ source => rsi bool th_9XMLReader_setRelaxNGSchemaSource(ObjectData* this_, Value* source) asm("_ZN4HPHP11c_XMLReader24t_setrelaxngschemasourceERKNS_6StringE"); -TypedValue* tg1_9XMLReader_setRelaxNGSchemaSource(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLReader_setRelaxNGSchemaSource(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLReader_setRelaxNGSchemaSource(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLReader_setRelaxNGSchemaSource(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -1290,7 +1290,7 @@ TypedValue* tg1_9XMLReader_setRelaxNGSchemaSource(TypedValue* rv, HPHP::VM::ActR return rv; } -TypedValue* tg_9XMLReader_setRelaxNGSchemaSource(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLReader_setRelaxNGSchemaSource(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_xmlwriter.ext_hhvm.cpp b/hphp/runtime/ext/ext_xmlwriter.ext_hhvm.cpp index 76c5f6ee7..e5293e9ac 100644 --- a/hphp/runtime/ext/ext_xmlwriter.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_xmlwriter.ext_hhvm.cpp @@ -34,7 +34,7 @@ _rv => rdi TypedValue* fh_xmlwriter_open_memory(TypedValue* _rv) asm("_ZN4HPHP23f_xmlwriter_open_memoryEv"); -TypedValue* fg_xmlwriter_open_memory(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_open_memory(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -68,8 +68,8 @@ uri => rsi Value* fh_xmlwriter_open_uri(Value* _rv, Value* uri) asm("_ZN4HPHP20f_xmlwriter_open_uriERKNS_6StringE"); -TypedValue * fg1_xmlwriter_open_uri(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_open_uri(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_open_uri(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_open_uri(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; tvCastToStringInPlace(args-0); @@ -78,7 +78,7 @@ TypedValue * fg1_xmlwriter_open_uri(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_xmlwriter_open_uri(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_open_uri(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -120,8 +120,8 @@ indentstring => rsi bool fh_xmlwriter_set_indent_string(Value* xmlwriter, Value* indentstring) asm("_ZN4HPHP29f_xmlwriter_set_indent_stringERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_set_indent_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_set_indent_string(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_set_indent_string(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_set_indent_string(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -134,7 +134,7 @@ TypedValue * fg1_xmlwriter_set_indent_string(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_xmlwriter_set_indent_string(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_set_indent_string(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -175,8 +175,8 @@ indent => rsi bool fh_xmlwriter_set_indent(Value* xmlwriter, bool indent) asm("_ZN4HPHP22f_xmlwriter_set_indentERKNS_6ObjectEb"); -TypedValue * fg1_xmlwriter_set_indent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_set_indent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_set_indent(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_set_indent(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfBoolean) { @@ -189,7 +189,7 @@ TypedValue * fg1_xmlwriter_set_indent(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* fg_xmlwriter_set_indent(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_set_indent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -232,8 +232,8 @@ standalone => rcx bool fh_xmlwriter_start_document(Value* xmlwriter, Value* version, Value* encoding, Value* standalone) asm("_ZN4HPHP26f_xmlwriter_start_documentERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_xmlwriter_start_document(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_document(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_document(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_document(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -260,7 +260,7 @@ TypedValue * fg1_xmlwriter_start_document(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_xmlwriter_start_document(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_document(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -302,8 +302,8 @@ name => rsi bool fh_xmlwriter_start_element(Value* xmlwriter, Value* name) asm("_ZN4HPHP25f_xmlwriter_start_elementERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_start_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -316,7 +316,7 @@ TypedValue * fg1_xmlwriter_start_element(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xmlwriter_start_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -359,8 +359,8 @@ uri => rcx bool fh_xmlwriter_start_element_ns(Value* xmlwriter, Value* prefix, Value* name, Value* uri) asm("_ZN4HPHP28f_xmlwriter_start_element_nsERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_xmlwriter_start_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_element_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_element_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-3)->m_type)) { @@ -379,7 +379,7 @@ TypedValue * fg1_xmlwriter_start_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_xmlwriter_start_element_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_element_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -423,8 +423,8 @@ content => r8 bool fh_xmlwriter_write_element_ns(Value* xmlwriter, Value* prefix, Value* name, Value* uri, Value* content) asm("_ZN4HPHP28f_xmlwriter_write_element_nsERKNS_6ObjectERKNS_6StringES5_S5_S5_"); -TypedValue * fg1_xmlwriter_write_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_element_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_element_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -451,7 +451,7 @@ TypedValue * fg1_xmlwriter_write_element_ns(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_xmlwriter_write_element_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_element_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -493,8 +493,8 @@ content => rdx bool fh_xmlwriter_write_element(Value* xmlwriter, Value* name, Value* content) asm("_ZN4HPHP25f_xmlwriter_write_elementERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_xmlwriter_write_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -515,7 +515,7 @@ TypedValue * fg1_xmlwriter_write_element(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xmlwriter_write_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -555,8 +555,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_element(Value* xmlwriter) asm("_ZN4HPHP23f_xmlwriter_end_elementERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -564,7 +564,7 @@ TypedValue * fg1_xmlwriter_end_element(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_xmlwriter_end_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -604,8 +604,8 @@ xmlwriter => rdi bool fh_xmlwriter_full_end_element(Value* xmlwriter) asm("_ZN4HPHP28f_xmlwriter_full_end_elementERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_full_end_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_full_end_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_full_end_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_full_end_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -613,7 +613,7 @@ TypedValue * fg1_xmlwriter_full_end_element(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_xmlwriter_full_end_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_full_end_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -656,8 +656,8 @@ uri => rcx bool fh_xmlwriter_start_attribute_ns(Value* xmlwriter, Value* prefix, Value* name, Value* uri) asm("_ZN4HPHP30f_xmlwriter_start_attribute_nsERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_xmlwriter_start_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-3)->m_type)) { @@ -676,7 +676,7 @@ TypedValue * fg1_xmlwriter_start_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_xmlwriter_start_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -717,8 +717,8 @@ name => rsi bool fh_xmlwriter_start_attribute(Value* xmlwriter, Value* name) asm("_ZN4HPHP27f_xmlwriter_start_attributeERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_start_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -731,7 +731,7 @@ TypedValue * fg1_xmlwriter_start_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_xmlwriter_start_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -775,8 +775,8 @@ content => r8 bool fh_xmlwriter_write_attribute_ns(Value* xmlwriter, Value* prefix, Value* name, Value* uri, Value* content) asm("_ZN4HPHP30f_xmlwriter_write_attribute_nsERKNS_6ObjectERKNS_6StringES5_S5_S5_"); -TypedValue * fg1_xmlwriter_write_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_attribute_ns(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-4)->m_type)) { @@ -798,7 +798,7 @@ TypedValue * fg1_xmlwriter_write_attribute_ns(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_xmlwriter_write_attribute_ns(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_attribute_ns(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -840,8 +840,8 @@ value => rdx bool fh_xmlwriter_write_attribute(Value* xmlwriter, Value* name, Value* value) asm("_ZN4HPHP27f_xmlwriter_write_attributeERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_xmlwriter_write_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -857,7 +857,7 @@ TypedValue * fg1_xmlwriter_write_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_xmlwriter_write_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -897,8 +897,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_attribute(Value* xmlwriter) asm("_ZN4HPHP25f_xmlwriter_end_attributeERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_attribute(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_attribute(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -906,7 +906,7 @@ TypedValue * fg1_xmlwriter_end_attribute(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xmlwriter_end_attribute(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_attribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -946,8 +946,8 @@ xmlwriter => rdi bool fh_xmlwriter_start_cdata(Value* xmlwriter) asm("_ZN4HPHP23f_xmlwriter_start_cdataERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_start_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_cdata(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_cdata(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -955,7 +955,7 @@ TypedValue * fg1_xmlwriter_start_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_xmlwriter_start_cdata(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_cdata(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -996,8 +996,8 @@ content => rsi bool fh_xmlwriter_write_cdata(Value* xmlwriter, Value* content) asm("_ZN4HPHP23f_xmlwriter_write_cdataERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_write_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_cdata(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_cdata(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1010,7 +1010,7 @@ TypedValue * fg1_xmlwriter_write_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_xmlwriter_write_cdata(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_cdata(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1050,8 +1050,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_cdata(Value* xmlwriter) asm("_ZN4HPHP21f_xmlwriter_end_cdataERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_cdata(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_cdata(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1059,7 +1059,7 @@ TypedValue * fg1_xmlwriter_end_cdata(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_xmlwriter_end_cdata(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_cdata(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1099,8 +1099,8 @@ xmlwriter => rdi bool fh_xmlwriter_start_comment(Value* xmlwriter) asm("_ZN4HPHP25f_xmlwriter_start_commentERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_start_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_comment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_comment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1108,7 +1108,7 @@ TypedValue * fg1_xmlwriter_start_comment(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xmlwriter_start_comment(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_comment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1149,8 +1149,8 @@ content => rsi bool fh_xmlwriter_write_comment(Value* xmlwriter, Value* content) asm("_ZN4HPHP25f_xmlwriter_write_commentERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_write_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_comment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_comment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1163,7 +1163,7 @@ TypedValue * fg1_xmlwriter_write_comment(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xmlwriter_write_comment(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_comment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1203,8 +1203,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_comment(Value* xmlwriter) asm("_ZN4HPHP23f_xmlwriter_end_commentERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_comment(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_comment(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1212,7 +1212,7 @@ TypedValue * fg1_xmlwriter_end_comment(TypedValue* rv, HPHP::VM::ActRec* ar, int return rv; } -TypedValue* fg_xmlwriter_end_comment(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_comment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1252,8 +1252,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_document(Value* xmlwriter) asm("_ZN4HPHP24f_xmlwriter_end_documentERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_document(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_document(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_document(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_document(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1261,7 +1261,7 @@ TypedValue * fg1_xmlwriter_end_document(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* fg_xmlwriter_end_document(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_document(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1302,8 +1302,8 @@ target => rsi bool fh_xmlwriter_start_pi(Value* xmlwriter, Value* target) asm("_ZN4HPHP20f_xmlwriter_start_piERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_start_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_pi(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_pi(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1316,7 +1316,7 @@ TypedValue * fg1_xmlwriter_start_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_xmlwriter_start_pi(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_pi(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1358,8 +1358,8 @@ content => rdx bool fh_xmlwriter_write_pi(Value* xmlwriter, Value* target, Value* content) asm("_ZN4HPHP20f_xmlwriter_write_piERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_xmlwriter_write_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_pi(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_pi(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -1375,7 +1375,7 @@ TypedValue * fg1_xmlwriter_write_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* fg_xmlwriter_write_pi(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_pi(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1415,8 +1415,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_pi(Value* xmlwriter) asm("_ZN4HPHP18f_xmlwriter_end_piERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_pi(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_pi(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1424,7 +1424,7 @@ TypedValue * fg1_xmlwriter_end_pi(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xmlwriter_end_pi(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_pi(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1465,8 +1465,8 @@ content => rsi bool fh_xmlwriter_text(Value* xmlwriter, Value* content) asm("_ZN4HPHP16f_xmlwriter_textERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_text(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_text(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1479,7 +1479,7 @@ TypedValue * fg1_xmlwriter_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* fg_xmlwriter_text(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_text(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1520,8 +1520,8 @@ content => rsi bool fh_xmlwriter_write_raw(Value* xmlwriter, Value* content) asm("_ZN4HPHP21f_xmlwriter_write_rawERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_write_raw(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_raw(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_raw(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_raw(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1534,7 +1534,7 @@ TypedValue * fg1_xmlwriter_write_raw(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_xmlwriter_write_raw(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_raw(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1577,8 +1577,8 @@ systemid => rcx bool fh_xmlwriter_start_dtd(Value* xmlwriter, Value* qualifiedname, Value* publicid, Value* systemid) asm("_ZN4HPHP21f_xmlwriter_start_dtdERKNS_6ObjectERKNS_6StringES5_S5_"); -TypedValue * fg1_xmlwriter_start_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_dtd(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_dtd(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1603,7 +1603,7 @@ TypedValue * fg1_xmlwriter_start_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_xmlwriter_start_dtd(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_dtd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1647,8 +1647,8 @@ subset => r8 bool fh_xmlwriter_write_dtd(Value* xmlwriter, Value* name, Value* publicid, Value* systemid, Value* subset) asm("_ZN4HPHP21f_xmlwriter_write_dtdERKNS_6ObjectERKNS_6StringES5_S5_S5_"); -TypedValue * fg1_xmlwriter_write_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_dtd(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_dtd(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -1677,7 +1677,7 @@ TypedValue * fg1_xmlwriter_write_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* fg_xmlwriter_write_dtd(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_dtd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1718,8 +1718,8 @@ qualifiedname => rsi bool fh_xmlwriter_start_dtd_element(Value* xmlwriter, Value* qualifiedname) asm("_ZN4HPHP29f_xmlwriter_start_dtd_elementERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_start_dtd_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_dtd_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_dtd_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_dtd_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1732,7 +1732,7 @@ TypedValue * fg1_xmlwriter_start_dtd_element(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_xmlwriter_start_dtd_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_dtd_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1774,8 +1774,8 @@ content => rdx bool fh_xmlwriter_write_dtd_element(Value* xmlwriter, Value* name, Value* content) asm("_ZN4HPHP29f_xmlwriter_write_dtd_elementERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_xmlwriter_write_dtd_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_dtd_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_dtd_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_dtd_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -1791,7 +1791,7 @@ TypedValue * fg1_xmlwriter_write_dtd_element(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_xmlwriter_write_dtd_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_dtd_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1831,8 +1831,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_dtd_element(Value* xmlwriter) asm("_ZN4HPHP27f_xmlwriter_end_dtd_elementERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_dtd_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_dtd_element(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_dtd_element(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_dtd_element(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -1840,7 +1840,7 @@ TypedValue * fg1_xmlwriter_end_dtd_element(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_xmlwriter_end_dtd_element(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_dtd_element(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1881,8 +1881,8 @@ name => rsi bool fh_xmlwriter_start_dtd_attlist(Value* xmlwriter, Value* name) asm("_ZN4HPHP29f_xmlwriter_start_dtd_attlistERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_xmlwriter_start_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_dtd_attlist(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_dtd_attlist(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -1895,7 +1895,7 @@ TypedValue * fg1_xmlwriter_start_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_xmlwriter_start_dtd_attlist(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_dtd_attlist(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1937,8 +1937,8 @@ content => rdx bool fh_xmlwriter_write_dtd_attlist(Value* xmlwriter, Value* name, Value* content) asm("_ZN4HPHP29f_xmlwriter_write_dtd_attlistERKNS_6ObjectERKNS_6StringES5_"); -TypedValue * fg1_xmlwriter_write_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_dtd_attlist(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_dtd_attlist(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -1954,7 +1954,7 @@ TypedValue * fg1_xmlwriter_write_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_xmlwriter_write_dtd_attlist(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_dtd_attlist(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1994,8 +1994,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_dtd_attlist(Value* xmlwriter) asm("_ZN4HPHP27f_xmlwriter_end_dtd_attlistERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_dtd_attlist(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_dtd_attlist(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2003,7 +2003,7 @@ TypedValue * fg1_xmlwriter_end_dtd_attlist(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_xmlwriter_end_dtd_attlist(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_dtd_attlist(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2045,8 +2045,8 @@ isparam => rdx bool fh_xmlwriter_start_dtd_entity(Value* xmlwriter, Value* name, bool isparam) asm("_ZN4HPHP28f_xmlwriter_start_dtd_entityERKNS_6ObjectERKNS_6StringEb"); -TypedValue * fg1_xmlwriter_start_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_start_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_start_dtd_entity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_start_dtd_entity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-2)->m_type != KindOfBoolean) { @@ -2062,7 +2062,7 @@ TypedValue * fg1_xmlwriter_start_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_xmlwriter_start_dtd_entity(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_start_dtd_entity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2108,8 +2108,8 @@ ndataid => st0 bool fh_xmlwriter_write_dtd_entity(Value* xmlwriter, Value* name, Value* content, bool pe, Value* publicid, Value* systemid, Value* ndataid) asm("_ZN4HPHP28f_xmlwriter_write_dtd_entityERKNS_6ObjectERKNS_6StringES5_bS5_S5_S5_"); -TypedValue * fg1_xmlwriter_write_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_write_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_write_dtd_entity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_write_dtd_entity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2145,7 +2145,7 @@ TypedValue * fg1_xmlwriter_write_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* fg_xmlwriter_write_dtd_entity(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_write_dtd_entity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2185,8 +2185,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_dtd_entity(Value* xmlwriter) asm("_ZN4HPHP26f_xmlwriter_end_dtd_entityERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_dtd_entity(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_dtd_entity(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2194,7 +2194,7 @@ TypedValue * fg1_xmlwriter_end_dtd_entity(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* fg_xmlwriter_end_dtd_entity(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_dtd_entity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2234,8 +2234,8 @@ xmlwriter => rdi bool fh_xmlwriter_end_dtd(Value* xmlwriter) asm("_ZN4HPHP19f_xmlwriter_end_dtdERKNS_6ObjectE"); -TypedValue * fg1_xmlwriter_end_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_end_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_end_dtd(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_end_dtd(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -2243,7 +2243,7 @@ TypedValue * fg1_xmlwriter_end_dtd(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* fg_xmlwriter_end_dtd(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_end_dtd(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2285,8 +2285,8 @@ empty => rdx TypedValue* fh_xmlwriter_flush(TypedValue* _rv, Value* xmlwriter, bool empty) asm("_ZN4HPHP17f_xmlwriter_flushERKNS_6ObjectEb"); -TypedValue * fg1_xmlwriter_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_flush(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_flush(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -2304,7 +2304,7 @@ TypedValue * fg1_xmlwriter_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* fg_xmlwriter_flush(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2346,8 +2346,8 @@ flush => rdx Value* fh_xmlwriter_output_memory(Value* _rv, Value* xmlwriter, bool flush) asm("_ZN4HPHP25f_xmlwriter_output_memoryERKNS_6ObjectEb"); -TypedValue * fg1_xmlwriter_output_memory(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_xmlwriter_output_memory(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_xmlwriter_output_memory(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_xmlwriter_output_memory(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; switch (count) { @@ -2366,7 +2366,7 @@ TypedValue * fg1_xmlwriter_output_memory(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* fg_xmlwriter_output_memory(HPHP::VM::ActRec *ar) { +TypedValue* fg_xmlwriter_output_memory(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2416,7 +2416,7 @@ this_ => rdi void th_9XMLWriter___construct(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter13t___constructEv"); -TypedValue* tg_9XMLWriter___construct(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter___construct(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2453,7 +2453,7 @@ this_ => rdi bool th_9XMLWriter_openMemory(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter12t_openmemoryEv"); -TypedValue* tg_9XMLWriter_openMemory(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_openMemory(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2490,8 +2490,8 @@ uri => rsi bool th_9XMLWriter_openURI(ObjectData* this_, Value* uri) asm("_ZN4HPHP11c_XMLWriter9t_openuriERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_openURI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_openURI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_openURI(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_openURI(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2499,7 +2499,7 @@ TypedValue* tg1_9XMLWriter_openURI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_9XMLWriter_openURI(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_openURI(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2543,8 +2543,8 @@ indentstring => rsi bool th_9XMLWriter_setIndentString(ObjectData* this_, Value* indentstring) asm("_ZN4HPHP11c_XMLWriter17t_setindentstringERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_setIndentString(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_setIndentString(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_setIndentString(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_setIndentString(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2552,7 +2552,7 @@ TypedValue* tg1_9XMLWriter_setIndentString(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_setIndentString(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_setIndentString(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2596,8 +2596,8 @@ indent => rsi bool th_9XMLWriter_setIndent(ObjectData* this_, bool indent) asm("_ZN4HPHP11c_XMLWriter11t_setindentEb"); -TypedValue* tg1_9XMLWriter_setIndent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_setIndent(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_setIndent(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_setIndent(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToBooleanInPlace(args-0); @@ -2605,7 +2605,7 @@ TypedValue* tg1_9XMLWriter_setIndent(TypedValue* rv, HPHP::VM::ActRec* ar, int64 return rv; } -TypedValue* tg_9XMLWriter_setIndent(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_setIndent(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2651,8 +2651,8 @@ standalone => rcx bool th_9XMLWriter_startDocument(ObjectData* this_, Value* version, Value* encoding, Value* standalone) asm("_ZN4HPHP11c_XMLWriter15t_startdocumentERKNS_6StringES3_S3_"); -TypedValue* tg1_9XMLWriter_startDocument(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startDocument(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startDocument(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startDocument(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2676,7 +2676,7 @@ TypedValue* tg1_9XMLWriter_startDocument(TypedValue* rv, HPHP::VM::ActRec* ar, i return rv; } -TypedValue* tg_9XMLWriter_startDocument(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startDocument(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2721,8 +2721,8 @@ name => rsi bool th_9XMLWriter_startElement(ObjectData* this_, Value* name) asm("_ZN4HPHP11c_XMLWriter14t_startelementERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_startElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -2730,7 +2730,7 @@ TypedValue* tg1_9XMLWriter_startElement(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_9XMLWriter_startElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2776,8 +2776,8 @@ uri => rcx bool th_9XMLWriter_startElementNS(ObjectData* this_, Value* prefix, Value* name, Value* uri) asm("_ZN4HPHP11c_XMLWriter16t_startelementnsERKNS_6StringES3_S3_"); -TypedValue* tg1_9XMLWriter_startElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startElementNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startElementNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -2793,7 +2793,7 @@ TypedValue* tg1_9XMLWriter_startElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_startElementNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startElementNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2840,8 +2840,8 @@ content => r8 bool th_9XMLWriter_writeElementNS(ObjectData* this_, Value* prefix, Value* name, Value* uri, Value* content) asm("_ZN4HPHP11c_XMLWriter16t_writeelementnsERKNS_6StringES3_S3_S3_"); -TypedValue* tg1_9XMLWriter_writeElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeElementNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeElementNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2865,7 +2865,7 @@ TypedValue* tg1_9XMLWriter_writeElementNS(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_writeElementNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeElementNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2910,8 +2910,8 @@ content => rdx bool th_9XMLWriter_writeElement(ObjectData* this_, Value* name, Value* content) asm("_ZN4HPHP11c_XMLWriter14t_writeelementERKNS_6StringES3_"); -TypedValue* tg1_9XMLWriter_writeElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -2929,7 +2929,7 @@ TypedValue* tg1_9XMLWriter_writeElement(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_9XMLWriter_writeElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -2972,7 +2972,7 @@ this_ => rdi bool th_9XMLWriter_endElement(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter12t_endelementEv"); -TypedValue* tg_9XMLWriter_endElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3008,7 +3008,7 @@ this_ => rdi bool th_9XMLWriter_fullEndElement(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter16t_fullendelementEv"); -TypedValue* tg_9XMLWriter_fullEndElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_fullEndElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3047,8 +3047,8 @@ uri => rcx bool th_9XMLWriter_startAttributens(ObjectData* this_, Value* prefix, Value* name, Value* uri) asm("_ZN4HPHP11c_XMLWriter18t_startattributensERKNS_6StringES3_S3_"); -TypedValue* tg1_9XMLWriter_startAttributens(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startAttributens(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startAttributens(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startAttributens(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-2)->m_type)) { @@ -3064,7 +3064,7 @@ TypedValue* tg1_9XMLWriter_startAttributens(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_9XMLWriter_startAttributens(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startAttributens(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3108,8 +3108,8 @@ name => rsi bool th_9XMLWriter_startAttribute(ObjectData* this_, Value* name) asm("_ZN4HPHP11c_XMLWriter16t_startattributeERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_startAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3117,7 +3117,7 @@ TypedValue* tg1_9XMLWriter_startAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_startAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3164,8 +3164,8 @@ content => r8 bool th_9XMLWriter_writeAttributeNS(ObjectData* this_, Value* prefix, Value* name, Value* uri, Value* content) asm("_ZN4HPHP11c_XMLWriter18t_writeattributensERKNS_6StringES3_S3_S3_"); -TypedValue* tg1_9XMLWriter_writeAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeAttributeNS(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-3)->m_type)) { @@ -3184,7 +3184,7 @@ TypedValue* tg1_9XMLWriter_writeAttributeNS(TypedValue* rv, HPHP::VM::ActRec* ar return rv; } -TypedValue* tg_9XMLWriter_writeAttributeNS(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeAttributeNS(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3229,8 +3229,8 @@ value => rdx bool th_9XMLWriter_writeAttribute(ObjectData* this_, Value* name, Value* value) asm("_ZN4HPHP11c_XMLWriter16t_writeattributeERKNS_6StringES3_"); -TypedValue* tg1_9XMLWriter_writeAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeAttribute(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -3243,7 +3243,7 @@ TypedValue* tg1_9XMLWriter_writeAttribute(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_writeAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3286,7 +3286,7 @@ this_ => rdi bool th_9XMLWriter_endAttribute(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter14t_endattributeEv"); -TypedValue* tg_9XMLWriter_endAttribute(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endAttribute(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3322,7 +3322,7 @@ this_ => rdi bool th_9XMLWriter_startCData(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter12t_startcdataEv"); -TypedValue* tg_9XMLWriter_startCData(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startCData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3359,8 +3359,8 @@ content => rsi bool th_9XMLWriter_writeCData(ObjectData* this_, Value* content) asm("_ZN4HPHP11c_XMLWriter12t_writecdataERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_writeCData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeCData(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeCData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeCData(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3368,7 +3368,7 @@ TypedValue* tg1_9XMLWriter_writeCData(TypedValue* rv, HPHP::VM::ActRec* ar, int6 return rv; } -TypedValue* tg_9XMLWriter_writeCData(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeCData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3411,7 +3411,7 @@ this_ => rdi bool th_9XMLWriter_endCData(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter10t_endcdataEv"); -TypedValue* tg_9XMLWriter_endCData(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endCData(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3447,7 +3447,7 @@ this_ => rdi bool th_9XMLWriter_startComment(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter14t_startcommentEv"); -TypedValue* tg_9XMLWriter_startComment(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startComment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3484,8 +3484,8 @@ content => rsi bool th_9XMLWriter_writeComment(ObjectData* this_, Value* content) asm("_ZN4HPHP11c_XMLWriter14t_writecommentERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_writeComment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeComment(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeComment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeComment(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3493,7 +3493,7 @@ TypedValue* tg1_9XMLWriter_writeComment(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_9XMLWriter_writeComment(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeComment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3536,7 +3536,7 @@ this_ => rdi bool th_9XMLWriter_endComment(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter12t_endcommentEv"); -TypedValue* tg_9XMLWriter_endComment(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endComment(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3572,7 +3572,7 @@ this_ => rdi bool th_9XMLWriter_endDocument(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter13t_enddocumentEv"); -TypedValue* tg_9XMLWriter_endDocument(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endDocument(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3609,8 +3609,8 @@ target => rsi bool th_9XMLWriter_startPI(ObjectData* this_, Value* target) asm("_ZN4HPHP11c_XMLWriter9t_startpiERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_startPI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startPI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startPI(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startPI(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3618,7 +3618,7 @@ TypedValue* tg1_9XMLWriter_startPI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_9XMLWriter_startPI(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startPI(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3663,8 +3663,8 @@ content => rdx bool th_9XMLWriter_writePI(ObjectData* this_, Value* target, Value* content) asm("_ZN4HPHP11c_XMLWriter9t_writepiERKNS_6StringES3_"); -TypedValue* tg1_9XMLWriter_writePI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writePI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writePI(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writePI(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -3677,7 +3677,7 @@ TypedValue* tg1_9XMLWriter_writePI(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t return rv; } -TypedValue* tg_9XMLWriter_writePI(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writePI(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3720,7 +3720,7 @@ this_ => rdi bool th_9XMLWriter_endPI(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter7t_endpiEv"); -TypedValue* tg_9XMLWriter_endPI(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endPI(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3757,8 +3757,8 @@ content => rsi bool th_9XMLWriter_text(ObjectData* this_, Value* content) asm("_ZN4HPHP11c_XMLWriter6t_textERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_text(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_text(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3766,7 +3766,7 @@ TypedValue* tg1_9XMLWriter_text(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t co return rv; } -TypedValue* tg_9XMLWriter_text(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_text(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3810,8 +3810,8 @@ content => rsi bool th_9XMLWriter_writeRaw(ObjectData* this_, Value* content) asm("_ZN4HPHP11c_XMLWriter10t_writerawERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_writeRaw(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeRaw(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeRaw(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeRaw(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -3819,7 +3819,7 @@ TypedValue* tg1_9XMLWriter_writeRaw(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9XMLWriter_writeRaw(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeRaw(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3865,8 +3865,8 @@ systemid => rcx bool th_9XMLWriter_startDTD(ObjectData* this_, Value* qualifiedname, Value* publicid, Value* systemid) asm("_ZN4HPHP11c_XMLWriter10t_startdtdERKNS_6StringES3_S3_"); -TypedValue* tg1_9XMLWriter_startDTD(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startDTD(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startDTD(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startDTD(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3888,7 +3888,7 @@ TypedValue* tg1_9XMLWriter_startDTD(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9XMLWriter_startDTD(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startDTD(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -3935,8 +3935,8 @@ subset => r8 bool th_9XMLWriter_writeDTD(ObjectData* this_, Value* name, Value* publicid, Value* systemid, Value* subset) asm("_ZN4HPHP11c_XMLWriter10t_writedtdERKNS_6StringES3_S3_S3_"); -TypedValue* tg1_9XMLWriter_writeDTD(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeDTD(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeDTD(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeDTD(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -3962,7 +3962,7 @@ TypedValue* tg1_9XMLWriter_writeDTD(TypedValue* rv, HPHP::VM::ActRec* ar, int64_ return rv; } -TypedValue* tg_9XMLWriter_writeDTD(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeDTD(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4006,8 +4006,8 @@ qualifiedname => rsi bool th_9XMLWriter_startDTDElement(ObjectData* this_, Value* qualifiedname) asm("_ZN4HPHP11c_XMLWriter17t_startdtdelementERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_startDTDElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startDTDElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startDTDElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startDTDElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4015,7 +4015,7 @@ TypedValue* tg1_9XMLWriter_startDTDElement(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_startDTDElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startDTDElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4060,8 +4060,8 @@ content => rdx bool th_9XMLWriter_writeDTDElement(ObjectData* this_, Value* name, Value* content) asm("_ZN4HPHP11c_XMLWriter17t_writedtdelementERKNS_6StringES3_"); -TypedValue* tg1_9XMLWriter_writeDTDElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeDTDElement(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeDTDElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeDTDElement(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -4074,7 +4074,7 @@ TypedValue* tg1_9XMLWriter_writeDTDElement(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_writeDTDElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeDTDElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4117,7 +4117,7 @@ this_ => rdi bool th_9XMLWriter_endDTDElement(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter15t_enddtdelementEv"); -TypedValue* tg_9XMLWriter_endDTDElement(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endDTDElement(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4154,8 +4154,8 @@ name => rsi bool th_9XMLWriter_startDTDAttlist(ObjectData* this_, Value* name) asm("_ZN4HPHP11c_XMLWriter17t_startdtdattlistERKNS_6StringE"); -TypedValue* tg1_9XMLWriter_startDTDAttlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startDTDAttlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startDTDAttlist(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startDTDAttlist(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToStringInPlace(args-0); @@ -4163,7 +4163,7 @@ TypedValue* tg1_9XMLWriter_startDTDAttlist(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_startDTDAttlist(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startDTDAttlist(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4208,8 +4208,8 @@ content => rdx bool th_9XMLWriter_writeDTDAttlist(ObjectData* this_, Value* name, Value* content) asm("_ZN4HPHP11c_XMLWriter17t_writedtdattlistERKNS_6StringES3_"); -TypedValue* tg1_9XMLWriter_writeDTDAttlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeDTDAttlist(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeDTDAttlist(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeDTDAttlist(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if (!IS_STRING_TYPE((args-1)->m_type)) { @@ -4222,7 +4222,7 @@ TypedValue* tg1_9XMLWriter_writeDTDAttlist(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_writeDTDAttlist(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeDTDAttlist(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4265,7 +4265,7 @@ this_ => rdi bool th_9XMLWriter_endDTDAttlist(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter15t_enddtdattlistEv"); -TypedValue* tg_9XMLWriter_endDTDAttlist(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endDTDAttlist(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4303,8 +4303,8 @@ isparam => rdx bool th_9XMLWriter_startDTDEntity(ObjectData* this_, Value* name, bool isparam) asm("_ZN4HPHP11c_XMLWriter16t_startdtdentityERKNS_6StringEb"); -TypedValue* tg1_9XMLWriter_startDTDEntity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_startDTDEntity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_startDTDEntity(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_startDTDEntity(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; if ((args-1)->m_type != KindOfBoolean) { @@ -4317,7 +4317,7 @@ TypedValue* tg1_9XMLWriter_startDTDEntity(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_startDTDEntity(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_startDTDEntity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4366,8 +4366,8 @@ ndataid => st0 bool th_9XMLWriter_writeDTDEntity(ObjectData* this_, Value* name, Value* content, bool pe, Value* publicid, Value* systemid, Value* ndataid) asm("_ZN4HPHP11c_XMLWriter16t_writedtdentityERKNS_6StringES3_bS3_S3_S3_"); -TypedValue* tg1_9XMLWriter_writeDTDEntity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_writeDTDEntity(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_writeDTDEntity(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_writeDTDEntity(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; switch (count) { @@ -4400,7 +4400,7 @@ TypedValue* tg1_9XMLWriter_writeDTDEntity(TypedValue* rv, HPHP::VM::ActRec* ar, return rv; } -TypedValue* tg_9XMLWriter_writeDTDEntity(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_writeDTDEntity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4443,7 +4443,7 @@ this_ => rdi bool th_9XMLWriter_endDTDEntity(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter14t_enddtdentityEv"); -TypedValue* tg_9XMLWriter_endDTDEntity(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endDTDEntity(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4479,7 +4479,7 @@ this_ => rdi bool th_9XMLWriter_endDTD(ObjectData* this_) asm("_ZN4HPHP11c_XMLWriter8t_enddtdEv"); -TypedValue* tg_9XMLWriter_endDTD(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_endDTD(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4517,8 +4517,8 @@ empty => rdx TypedValue* th_9XMLWriter_flush(TypedValue* _rv, ObjectData* this_, bool empty) asm("_ZN4HPHP11c_XMLWriter7t_flushEb"); -TypedValue* tg1_9XMLWriter_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_flush(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_flush(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToBooleanInPlace(args-0); th_9XMLWriter_flush((rv), (this_), (count > 0) ? (bool)(args[-0].m_data.num) : (bool)(true)); @@ -4526,7 +4526,7 @@ TypedValue* tg1_9XMLWriter_flush(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t c return rv; } -TypedValue* tg_9XMLWriter_flush(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_flush(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -4571,8 +4571,8 @@ flush => rdx Value* th_9XMLWriter_outputMemory(Value* _rv, ObjectData* this_, bool flush) asm("_ZN4HPHP11c_XMLWriter14t_outputmemoryEb"); -TypedValue* tg1_9XMLWriter_outputMemory(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); -TypedValue* tg1_9XMLWriter_outputMemory(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count, ObjectData* this_) { +TypedValue* tg1_9XMLWriter_outputMemory(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) __attribute__((noinline,cold)); +TypedValue* tg1_9XMLWriter_outputMemory(TypedValue* rv, ActRec* ar, int64_t count, ObjectData* this_) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfString; tvCastToBooleanInPlace(args-0); @@ -4581,7 +4581,7 @@ TypedValue* tg1_9XMLWriter_outputMemory(TypedValue* rv, HPHP::VM::ActRec* ar, in return rv; } -TypedValue* tg_9XMLWriter_outputMemory(HPHP::VM::ActRec *ar) { +TypedValue* tg_9XMLWriter_outputMemory(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/ext_zlib.ext_hhvm.cpp b/hphp/runtime/ext/ext_zlib.ext_hhvm.cpp index 6449bc70d..8833cf6c1 100644 --- a/hphp/runtime/ext/ext_zlib.ext_hhvm.cpp +++ b/hphp/runtime/ext/ext_zlib.ext_hhvm.cpp @@ -36,8 +36,8 @@ use_include_path => rdx TypedValue* fh_readgzfile(TypedValue* _rv, Value* filename, bool use_include_path) asm("_ZN4HPHP12f_readgzfileERKNS_6StringEb"); -TypedValue * fg1_readgzfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_readgzfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_readgzfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_readgzfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -55,7 +55,7 @@ TypedValue * fg1_readgzfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_readgzfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_readgzfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -97,8 +97,8 @@ use_include_path => rdx TypedValue* fh_gzfile(TypedValue* _rv, Value* filename, bool use_include_path) asm("_ZN4HPHP8f_gzfileERKNS_6StringEb"); -TypedValue * fg1_gzfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzfile(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzfile(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -116,7 +116,7 @@ TypedValue * fg1_gzfile(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzfile(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzfile(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -158,8 +158,8 @@ level => rdx TypedValue* fh_gzcompress(TypedValue* _rv, Value* data, int level) asm("_ZN4HPHP12f_gzcompressERKNS_6StringEi"); -TypedValue * fg1_gzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzcompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzcompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -177,7 +177,7 @@ TypedValue * fg1_gzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_gzcompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzcompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -219,8 +219,8 @@ limit => rdx TypedValue* fh_gzuncompress(TypedValue* _rv, Value* data, int limit) asm("_ZN4HPHP14f_gzuncompressERKNS_6StringEi"); -TypedValue * fg1_gzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzuncompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzuncompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -238,7 +238,7 @@ TypedValue * fg1_gzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_gzuncompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzuncompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -280,8 +280,8 @@ level => rdx TypedValue* fh_gzdeflate(TypedValue* _rv, Value* data, int level) asm("_ZN4HPHP11f_gzdeflateERKNS_6StringEi"); -TypedValue * fg1_gzdeflate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzdeflate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzdeflate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzdeflate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -299,7 +299,7 @@ TypedValue * fg1_gzdeflate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_gzdeflate(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzdeflate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -341,8 +341,8 @@ limit => rdx TypedValue* fh_gzinflate(TypedValue* _rv, Value* data, int limit) asm("_ZN4HPHP11f_gzinflateERKNS_6StringEi"); -TypedValue * fg1_gzinflate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzinflate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzinflate(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzinflate(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -360,7 +360,7 @@ TypedValue * fg1_gzinflate(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_gzinflate(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzinflate(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -403,8 +403,8 @@ encoding_mode => rcx TypedValue* fh_gzencode(TypedValue* _rv, Value* data, int level, int encoding_mode) asm("_ZN4HPHP10f_gzencodeERKNS_6StringEii"); -TypedValue * fg1_gzencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzencode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzencode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -426,7 +426,7 @@ TypedValue * fg1_gzencode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzencode(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzencode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -467,8 +467,8 @@ data => rsi TypedValue* fh_gzdecode(TypedValue* _rv, Value* data) asm("_ZN4HPHP10f_gzdecodeERKNS_6StringE"); -TypedValue * fg1_gzdecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzdecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzdecode(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzdecode(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_gzdecode((rv), &args[-0].m_data); @@ -476,7 +476,7 @@ TypedValue * fg1_gzdecode(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzdecode(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzdecode(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -516,7 +516,7 @@ _rv => rdi Value* fh_zlib_get_coding_type(Value* _rv) asm("_ZN4HPHP22f_zlib_get_coding_typeEv"); -TypedValue* fg_zlib_get_coding_type(HPHP::VM::ActRec *ar) { +TypedValue* fg_zlib_get_coding_type(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -553,8 +553,8 @@ use_include_path => rcx Value* fh_gzopen(Value* _rv, Value* filename, Value* mode, bool use_include_path) asm("_ZN4HPHP8f_gzopenERKNS_6StringES2_b"); -TypedValue * fg1_gzopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzopen(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzopen(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfObject; switch (count) { @@ -576,7 +576,7 @@ TypedValue * fg1_gzopen(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzopen(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzopen(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -617,8 +617,8 @@ zp => rdi bool fh_gzclose(Value* zp) asm("_ZN4HPHP9f_gzcloseERKNS_6ObjectE"); -TypedValue * fg1_gzclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzclose(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzclose(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -626,7 +626,7 @@ TypedValue * fg1_gzclose(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzclose(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzclose(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -666,8 +666,8 @@ zp => rdi bool fh_gzrewind(Value* zp) asm("_ZN4HPHP10f_gzrewindERKNS_6ObjectE"); -TypedValue * fg1_gzrewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzrewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzrewind(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzrewind(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -675,7 +675,7 @@ TypedValue * fg1_gzrewind(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzrewind(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzrewind(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -715,8 +715,8 @@ zp => rdi bool fh_gzeof(Value* zp) asm("_ZN4HPHP7f_gzeofERKNS_6ObjectE"); -TypedValue * fg1_gzeof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzeof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzeof(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzeof(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfBoolean; tvCastToObjectInPlace(args-0); @@ -724,7 +724,7 @@ TypedValue * fg1_gzeof(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzeof(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzeof(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -765,8 +765,8 @@ zp => rsi TypedValue* fh_gzgetc(TypedValue* _rv, Value* zp) asm("_ZN4HPHP8f_gzgetcERKNS_6ObjectE"); -TypedValue * fg1_gzgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzgetc(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzgetc(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_gzgetc((rv), &args[-0].m_data); @@ -774,7 +774,7 @@ TypedValue * fg1_gzgetc(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzgetc(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzgetc(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -816,8 +816,8 @@ length => rdx TypedValue* fh_gzgets(TypedValue* _rv, Value* zp, long length) asm("_ZN4HPHP8f_gzgetsERKNS_6ObjectEl"); -TypedValue * fg1_gzgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzgets(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzgets(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -835,7 +835,7 @@ TypedValue * fg1_gzgets(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzgets(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzgets(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -878,8 +878,8 @@ allowable_tags => rcx TypedValue* fh_gzgetss(TypedValue* _rv, Value* zp, long length, Value* allowable_tags) asm("_ZN4HPHP9f_gzgetssERKNS_6ObjectElRKNS_6StringE"); -TypedValue * fg1_gzgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzgetss(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzgetss(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -901,7 +901,7 @@ TypedValue * fg1_gzgetss(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzgetss(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzgetss(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -943,8 +943,8 @@ length => rdx TypedValue* fh_gzread(TypedValue* _rv, Value* zp, long length) asm("_ZN4HPHP8f_gzreadERKNS_6ObjectEl"); -TypedValue * fg1_gzread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzread(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzread(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -962,7 +962,7 @@ TypedValue * fg1_gzread(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzread(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzread(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1003,8 +1003,8 @@ zp => rsi TypedValue* fh_gzpassthru(TypedValue* _rv, Value* zp) asm("_ZN4HPHP12f_gzpassthruERKNS_6ObjectE"); -TypedValue * fg1_gzpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzpassthru(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzpassthru(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_gzpassthru((rv), &args[-0].m_data); @@ -1012,7 +1012,7 @@ TypedValue * fg1_gzpassthru(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_gzpassthru(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzpassthru(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1055,8 +1055,8 @@ whence => rcx TypedValue* fh_gzseek(TypedValue* _rv, Value* zp, long offset, long whence) asm("_ZN4HPHP8f_gzseekERKNS_6ObjectEll"); -TypedValue * fg1_gzseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzseek(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzseek(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1077,7 +1077,7 @@ TypedValue * fg1_gzseek(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzseek(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzseek(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1118,8 +1118,8 @@ zp => rsi TypedValue* fh_gztell(TypedValue* _rv, Value* zp) asm("_ZN4HPHP8f_gztellERKNS_6ObjectE"); -TypedValue * fg1_gztell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gztell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gztell(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gztell(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToObjectInPlace(args-0); fh_gztell((rv), &args[-0].m_data); @@ -1127,7 +1127,7 @@ TypedValue * fg1_gztell(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gztell(HPHP::VM::ActRec *ar) { +TypedValue* fg_gztell(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1170,8 +1170,8 @@ length => rcx TypedValue* fh_gzwrite(TypedValue* _rv, Value* zp, Value* str, long length) asm("_ZN4HPHP9f_gzwriteERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_gzwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzwrite(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzwrite(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1192,7 +1192,7 @@ TypedValue * fg1_gzwrite(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzwrite(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzwrite(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1235,8 +1235,8 @@ length => rcx TypedValue* fh_gzputs(TypedValue* _rv, Value* zp, Value* str, long length) asm("_ZN4HPHP8f_gzputsERKNS_6ObjectERKNS_6StringEl"); -TypedValue * fg1_gzputs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_gzputs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_gzputs(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_gzputs(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 3 @@ -1257,7 +1257,7 @@ TypedValue * fg1_gzputs(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { return rv; } -TypedValue* fg_gzputs(HPHP::VM::ActRec *ar) { +TypedValue* fg_gzputs(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1299,8 +1299,8 @@ level => rdx TypedValue* fh_qlzcompress(TypedValue* _rv, Value* data, int level) asm("_ZN4HPHP13f_qlzcompressERKNS_6StringEi"); -TypedValue * fg1_qlzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_qlzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_qlzcompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_qlzcompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1318,7 +1318,7 @@ TypedValue * fg1_qlzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_qlzcompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_qlzcompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1360,8 +1360,8 @@ level => rdx TypedValue* fh_qlzuncompress(TypedValue* _rv, Value* data, int level) asm("_ZN4HPHP15f_qlzuncompressERKNS_6StringEi"); -TypedValue * fg1_qlzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_qlzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_qlzuncompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_qlzuncompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; switch (count) { default: // count >= 2 @@ -1379,7 +1379,7 @@ TypedValue * fg1_qlzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_qlzuncompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_qlzuncompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1420,8 +1420,8 @@ data => rsi TypedValue* fh_sncompress(TypedValue* _rv, Value* data) asm("_ZN4HPHP12f_sncompressERKNS_6StringE"); -TypedValue * fg1_sncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_sncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_sncompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_sncompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_sncompress((rv), &args[-0].m_data); @@ -1429,7 +1429,7 @@ TypedValue * fg1_sncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_sncompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_sncompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1470,8 +1470,8 @@ data => rsi TypedValue* fh_snuncompress(TypedValue* _rv, Value* data) asm("_ZN4HPHP14f_snuncompressERKNS_6StringE"); -TypedValue * fg1_snuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_snuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_snuncompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_snuncompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_snuncompress((rv), &args[-0].m_data); @@ -1479,7 +1479,7 @@ TypedValue * fg1_snuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_snuncompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_snuncompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1520,8 +1520,8 @@ uncompressed => rsi TypedValue* fh_nzcompress(TypedValue* _rv, Value* uncompressed) asm("_ZN4HPHP12f_nzcompressERKNS_6StringE"); -TypedValue * fg1_nzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_nzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_nzcompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_nzcompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_nzcompress((rv), &args[-0].m_data); @@ -1529,7 +1529,7 @@ TypedValue * fg1_nzcompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) return rv; } -TypedValue* fg_nzcompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_nzcompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1570,8 +1570,8 @@ compressed => rsi TypedValue* fh_nzuncompress(TypedValue* _rv, Value* compressed) asm("_ZN4HPHP14f_nzuncompressERKNS_6StringE"); -TypedValue * fg1_nzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_nzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_nzuncompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_nzuncompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_nzuncompress((rv), &args[-0].m_data); @@ -1579,7 +1579,7 @@ TypedValue * fg1_nzuncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t coun return rv; } -TypedValue* fg_nzuncompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_nzuncompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1620,8 +1620,8 @@ uncompressed => rsi TypedValue* fh_lz4compress(TypedValue* _rv, Value* uncompressed) asm("_ZN4HPHP13f_lz4compressERKNS_6StringE"); -TypedValue * fg1_lz4compress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_lz4compress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_lz4compress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_lz4compress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_lz4compress((rv), &args[-0].m_data); @@ -1629,7 +1629,7 @@ TypedValue * fg1_lz4compress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count return rv; } -TypedValue* fg_lz4compress(HPHP::VM::ActRec *ar) { +TypedValue* fg_lz4compress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1670,8 +1670,8 @@ uncompressed => rsi TypedValue* fh_lz4hccompress(TypedValue* _rv, Value* uncompressed) asm("_ZN4HPHP15f_lz4hccompressERKNS_6StringE"); -TypedValue * fg1_lz4hccompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_lz4hccompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_lz4hccompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_lz4hccompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_lz4hccompress((rv), &args[-0].m_data); @@ -1679,7 +1679,7 @@ TypedValue * fg1_lz4hccompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_lz4hccompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_lz4hccompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -1720,8 +1720,8 @@ compressed => rsi TypedValue* fh_lz4uncompress(TypedValue* _rv, Value* compressed) asm("_ZN4HPHP15f_lz4uncompressERKNS_6StringE"); -TypedValue * fg1_lz4uncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_lz4uncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_lz4uncompress(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_lz4uncompress(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToStringInPlace(args-0); fh_lz4uncompress((rv), &args[-0].m_data); @@ -1729,7 +1729,7 @@ TypedValue * fg1_lz4uncompress(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t cou return rv; } -TypedValue* fg_lz4uncompress(HPHP::VM::ActRec *ar) { +TypedValue* fg_lz4uncompress(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/thrift/binary.ext_hhvm.cpp b/hphp/runtime/ext/thrift/binary.ext_hhvm.cpp index ef2c8a8b2..8a9c557d3 100644 --- a/hphp/runtime/ext/thrift/binary.ext_hhvm.cpp +++ b/hphp/runtime/ext/thrift/binary.ext_hhvm.cpp @@ -38,8 +38,8 @@ strict_write => r9 void fh_thrift_protocol_write_binary(Value* transportobj, Value* method_name, long msgtype, Value* request_struct, int seqid, bool strict_write) asm("_ZN4HPHP30f_thrift_protocol_write_binaryERKNS_6ObjectERKNS_6StringElS2_ib"); -TypedValue * fg1_thrift_protocol_write_binary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_thrift_protocol_write_binary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_thrift_protocol_write_binary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_thrift_protocol_write_binary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -65,7 +65,7 @@ TypedValue * fg1_thrift_protocol_write_binary(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_thrift_protocol_write_binary(HPHP::VM::ActRec *ar) { +TypedValue* fg_thrift_protocol_write_binary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -109,8 +109,8 @@ strict_read => rcx TypedValue* fh_thrift_protocol_read_binary(TypedValue* _rv, Value* transportobj, Value* obj_typename, bool strict_read) asm("_ZN4HPHP29f_thrift_protocol_read_binaryERKNS_6ObjectERKNS_6StringEb"); -TypedValue * fg1_thrift_protocol_read_binary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_thrift_protocol_read_binary(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_thrift_protocol_read_binary(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_thrift_protocol_read_binary(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if ((args-2)->m_type != KindOfBoolean) { tvCastToBooleanInPlace(args-2); @@ -126,7 +126,7 @@ TypedValue * fg1_thrift_protocol_read_binary(TypedValue* rv, HPHP::VM::ActRec* a return rv; } -TypedValue* fg_thrift_protocol_read_binary(HPHP::VM::ActRec *ar) { +TypedValue* fg_thrift_protocol_read_binary(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext/thrift/compact.ext_hhvm.cpp b/hphp/runtime/ext/thrift/compact.ext_hhvm.cpp index 0d9132dcd..059fcc225 100644 --- a/hphp/runtime/ext/thrift/compact.ext_hhvm.cpp +++ b/hphp/runtime/ext/thrift/compact.ext_hhvm.cpp @@ -34,8 +34,8 @@ version => rdi int fh_thrift_protocol_set_compact_version(int version) asm("_ZN4HPHP37f_thrift_protocol_set_compact_versionEi"); -TypedValue * fg1_thrift_protocol_set_compact_version(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_thrift_protocol_set_compact_version(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_thrift_protocol_set_compact_version(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_thrift_protocol_set_compact_version(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_type = KindOfInt64; tvCastToInt64InPlace(args-0); @@ -43,7 +43,7 @@ TypedValue * fg1_thrift_protocol_set_compact_version(TypedValue* rv, HPHP::VM::A return rv; } -TypedValue* fg_thrift_protocol_set_compact_version(HPHP::VM::ActRec *ar) { +TypedValue* fg_thrift_protocol_set_compact_version(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -86,8 +86,8 @@ seqid => r8 void fh_thrift_protocol_write_compact(Value* transportobj, Value* method_name, long msgtype, Value* request_struct, int seqid) asm("_ZN4HPHP31f_thrift_protocol_write_compactERKNS_6ObjectERKNS_6StringElS2_i"); -TypedValue * fg1_thrift_protocol_write_compact(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_thrift_protocol_write_compact(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_thrift_protocol_write_compact(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_thrift_protocol_write_compact(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; rv->m_data.num = 0LL; rv->m_type = KindOfNull; @@ -110,7 +110,7 @@ TypedValue * fg1_thrift_protocol_write_compact(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_thrift_protocol_write_compact(HPHP::VM::ActRec *ar) { +TypedValue* fg_thrift_protocol_write_compact(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; @@ -153,8 +153,8 @@ obj_typename => rdx TypedValue* fh_thrift_protocol_read_compact(TypedValue* _rv, Value* transportobj, Value* obj_typename) asm("_ZN4HPHP30f_thrift_protocol_read_compactERKNS_6ObjectERKNS_6StringE"); -TypedValue * fg1_thrift_protocol_read_compact(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) __attribute__((noinline,cold)); -TypedValue * fg1_thrift_protocol_read_compact(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) { +TypedValue * fg1_thrift_protocol_read_compact(TypedValue* rv, ActRec* ar, int64_t count) __attribute__((noinline,cold)); +TypedValue * fg1_thrift_protocol_read_compact(TypedValue* rv, ActRec* ar, int64_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (!IS_STRING_TYPE((args-1)->m_type)) { tvCastToStringInPlace(args-1); @@ -167,7 +167,7 @@ TypedValue * fg1_thrift_protocol_read_compact(TypedValue* rv, HPHP::VM::ActRec* return rv; } -TypedValue* fg_thrift_protocol_read_compact(HPHP::VM::ActRec *ar) { +TypedValue* fg_thrift_protocol_read_compact(ActRec *ar) { TypedValue rv; int64_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; diff --git a/hphp/runtime/ext_hhvm/ext_hhvm.h b/hphp/runtime/ext_hhvm/ext_hhvm.h index ea644d11a..042109301 100644 --- a/hphp/runtime/ext_hhvm/ext_hhvm.h +++ b/hphp/runtime/ext_hhvm/ext_hhvm.h @@ -14,27 +14,29 @@ +----------------------------------------------------------------------+ */ -#include - #ifndef incl_HPHP_EXT_HHBC_H_ #define incl_HPHP_EXT_HHBC_H_ +#include + namespace HPHP { /////////////////////////////////////////////////////////////////////////////// +struct ActRec; + namespace VM { class Instance; }; struct HhbcExtFuncInfo { const char* m_name; - TypedValue* (*m_builtinFunc)(HPHP::VM::ActRec* ar); + TypedValue* (*m_builtinFunc)(ActRec* ar); void* m_nativeFunc; }; struct HhbcExtMethodInfo { const char* m_name; - TypedValue* (*m_pGenericMethod)(HPHP::VM::ActRec* ar); + TypedValue* (*m_pGenericMethod)(ActRec* ar); }; struct HhbcExtClassInfo { diff --git a/hphp/runtime/ext_hhvm/ext_hhvm_infotabs.cpp b/hphp/runtime/ext_hhvm/ext_hhvm_infotabs.cpp index 815b5cd7a..8ee33b5f6 100644 --- a/hphp/runtime/ext_hhvm/ext_hhvm_infotabs.cpp +++ b/hphp/runtime/ext_hhvm/ext_hhvm_infotabs.cpp @@ -16,3047 +16,3046 @@ #include #include #include "ext_hhvm_infotabs.h" -namespace HPHP { - struct TypedValue; - namespace VM { struct ActRec; struct Class; } -} namespace HPHP { -TypedValue* fg_apache_note(VM::ActRec *ar); -TypedValue* fg_apache_request_headers(VM::ActRec *ar); -TypedValue* fg_apache_response_headers(VM::ActRec *ar); -TypedValue* fg_apache_setenv(VM::ActRec *ar); -TypedValue* fg_getallheaders(VM::ActRec *ar); -TypedValue* fg_virtual(VM::ActRec *ar); -TypedValue* fg_apache_get_config(VM::ActRec *ar); -TypedValue* fg_apache_get_scoreboard(VM::ActRec *ar); -TypedValue* fg_apache_get_rewrite_rules(VM::ActRec *ar); -TypedValue* fg_apc_add(VM::ActRec *ar); -TypedValue* fg_apc_store(VM::ActRec *ar); -TypedValue* fg_apc_fetch(VM::ActRec *ar); -TypedValue* fg_apc_delete(VM::ActRec *ar); -TypedValue* fg_apc_compile_file(VM::ActRec *ar); -TypedValue* fg_apc_cache_info(VM::ActRec *ar); -TypedValue* fg_apc_clear_cache(VM::ActRec *ar); -TypedValue* fg_apc_define_constants(VM::ActRec *ar); -TypedValue* fg_apc_load_constants(VM::ActRec *ar); -TypedValue* fg_apc_sma_info(VM::ActRec *ar); -TypedValue* fg_apc_filehits(VM::ActRec *ar); -TypedValue* fg_apc_delete_file(VM::ActRec *ar); -TypedValue* fg_apc_inc(VM::ActRec *ar); -TypedValue* fg_apc_dec(VM::ActRec *ar); -TypedValue* fg_apc_cas(VM::ActRec *ar); -TypedValue* fg_apc_exists(VM::ActRec *ar); -TypedValue* fg_apc_bin_dump(VM::ActRec *ar); -TypedValue* fg_apc_bin_load(VM::ActRec *ar); -TypedValue* fg_apc_bin_dumpfile(VM::ActRec *ar); -TypedValue* fg_apc_bin_loadfile(VM::ActRec *ar); -TypedValue* fg_override_function(VM::ActRec *ar); -TypedValue* fg_rename_function(VM::ActRec *ar); -TypedValue* fg_apd_set_browser_trace(VM::ActRec *ar); -TypedValue* fg_apd_set_pprof_trace(VM::ActRec *ar); -TypedValue* fg_apd_set_session_trace_socket(VM::ActRec *ar); -TypedValue* fg_apd_stop_trace(VM::ActRec *ar); -TypedValue* fg_apd_breakpoint(VM::ActRec *ar); -TypedValue* fg_apd_continue(VM::ActRec *ar); -TypedValue* fg_apd_echo(VM::ActRec *ar); -TypedValue* fg_array_change_key_case(VM::ActRec *ar); -TypedValue* fg_array_chunk(VM::ActRec *ar); -TypedValue* fg_array_column(VM::ActRec *ar); -TypedValue* fg_array_combine(VM::ActRec *ar); -TypedValue* fg_array_count_values(VM::ActRec *ar); -TypedValue* fg_array_fill_keys(VM::ActRec *ar); -TypedValue* fg_array_fill(VM::ActRec *ar); -TypedValue* fg_array_filter(VM::ActRec *ar); -TypedValue* fg_array_flip(VM::ActRec *ar); -TypedValue* fg_array_key_exists(VM::ActRec *ar); -TypedValue* fg_key_exists(VM::ActRec *ar); -TypedValue* fg_array_keys(VM::ActRec *ar); -TypedValue* fg_array_map(VM::ActRec *ar); -TypedValue* fg_array_merge_recursive(VM::ActRec *ar); -TypedValue* fg_array_merge(VM::ActRec *ar); -TypedValue* fg_array_replace_recursive(VM::ActRec *ar); -TypedValue* fg_array_replace(VM::ActRec *ar); -TypedValue* fg_array_multisort(VM::ActRec *ar); -TypedValue* fg_array_pad(VM::ActRec *ar); -TypedValue* fg_array_pop(VM::ActRec *ar); -TypedValue* fg_array_product(VM::ActRec *ar); -TypedValue* fg_array_push(VM::ActRec *ar); -TypedValue* fg_array_rand(VM::ActRec *ar); -TypedValue* fg_array_reduce(VM::ActRec *ar); -TypedValue* fg_array_reverse(VM::ActRec *ar); -TypedValue* fg_array_search(VM::ActRec *ar); -TypedValue* fg_array_shift(VM::ActRec *ar); -TypedValue* fg_array_slice(VM::ActRec *ar); -TypedValue* fg_array_splice(VM::ActRec *ar); -TypedValue* fg_array_sum(VM::ActRec *ar); -TypedValue* fg_array_unique(VM::ActRec *ar); -TypedValue* fg_array_unshift(VM::ActRec *ar); -TypedValue* fg_array_values(VM::ActRec *ar); -TypedValue* fg_array_walk_recursive(VM::ActRec *ar); -TypedValue* fg_array_walk(VM::ActRec *ar); -TypedValue* fg_compact(VM::ActRec *ar); -TypedValue* fg_shuffle(VM::ActRec *ar); -TypedValue* fg_count(VM::ActRec *ar); -TypedValue* fg_sizeof(VM::ActRec *ar); -TypedValue* fg_each(VM::ActRec *ar); -TypedValue* fg_current(VM::ActRec *ar); -TypedValue* fg_hphp_current_ref(VM::ActRec *ar); -TypedValue* fg_next(VM::ActRec *ar); -TypedValue* fg_pos(VM::ActRec *ar); -TypedValue* fg_prev(VM::ActRec *ar); -TypedValue* fg_reset(VM::ActRec *ar); -TypedValue* fg_end(VM::ActRec *ar); -TypedValue* fg_key(VM::ActRec *ar); -TypedValue* fg_hphp_get_iterator(VM::ActRec *ar); -TypedValue* fg_hphp_get_mutable_iterator(VM::ActRec *ar); -TypedValue* fg_in_array(VM::ActRec *ar); -TypedValue* fg_range(VM::ActRec *ar); -TypedValue* fg_array_diff(VM::ActRec *ar); -TypedValue* fg_array_udiff(VM::ActRec *ar); -TypedValue* fg_array_diff_assoc(VM::ActRec *ar); -TypedValue* fg_array_diff_uassoc(VM::ActRec *ar); -TypedValue* fg_array_udiff_assoc(VM::ActRec *ar); -TypedValue* fg_array_udiff_uassoc(VM::ActRec *ar); -TypedValue* fg_array_diff_key(VM::ActRec *ar); -TypedValue* fg_array_diff_ukey(VM::ActRec *ar); -TypedValue* fg_array_intersect(VM::ActRec *ar); -TypedValue* fg_array_uintersect(VM::ActRec *ar); -TypedValue* fg_array_intersect_assoc(VM::ActRec *ar); -TypedValue* fg_array_intersect_uassoc(VM::ActRec *ar); -TypedValue* fg_array_uintersect_assoc(VM::ActRec *ar); -TypedValue* fg_array_uintersect_uassoc(VM::ActRec *ar); -TypedValue* fg_array_intersect_key(VM::ActRec *ar); -TypedValue* fg_array_intersect_ukey(VM::ActRec *ar); -TypedValue* fg_sort(VM::ActRec *ar); -TypedValue* fg_rsort(VM::ActRec *ar); -TypedValue* fg_asort(VM::ActRec *ar); -TypedValue* fg_arsort(VM::ActRec *ar); -TypedValue* fg_ksort(VM::ActRec *ar); -TypedValue* fg_krsort(VM::ActRec *ar); -TypedValue* fg_usort(VM::ActRec *ar); -TypedValue* fg_uasort(VM::ActRec *ar); -TypedValue* fg_uksort(VM::ActRec *ar); -TypedValue* fg_natsort(VM::ActRec *ar); -TypedValue* fg_natcasesort(VM::ActRec *ar); -TypedValue* fg_i18n_loc_get_default(VM::ActRec *ar); -TypedValue* fg_i18n_loc_set_default(VM::ActRec *ar); -TypedValue* fg_i18n_loc_set_attribute(VM::ActRec *ar); -TypedValue* fg_i18n_loc_set_strength(VM::ActRec *ar); -TypedValue* fg_i18n_loc_get_error_code(VM::ActRec *ar); -TypedValue* fg_asio_enter_context(VM::ActRec *ar); -TypedValue* fg_asio_exit_context(VM::ActRec *ar); -TypedValue* fg_asio_get_current_context_idx(VM::ActRec *ar); -TypedValue* fg_asio_get_running_in_context(VM::ActRec *ar); -TypedValue* fg_asio_get_running(VM::ActRec *ar); -TypedValue* fg_asio_get_current(VM::ActRec *ar); -TypedValue* fg_asio_set_on_failed_callback(VM::ActRec *ar); -TypedValue* fg_asio_set_on_started_callback(VM::ActRec *ar); -TypedValue* fg_bcscale(VM::ActRec *ar); -TypedValue* fg_bcadd(VM::ActRec *ar); -TypedValue* fg_bcsub(VM::ActRec *ar); -TypedValue* fg_bccomp(VM::ActRec *ar); -TypedValue* fg_bcmul(VM::ActRec *ar); -TypedValue* fg_bcdiv(VM::ActRec *ar); -TypedValue* fg_bcmod(VM::ActRec *ar); -TypedValue* fg_bcpow(VM::ActRec *ar); -TypedValue* fg_bcpowmod(VM::ActRec *ar); -TypedValue* fg_bcsqrt(VM::ActRec *ar); -TypedValue* fg_bzclose(VM::ActRec *ar); -TypedValue* fg_bzopen(VM::ActRec *ar); -TypedValue* fg_bzread(VM::ActRec *ar); -TypedValue* fg_bzwrite(VM::ActRec *ar); -TypedValue* fg_bzflush(VM::ActRec *ar); -TypedValue* fg_bzerrstr(VM::ActRec *ar); -TypedValue* fg_bzerror(VM::ActRec *ar); -TypedValue* fg_bzerrno(VM::ActRec *ar); -TypedValue* fg_bzcompress(VM::ActRec *ar); -TypedValue* fg_bzdecompress(VM::ActRec *ar); -TypedValue* fg_get_declared_classes(VM::ActRec *ar); -TypedValue* fg_get_declared_interfaces(VM::ActRec *ar); -TypedValue* fg_get_declared_traits(VM::ActRec *ar); -TypedValue* fg_class_exists(VM::ActRec *ar); -TypedValue* fg_interface_exists(VM::ActRec *ar); -TypedValue* fg_trait_exists(VM::ActRec *ar); -TypedValue* fg_get_class_methods(VM::ActRec *ar); -TypedValue* fg_get_class_vars(VM::ActRec *ar); -TypedValue* fg_get_class_constants(VM::ActRec *ar); -TypedValue* fg_get_class(VM::ActRec *ar); -TypedValue* fg_get_parent_class(VM::ActRec *ar); -TypedValue* fg_is_a(VM::ActRec *ar); -TypedValue* fg_is_subclass_of(VM::ActRec *ar); -TypedValue* fg_method_exists(VM::ActRec *ar); -TypedValue* fg_property_exists(VM::ActRec *ar); -TypedValue* fg_get_object_vars(VM::ActRec *ar); -TypedValue* fg_call_user_method_array(VM::ActRec *ar); -TypedValue* fg_call_user_method(VM::ActRec *ar); -TypedValue* fg_hphp_create_continuation(VM::ActRec *ar); -TypedValue* fg_ctype_alnum(VM::ActRec *ar); -TypedValue* fg_ctype_alpha(VM::ActRec *ar); -TypedValue* fg_ctype_cntrl(VM::ActRec *ar); -TypedValue* fg_ctype_digit(VM::ActRec *ar); -TypedValue* fg_ctype_graph(VM::ActRec *ar); -TypedValue* fg_ctype_lower(VM::ActRec *ar); -TypedValue* fg_ctype_print(VM::ActRec *ar); -TypedValue* fg_ctype_punct(VM::ActRec *ar); -TypedValue* fg_ctype_space(VM::ActRec *ar); -TypedValue* fg_ctype_upper(VM::ActRec *ar); -TypedValue* fg_ctype_xdigit(VM::ActRec *ar); -TypedValue* fg_curl_init(VM::ActRec *ar); -TypedValue* fg_curl_copy_handle(VM::ActRec *ar); -TypedValue* fg_curl_version(VM::ActRec *ar); -TypedValue* fg_curl_setopt(VM::ActRec *ar); -TypedValue* fg_curl_setopt_array(VM::ActRec *ar); -TypedValue* fg_fb_curl_getopt(VM::ActRec *ar); -TypedValue* fg_curl_exec(VM::ActRec *ar); -TypedValue* fg_curl_getinfo(VM::ActRec *ar); -TypedValue* fg_curl_errno(VM::ActRec *ar); -TypedValue* fg_curl_error(VM::ActRec *ar); -TypedValue* fg_curl_close(VM::ActRec *ar); -TypedValue* fg_curl_multi_init(VM::ActRec *ar); -TypedValue* fg_curl_multi_add_handle(VM::ActRec *ar); -TypedValue* fg_curl_multi_remove_handle(VM::ActRec *ar); -TypedValue* fg_curl_multi_exec(VM::ActRec *ar); -TypedValue* fg_curl_multi_select(VM::ActRec *ar); -TypedValue* fg_fb_curl_multi_fdset(VM::ActRec *ar); -TypedValue* fg_curl_multi_getcontent(VM::ActRec *ar); -TypedValue* fg_curl_multi_info_read(VM::ActRec *ar); -TypedValue* fg_curl_multi_close(VM::ActRec *ar); -TypedValue* fg_evhttp_set_cache(VM::ActRec *ar); -TypedValue* fg_evhttp_get(VM::ActRec *ar); -TypedValue* fg_evhttp_post(VM::ActRec *ar); -TypedValue* fg_evhttp_async_get(VM::ActRec *ar); -TypedValue* fg_evhttp_async_post(VM::ActRec *ar); -TypedValue* fg_evhttp_recv(VM::ActRec *ar); -TypedValue* fg_checkdate(VM::ActRec *ar); -TypedValue* fg_date_add(VM::ActRec *ar); -TypedValue* fg_date_create_from_format(VM::ActRec *ar); -TypedValue* fg_date_create(VM::ActRec *ar); -TypedValue* fg_date_date_set(VM::ActRec *ar); -TypedValue* fg_date_default_timezone_get(VM::ActRec *ar); -TypedValue* fg_date_default_timezone_set(VM::ActRec *ar); -TypedValue* fg_date_diff(VM::ActRec *ar); -TypedValue* fg_date_format(VM::ActRec *ar); -TypedValue* fg_date_get_last_errors(VM::ActRec *ar); -TypedValue* fg_date_interval_create_from_date_string(VM::ActRec *ar); -TypedValue* fg_date_interval_format(VM::ActRec *ar); -TypedValue* fg_date_isodate_set(VM::ActRec *ar); -TypedValue* fg_date_modify(VM::ActRec *ar); -TypedValue* fg_date_offset_get(VM::ActRec *ar); -TypedValue* fg_date_parse(VM::ActRec *ar); -TypedValue* fg_date_sub(VM::ActRec *ar); -TypedValue* fg_date_sun_info(VM::ActRec *ar); -TypedValue* fg_date_sunrise(VM::ActRec *ar); -TypedValue* fg_date_sunset(VM::ActRec *ar); -TypedValue* fg_date_time_set(VM::ActRec *ar); -TypedValue* fg_date_timestamp_get(VM::ActRec *ar); -TypedValue* fg_date_timestamp_set(VM::ActRec *ar); -TypedValue* fg_date_timezone_get(VM::ActRec *ar); -TypedValue* fg_date_timezone_set(VM::ActRec *ar); -TypedValue* fg_date(VM::ActRec *ar); -TypedValue* fg_getdate(VM::ActRec *ar); -TypedValue* fg_gettimeofday(VM::ActRec *ar); -TypedValue* fg_gmdate(VM::ActRec *ar); -TypedValue* fg_gmmktime(VM::ActRec *ar); -TypedValue* fg_gmstrftime(VM::ActRec *ar); -TypedValue* fg_idate(VM::ActRec *ar); -TypedValue* fg_localtime(VM::ActRec *ar); -TypedValue* fg_microtime(VM::ActRec *ar); -TypedValue* fg_mktime(VM::ActRec *ar); -TypedValue* fg_strftime(VM::ActRec *ar); -TypedValue* fg_strptime(VM::ActRec *ar); -TypedValue* fg_strtotime(VM::ActRec *ar); -TypedValue* fg_time(VM::ActRec *ar); -TypedValue* fg_timezone_abbreviations_list(VM::ActRec *ar); -TypedValue* fg_timezone_identifiers_list(VM::ActRec *ar); -TypedValue* fg_timezone_location_get(VM::ActRec *ar); -TypedValue* fg_timezone_name_from_abbr(VM::ActRec *ar); -TypedValue* fg_timezone_name_get(VM::ActRec *ar); -TypedValue* fg_timezone_offset_get(VM::ActRec *ar); -TypedValue* fg_timezone_open(VM::ActRec *ar); -TypedValue* fg_timezone_transitions_get(VM::ActRec *ar); -TypedValue* fg_timezone_version_get(VM::ActRec *ar); -TypedValue* fg_hphpd_install_user_command(VM::ActRec *ar); -TypedValue* fg_hphpd_get_user_commands(VM::ActRec *ar); -TypedValue* fg_hphpd_break(VM::ActRec *ar); -TypedValue* fg_hphpd_get_client(VM::ActRec *ar); -TypedValue* fg_hphpd_client_ctrl(VM::ActRec *ar); -TypedValue* fg_dom_document_create_element(VM::ActRec *ar); -TypedValue* fg_dom_document_create_document_fragment(VM::ActRec *ar); -TypedValue* fg_dom_document_create_text_node(VM::ActRec *ar); -TypedValue* fg_dom_document_create_comment(VM::ActRec *ar); -TypedValue* fg_dom_document_create_cdatasection(VM::ActRec *ar); -TypedValue* fg_dom_document_create_processing_instruction(VM::ActRec *ar); -TypedValue* fg_dom_document_create_attribute(VM::ActRec *ar); -TypedValue* fg_dom_document_create_entity_reference(VM::ActRec *ar); -TypedValue* fg_dom_document_get_elements_by_tag_name(VM::ActRec *ar); -TypedValue* fg_dom_document_import_node(VM::ActRec *ar); -TypedValue* fg_dom_document_create_element_ns(VM::ActRec *ar); -TypedValue* fg_dom_document_create_attribute_ns(VM::ActRec *ar); -TypedValue* fg_dom_document_get_elements_by_tag_name_ns(VM::ActRec *ar); -TypedValue* fg_dom_document_get_element_by_id(VM::ActRec *ar); -TypedValue* fg_dom_document_normalize_document(VM::ActRec *ar); -TypedValue* fg_dom_document_save(VM::ActRec *ar); -TypedValue* fg_dom_document_savexml(VM::ActRec *ar); -TypedValue* fg_dom_document_validate(VM::ActRec *ar); -TypedValue* fg_dom_document_xinclude(VM::ActRec *ar); -TypedValue* fg_dom_document_save_html(VM::ActRec *ar); -TypedValue* fg_dom_document_save_html_file(VM::ActRec *ar); -TypedValue* fg_dom_document_schema_validate_file(VM::ActRec *ar); -TypedValue* fg_dom_document_schema_validate_xml(VM::ActRec *ar); -TypedValue* fg_dom_document_relaxng_validate_file(VM::ActRec *ar); -TypedValue* fg_dom_document_relaxng_validate_xml(VM::ActRec *ar); -TypedValue* fg_dom_node_insert_before(VM::ActRec *ar); -TypedValue* fg_dom_node_replace_child(VM::ActRec *ar); -TypedValue* fg_dom_node_remove_child(VM::ActRec *ar); -TypedValue* fg_dom_node_append_child(VM::ActRec *ar); -TypedValue* fg_dom_node_has_child_nodes(VM::ActRec *ar); -TypedValue* fg_dom_node_clone_node(VM::ActRec *ar); -TypedValue* fg_dom_node_normalize(VM::ActRec *ar); -TypedValue* fg_dom_node_is_supported(VM::ActRec *ar); -TypedValue* fg_dom_node_has_attributes(VM::ActRec *ar); -TypedValue* fg_dom_node_is_same_node(VM::ActRec *ar); -TypedValue* fg_dom_node_lookup_prefix(VM::ActRec *ar); -TypedValue* fg_dom_node_is_default_namespace(VM::ActRec *ar); -TypedValue* fg_dom_node_lookup_namespace_uri(VM::ActRec *ar); -TypedValue* fg_dom_nodelist_item(VM::ActRec *ar); -TypedValue* fg_dom_namednodemap_get_named_item(VM::ActRec *ar); -TypedValue* fg_dom_namednodemap_item(VM::ActRec *ar); -TypedValue* fg_dom_namednodemap_get_named_item_ns(VM::ActRec *ar); -TypedValue* fg_dom_characterdata_substring_data(VM::ActRec *ar); -TypedValue* fg_dom_characterdata_append_data(VM::ActRec *ar); -TypedValue* fg_dom_characterdata_insert_data(VM::ActRec *ar); -TypedValue* fg_dom_characterdata_delete_data(VM::ActRec *ar); -TypedValue* fg_dom_characterdata_replace_data(VM::ActRec *ar); -TypedValue* fg_dom_attr_is_id(VM::ActRec *ar); -TypedValue* fg_dom_element_get_attribute(VM::ActRec *ar); -TypedValue* fg_dom_element_set_attribute(VM::ActRec *ar); -TypedValue* fg_dom_element_remove_attribute(VM::ActRec *ar); -TypedValue* fg_dom_element_get_attribute_node(VM::ActRec *ar); -TypedValue* fg_dom_element_set_attribute_node(VM::ActRec *ar); -TypedValue* fg_dom_element_remove_attribute_node(VM::ActRec *ar); -TypedValue* fg_dom_element_get_elements_by_tag_name(VM::ActRec *ar); -TypedValue* fg_dom_element_get_attribute_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_set_attribute_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_remove_attribute_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_get_attribute_node_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_set_attribute_node_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_get_elements_by_tag_name_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_has_attribute(VM::ActRec *ar); -TypedValue* fg_dom_element_has_attribute_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_set_id_attribute(VM::ActRec *ar); -TypedValue* fg_dom_element_set_id_attribute_ns(VM::ActRec *ar); -TypedValue* fg_dom_element_set_id_attribute_node(VM::ActRec *ar); -TypedValue* fg_dom_text_split_text(VM::ActRec *ar); -TypedValue* fg_dom_text_is_whitespace_in_element_content(VM::ActRec *ar); -TypedValue* fg_dom_xpath_register_ns(VM::ActRec *ar); -TypedValue* fg_dom_xpath_query(VM::ActRec *ar); -TypedValue* fg_dom_xpath_evaluate(VM::ActRec *ar); -TypedValue* fg_dom_xpath_register_php_functions(VM::ActRec *ar); -TypedValue* fg_debug_backtrace(VM::ActRec *ar); -TypedValue* fg_debug_print_backtrace(VM::ActRec *ar); -TypedValue* fg_error_get_last(VM::ActRec *ar); -TypedValue* fg_error_log(VM::ActRec *ar); -TypedValue* fg_error_reporting(VM::ActRec *ar); -TypedValue* fg_restore_error_handler(VM::ActRec *ar); -TypedValue* fg_restore_exception_handler(VM::ActRec *ar); -TypedValue* fg_set_error_handler(VM::ActRec *ar); -TypedValue* fg_set_exception_handler(VM::ActRec *ar); -TypedValue* fg_hphp_set_error_page(VM::ActRec *ar); -TypedValue* fg_hphp_throw_fatal_error(VM::ActRec *ar); -TypedValue* fg_hphp_clear_unflushed(VM::ActRec *ar); -TypedValue* fg_hphp_debug_caller_info(VM::ActRec *ar); -TypedValue* fg_trigger_error(VM::ActRec *ar); -TypedValue* fg_user_error(VM::ActRec *ar); -TypedValue* fg_fb_thrift_serialize(VM::ActRec *ar); -TypedValue* fg_fb_thrift_unserialize(VM::ActRec *ar); -TypedValue* fg_fb_serialize(VM::ActRec *ar); -TypedValue* fg_fb_unserialize(VM::ActRec *ar); -TypedValue* fg_fb_compact_serialize(VM::ActRec *ar); -TypedValue* fg_fb_compact_unserialize(VM::ActRec *ar); -TypedValue* fg_fb_could_include(VM::ActRec *ar); -TypedValue* fg_fb_intercept(VM::ActRec *ar); -TypedValue* fg_fb_stubout_intercept_handler(VM::ActRec *ar); -TypedValue* fg_fb_rpc_intercept_handler(VM::ActRec *ar); -TypedValue* fg_fb_renamed_functions(VM::ActRec *ar); -TypedValue* fg_fb_rename_function(VM::ActRec *ar); -TypedValue* fg_fb_autoload_map(VM::ActRec *ar); -TypedValue* fg_fb_utf8ize(VM::ActRec *ar); -TypedValue* fg_fb_utf8_strlen_deprecated(VM::ActRec *ar); -TypedValue* fg_fb_utf8_strlen(VM::ActRec *ar); -TypedValue* fg_fb_utf8_substr(VM::ActRec *ar); -TypedValue* fg_fb_call_user_func_safe(VM::ActRec *ar); -TypedValue* fg_fb_call_user_func_safe_return(VM::ActRec *ar); -TypedValue* fg_fb_call_user_func_array_safe(VM::ActRec *ar); -TypedValue* fg_fb_get_code_coverage(VM::ActRec *ar); -TypedValue* fg_fb_enable_code_coverage(VM::ActRec *ar); -TypedValue* fg_fb_disable_code_coverage(VM::ActRec *ar); -TypedValue* fg_xhprof_enable(VM::ActRec *ar); -TypedValue* fg_xhprof_disable(VM::ActRec *ar); -TypedValue* fg_xhprof_network_enable(VM::ActRec *ar); -TypedValue* fg_xhprof_network_disable(VM::ActRec *ar); -TypedValue* fg_xhprof_frame_begin(VM::ActRec *ar); -TypedValue* fg_xhprof_frame_end(VM::ActRec *ar); -TypedValue* fg_xhprof_run_trace(VM::ActRec *ar); -TypedValue* fg_xhprof_sample_enable(VM::ActRec *ar); -TypedValue* fg_xhprof_sample_disable(VM::ActRec *ar); -TypedValue* fg_fb_load_local_databases(VM::ActRec *ar); -TypedValue* fg_fb_parallel_query(VM::ActRec *ar); -TypedValue* fg_fb_crossall_query(VM::ActRec *ar); -TypedValue* fg_fb_const_fetch(VM::ActRec *ar); -TypedValue* fg_fb_output_compression(VM::ActRec *ar); -TypedValue* fg_fb_set_exit_callback(VM::ActRec *ar); -TypedValue* fg_fb_get_flush_stat(VM::ActRec *ar); -TypedValue* fg_fb_get_last_flush_size(VM::ActRec *ar); -TypedValue* fg_fb_lazy_stat(VM::ActRec *ar); -TypedValue* fg_fb_lazy_lstat(VM::ActRec *ar); -TypedValue* fg_fb_lazy_realpath(VM::ActRec *ar); -TypedValue* fg_fb_setprofile(VM::ActRec *ar); -TypedValue* fg_fb_gc_collect_cycles(VM::ActRec *ar); -TypedValue* fg_fb_gc_detect_cycles(VM::ActRec *ar); -TypedValue* fg_fopen(VM::ActRec *ar); -TypedValue* fg_popen(VM::ActRec *ar); -TypedValue* fg_fclose(VM::ActRec *ar); -TypedValue* fg_pclose(VM::ActRec *ar); -TypedValue* fg_fseek(VM::ActRec *ar); -TypedValue* fg_rewind(VM::ActRec *ar); -TypedValue* fg_ftell(VM::ActRec *ar); -TypedValue* fg_feof(VM::ActRec *ar); -TypedValue* fg_fstat(VM::ActRec *ar); -TypedValue* fg_fread(VM::ActRec *ar); -TypedValue* fg_fgetc(VM::ActRec *ar); -TypedValue* fg_fgets(VM::ActRec *ar); -TypedValue* fg_fgetss(VM::ActRec *ar); -TypedValue* fg_fscanf(VM::ActRec *ar); -TypedValue* fg_fpassthru(VM::ActRec *ar); -TypedValue* fg_fwrite(VM::ActRec *ar); -TypedValue* fg_fputs(VM::ActRec *ar); -TypedValue* fg_fprintf(VM::ActRec *ar); -TypedValue* fg_vfprintf(VM::ActRec *ar); -TypedValue* fg_fflush(VM::ActRec *ar); -TypedValue* fg_ftruncate(VM::ActRec *ar); -TypedValue* fg_flock(VM::ActRec *ar); -TypedValue* fg_fputcsv(VM::ActRec *ar); -TypedValue* fg_fgetcsv(VM::ActRec *ar); -TypedValue* fg_file_get_contents(VM::ActRec *ar); -TypedValue* fg_file_put_contents(VM::ActRec *ar); -TypedValue* fg_file(VM::ActRec *ar); -TypedValue* fg_readfile(VM::ActRec *ar); -TypedValue* fg_move_uploaded_file(VM::ActRec *ar); -TypedValue* fg_parse_ini_file(VM::ActRec *ar); -TypedValue* fg_parse_ini_string(VM::ActRec *ar); -TypedValue* fg_parse_hdf_file(VM::ActRec *ar); -TypedValue* fg_parse_hdf_string(VM::ActRec *ar); -TypedValue* fg_write_hdf_file(VM::ActRec *ar); -TypedValue* fg_write_hdf_string(VM::ActRec *ar); -TypedValue* fg_md5_file(VM::ActRec *ar); -TypedValue* fg_sha1_file(VM::ActRec *ar); -TypedValue* fg_chmod(VM::ActRec *ar); -TypedValue* fg_chown(VM::ActRec *ar); -TypedValue* fg_lchown(VM::ActRec *ar); -TypedValue* fg_chgrp(VM::ActRec *ar); -TypedValue* fg_lchgrp(VM::ActRec *ar); -TypedValue* fg_touch(VM::ActRec *ar); -TypedValue* fg_copy(VM::ActRec *ar); -TypedValue* fg_rename(VM::ActRec *ar); -TypedValue* fg_umask(VM::ActRec *ar); -TypedValue* fg_unlink(VM::ActRec *ar); -TypedValue* fg_link(VM::ActRec *ar); -TypedValue* fg_symlink(VM::ActRec *ar); -TypedValue* fg_basename(VM::ActRec *ar); -TypedValue* fg_fnmatch(VM::ActRec *ar); -TypedValue* fg_glob(VM::ActRec *ar); -TypedValue* fg_tempnam(VM::ActRec *ar); -TypedValue* fg_tmpfile(VM::ActRec *ar); -TypedValue* fg_fileperms(VM::ActRec *ar); -TypedValue* fg_fileinode(VM::ActRec *ar); -TypedValue* fg_filesize(VM::ActRec *ar); -TypedValue* fg_fileowner(VM::ActRec *ar); -TypedValue* fg_filegroup(VM::ActRec *ar); -TypedValue* fg_fileatime(VM::ActRec *ar); -TypedValue* fg_filemtime(VM::ActRec *ar); -TypedValue* fg_filectime(VM::ActRec *ar); -TypedValue* fg_filetype(VM::ActRec *ar); -TypedValue* fg_linkinfo(VM::ActRec *ar); -TypedValue* fg_is_writable(VM::ActRec *ar); -TypedValue* fg_is_writeable(VM::ActRec *ar); -TypedValue* fg_is_readable(VM::ActRec *ar); -TypedValue* fg_is_executable(VM::ActRec *ar); -TypedValue* fg_is_file(VM::ActRec *ar); -TypedValue* fg_is_dir(VM::ActRec *ar); -TypedValue* fg_is_link(VM::ActRec *ar); -TypedValue* fg_is_uploaded_file(VM::ActRec *ar); -TypedValue* fg_file_exists(VM::ActRec *ar); -TypedValue* fg_stat(VM::ActRec *ar); -TypedValue* fg_lstat(VM::ActRec *ar); -TypedValue* fg_clearstatcache(VM::ActRec *ar); -TypedValue* fg_readlink(VM::ActRec *ar); -TypedValue* fg_realpath(VM::ActRec *ar); -TypedValue* fg_pathinfo(VM::ActRec *ar); -TypedValue* fg_disk_free_space(VM::ActRec *ar); -TypedValue* fg_diskfreespace(VM::ActRec *ar); -TypedValue* fg_disk_total_space(VM::ActRec *ar); -TypedValue* fg_mkdir(VM::ActRec *ar); -TypedValue* fg_rmdir(VM::ActRec *ar); -TypedValue* fg_dirname(VM::ActRec *ar); -TypedValue* fg_getcwd(VM::ActRec *ar); -TypedValue* fg_chdir(VM::ActRec *ar); -TypedValue* fg_chroot(VM::ActRec *ar); -TypedValue* fg_dir(VM::ActRec *ar); -TypedValue* fg_opendir(VM::ActRec *ar); -TypedValue* fg_readdir(VM::ActRec *ar); -TypedValue* fg_rewinddir(VM::ActRec *ar); -TypedValue* fg_scandir(VM::ActRec *ar); -TypedValue* fg_closedir(VM::ActRec *ar); -TypedValue* fg_get_defined_functions(VM::ActRec *ar); -TypedValue* fg_function_exists(VM::ActRec *ar); -TypedValue* fg_is_callable(VM::ActRec *ar); -TypedValue* fg_call_user_func_array(VM::ActRec *ar); -TypedValue* fg_call_user_func(VM::ActRec *ar); -TypedValue* fg_call_user_func_array_async(VM::ActRec *ar); -TypedValue* fg_call_user_func_async(VM::ActRec *ar); -TypedValue* fg_check_user_func_async(VM::ActRec *ar); -TypedValue* fg_end_user_func_async(VM::ActRec *ar); -TypedValue* fg_call_user_func_serialized(VM::ActRec *ar); -TypedValue* fg_call_user_func_array_rpc(VM::ActRec *ar); -TypedValue* fg_call_user_func_rpc(VM::ActRec *ar); -TypedValue* fg_forward_static_call_array(VM::ActRec *ar); -TypedValue* fg_forward_static_call(VM::ActRec *ar); -TypedValue* fg_get_called_class(VM::ActRec *ar); -TypedValue* fg_create_function(VM::ActRec *ar); -TypedValue* fg_func_get_arg(VM::ActRec *ar); -TypedValue* fg_func_get_args(VM::ActRec *ar); -TypedValue* fg_func_num_args(VM::ActRec *ar); -TypedValue* fg_register_postsend_function(VM::ActRec *ar); -TypedValue* fg_register_shutdown_function(VM::ActRec *ar); -TypedValue* fg_register_cleanup_function(VM::ActRec *ar); -TypedValue* fg_register_tick_function(VM::ActRec *ar); -TypedValue* fg_unregister_tick_function(VM::ActRec *ar); -TypedValue* fg_hash(VM::ActRec *ar); -TypedValue* fg_hash_algos(VM::ActRec *ar); -TypedValue* fg_hash_init(VM::ActRec *ar); -TypedValue* fg_hash_file(VM::ActRec *ar); -TypedValue* fg_hash_final(VM::ActRec *ar); -TypedValue* fg_hash_hmac_file(VM::ActRec *ar); -TypedValue* fg_hash_hmac(VM::ActRec *ar); -TypedValue* fg_hash_update_file(VM::ActRec *ar); -TypedValue* fg_hash_update_stream(VM::ActRec *ar); -TypedValue* fg_hash_update(VM::ActRec *ar); -TypedValue* fg_furchash_hphp_ext(VM::ActRec *ar); -TypedValue* fg_furchash_hphp_ext_supported(VM::ActRec *ar); -TypedValue* fg_hphp_murmurhash(VM::ActRec *ar); -TypedValue* fg_iconv_mime_encode(VM::ActRec *ar); -TypedValue* fg_iconv_mime_decode(VM::ActRec *ar); -TypedValue* fg_iconv_mime_decode_headers(VM::ActRec *ar); -TypedValue* fg_iconv_get_encoding(VM::ActRec *ar); -TypedValue* fg_iconv_set_encoding(VM::ActRec *ar); -TypedValue* fg_iconv(VM::ActRec *ar); -TypedValue* fg_iconv_strlen(VM::ActRec *ar); -TypedValue* fg_iconv_strpos(VM::ActRec *ar); -TypedValue* fg_iconv_strrpos(VM::ActRec *ar); -TypedValue* fg_iconv_substr(VM::ActRec *ar); -TypedValue* fg_ob_iconv_handler(VM::ActRec *ar); -TypedValue* fg_icu_match(VM::ActRec *ar); -TypedValue* fg_icu_transliterate(VM::ActRec *ar); -TypedValue* fg_icu_tokenize(VM::ActRec *ar); -TypedValue* fg_gd_info(VM::ActRec *ar); -TypedValue* fg_getimagesize(VM::ActRec *ar); -TypedValue* fg_image_type_to_extension(VM::ActRec *ar); -TypedValue* fg_image_type_to_mime_type(VM::ActRec *ar); -TypedValue* fg_image2wbmp(VM::ActRec *ar); -TypedValue* fg_imagealphablending(VM::ActRec *ar); -TypedValue* fg_imageantialias(VM::ActRec *ar); -TypedValue* fg_imagearc(VM::ActRec *ar); -TypedValue* fg_imagechar(VM::ActRec *ar); -TypedValue* fg_imagecharup(VM::ActRec *ar); -TypedValue* fg_imagecolorallocate(VM::ActRec *ar); -TypedValue* fg_imagecolorallocatealpha(VM::ActRec *ar); -TypedValue* fg_imagecolorat(VM::ActRec *ar); -TypedValue* fg_imagecolorclosest(VM::ActRec *ar); -TypedValue* fg_imagecolorclosestalpha(VM::ActRec *ar); -TypedValue* fg_imagecolorclosesthwb(VM::ActRec *ar); -TypedValue* fg_imagecolordeallocate(VM::ActRec *ar); -TypedValue* fg_imagecolorexact(VM::ActRec *ar); -TypedValue* fg_imagecolorexactalpha(VM::ActRec *ar); -TypedValue* fg_imagecolormatch(VM::ActRec *ar); -TypedValue* fg_imagecolorresolve(VM::ActRec *ar); -TypedValue* fg_imagecolorresolvealpha(VM::ActRec *ar); -TypedValue* fg_imagecolorset(VM::ActRec *ar); -TypedValue* fg_imagecolorsforindex(VM::ActRec *ar); -TypedValue* fg_imagecolorstotal(VM::ActRec *ar); -TypedValue* fg_imagecolortransparent(VM::ActRec *ar); -TypedValue* fg_imageconvolution(VM::ActRec *ar); -TypedValue* fg_imagecopy(VM::ActRec *ar); -TypedValue* fg_imagecopymerge(VM::ActRec *ar); -TypedValue* fg_imagecopymergegray(VM::ActRec *ar); -TypedValue* fg_imagecopyresampled(VM::ActRec *ar); -TypedValue* fg_imagecopyresized(VM::ActRec *ar); -TypedValue* fg_imagecreate(VM::ActRec *ar); -TypedValue* fg_imagecreatefromgd2part(VM::ActRec *ar); -TypedValue* fg_imagecreatefromgd(VM::ActRec *ar); -TypedValue* fg_imagecreatefromgd2(VM::ActRec *ar); -TypedValue* fg_imagecreatefromgif(VM::ActRec *ar); -TypedValue* fg_imagecreatefromjpeg(VM::ActRec *ar); -TypedValue* fg_imagecreatefrompng(VM::ActRec *ar); -TypedValue* fg_imagecreatefromstring(VM::ActRec *ar); -TypedValue* fg_imagecreatefromwbmp(VM::ActRec *ar); -TypedValue* fg_imagecreatefromxbm(VM::ActRec *ar); -TypedValue* fg_imagecreatefromxpm(VM::ActRec *ar); -TypedValue* fg_imagecreatetruecolor(VM::ActRec *ar); -TypedValue* fg_imagedashedline(VM::ActRec *ar); -TypedValue* fg_imagedestroy(VM::ActRec *ar); -TypedValue* fg_imageellipse(VM::ActRec *ar); -TypedValue* fg_imagefill(VM::ActRec *ar); -TypedValue* fg_imagefilledarc(VM::ActRec *ar); -TypedValue* fg_imagefilledellipse(VM::ActRec *ar); -TypedValue* fg_imagefilledpolygon(VM::ActRec *ar); -TypedValue* fg_imagefilledrectangle(VM::ActRec *ar); -TypedValue* fg_imagefilltoborder(VM::ActRec *ar); -TypedValue* fg_imagefilter(VM::ActRec *ar); -TypedValue* fg_imagefontheight(VM::ActRec *ar); -TypedValue* fg_imagefontwidth(VM::ActRec *ar); -TypedValue* fg_imageftbbox(VM::ActRec *ar); -TypedValue* fg_imagefttext(VM::ActRec *ar); -TypedValue* fg_imagegammacorrect(VM::ActRec *ar); -TypedValue* fg_imagegd2(VM::ActRec *ar); -TypedValue* fg_imagegd(VM::ActRec *ar); -TypedValue* fg_imagegif(VM::ActRec *ar); -TypedValue* fg_imagegrabscreen(VM::ActRec *ar); -TypedValue* fg_imagegrabwindow(VM::ActRec *ar); -TypedValue* fg_imageinterlace(VM::ActRec *ar); -TypedValue* fg_imageistruecolor(VM::ActRec *ar); -TypedValue* fg_imagejpeg(VM::ActRec *ar); -TypedValue* fg_imagelayereffect(VM::ActRec *ar); -TypedValue* fg_imageline(VM::ActRec *ar); -TypedValue* fg_imageloadfont(VM::ActRec *ar); -TypedValue* fg_imagepalettecopy(VM::ActRec *ar); -TypedValue* fg_imagepng(VM::ActRec *ar); -TypedValue* fg_imagepolygon(VM::ActRec *ar); -TypedValue* fg_imagepsbbox(VM::ActRec *ar); -TypedValue* fg_imagepsencodefont(VM::ActRec *ar); -TypedValue* fg_imagepsextendfont(VM::ActRec *ar); -TypedValue* fg_imagepsfreefont(VM::ActRec *ar); -TypedValue* fg_imagepsloadfont(VM::ActRec *ar); -TypedValue* fg_imagepsslantfont(VM::ActRec *ar); -TypedValue* fg_imagepstext(VM::ActRec *ar); -TypedValue* fg_imagerectangle(VM::ActRec *ar); -TypedValue* fg_imagerotate(VM::ActRec *ar); -TypedValue* fg_imagesavealpha(VM::ActRec *ar); -TypedValue* fg_imagesetbrush(VM::ActRec *ar); -TypedValue* fg_imagesetpixel(VM::ActRec *ar); -TypedValue* fg_imagesetstyle(VM::ActRec *ar); -TypedValue* fg_imagesetthickness(VM::ActRec *ar); -TypedValue* fg_imagesettile(VM::ActRec *ar); -TypedValue* fg_imagestring(VM::ActRec *ar); -TypedValue* fg_imagestringup(VM::ActRec *ar); -TypedValue* fg_imagesx(VM::ActRec *ar); -TypedValue* fg_imagesy(VM::ActRec *ar); -TypedValue* fg_imagetruecolortopalette(VM::ActRec *ar); -TypedValue* fg_imagettfbbox(VM::ActRec *ar); -TypedValue* fg_imagettftext(VM::ActRec *ar); -TypedValue* fg_imagetypes(VM::ActRec *ar); -TypedValue* fg_imagewbmp(VM::ActRec *ar); -TypedValue* fg_imagexbm(VM::ActRec *ar); -TypedValue* fg_iptcembed(VM::ActRec *ar); -TypedValue* fg_iptcparse(VM::ActRec *ar); -TypedValue* fg_jpeg2wbmp(VM::ActRec *ar); -TypedValue* fg_png2wbmp(VM::ActRec *ar); -TypedValue* fg_exif_imagetype(VM::ActRec *ar); -TypedValue* fg_exif_read_data(VM::ActRec *ar); -TypedValue* fg_read_exif_data(VM::ActRec *ar); -TypedValue* fg_exif_tagname(VM::ActRec *ar); -TypedValue* fg_exif_thumbnail(VM::ActRec *ar); -TypedValue* fg_imap_8bit(VM::ActRec *ar); -TypedValue* fg_imap_alerts(VM::ActRec *ar); -TypedValue* fg_imap_append(VM::ActRec *ar); -TypedValue* fg_imap_base64(VM::ActRec *ar); -TypedValue* fg_imap_binary(VM::ActRec *ar); -TypedValue* fg_imap_body(VM::ActRec *ar); -TypedValue* fg_imap_bodystruct(VM::ActRec *ar); -TypedValue* fg_imap_check(VM::ActRec *ar); -TypedValue* fg_imap_clearflag_full(VM::ActRec *ar); -TypedValue* fg_imap_close(VM::ActRec *ar); -TypedValue* fg_imap_createmailbox(VM::ActRec *ar); -TypedValue* fg_imap_delete(VM::ActRec *ar); -TypedValue* fg_imap_deletemailbox(VM::ActRec *ar); -TypedValue* fg_imap_errors(VM::ActRec *ar); -TypedValue* fg_imap_expunge(VM::ActRec *ar); -TypedValue* fg_imap_fetch_overview(VM::ActRec *ar); -TypedValue* fg_imap_fetchbody(VM::ActRec *ar); -TypedValue* fg_imap_fetchheader(VM::ActRec *ar); -TypedValue* fg_imap_fetchstructure(VM::ActRec *ar); -TypedValue* fg_imap_gc(VM::ActRec *ar); -TypedValue* fg_imap_get_quota(VM::ActRec *ar); -TypedValue* fg_imap_get_quotaroot(VM::ActRec *ar); -TypedValue* fg_imap_getacl(VM::ActRec *ar); -TypedValue* fg_imap_getmailboxes(VM::ActRec *ar); -TypedValue* fg_imap_getsubscribed(VM::ActRec *ar); -TypedValue* fg_imap_header(VM::ActRec *ar); -TypedValue* fg_imap_headerinfo(VM::ActRec *ar); -TypedValue* fg_imap_headers(VM::ActRec *ar); -TypedValue* fg_imap_last_error(VM::ActRec *ar); -TypedValue* fg_imap_list(VM::ActRec *ar); -TypedValue* fg_imap_listmailbox(VM::ActRec *ar); -TypedValue* fg_imap_listscan(VM::ActRec *ar); -TypedValue* fg_imap_listsubscribed(VM::ActRec *ar); -TypedValue* fg_imap_lsub(VM::ActRec *ar); -TypedValue* fg_imap_mail_compose(VM::ActRec *ar); -TypedValue* fg_imap_mail_copy(VM::ActRec *ar); -TypedValue* fg_imap_mail_move(VM::ActRec *ar); -TypedValue* fg_imap_mail(VM::ActRec *ar); -TypedValue* fg_imap_mailboxmsginfo(VM::ActRec *ar); -TypedValue* fg_imap_mime_header_decode(VM::ActRec *ar); -TypedValue* fg_imap_msgno(VM::ActRec *ar); -TypedValue* fg_imap_num_msg(VM::ActRec *ar); -TypedValue* fg_imap_num_recent(VM::ActRec *ar); -TypedValue* fg_imap_open(VM::ActRec *ar); -TypedValue* fg_imap_ping(VM::ActRec *ar); -TypedValue* fg_imap_qprint(VM::ActRec *ar); -TypedValue* fg_imap_renamemailbox(VM::ActRec *ar); -TypedValue* fg_imap_reopen(VM::ActRec *ar); -TypedValue* fg_imap_rfc822_parse_adrlist(VM::ActRec *ar); -TypedValue* fg_imap_rfc822_parse_headers(VM::ActRec *ar); -TypedValue* fg_imap_rfc822_write_address(VM::ActRec *ar); -TypedValue* fg_imap_savebody(VM::ActRec *ar); -TypedValue* fg_imap_scanmailbox(VM::ActRec *ar); -TypedValue* fg_imap_search(VM::ActRec *ar); -TypedValue* fg_imap_set_quota(VM::ActRec *ar); -TypedValue* fg_imap_setacl(VM::ActRec *ar); -TypedValue* fg_imap_setflag_full(VM::ActRec *ar); -TypedValue* fg_imap_sort(VM::ActRec *ar); -TypedValue* fg_imap_status(VM::ActRec *ar); -TypedValue* fg_imap_subscribe(VM::ActRec *ar); -TypedValue* fg_imap_thread(VM::ActRec *ar); -TypedValue* fg_imap_timeout(VM::ActRec *ar); -TypedValue* fg_imap_uid(VM::ActRec *ar); -TypedValue* fg_imap_undelete(VM::ActRec *ar); -TypedValue* fg_imap_unsubscribe(VM::ActRec *ar); -TypedValue* fg_imap_utf7_decode(VM::ActRec *ar); -TypedValue* fg_imap_utf7_encode(VM::ActRec *ar); -TypedValue* fg_imap_utf8(VM::ActRec *ar); -TypedValue* fg_intl_get_error_code(VM::ActRec *ar); -TypedValue* fg_intl_get_error_message(VM::ActRec *ar); -TypedValue* fg_intl_error_name(VM::ActRec *ar); -TypedValue* fg_intl_is_failure(VM::ActRec *ar); -TypedValue* fg_collator_asort(VM::ActRec *ar); -TypedValue* fg_collator_compare(VM::ActRec *ar); -TypedValue* fg_collator_create(VM::ActRec *ar); -TypedValue* fg_collator_get_attribute(VM::ActRec *ar); -TypedValue* fg_collator_get_error_code(VM::ActRec *ar); -TypedValue* fg_collator_get_error_message(VM::ActRec *ar); -TypedValue* fg_collator_get_locale(VM::ActRec *ar); -TypedValue* fg_collator_get_strength(VM::ActRec *ar); -TypedValue* fg_collator_set_attribute(VM::ActRec *ar); -TypedValue* fg_collator_set_strength(VM::ActRec *ar); -TypedValue* fg_collator_sort_with_sort_keys(VM::ActRec *ar); -TypedValue* fg_collator_sort(VM::ActRec *ar); -TypedValue* fg_idn_to_ascii(VM::ActRec *ar); -TypedValue* fg_idn_to_unicode(VM::ActRec *ar); -TypedValue* fg_idn_to_utf8(VM::ActRec *ar); -TypedValue* fg_ftok(VM::ActRec *ar); -TypedValue* fg_msg_get_queue(VM::ActRec *ar); -TypedValue* fg_msg_queue_exists(VM::ActRec *ar); -TypedValue* fg_msg_send(VM::ActRec *ar); -TypedValue* fg_msg_receive(VM::ActRec *ar); -TypedValue* fg_msg_remove_queue(VM::ActRec *ar); -TypedValue* fg_msg_set_queue(VM::ActRec *ar); -TypedValue* fg_msg_stat_queue(VM::ActRec *ar); -TypedValue* fg_sem_acquire(VM::ActRec *ar); -TypedValue* fg_sem_get(VM::ActRec *ar); -TypedValue* fg_sem_release(VM::ActRec *ar); -TypedValue* fg_sem_remove(VM::ActRec *ar); -TypedValue* fg_shm_attach(VM::ActRec *ar); -TypedValue* fg_shm_detach(VM::ActRec *ar); -TypedValue* fg_shm_remove(VM::ActRec *ar); -TypedValue* fg_shm_get_var(VM::ActRec *ar); -TypedValue* fg_shm_has_var(VM::ActRec *ar); -TypedValue* fg_shm_put_var(VM::ActRec *ar); -TypedValue* fg_shm_remove_var(VM::ActRec *ar); -TypedValue* fg_hphp_recursiveiteratoriterator___construct(VM::ActRec *ar); -TypedValue* fg_hphp_recursiveiteratoriterator_getinneriterator(VM::ActRec *ar); -TypedValue* fg_hphp_recursiveiteratoriterator_current(VM::ActRec *ar); -TypedValue* fg_hphp_recursiveiteratoriterator_key(VM::ActRec *ar); -TypedValue* fg_hphp_recursiveiteratoriterator_next(VM::ActRec *ar); -TypedValue* fg_hphp_recursiveiteratoriterator_rewind(VM::ActRec *ar); -TypedValue* fg_hphp_recursiveiteratoriterator_valid(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator___construct(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator_key(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator_next(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator_rewind(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator_seek(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator_current(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator___tostring(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator_valid(VM::ActRec *ar); -TypedValue* fg_hphp_directoryiterator_isdot(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator___construct(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_key(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_next(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_rewind(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_seek(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_current(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator___tostring(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_valid(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_haschildren(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_getchildren(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_getsubpath(VM::ActRec *ar); -TypedValue* fg_hphp_recursivedirectoryiterator_getsubpathname(VM::ActRec *ar); -TypedValue* fg_json_encode(VM::ActRec *ar); -TypedValue* fg_json_decode(VM::ActRec *ar); -TypedValue* fg_ldap_connect(VM::ActRec *ar); -TypedValue* fg_ldap_explode_dn(VM::ActRec *ar); -TypedValue* fg_ldap_dn2ufn(VM::ActRec *ar); -TypedValue* fg_ldap_err2str(VM::ActRec *ar); -TypedValue* fg_ldap_add(VM::ActRec *ar); -TypedValue* fg_ldap_mod_add(VM::ActRec *ar); -TypedValue* fg_ldap_mod_del(VM::ActRec *ar); -TypedValue* fg_ldap_mod_replace(VM::ActRec *ar); -TypedValue* fg_ldap_modify(VM::ActRec *ar); -TypedValue* fg_ldap_bind(VM::ActRec *ar); -TypedValue* fg_ldap_set_rebind_proc(VM::ActRec *ar); -TypedValue* fg_ldap_sort(VM::ActRec *ar); -TypedValue* fg_ldap_start_tls(VM::ActRec *ar); -TypedValue* fg_ldap_unbind(VM::ActRec *ar); -TypedValue* fg_ldap_get_option(VM::ActRec *ar); -TypedValue* fg_ldap_set_option(VM::ActRec *ar); -TypedValue* fg_ldap_close(VM::ActRec *ar); -TypedValue* fg_ldap_list(VM::ActRec *ar); -TypedValue* fg_ldap_read(VM::ActRec *ar); -TypedValue* fg_ldap_search(VM::ActRec *ar); -TypedValue* fg_ldap_rename(VM::ActRec *ar); -TypedValue* fg_ldap_delete(VM::ActRec *ar); -TypedValue* fg_ldap_compare(VM::ActRec *ar); -TypedValue* fg_ldap_errno(VM::ActRec *ar); -TypedValue* fg_ldap_error(VM::ActRec *ar); -TypedValue* fg_ldap_get_dn(VM::ActRec *ar); -TypedValue* fg_ldap_count_entries(VM::ActRec *ar); -TypedValue* fg_ldap_get_entries(VM::ActRec *ar); -TypedValue* fg_ldap_first_entry(VM::ActRec *ar); -TypedValue* fg_ldap_next_entry(VM::ActRec *ar); -TypedValue* fg_ldap_get_attributes(VM::ActRec *ar); -TypedValue* fg_ldap_first_attribute(VM::ActRec *ar); -TypedValue* fg_ldap_next_attribute(VM::ActRec *ar); -TypedValue* fg_ldap_first_reference(VM::ActRec *ar); -TypedValue* fg_ldap_next_reference(VM::ActRec *ar); -TypedValue* fg_ldap_parse_reference(VM::ActRec *ar); -TypedValue* fg_ldap_parse_result(VM::ActRec *ar); -TypedValue* fg_ldap_free_result(VM::ActRec *ar); -TypedValue* fg_ldap_get_values_len(VM::ActRec *ar); -TypedValue* fg_ldap_get_values(VM::ActRec *ar); -TypedValue* fg_magickgetcopyright(VM::ActRec *ar); -TypedValue* fg_magickgethomeurl(VM::ActRec *ar); -TypedValue* fg_magickgetpackagename(VM::ActRec *ar); -TypedValue* fg_magickgetquantumdepth(VM::ActRec *ar); -TypedValue* fg_magickgetreleasedate(VM::ActRec *ar); -TypedValue* fg_magickgetresourcelimit(VM::ActRec *ar); -TypedValue* fg_magickgetversion(VM::ActRec *ar); -TypedValue* fg_magickgetversionnumber(VM::ActRec *ar); -TypedValue* fg_magickgetversionstring(VM::ActRec *ar); -TypedValue* fg_magickqueryconfigureoption(VM::ActRec *ar); -TypedValue* fg_magickqueryconfigureoptions(VM::ActRec *ar); -TypedValue* fg_magickqueryfonts(VM::ActRec *ar); -TypedValue* fg_magickqueryformats(VM::ActRec *ar); -TypedValue* fg_magicksetresourcelimit(VM::ActRec *ar); -TypedValue* fg_newdrawingwand(VM::ActRec *ar); -TypedValue* fg_newmagickwand(VM::ActRec *ar); -TypedValue* fg_newpixeliterator(VM::ActRec *ar); -TypedValue* fg_newpixelregioniterator(VM::ActRec *ar); -TypedValue* fg_newpixelwand(VM::ActRec *ar); -TypedValue* fg_newpixelwandarray(VM::ActRec *ar); -TypedValue* fg_newpixelwands(VM::ActRec *ar); -TypedValue* fg_destroydrawingwand(VM::ActRec *ar); -TypedValue* fg_destroymagickwand(VM::ActRec *ar); -TypedValue* fg_destroypixeliterator(VM::ActRec *ar); -TypedValue* fg_destroypixelwand(VM::ActRec *ar); -TypedValue* fg_destroypixelwandarray(VM::ActRec *ar); -TypedValue* fg_destroypixelwands(VM::ActRec *ar); -TypedValue* fg_isdrawingwand(VM::ActRec *ar); -TypedValue* fg_ismagickwand(VM::ActRec *ar); -TypedValue* fg_ispixeliterator(VM::ActRec *ar); -TypedValue* fg_ispixelwand(VM::ActRec *ar); -TypedValue* fg_cleardrawingwand(VM::ActRec *ar); -TypedValue* fg_clearmagickwand(VM::ActRec *ar); -TypedValue* fg_clearpixeliterator(VM::ActRec *ar); -TypedValue* fg_clearpixelwand(VM::ActRec *ar); -TypedValue* fg_clonedrawingwand(VM::ActRec *ar); -TypedValue* fg_clonemagickwand(VM::ActRec *ar); -TypedValue* fg_wandgetexception(VM::ActRec *ar); -TypedValue* fg_wandgetexceptionstring(VM::ActRec *ar); -TypedValue* fg_wandgetexceptiontype(VM::ActRec *ar); -TypedValue* fg_wandhasexception(VM::ActRec *ar); -TypedValue* fg_drawaffine(VM::ActRec *ar); -TypedValue* fg_drawannotation(VM::ActRec *ar); -TypedValue* fg_drawarc(VM::ActRec *ar); -TypedValue* fg_drawbezier(VM::ActRec *ar); -TypedValue* fg_drawcircle(VM::ActRec *ar); -TypedValue* fg_drawcolor(VM::ActRec *ar); -TypedValue* fg_drawcomment(VM::ActRec *ar); -TypedValue* fg_drawcomposite(VM::ActRec *ar); -TypedValue* fg_drawellipse(VM::ActRec *ar); -TypedValue* fg_drawgetclippath(VM::ActRec *ar); -TypedValue* fg_drawgetcliprule(VM::ActRec *ar); -TypedValue* fg_drawgetclipunits(VM::ActRec *ar); -TypedValue* fg_drawgetexception(VM::ActRec *ar); -TypedValue* fg_drawgetexceptionstring(VM::ActRec *ar); -TypedValue* fg_drawgetexceptiontype(VM::ActRec *ar); -TypedValue* fg_drawgetfillalpha(VM::ActRec *ar); -TypedValue* fg_drawgetfillcolor(VM::ActRec *ar); -TypedValue* fg_drawgetfillopacity(VM::ActRec *ar); -TypedValue* fg_drawgetfillrule(VM::ActRec *ar); -TypedValue* fg_drawgetfont(VM::ActRec *ar); -TypedValue* fg_drawgetfontfamily(VM::ActRec *ar); -TypedValue* fg_drawgetfontsize(VM::ActRec *ar); -TypedValue* fg_drawgetfontstretch(VM::ActRec *ar); -TypedValue* fg_drawgetfontstyle(VM::ActRec *ar); -TypedValue* fg_drawgetfontweight(VM::ActRec *ar); -TypedValue* fg_drawgetgravity(VM::ActRec *ar); -TypedValue* fg_drawgetstrokealpha(VM::ActRec *ar); -TypedValue* fg_drawgetstrokeantialias(VM::ActRec *ar); -TypedValue* fg_drawgetstrokecolor(VM::ActRec *ar); -TypedValue* fg_drawgetstrokedasharray(VM::ActRec *ar); -TypedValue* fg_drawgetstrokedashoffset(VM::ActRec *ar); -TypedValue* fg_drawgetstrokelinecap(VM::ActRec *ar); -TypedValue* fg_drawgetstrokelinejoin(VM::ActRec *ar); -TypedValue* fg_drawgetstrokemiterlimit(VM::ActRec *ar); -TypedValue* fg_drawgetstrokeopacity(VM::ActRec *ar); -TypedValue* fg_drawgetstrokewidth(VM::ActRec *ar); -TypedValue* fg_drawgettextalignment(VM::ActRec *ar); -TypedValue* fg_drawgettextantialias(VM::ActRec *ar); -TypedValue* fg_drawgettextdecoration(VM::ActRec *ar); -TypedValue* fg_drawgettextencoding(VM::ActRec *ar); -TypedValue* fg_drawgettextundercolor(VM::ActRec *ar); -TypedValue* fg_drawgetvectorgraphics(VM::ActRec *ar); -TypedValue* fg_drawline(VM::ActRec *ar); -TypedValue* fg_drawmatte(VM::ActRec *ar); -TypedValue* fg_drawpathclose(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetoabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetoquadraticbezierabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetoquadraticbezierrelative(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetoquadraticbeziersmoothabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetoquadraticbeziersmoothrelative(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetorelative(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetosmoothabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathcurvetosmoothrelative(VM::ActRec *ar); -TypedValue* fg_drawpathellipticarcabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathellipticarcrelative(VM::ActRec *ar); -TypedValue* fg_drawpathfinish(VM::ActRec *ar); -TypedValue* fg_drawpathlinetoabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathlinetohorizontalabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathlinetohorizontalrelative(VM::ActRec *ar); -TypedValue* fg_drawpathlinetorelative(VM::ActRec *ar); -TypedValue* fg_drawpathlinetoverticalabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathlinetoverticalrelative(VM::ActRec *ar); -TypedValue* fg_drawpathmovetoabsolute(VM::ActRec *ar); -TypedValue* fg_drawpathmovetorelative(VM::ActRec *ar); -TypedValue* fg_drawpathstart(VM::ActRec *ar); -TypedValue* fg_drawpoint(VM::ActRec *ar); -TypedValue* fg_drawpolygon(VM::ActRec *ar); -TypedValue* fg_drawpolyline(VM::ActRec *ar); -TypedValue* fg_drawrectangle(VM::ActRec *ar); -TypedValue* fg_drawrender(VM::ActRec *ar); -TypedValue* fg_drawrotate(VM::ActRec *ar); -TypedValue* fg_drawroundrectangle(VM::ActRec *ar); -TypedValue* fg_drawscale(VM::ActRec *ar); -TypedValue* fg_drawsetclippath(VM::ActRec *ar); -TypedValue* fg_drawsetcliprule(VM::ActRec *ar); -TypedValue* fg_drawsetclipunits(VM::ActRec *ar); -TypedValue* fg_drawsetfillalpha(VM::ActRec *ar); -TypedValue* fg_drawsetfillcolor(VM::ActRec *ar); -TypedValue* fg_drawsetfillopacity(VM::ActRec *ar); -TypedValue* fg_drawsetfillpatternurl(VM::ActRec *ar); -TypedValue* fg_drawsetfillrule(VM::ActRec *ar); -TypedValue* fg_drawsetfont(VM::ActRec *ar); -TypedValue* fg_drawsetfontfamily(VM::ActRec *ar); -TypedValue* fg_drawsetfontsize(VM::ActRec *ar); -TypedValue* fg_drawsetfontstretch(VM::ActRec *ar); -TypedValue* fg_drawsetfontstyle(VM::ActRec *ar); -TypedValue* fg_drawsetfontweight(VM::ActRec *ar); -TypedValue* fg_drawsetgravity(VM::ActRec *ar); -TypedValue* fg_drawsetstrokealpha(VM::ActRec *ar); -TypedValue* fg_drawsetstrokeantialias(VM::ActRec *ar); -TypedValue* fg_drawsetstrokecolor(VM::ActRec *ar); -TypedValue* fg_drawsetstrokedasharray(VM::ActRec *ar); -TypedValue* fg_drawsetstrokedashoffset(VM::ActRec *ar); -TypedValue* fg_drawsetstrokelinecap(VM::ActRec *ar); -TypedValue* fg_drawsetstrokelinejoin(VM::ActRec *ar); -TypedValue* fg_drawsetstrokemiterlimit(VM::ActRec *ar); -TypedValue* fg_drawsetstrokeopacity(VM::ActRec *ar); -TypedValue* fg_drawsetstrokepatternurl(VM::ActRec *ar); -TypedValue* fg_drawsetstrokewidth(VM::ActRec *ar); -TypedValue* fg_drawsettextalignment(VM::ActRec *ar); -TypedValue* fg_drawsettextantialias(VM::ActRec *ar); -TypedValue* fg_drawsettextdecoration(VM::ActRec *ar); -TypedValue* fg_drawsettextencoding(VM::ActRec *ar); -TypedValue* fg_drawsettextundercolor(VM::ActRec *ar); -TypedValue* fg_drawsetvectorgraphics(VM::ActRec *ar); -TypedValue* fg_drawsetviewbox(VM::ActRec *ar); -TypedValue* fg_drawskewx(VM::ActRec *ar); -TypedValue* fg_drawskewy(VM::ActRec *ar); -TypedValue* fg_drawtranslate(VM::ActRec *ar); -TypedValue* fg_pushdrawingwand(VM::ActRec *ar); -TypedValue* fg_drawpushclippath(VM::ActRec *ar); -TypedValue* fg_drawpushdefs(VM::ActRec *ar); -TypedValue* fg_drawpushpattern(VM::ActRec *ar); -TypedValue* fg_popdrawingwand(VM::ActRec *ar); -TypedValue* fg_drawpopclippath(VM::ActRec *ar); -TypedValue* fg_drawpopdefs(VM::ActRec *ar); -TypedValue* fg_drawpoppattern(VM::ActRec *ar); -TypedValue* fg_magickadaptivethresholdimage(VM::ActRec *ar); -TypedValue* fg_magickaddimage(VM::ActRec *ar); -TypedValue* fg_magickaddnoiseimage(VM::ActRec *ar); -TypedValue* fg_magickaffinetransformimage(VM::ActRec *ar); -TypedValue* fg_magickannotateimage(VM::ActRec *ar); -TypedValue* fg_magickappendimages(VM::ActRec *ar); -TypedValue* fg_magickaverageimages(VM::ActRec *ar); -TypedValue* fg_magickblackthresholdimage(VM::ActRec *ar); -TypedValue* fg_magickblurimage(VM::ActRec *ar); -TypedValue* fg_magickborderimage(VM::ActRec *ar); -TypedValue* fg_magickcharcoalimage(VM::ActRec *ar); -TypedValue* fg_magickchopimage(VM::ActRec *ar); -TypedValue* fg_magickclipimage(VM::ActRec *ar); -TypedValue* fg_magickclippathimage(VM::ActRec *ar); -TypedValue* fg_magickcoalesceimages(VM::ActRec *ar); -TypedValue* fg_magickcolorfloodfillimage(VM::ActRec *ar); -TypedValue* fg_magickcolorizeimage(VM::ActRec *ar); -TypedValue* fg_magickcombineimages(VM::ActRec *ar); -TypedValue* fg_magickcommentimage(VM::ActRec *ar); -TypedValue* fg_magickcompareimages(VM::ActRec *ar); -TypedValue* fg_magickcompositeimage(VM::ActRec *ar); -TypedValue* fg_magickconstituteimage(VM::ActRec *ar); -TypedValue* fg_magickcontrastimage(VM::ActRec *ar); -TypedValue* fg_magickconvolveimage(VM::ActRec *ar); -TypedValue* fg_magickcropimage(VM::ActRec *ar); -TypedValue* fg_magickcyclecolormapimage(VM::ActRec *ar); -TypedValue* fg_magickdeconstructimages(VM::ActRec *ar); -TypedValue* fg_magickdescribeimage(VM::ActRec *ar); -TypedValue* fg_magickdespeckleimage(VM::ActRec *ar); -TypedValue* fg_magickdrawimage(VM::ActRec *ar); -TypedValue* fg_magickechoimageblob(VM::ActRec *ar); -TypedValue* fg_magickechoimagesblob(VM::ActRec *ar); -TypedValue* fg_magickedgeimage(VM::ActRec *ar); -TypedValue* fg_magickembossimage(VM::ActRec *ar); -TypedValue* fg_magickenhanceimage(VM::ActRec *ar); -TypedValue* fg_magickequalizeimage(VM::ActRec *ar); -TypedValue* fg_magickevaluateimage(VM::ActRec *ar); -TypedValue* fg_magickflattenimages(VM::ActRec *ar); -TypedValue* fg_magickflipimage(VM::ActRec *ar); -TypedValue* fg_magickflopimage(VM::ActRec *ar); -TypedValue* fg_magickframeimage(VM::ActRec *ar); -TypedValue* fg_magickfximage(VM::ActRec *ar); -TypedValue* fg_magickgammaimage(VM::ActRec *ar); -TypedValue* fg_magickgaussianblurimage(VM::ActRec *ar); -TypedValue* fg_magickgetcharheight(VM::ActRec *ar); -TypedValue* fg_magickgetcharwidth(VM::ActRec *ar); -TypedValue* fg_magickgetexception(VM::ActRec *ar); -TypedValue* fg_magickgetexceptionstring(VM::ActRec *ar); -TypedValue* fg_magickgetexceptiontype(VM::ActRec *ar); -TypedValue* fg_magickgetfilename(VM::ActRec *ar); -TypedValue* fg_magickgetformat(VM::ActRec *ar); -TypedValue* fg_magickgetimage(VM::ActRec *ar); -TypedValue* fg_magickgetimagebackgroundcolor(VM::ActRec *ar); -TypedValue* fg_magickgetimageblob(VM::ActRec *ar); -TypedValue* fg_magickgetimageblueprimary(VM::ActRec *ar); -TypedValue* fg_magickgetimagebordercolor(VM::ActRec *ar); -TypedValue* fg_magickgetimagechannelmean(VM::ActRec *ar); -TypedValue* fg_magickgetimagecolormapcolor(VM::ActRec *ar); -TypedValue* fg_magickgetimagecolors(VM::ActRec *ar); -TypedValue* fg_magickgetimagecolorspace(VM::ActRec *ar); -TypedValue* fg_magickgetimagecompose(VM::ActRec *ar); -TypedValue* fg_magickgetimagecompression(VM::ActRec *ar); -TypedValue* fg_magickgetimagecompressionquality(VM::ActRec *ar); -TypedValue* fg_magickgetimagedelay(VM::ActRec *ar); -TypedValue* fg_magickgetimagedepth(VM::ActRec *ar); -TypedValue* fg_magickgetimagedispose(VM::ActRec *ar); -TypedValue* fg_magickgetimageextrema(VM::ActRec *ar); -TypedValue* fg_magickgetimagefilename(VM::ActRec *ar); -TypedValue* fg_magickgetimageformat(VM::ActRec *ar); -TypedValue* fg_magickgetimagegamma(VM::ActRec *ar); -TypedValue* fg_magickgetimagegreenprimary(VM::ActRec *ar); -TypedValue* fg_magickgetimageheight(VM::ActRec *ar); -TypedValue* fg_magickgetimagehistogram(VM::ActRec *ar); -TypedValue* fg_magickgetimageindex(VM::ActRec *ar); -TypedValue* fg_magickgetimageinterlacescheme(VM::ActRec *ar); -TypedValue* fg_magickgetimageiterations(VM::ActRec *ar); -TypedValue* fg_magickgetimagemattecolor(VM::ActRec *ar); -TypedValue* fg_magickgetimagemimetype(VM::ActRec *ar); -TypedValue* fg_magickgetimagepixels(VM::ActRec *ar); -TypedValue* fg_magickgetimageprofile(VM::ActRec *ar); -TypedValue* fg_magickgetimageredprimary(VM::ActRec *ar); -TypedValue* fg_magickgetimagerenderingintent(VM::ActRec *ar); -TypedValue* fg_magickgetimageresolution(VM::ActRec *ar); -TypedValue* fg_magickgetimagescene(VM::ActRec *ar); -TypedValue* fg_magickgetimagesignature(VM::ActRec *ar); -TypedValue* fg_magickgetimagesize(VM::ActRec *ar); -TypedValue* fg_magickgetimagetype(VM::ActRec *ar); -TypedValue* fg_magickgetimageunits(VM::ActRec *ar); -TypedValue* fg_magickgetimagevirtualpixelmethod(VM::ActRec *ar); -TypedValue* fg_magickgetimagewhitepoint(VM::ActRec *ar); -TypedValue* fg_magickgetimagewidth(VM::ActRec *ar); -TypedValue* fg_magickgetimagesblob(VM::ActRec *ar); -TypedValue* fg_magickgetinterlacescheme(VM::ActRec *ar); -TypedValue* fg_magickgetmaxtextadvance(VM::ActRec *ar); -TypedValue* fg_magickgetmimetype(VM::ActRec *ar); -TypedValue* fg_magickgetnumberimages(VM::ActRec *ar); -TypedValue* fg_magickgetsamplingfactors(VM::ActRec *ar); -TypedValue* fg_magickgetsize(VM::ActRec *ar); -TypedValue* fg_magickgetstringheight(VM::ActRec *ar); -TypedValue* fg_magickgetstringwidth(VM::ActRec *ar); -TypedValue* fg_magickgettextascent(VM::ActRec *ar); -TypedValue* fg_magickgettextdescent(VM::ActRec *ar); -TypedValue* fg_magickgetwandsize(VM::ActRec *ar); -TypedValue* fg_magickhasnextimage(VM::ActRec *ar); -TypedValue* fg_magickhaspreviousimage(VM::ActRec *ar); -TypedValue* fg_magickimplodeimage(VM::ActRec *ar); -TypedValue* fg_magicklabelimage(VM::ActRec *ar); -TypedValue* fg_magicklevelimage(VM::ActRec *ar); -TypedValue* fg_magickmagnifyimage(VM::ActRec *ar); -TypedValue* fg_magickmapimage(VM::ActRec *ar); -TypedValue* fg_magickmattefloodfillimage(VM::ActRec *ar); -TypedValue* fg_magickmedianfilterimage(VM::ActRec *ar); -TypedValue* fg_magickminifyimage(VM::ActRec *ar); -TypedValue* fg_magickmodulateimage(VM::ActRec *ar); -TypedValue* fg_magickmontageimage(VM::ActRec *ar); -TypedValue* fg_magickmorphimages(VM::ActRec *ar); -TypedValue* fg_magickmosaicimages(VM::ActRec *ar); -TypedValue* fg_magickmotionblurimage(VM::ActRec *ar); -TypedValue* fg_magicknegateimage(VM::ActRec *ar); -TypedValue* fg_magicknewimage(VM::ActRec *ar); -TypedValue* fg_magicknextimage(VM::ActRec *ar); -TypedValue* fg_magicknormalizeimage(VM::ActRec *ar); -TypedValue* fg_magickoilpaintimage(VM::ActRec *ar); -TypedValue* fg_magickpaintopaqueimage(VM::ActRec *ar); -TypedValue* fg_magickpainttransparentimage(VM::ActRec *ar); -TypedValue* fg_magickpingimage(VM::ActRec *ar); -TypedValue* fg_magickposterizeimage(VM::ActRec *ar); -TypedValue* fg_magickpreviewimages(VM::ActRec *ar); -TypedValue* fg_magickpreviousimage(VM::ActRec *ar); -TypedValue* fg_magickprofileimage(VM::ActRec *ar); -TypedValue* fg_magickquantizeimage(VM::ActRec *ar); -TypedValue* fg_magickquantizeimages(VM::ActRec *ar); -TypedValue* fg_magickqueryfontmetrics(VM::ActRec *ar); -TypedValue* fg_magickradialblurimage(VM::ActRec *ar); -TypedValue* fg_magickraiseimage(VM::ActRec *ar); -TypedValue* fg_magickreadimage(VM::ActRec *ar); -TypedValue* fg_magickreadimageblob(VM::ActRec *ar); -TypedValue* fg_magickreadimagefile(VM::ActRec *ar); -TypedValue* fg_magickreadimages(VM::ActRec *ar); -TypedValue* fg_magickreducenoiseimage(VM::ActRec *ar); -TypedValue* fg_magickremoveimage(VM::ActRec *ar); -TypedValue* fg_magickremoveimageprofile(VM::ActRec *ar); -TypedValue* fg_magickremoveimageprofiles(VM::ActRec *ar); -TypedValue* fg_magickresampleimage(VM::ActRec *ar); -TypedValue* fg_magickresetiterator(VM::ActRec *ar); -TypedValue* fg_magickresizeimage(VM::ActRec *ar); -TypedValue* fg_magickrollimage(VM::ActRec *ar); -TypedValue* fg_magickrotateimage(VM::ActRec *ar); -TypedValue* fg_magicksampleimage(VM::ActRec *ar); -TypedValue* fg_magickscaleimage(VM::ActRec *ar); -TypedValue* fg_magickseparateimagechannel(VM::ActRec *ar); -TypedValue* fg_magicksetcompressionquality(VM::ActRec *ar); -TypedValue* fg_magicksetfilename(VM::ActRec *ar); -TypedValue* fg_magicksetfirstiterator(VM::ActRec *ar); -TypedValue* fg_magicksetformat(VM::ActRec *ar); -TypedValue* fg_magicksetimage(VM::ActRec *ar); -TypedValue* fg_magicksetimagebackgroundcolor(VM::ActRec *ar); -TypedValue* fg_magicksetimagebias(VM::ActRec *ar); -TypedValue* fg_magicksetimageblueprimary(VM::ActRec *ar); -TypedValue* fg_magicksetimagebordercolor(VM::ActRec *ar); -TypedValue* fg_magicksetimagecolormapcolor(VM::ActRec *ar); -TypedValue* fg_magicksetimagecolorspace(VM::ActRec *ar); -TypedValue* fg_magicksetimagecompose(VM::ActRec *ar); -TypedValue* fg_magicksetimagecompression(VM::ActRec *ar); -TypedValue* fg_magicksetimagecompressionquality(VM::ActRec *ar); -TypedValue* fg_magicksetimagedelay(VM::ActRec *ar); -TypedValue* fg_magicksetimagedepth(VM::ActRec *ar); -TypedValue* fg_magicksetimagedispose(VM::ActRec *ar); -TypedValue* fg_magicksetimagefilename(VM::ActRec *ar); -TypedValue* fg_magicksetimageformat(VM::ActRec *ar); -TypedValue* fg_magicksetimagegamma(VM::ActRec *ar); -TypedValue* fg_magicksetimagegreenprimary(VM::ActRec *ar); -TypedValue* fg_magicksetimageindex(VM::ActRec *ar); -TypedValue* fg_magicksetimageinterlacescheme(VM::ActRec *ar); -TypedValue* fg_magicksetimageiterations(VM::ActRec *ar); -TypedValue* fg_magicksetimagemattecolor(VM::ActRec *ar); -TypedValue* fg_magicksetimageoption(VM::ActRec *ar); -TypedValue* fg_magicksetimagepixels(VM::ActRec *ar); -TypedValue* fg_magicksetimageprofile(VM::ActRec *ar); -TypedValue* fg_magicksetimageredprimary(VM::ActRec *ar); -TypedValue* fg_magicksetimagerenderingintent(VM::ActRec *ar); -TypedValue* fg_magicksetimageresolution(VM::ActRec *ar); -TypedValue* fg_magicksetimagescene(VM::ActRec *ar); -TypedValue* fg_magicksetimagetype(VM::ActRec *ar); -TypedValue* fg_magicksetimageunits(VM::ActRec *ar); -TypedValue* fg_magicksetimagevirtualpixelmethod(VM::ActRec *ar); -TypedValue* fg_magicksetimagewhitepoint(VM::ActRec *ar); -TypedValue* fg_magicksetinterlacescheme(VM::ActRec *ar); -TypedValue* fg_magicksetlastiterator(VM::ActRec *ar); -TypedValue* fg_magicksetpassphrase(VM::ActRec *ar); -TypedValue* fg_magicksetresolution(VM::ActRec *ar); -TypedValue* fg_magicksetsamplingfactors(VM::ActRec *ar); -TypedValue* fg_magicksetsize(VM::ActRec *ar); -TypedValue* fg_magicksetwandsize(VM::ActRec *ar); -TypedValue* fg_magicksharpenimage(VM::ActRec *ar); -TypedValue* fg_magickshaveimage(VM::ActRec *ar); -TypedValue* fg_magickshearimage(VM::ActRec *ar); -TypedValue* fg_magicksolarizeimage(VM::ActRec *ar); -TypedValue* fg_magickspliceimage(VM::ActRec *ar); -TypedValue* fg_magickspreadimage(VM::ActRec *ar); -TypedValue* fg_magicksteganoimage(VM::ActRec *ar); -TypedValue* fg_magickstereoimage(VM::ActRec *ar); -TypedValue* fg_magickstripimage(VM::ActRec *ar); -TypedValue* fg_magickswirlimage(VM::ActRec *ar); -TypedValue* fg_magicktextureimage(VM::ActRec *ar); -TypedValue* fg_magickthresholdimage(VM::ActRec *ar); -TypedValue* fg_magicktintimage(VM::ActRec *ar); -TypedValue* fg_magicktransformimage(VM::ActRec *ar); -TypedValue* fg_magicktrimimage(VM::ActRec *ar); -TypedValue* fg_magickunsharpmaskimage(VM::ActRec *ar); -TypedValue* fg_magickwaveimage(VM::ActRec *ar); -TypedValue* fg_magickwhitethresholdimage(VM::ActRec *ar); -TypedValue* fg_magickwriteimage(VM::ActRec *ar); -TypedValue* fg_magickwriteimagefile(VM::ActRec *ar); -TypedValue* fg_magickwriteimages(VM::ActRec *ar); -TypedValue* fg_magickwriteimagesfile(VM::ActRec *ar); -TypedValue* fg_pixelgetalpha(VM::ActRec *ar); -TypedValue* fg_pixelgetalphaquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetblack(VM::ActRec *ar); -TypedValue* fg_pixelgetblackquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetblue(VM::ActRec *ar); -TypedValue* fg_pixelgetbluequantum(VM::ActRec *ar); -TypedValue* fg_pixelgetcolorasstring(VM::ActRec *ar); -TypedValue* fg_pixelgetcolorcount(VM::ActRec *ar); -TypedValue* fg_pixelgetcyan(VM::ActRec *ar); -TypedValue* fg_pixelgetcyanquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetexception(VM::ActRec *ar); -TypedValue* fg_pixelgetexceptionstring(VM::ActRec *ar); -TypedValue* fg_pixelgetexceptiontype(VM::ActRec *ar); -TypedValue* fg_pixelgetgreen(VM::ActRec *ar); -TypedValue* fg_pixelgetgreenquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetindex(VM::ActRec *ar); -TypedValue* fg_pixelgetmagenta(VM::ActRec *ar); -TypedValue* fg_pixelgetmagentaquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetopacity(VM::ActRec *ar); -TypedValue* fg_pixelgetopacityquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetquantumcolor(VM::ActRec *ar); -TypedValue* fg_pixelgetred(VM::ActRec *ar); -TypedValue* fg_pixelgetredquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetyellow(VM::ActRec *ar); -TypedValue* fg_pixelgetyellowquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetalpha(VM::ActRec *ar); -TypedValue* fg_pixelsetalphaquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetblack(VM::ActRec *ar); -TypedValue* fg_pixelsetblackquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetblue(VM::ActRec *ar); -TypedValue* fg_pixelsetbluequantum(VM::ActRec *ar); -TypedValue* fg_pixelsetcolor(VM::ActRec *ar); -TypedValue* fg_pixelsetcolorcount(VM::ActRec *ar); -TypedValue* fg_pixelsetcyan(VM::ActRec *ar); -TypedValue* fg_pixelsetcyanquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetgreen(VM::ActRec *ar); -TypedValue* fg_pixelsetgreenquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetindex(VM::ActRec *ar); -TypedValue* fg_pixelsetmagenta(VM::ActRec *ar); -TypedValue* fg_pixelsetmagentaquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetopacity(VM::ActRec *ar); -TypedValue* fg_pixelsetopacityquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetquantumcolor(VM::ActRec *ar); -TypedValue* fg_pixelsetred(VM::ActRec *ar); -TypedValue* fg_pixelsetredquantum(VM::ActRec *ar); -TypedValue* fg_pixelsetyellow(VM::ActRec *ar); -TypedValue* fg_pixelsetyellowquantum(VM::ActRec *ar); -TypedValue* fg_pixelgetiteratorexception(VM::ActRec *ar); -TypedValue* fg_pixelgetiteratorexceptionstring(VM::ActRec *ar); -TypedValue* fg_pixelgetiteratorexceptiontype(VM::ActRec *ar); -TypedValue* fg_pixelgetnextiteratorrow(VM::ActRec *ar); -TypedValue* fg_pixelresetiterator(VM::ActRec *ar); -TypedValue* fg_pixelsetiteratorrow(VM::ActRec *ar); -TypedValue* fg_pixelsynciterator(VM::ActRec *ar); -TypedValue* fg_mail(VM::ActRec *ar); -TypedValue* fg_ezmlm_hash(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_create(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_free(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_parse_file(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_parse(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_extract_part_file(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_extract_whole_part_file(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_extract_part(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_get_part_data(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_get_part(VM::ActRec *ar); -TypedValue* fg_mailparse_msg_get_structure(VM::ActRec *ar); -TypedValue* fg_mailparse_rfc822_parse_addresses(VM::ActRec *ar); -TypedValue* fg_mailparse_stream_encode(VM::ActRec *ar); -TypedValue* fg_mailparse_uudecode_all(VM::ActRec *ar); -TypedValue* fg_mailparse_determine_best_xfer_encoding(VM::ActRec *ar); -TypedValue* fg_pi(VM::ActRec *ar); -TypedValue* fg_min(VM::ActRec *ar); -TypedValue* fg_max(VM::ActRec *ar); -TypedValue* fg_abs(VM::ActRec *ar); -TypedValue* fg_is_finite(VM::ActRec *ar); -TypedValue* fg_is_infinite(VM::ActRec *ar); -TypedValue* fg_is_nan(VM::ActRec *ar); -TypedValue* fg_ceil(VM::ActRec *ar); -TypedValue* fg_floor(VM::ActRec *ar); -TypedValue* fg_round(VM::ActRec *ar); -TypedValue* fg_deg2rad(VM::ActRec *ar); -TypedValue* fg_rad2deg(VM::ActRec *ar); -TypedValue* fg_decbin(VM::ActRec *ar); -TypedValue* fg_dechex(VM::ActRec *ar); -TypedValue* fg_decoct(VM::ActRec *ar); -TypedValue* fg_bindec(VM::ActRec *ar); -TypedValue* fg_hexdec(VM::ActRec *ar); -TypedValue* fg_octdec(VM::ActRec *ar); -TypedValue* fg_base_convert(VM::ActRec *ar); -TypedValue* fg_pow(VM::ActRec *ar); -TypedValue* fg_exp(VM::ActRec *ar); -TypedValue* fg_expm1(VM::ActRec *ar); -TypedValue* fg_log10(VM::ActRec *ar); -TypedValue* fg_log1p(VM::ActRec *ar); -TypedValue* fg_log(VM::ActRec *ar); -TypedValue* fg_cos(VM::ActRec *ar); -TypedValue* fg_cosh(VM::ActRec *ar); -TypedValue* fg_sin(VM::ActRec *ar); -TypedValue* fg_sinh(VM::ActRec *ar); -TypedValue* fg_tan(VM::ActRec *ar); -TypedValue* fg_tanh(VM::ActRec *ar); -TypedValue* fg_acos(VM::ActRec *ar); -TypedValue* fg_acosh(VM::ActRec *ar); -TypedValue* fg_asin(VM::ActRec *ar); -TypedValue* fg_asinh(VM::ActRec *ar); -TypedValue* fg_atan(VM::ActRec *ar); -TypedValue* fg_atanh(VM::ActRec *ar); -TypedValue* fg_atan2(VM::ActRec *ar); -TypedValue* fg_hypot(VM::ActRec *ar); -TypedValue* fg_fmod(VM::ActRec *ar); -TypedValue* fg_sqrt(VM::ActRec *ar); -TypedValue* fg_getrandmax(VM::ActRec *ar); -TypedValue* fg_srand(VM::ActRec *ar); -TypedValue* fg_rand(VM::ActRec *ar); -TypedValue* fg_mt_getrandmax(VM::ActRec *ar); -TypedValue* fg_mt_srand(VM::ActRec *ar); -TypedValue* fg_mt_rand(VM::ActRec *ar); -TypedValue* fg_lcg_value(VM::ActRec *ar); -TypedValue* fg_mb_list_encodings(VM::ActRec *ar); -TypedValue* fg_mb_list_encodings_alias_names(VM::ActRec *ar); -TypedValue* fg_mb_list_mime_names(VM::ActRec *ar); -TypedValue* fg_mb_check_encoding(VM::ActRec *ar); -TypedValue* fg_mb_convert_case(VM::ActRec *ar); -TypedValue* fg_mb_convert_encoding(VM::ActRec *ar); -TypedValue* fg_mb_convert_kana(VM::ActRec *ar); -TypedValue* fg_mb_convert_variables(VM::ActRec *ar); -TypedValue* fg_mb_decode_mimeheader(VM::ActRec *ar); -TypedValue* fg_mb_decode_numericentity(VM::ActRec *ar); -TypedValue* fg_mb_detect_encoding(VM::ActRec *ar); -TypedValue* fg_mb_detect_order(VM::ActRec *ar); -TypedValue* fg_mb_encode_mimeheader(VM::ActRec *ar); -TypedValue* fg_mb_encode_numericentity(VM::ActRec *ar); -TypedValue* fg_mb_ereg_match(VM::ActRec *ar); -TypedValue* fg_mb_ereg_replace(VM::ActRec *ar); -TypedValue* fg_mb_ereg_search_getpos(VM::ActRec *ar); -TypedValue* fg_mb_ereg_search_getregs(VM::ActRec *ar); -TypedValue* fg_mb_ereg_search_init(VM::ActRec *ar); -TypedValue* fg_mb_ereg_search_pos(VM::ActRec *ar); -TypedValue* fg_mb_ereg_search_regs(VM::ActRec *ar); -TypedValue* fg_mb_ereg_search_setpos(VM::ActRec *ar); -TypedValue* fg_mb_ereg_search(VM::ActRec *ar); -TypedValue* fg_mb_ereg(VM::ActRec *ar); -TypedValue* fg_mb_eregi_replace(VM::ActRec *ar); -TypedValue* fg_mb_eregi(VM::ActRec *ar); -TypedValue* fg_mb_get_info(VM::ActRec *ar); -TypedValue* fg_mb_http_input(VM::ActRec *ar); -TypedValue* fg_mb_http_output(VM::ActRec *ar); -TypedValue* fg_mb_internal_encoding(VM::ActRec *ar); -TypedValue* fg_mb_language(VM::ActRec *ar); -TypedValue* fg_mb_output_handler(VM::ActRec *ar); -TypedValue* fg_mb_parse_str(VM::ActRec *ar); -TypedValue* fg_mb_preferred_mime_name(VM::ActRec *ar); -TypedValue* fg_mb_regex_encoding(VM::ActRec *ar); -TypedValue* fg_mb_regex_set_options(VM::ActRec *ar); -TypedValue* fg_mb_send_mail(VM::ActRec *ar); -TypedValue* fg_mb_split(VM::ActRec *ar); -TypedValue* fg_mb_strcut(VM::ActRec *ar); -TypedValue* fg_mb_strimwidth(VM::ActRec *ar); -TypedValue* fg_mb_stripos(VM::ActRec *ar); -TypedValue* fg_mb_stristr(VM::ActRec *ar); -TypedValue* fg_mb_strlen(VM::ActRec *ar); -TypedValue* fg_mb_strpos(VM::ActRec *ar); -TypedValue* fg_mb_strrchr(VM::ActRec *ar); -TypedValue* fg_mb_strrichr(VM::ActRec *ar); -TypedValue* fg_mb_strripos(VM::ActRec *ar); -TypedValue* fg_mb_strrpos(VM::ActRec *ar); -TypedValue* fg_mb_strstr(VM::ActRec *ar); -TypedValue* fg_mb_strtolower(VM::ActRec *ar); -TypedValue* fg_mb_strtoupper(VM::ActRec *ar); -TypedValue* fg_mb_strwidth(VM::ActRec *ar); -TypedValue* fg_mb_substitute_character(VM::ActRec *ar); -TypedValue* fg_mb_substr_count(VM::ActRec *ar); -TypedValue* fg_mb_substr(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_open(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_close(VM::ActRec *ar); -TypedValue* fg_mcrypt_list_algorithms(VM::ActRec *ar); -TypedValue* fg_mcrypt_list_modes(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_get_algo_block_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_get_algo_key_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_get_supported_key_sizes(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_is_block_algorithm_mode(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_is_block_algorithm(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_is_block_mode(VM::ActRec *ar); -TypedValue* fg_mcrypt_module_self_test(VM::ActRec *ar); -TypedValue* fg_mcrypt_create_iv(VM::ActRec *ar); -TypedValue* fg_mcrypt_encrypt(VM::ActRec *ar); -TypedValue* fg_mcrypt_decrypt(VM::ActRec *ar); -TypedValue* fg_mcrypt_cbc(VM::ActRec *ar); -TypedValue* fg_mcrypt_cfb(VM::ActRec *ar); -TypedValue* fg_mcrypt_ecb(VM::ActRec *ar); -TypedValue* fg_mcrypt_ofb(VM::ActRec *ar); -TypedValue* fg_mcrypt_get_block_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_get_cipher_name(VM::ActRec *ar); -TypedValue* fg_mcrypt_get_iv_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_get_key_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_get_algorithms_name(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_get_block_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_get_iv_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_get_key_size(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_get_modes_name(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_get_supported_key_sizes(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_is_block_algorithm_mode(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_is_block_algorithm(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_is_block_mode(VM::ActRec *ar); -TypedValue* fg_mcrypt_enc_self_test(VM::ActRec *ar); -TypedValue* fg_mcrypt_generic(VM::ActRec *ar); -TypedValue* fg_mcrypt_generic_init(VM::ActRec *ar); -TypedValue* fg_mdecrypt_generic(VM::ActRec *ar); -TypedValue* fg_mcrypt_generic_deinit(VM::ActRec *ar); -TypedValue* fg_mcrypt_generic_end(VM::ActRec *ar); -TypedValue* fg_memcache_connect(VM::ActRec *ar); -TypedValue* fg_memcache_pconnect(VM::ActRec *ar); -TypedValue* fg_memcache_add(VM::ActRec *ar); -TypedValue* fg_memcache_set(VM::ActRec *ar); -TypedValue* fg_memcache_replace(VM::ActRec *ar); -TypedValue* fg_memcache_get(VM::ActRec *ar); -TypedValue* fg_memcache_delete(VM::ActRec *ar); -TypedValue* fg_memcache_increment(VM::ActRec *ar); -TypedValue* fg_memcache_decrement(VM::ActRec *ar); -TypedValue* fg_memcache_close(VM::ActRec *ar); -TypedValue* fg_memcache_debug(VM::ActRec *ar); -TypedValue* fg_memcache_get_version(VM::ActRec *ar); -TypedValue* fg_memcache_flush(VM::ActRec *ar); -TypedValue* fg_memcache_setoptimeout(VM::ActRec *ar); -TypedValue* fg_memcache_get_server_status(VM::ActRec *ar); -TypedValue* fg_memcache_set_compress_threshold(VM::ActRec *ar); -TypedValue* fg_memcache_get_stats(VM::ActRec *ar); -TypedValue* fg_memcache_get_extended_stats(VM::ActRec *ar); -TypedValue* fg_memcache_set_server_params(VM::ActRec *ar); -TypedValue* fg_memcache_add_server(VM::ActRec *ar); -TypedValue* fg_connection_aborted(VM::ActRec *ar); -TypedValue* fg_connection_status(VM::ActRec *ar); -TypedValue* fg_connection_timeout(VM::ActRec *ar); -TypedValue* fg_constant(VM::ActRec *ar); -TypedValue* fg_define(VM::ActRec *ar); -TypedValue* fg_defined(VM::ActRec *ar); -TypedValue* fg_die(VM::ActRec *ar); -TypedValue* fg_exit(VM::ActRec *ar); -TypedValue* fg_eval(VM::ActRec *ar); -TypedValue* fg_get_browser(VM::ActRec *ar); -TypedValue* fg___halt_compiler(VM::ActRec *ar); -TypedValue* fg_highlight_file(VM::ActRec *ar); -TypedValue* fg_show_source(VM::ActRec *ar); -TypedValue* fg_highlight_string(VM::ActRec *ar); -TypedValue* fg_ignore_user_abort(VM::ActRec *ar); -TypedValue* fg_pack(VM::ActRec *ar); -TypedValue* fg_php_check_syntax(VM::ActRec *ar); -TypedValue* fg_php_strip_whitespace(VM::ActRec *ar); -TypedValue* fg_sleep(VM::ActRec *ar); -TypedValue* fg_usleep(VM::ActRec *ar); -TypedValue* fg_time_nanosleep(VM::ActRec *ar); -TypedValue* fg_time_sleep_until(VM::ActRec *ar); -TypedValue* fg_uniqid(VM::ActRec *ar); -TypedValue* fg_unpack(VM::ActRec *ar); -TypedValue* fg_sys_getloadavg(VM::ActRec *ar); -TypedValue* fg_token_get_all(VM::ActRec *ar); -TypedValue* fg_token_name(VM::ActRec *ar); -TypedValue* fg_hphp_process_abort(VM::ActRec *ar); -TypedValue* fg_hphp_to_string(VM::ActRec *ar); -TypedValue* fg_mysql_connect(VM::ActRec *ar); -TypedValue* fg_mysql_async_connect_start(VM::ActRec *ar); -TypedValue* fg_mysql_async_connect_completed(VM::ActRec *ar); -TypedValue* fg_mysql_async_query_start(VM::ActRec *ar); -TypedValue* fg_mysql_async_query_result(VM::ActRec *ar); -TypedValue* fg_mysql_async_query_completed(VM::ActRec *ar); -TypedValue* fg_mysql_async_fetch_array(VM::ActRec *ar); -TypedValue* fg_mysql_async_wait_actionable(VM::ActRec *ar); -TypedValue* fg_mysql_async_status(VM::ActRec *ar); -TypedValue* fg_mysql_pconnect(VM::ActRec *ar); -TypedValue* fg_mysql_connect_with_db(VM::ActRec *ar); -TypedValue* fg_mysql_pconnect_with_db(VM::ActRec *ar); -TypedValue* fg_mysql_set_charset(VM::ActRec *ar); -TypedValue* fg_mysql_ping(VM::ActRec *ar); -TypedValue* fg_mysql_escape_string(VM::ActRec *ar); -TypedValue* fg_mysql_real_escape_string(VM::ActRec *ar); -TypedValue* fg_mysql_client_encoding(VM::ActRec *ar); -TypedValue* fg_mysql_close(VM::ActRec *ar); -TypedValue* fg_mysql_errno(VM::ActRec *ar); -TypedValue* fg_mysql_error(VM::ActRec *ar); -TypedValue* fg_mysql_warning_count(VM::ActRec *ar); -TypedValue* fg_mysql_get_client_info(VM::ActRec *ar); -TypedValue* fg_mysql_get_host_info(VM::ActRec *ar); -TypedValue* fg_mysql_get_proto_info(VM::ActRec *ar); -TypedValue* fg_mysql_get_server_info(VM::ActRec *ar); -TypedValue* fg_mysql_info(VM::ActRec *ar); -TypedValue* fg_mysql_insert_id(VM::ActRec *ar); -TypedValue* fg_mysql_stat(VM::ActRec *ar); -TypedValue* fg_mysql_thread_id(VM::ActRec *ar); -TypedValue* fg_mysql_create_db(VM::ActRec *ar); -TypedValue* fg_mysql_select_db(VM::ActRec *ar); -TypedValue* fg_mysql_drop_db(VM::ActRec *ar); -TypedValue* fg_mysql_affected_rows(VM::ActRec *ar); -TypedValue* fg_mysql_set_timeout(VM::ActRec *ar); -TypedValue* fg_mysql_query(VM::ActRec *ar); -TypedValue* fg_mysql_multi_query(VM::ActRec *ar); -TypedValue* fg_mysql_next_result(VM::ActRec *ar); -TypedValue* fg_mysql_more_results(VM::ActRec *ar); -TypedValue* fg_mysql_fetch_result(VM::ActRec *ar); -TypedValue* fg_mysql_unbuffered_query(VM::ActRec *ar); -TypedValue* fg_mysql_db_query(VM::ActRec *ar); -TypedValue* fg_mysql_list_dbs(VM::ActRec *ar); -TypedValue* fg_mysql_list_tables(VM::ActRec *ar); -TypedValue* fg_mysql_list_fields(VM::ActRec *ar); -TypedValue* fg_mysql_list_processes(VM::ActRec *ar); -TypedValue* fg_mysql_db_name(VM::ActRec *ar); -TypedValue* fg_mysql_tablename(VM::ActRec *ar); -TypedValue* fg_mysql_num_fields(VM::ActRec *ar); -TypedValue* fg_mysql_num_rows(VM::ActRec *ar); -TypedValue* fg_mysql_free_result(VM::ActRec *ar); -TypedValue* fg_mysql_data_seek(VM::ActRec *ar); -TypedValue* fg_mysql_fetch_row(VM::ActRec *ar); -TypedValue* fg_mysql_fetch_assoc(VM::ActRec *ar); -TypedValue* fg_mysql_fetch_array(VM::ActRec *ar); -TypedValue* fg_mysql_fetch_lengths(VM::ActRec *ar); -TypedValue* fg_mysql_fetch_object(VM::ActRec *ar); -TypedValue* fg_mysql_result(VM::ActRec *ar); -TypedValue* fg_mysql_fetch_field(VM::ActRec *ar); -TypedValue* fg_mysql_field_seek(VM::ActRec *ar); -TypedValue* fg_mysql_field_name(VM::ActRec *ar); -TypedValue* fg_mysql_field_table(VM::ActRec *ar); -TypedValue* fg_mysql_field_len(VM::ActRec *ar); -TypedValue* fg_mysql_field_type(VM::ActRec *ar); -TypedValue* fg_mysql_field_flags(VM::ActRec *ar); -TypedValue* fg_gethostname(VM::ActRec *ar); -TypedValue* fg_gethostbyaddr(VM::ActRec *ar); -TypedValue* fg_gethostbyname(VM::ActRec *ar); -TypedValue* fg_gethostbynamel(VM::ActRec *ar); -TypedValue* fg_getprotobyname(VM::ActRec *ar); -TypedValue* fg_getprotobynumber(VM::ActRec *ar); -TypedValue* fg_getservbyname(VM::ActRec *ar); -TypedValue* fg_getservbyport(VM::ActRec *ar); -TypedValue* fg_inet_ntop(VM::ActRec *ar); -TypedValue* fg_inet_pton(VM::ActRec *ar); -TypedValue* fg_ip2long(VM::ActRec *ar); -TypedValue* fg_long2ip(VM::ActRec *ar); -TypedValue* fg_dns_check_record(VM::ActRec *ar); -TypedValue* fg_checkdnsrr(VM::ActRec *ar); -TypedValue* fg_dns_get_record(VM::ActRec *ar); -TypedValue* fg_dns_get_mx(VM::ActRec *ar); -TypedValue* fg_getmxrr(VM::ActRec *ar); -TypedValue* fg_fsockopen(VM::ActRec *ar); -TypedValue* fg_pfsockopen(VM::ActRec *ar); -TypedValue* fg_socket_get_status(VM::ActRec *ar); -TypedValue* fg_socket_set_blocking(VM::ActRec *ar); -TypedValue* fg_socket_set_timeout(VM::ActRec *ar); -TypedValue* fg_header(VM::ActRec *ar); -TypedValue* fg_http_response_code(VM::ActRec *ar); -TypedValue* fg_headers_list(VM::ActRec *ar); -TypedValue* fg_get_http_request_size(VM::ActRec *ar); -TypedValue* fg_headers_sent(VM::ActRec *ar); -TypedValue* fg_header_register_callback(VM::ActRec *ar); -TypedValue* fg_header_remove(VM::ActRec *ar); -TypedValue* fg_setcookie(VM::ActRec *ar); -TypedValue* fg_setrawcookie(VM::ActRec *ar); -TypedValue* fg_define_syslog_variables(VM::ActRec *ar); -TypedValue* fg_openlog(VM::ActRec *ar); -TypedValue* fg_closelog(VM::ActRec *ar); -TypedValue* fg_syslog(VM::ActRec *ar); -TypedValue* fg_openssl_csr_export_to_file(VM::ActRec *ar); -TypedValue* fg_openssl_csr_export(VM::ActRec *ar); -TypedValue* fg_openssl_csr_get_public_key(VM::ActRec *ar); -TypedValue* fg_openssl_csr_get_subject(VM::ActRec *ar); -TypedValue* fg_openssl_csr_new(VM::ActRec *ar); -TypedValue* fg_openssl_csr_sign(VM::ActRec *ar); -TypedValue* fg_openssl_error_string(VM::ActRec *ar); -TypedValue* fg_openssl_open(VM::ActRec *ar); -TypedValue* fg_openssl_pkcs12_export_to_file(VM::ActRec *ar); -TypedValue* fg_openssl_pkcs12_export(VM::ActRec *ar); -TypedValue* fg_openssl_pkcs12_read(VM::ActRec *ar); -TypedValue* fg_openssl_pkcs7_decrypt(VM::ActRec *ar); -TypedValue* fg_openssl_pkcs7_encrypt(VM::ActRec *ar); -TypedValue* fg_openssl_pkcs7_sign(VM::ActRec *ar); -TypedValue* fg_openssl_pkcs7_verify(VM::ActRec *ar); -TypedValue* fg_openssl_pkey_export_to_file(VM::ActRec *ar); -TypedValue* fg_openssl_pkey_export(VM::ActRec *ar); -TypedValue* fg_openssl_pkey_free(VM::ActRec *ar); -TypedValue* fg_openssl_free_key(VM::ActRec *ar); -TypedValue* fg_openssl_pkey_get_details(VM::ActRec *ar); -TypedValue* fg_openssl_pkey_get_private(VM::ActRec *ar); -TypedValue* fg_openssl_get_privatekey(VM::ActRec *ar); -TypedValue* fg_openssl_pkey_get_public(VM::ActRec *ar); -TypedValue* fg_openssl_get_publickey(VM::ActRec *ar); -TypedValue* fg_openssl_pkey_new(VM::ActRec *ar); -TypedValue* fg_openssl_private_decrypt(VM::ActRec *ar); -TypedValue* fg_openssl_private_encrypt(VM::ActRec *ar); -TypedValue* fg_openssl_public_decrypt(VM::ActRec *ar); -TypedValue* fg_openssl_public_encrypt(VM::ActRec *ar); -TypedValue* fg_openssl_seal(VM::ActRec *ar); -TypedValue* fg_openssl_sign(VM::ActRec *ar); -TypedValue* fg_openssl_verify(VM::ActRec *ar); -TypedValue* fg_openssl_x509_check_private_key(VM::ActRec *ar); -TypedValue* fg_openssl_x509_checkpurpose(VM::ActRec *ar); -TypedValue* fg_openssl_x509_export_to_file(VM::ActRec *ar); -TypedValue* fg_openssl_x509_export(VM::ActRec *ar); -TypedValue* fg_openssl_x509_free(VM::ActRec *ar); -TypedValue* fg_openssl_x509_parse(VM::ActRec *ar); -TypedValue* fg_openssl_x509_read(VM::ActRec *ar); -TypedValue* fg_openssl_random_pseudo_bytes(VM::ActRec *ar); -TypedValue* fg_openssl_cipher_iv_length(VM::ActRec *ar); -TypedValue* fg_openssl_encrypt(VM::ActRec *ar); -TypedValue* fg_openssl_decrypt(VM::ActRec *ar); -TypedValue* fg_openssl_digest(VM::ActRec *ar); -TypedValue* fg_openssl_get_cipher_methods(VM::ActRec *ar); -TypedValue* fg_openssl_get_md_methods(VM::ActRec *ar); -TypedValue* fg_assert_options(VM::ActRec *ar); -TypedValue* fg_assert(VM::ActRec *ar); -TypedValue* fg_dl(VM::ActRec *ar); -TypedValue* fg_extension_loaded(VM::ActRec *ar); -TypedValue* fg_get_loaded_extensions(VM::ActRec *ar); -TypedValue* fg_get_extension_funcs(VM::ActRec *ar); -TypedValue* fg_get_cfg_var(VM::ActRec *ar); -TypedValue* fg_get_current_user(VM::ActRec *ar); -TypedValue* fg_get_defined_constants(VM::ActRec *ar); -TypedValue* fg_get_include_path(VM::ActRec *ar); -TypedValue* fg_restore_include_path(VM::ActRec *ar); -TypedValue* fg_set_include_path(VM::ActRec *ar); -TypedValue* fg_get_included_files(VM::ActRec *ar); -TypedValue* fg_inclued_get_data(VM::ActRec *ar); -TypedValue* fg_get_magic_quotes_gpc(VM::ActRec *ar); -TypedValue* fg_get_magic_quotes_runtime(VM::ActRec *ar); -TypedValue* fg_get_required_files(VM::ActRec *ar); -TypedValue* fg_getenv(VM::ActRec *ar); -TypedValue* fg_getlastmod(VM::ActRec *ar); -TypedValue* fg_getmygid(VM::ActRec *ar); -TypedValue* fg_getmyinode(VM::ActRec *ar); -TypedValue* fg_getmypid(VM::ActRec *ar); -TypedValue* fg_getmyuid(VM::ActRec *ar); -TypedValue* fg_getopt(VM::ActRec *ar); -TypedValue* fg_getrusage(VM::ActRec *ar); -TypedValue* fg_clock_getres(VM::ActRec *ar); -TypedValue* fg_clock_gettime(VM::ActRec *ar); -TypedValue* fg_clock_settime(VM::ActRec *ar); -TypedValue* fg_cpu_get_count(VM::ActRec *ar); -TypedValue* fg_cpu_get_model(VM::ActRec *ar); -TypedValue* fg_ini_alter(VM::ActRec *ar); -TypedValue* fg_ini_get_all(VM::ActRec *ar); -TypedValue* fg_ini_get(VM::ActRec *ar); -TypedValue* fg_ini_restore(VM::ActRec *ar); -TypedValue* fg_ini_set(VM::ActRec *ar); -TypedValue* fg_memory_get_allocation(VM::ActRec *ar); -TypedValue* fg_memory_get_peak_usage(VM::ActRec *ar); -TypedValue* fg_memory_get_usage(VM::ActRec *ar); -TypedValue* fg_php_ini_scanned_files(VM::ActRec *ar); -TypedValue* fg_php_logo_guid(VM::ActRec *ar); -TypedValue* fg_php_sapi_name(VM::ActRec *ar); -TypedValue* fg_php_uname(VM::ActRec *ar); -TypedValue* fg_phpcredits(VM::ActRec *ar); -TypedValue* fg_phpinfo(VM::ActRec *ar); -TypedValue* fg_phpversion(VM::ActRec *ar); -TypedValue* fg_putenv(VM::ActRec *ar); -TypedValue* fg_set_magic_quotes_runtime(VM::ActRec *ar); -TypedValue* fg_set_time_limit(VM::ActRec *ar); -TypedValue* fg_sys_get_temp_dir(VM::ActRec *ar); -TypedValue* fg_version_compare(VM::ActRec *ar); -TypedValue* fg_gc_enabled(VM::ActRec *ar); -TypedValue* fg_gc_enable(VM::ActRec *ar); -TypedValue* fg_gc_disable(VM::ActRec *ar); -TypedValue* fg_gc_collect_cycles(VM::ActRec *ar); -TypedValue* fg_zend_logo_guid(VM::ActRec *ar); -TypedValue* fg_zend_thread_id(VM::ActRec *ar); -TypedValue* fg_zend_version(VM::ActRec *ar); -TypedValue* fg_ob_start(VM::ActRec *ar); -TypedValue* fg_ob_clean(VM::ActRec *ar); -TypedValue* fg_ob_flush(VM::ActRec *ar); -TypedValue* fg_ob_end_clean(VM::ActRec *ar); -TypedValue* fg_ob_end_flush(VM::ActRec *ar); -TypedValue* fg_flush(VM::ActRec *ar); -TypedValue* fg_ob_get_clean(VM::ActRec *ar); -TypedValue* fg_ob_get_contents(VM::ActRec *ar); -TypedValue* fg_ob_get_flush(VM::ActRec *ar); -TypedValue* fg_ob_get_length(VM::ActRec *ar); -TypedValue* fg_ob_get_level(VM::ActRec *ar); -TypedValue* fg_ob_get_status(VM::ActRec *ar); -TypedValue* fg_ob_gzhandler(VM::ActRec *ar); -TypedValue* fg_ob_implicit_flush(VM::ActRec *ar); -TypedValue* fg_ob_list_handlers(VM::ActRec *ar); -TypedValue* fg_output_add_rewrite_var(VM::ActRec *ar); -TypedValue* fg_output_reset_rewrite_vars(VM::ActRec *ar); -TypedValue* fg_hphp_crash_log(VM::ActRec *ar); -TypedValue* fg_hphp_stats(VM::ActRec *ar); -TypedValue* fg_hphp_get_stats(VM::ActRec *ar); -TypedValue* fg_hphp_get_status(VM::ActRec *ar); -TypedValue* fg_hphp_get_iostatus(VM::ActRec *ar); -TypedValue* fg_hphp_set_iostatus_address(VM::ActRec *ar); -TypedValue* fg_hphp_get_timers(VM::ActRec *ar); -TypedValue* fg_hphp_output_global_state(VM::ActRec *ar); -TypedValue* fg_hphp_instruction_counter(VM::ActRec *ar); -TypedValue* fg_hphp_get_hardware_counters(VM::ActRec *ar); -TypedValue* fg_hphp_set_hardware_events(VM::ActRec *ar); -TypedValue* fg_hphp_clear_hardware_events(VM::ActRec *ar); -TypedValue* fg_pdo_drivers(VM::ActRec *ar); -TypedValue* fg_posix_access(VM::ActRec *ar); -TypedValue* fg_posix_ctermid(VM::ActRec *ar); -TypedValue* fg_posix_get_last_error(VM::ActRec *ar); -TypedValue* fg_posix_getcwd(VM::ActRec *ar); -TypedValue* fg_posix_getegid(VM::ActRec *ar); -TypedValue* fg_posix_geteuid(VM::ActRec *ar); -TypedValue* fg_posix_getgid(VM::ActRec *ar); -TypedValue* fg_posix_getgrgid(VM::ActRec *ar); -TypedValue* fg_posix_getgrnam(VM::ActRec *ar); -TypedValue* fg_posix_getgroups(VM::ActRec *ar); -TypedValue* fg_posix_getlogin(VM::ActRec *ar); -TypedValue* fg_posix_getpgid(VM::ActRec *ar); -TypedValue* fg_posix_getpgrp(VM::ActRec *ar); -TypedValue* fg_posix_getpid(VM::ActRec *ar); -TypedValue* fg_posix_getppid(VM::ActRec *ar); -TypedValue* fg_posix_getpwnam(VM::ActRec *ar); -TypedValue* fg_posix_getpwuid(VM::ActRec *ar); -TypedValue* fg_posix_getrlimit(VM::ActRec *ar); -TypedValue* fg_posix_getsid(VM::ActRec *ar); -TypedValue* fg_posix_getuid(VM::ActRec *ar); -TypedValue* fg_posix_initgroups(VM::ActRec *ar); -TypedValue* fg_posix_isatty(VM::ActRec *ar); -TypedValue* fg_posix_kill(VM::ActRec *ar); -TypedValue* fg_posix_mkfifo(VM::ActRec *ar); -TypedValue* fg_posix_mknod(VM::ActRec *ar); -TypedValue* fg_posix_setegid(VM::ActRec *ar); -TypedValue* fg_posix_seteuid(VM::ActRec *ar); -TypedValue* fg_posix_setgid(VM::ActRec *ar); -TypedValue* fg_posix_setpgid(VM::ActRec *ar); -TypedValue* fg_posix_setsid(VM::ActRec *ar); -TypedValue* fg_posix_setuid(VM::ActRec *ar); -TypedValue* fg_posix_strerror(VM::ActRec *ar); -TypedValue* fg_posix_times(VM::ActRec *ar); -TypedValue* fg_posix_ttyname(VM::ActRec *ar); -TypedValue* fg_posix_uname(VM::ActRec *ar); -TypedValue* fg_preg_grep(VM::ActRec *ar); -TypedValue* fg_preg_match(VM::ActRec *ar); -TypedValue* fg_preg_match_all(VM::ActRec *ar); -TypedValue* fg_preg_replace(VM::ActRec *ar); -TypedValue* fg_preg_replace_callback(VM::ActRec *ar); -TypedValue* fg_preg_split(VM::ActRec *ar); -TypedValue* fg_preg_quote(VM::ActRec *ar); -TypedValue* fg_preg_last_error(VM::ActRec *ar); -TypedValue* fg_ereg_replace(VM::ActRec *ar); -TypedValue* fg_eregi_replace(VM::ActRec *ar); -TypedValue* fg_ereg(VM::ActRec *ar); -TypedValue* fg_eregi(VM::ActRec *ar); -TypedValue* fg_split(VM::ActRec *ar); -TypedValue* fg_spliti(VM::ActRec *ar); -TypedValue* fg_sql_regcase(VM::ActRec *ar); -TypedValue* fg_pcntl_alarm(VM::ActRec *ar); -TypedValue* fg_pcntl_exec(VM::ActRec *ar); -TypedValue* fg_pcntl_fork(VM::ActRec *ar); -TypedValue* fg_pcntl_getpriority(VM::ActRec *ar); -TypedValue* fg_pcntl_setpriority(VM::ActRec *ar); -TypedValue* fg_pcntl_signal(VM::ActRec *ar); -TypedValue* fg_pcntl_wait(VM::ActRec *ar); -TypedValue* fg_pcntl_waitpid(VM::ActRec *ar); -TypedValue* fg_pcntl_wexitstatus(VM::ActRec *ar); -TypedValue* fg_pcntl_wifexited(VM::ActRec *ar); -TypedValue* fg_pcntl_wifsignaled(VM::ActRec *ar); -TypedValue* fg_pcntl_wifstopped(VM::ActRec *ar); -TypedValue* fg_pcntl_wstopsig(VM::ActRec *ar); -TypedValue* fg_pcntl_wtermsig(VM::ActRec *ar); -TypedValue* fg_pcntl_signal_dispatch(VM::ActRec *ar); -TypedValue* fg_shell_exec(VM::ActRec *ar); -TypedValue* fg_exec(VM::ActRec *ar); -TypedValue* fg_passthru(VM::ActRec *ar); -TypedValue* fg_system(VM::ActRec *ar); -TypedValue* fg_proc_open(VM::ActRec *ar); -TypedValue* fg_proc_terminate(VM::ActRec *ar); -TypedValue* fg_proc_close(VM::ActRec *ar); -TypedValue* fg_proc_get_status(VM::ActRec *ar); -TypedValue* fg_proc_nice(VM::ActRec *ar); -TypedValue* fg_escapeshellarg(VM::ActRec *ar); -TypedValue* fg_escapeshellcmd(VM::ActRec *ar); -TypedValue* fg_hphp_get_extension_info(VM::ActRec *ar); -TypedValue* fg_hphp_get_method_info(VM::ActRec *ar); -TypedValue* fg_hphp_get_closure_info(VM::ActRec *ar); -TypedValue* fg_hphp_get_class_constant(VM::ActRec *ar); -TypedValue* fg_hphp_get_class_info(VM::ActRec *ar); -TypedValue* fg_hphp_get_function_info(VM::ActRec *ar); -TypedValue* fg_hphp_invoke(VM::ActRec *ar); -TypedValue* fg_hphp_invoke_method(VM::ActRec *ar); -TypedValue* fg_hphp_instanceof(VM::ActRec *ar); -TypedValue* fg_hphp_create_object(VM::ActRec *ar); -TypedValue* fg_hphp_create_object_without_constructor(VM::ActRec *ar); -TypedValue* fg_hphp_get_property(VM::ActRec *ar); -TypedValue* fg_hphp_set_property(VM::ActRec *ar); -TypedValue* fg_hphp_get_static_property(VM::ActRec *ar); -TypedValue* fg_hphp_set_static_property(VM::ActRec *ar); -TypedValue* fg_hphp_get_original_class_name(VM::ActRec *ar); -TypedValue* fg_hphp_scalar_typehints_enabled(VM::ActRec *ar); -TypedValue* fg_dangling_server_proxy_old_request(VM::ActRec *ar); -TypedValue* fg_dangling_server_proxy_new_request(VM::ActRec *ar); -TypedValue* fg_pagelet_server_is_enabled(VM::ActRec *ar); -TypedValue* fg_pagelet_server_task_start(VM::ActRec *ar); -TypedValue* fg_pagelet_server_task_status(VM::ActRec *ar); -TypedValue* fg_pagelet_server_task_result(VM::ActRec *ar); -TypedValue* fg_pagelet_server_flush(VM::ActRec *ar); -TypedValue* fg_xbox_send_message(VM::ActRec *ar); -TypedValue* fg_xbox_post_message(VM::ActRec *ar); -TypedValue* fg_xbox_task_start(VM::ActRec *ar); -TypedValue* fg_xbox_task_status(VM::ActRec *ar); -TypedValue* fg_xbox_task_result(VM::ActRec *ar); -TypedValue* fg_xbox_process_call_message(VM::ActRec *ar); -TypedValue* fg_xbox_get_thread_timeout(VM::ActRec *ar); -TypedValue* fg_xbox_set_thread_timeout(VM::ActRec *ar); -TypedValue* fg_xbox_schedule_thread_reset(VM::ActRec *ar); -TypedValue* fg_xbox_get_thread_time(VM::ActRec *ar); -TypedValue* fg_session_set_cookie_params(VM::ActRec *ar); -TypedValue* fg_session_get_cookie_params(VM::ActRec *ar); -TypedValue* fg_session_name(VM::ActRec *ar); -TypedValue* fg_session_module_name(VM::ActRec *ar); -TypedValue* fg_session_set_save_handler(VM::ActRec *ar); -TypedValue* fg_session_save_path(VM::ActRec *ar); -TypedValue* fg_session_id(VM::ActRec *ar); -TypedValue* fg_session_regenerate_id(VM::ActRec *ar); -TypedValue* fg_session_cache_limiter(VM::ActRec *ar); -TypedValue* fg_session_cache_expire(VM::ActRec *ar); -TypedValue* fg_session_encode(VM::ActRec *ar); -TypedValue* fg_session_decode(VM::ActRec *ar); -TypedValue* fg_session_start(VM::ActRec *ar); -TypedValue* fg_session_destroy(VM::ActRec *ar); -TypedValue* fg_session_unset(VM::ActRec *ar); -TypedValue* fg_session_commit(VM::ActRec *ar); -TypedValue* fg_session_write_close(VM::ActRec *ar); -TypedValue* fg_session_register(VM::ActRec *ar); -TypedValue* fg_session_unregister(VM::ActRec *ar); -TypedValue* fg_session_is_registered(VM::ActRec *ar); -TypedValue* fg_simplexml_load_string(VM::ActRec *ar); -TypedValue* fg_simplexml_load_file(VM::ActRec *ar); -TypedValue* fg_libxml_get_errors(VM::ActRec *ar); -TypedValue* fg_libxml_get_last_error(VM::ActRec *ar); -TypedValue* fg_libxml_clear_errors(VM::ActRec *ar); -TypedValue* fg_libxml_use_internal_errors(VM::ActRec *ar); -TypedValue* fg_libxml_set_streams_context(VM::ActRec *ar); -TypedValue* fg_libxml_disable_entity_loader(VM::ActRec *ar); -TypedValue* fg_use_soap_error_handler(VM::ActRec *ar); -TypedValue* fg_is_soap_fault(VM::ActRec *ar); -TypedValue* fg__soap_active_version(VM::ActRec *ar); -TypedValue* fg_socket_create(VM::ActRec *ar); -TypedValue* fg_socket_create_listen(VM::ActRec *ar); -TypedValue* fg_socket_create_pair(VM::ActRec *ar); -TypedValue* fg_socket_get_option(VM::ActRec *ar); -TypedValue* fg_socket_getpeername(VM::ActRec *ar); -TypedValue* fg_socket_getsockname(VM::ActRec *ar); -TypedValue* fg_socket_set_block(VM::ActRec *ar); -TypedValue* fg_socket_set_nonblock(VM::ActRec *ar); -TypedValue* fg_socket_set_option(VM::ActRec *ar); -TypedValue* fg_socket_connect(VM::ActRec *ar); -TypedValue* fg_socket_bind(VM::ActRec *ar); -TypedValue* fg_socket_listen(VM::ActRec *ar); -TypedValue* fg_socket_select(VM::ActRec *ar); -TypedValue* fg_socket_server(VM::ActRec *ar); -TypedValue* fg_socket_accept(VM::ActRec *ar); -TypedValue* fg_socket_read(VM::ActRec *ar); -TypedValue* fg_socket_write(VM::ActRec *ar); -TypedValue* fg_socket_send(VM::ActRec *ar); -TypedValue* fg_socket_sendto(VM::ActRec *ar); -TypedValue* fg_socket_recv(VM::ActRec *ar); -TypedValue* fg_socket_recvfrom(VM::ActRec *ar); -TypedValue* fg_socket_shutdown(VM::ActRec *ar); -TypedValue* fg_socket_close(VM::ActRec *ar); -TypedValue* fg_socket_strerror(VM::ActRec *ar); -TypedValue* fg_socket_last_error(VM::ActRec *ar); -TypedValue* fg_socket_clear_error(VM::ActRec *ar); -TypedValue* fg_getaddrinfo(VM::ActRec *ar); -TypedValue* fg_spl_classes(VM::ActRec *ar); -TypedValue* fg_spl_object_hash(VM::ActRec *ar); -TypedValue* fg_hphp_object_pointer(VM::ActRec *ar); -TypedValue* fg_hphp_get_this(VM::ActRec *ar); -TypedValue* fg_class_implements(VM::ActRec *ar); -TypedValue* fg_class_parents(VM::ActRec *ar); -TypedValue* fg_class_uses(VM::ActRec *ar); -TypedValue* fg_iterator_apply(VM::ActRec *ar); -TypedValue* fg_iterator_count(VM::ActRec *ar); -TypedValue* fg_iterator_to_array(VM::ActRec *ar); -TypedValue* fg_spl_autoload_call(VM::ActRec *ar); -TypedValue* fg_spl_autoload_extensions(VM::ActRec *ar); -TypedValue* fg_spl_autoload_functions(VM::ActRec *ar); -TypedValue* fg_spl_autoload_register(VM::ActRec *ar); -TypedValue* fg_spl_autoload_unregister(VM::ActRec *ar); -TypedValue* fg_spl_autoload(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo___construct(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getatime(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getbasename(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getctime(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getfileinfo(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getfilename(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getgroup(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getinode(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getlinktarget(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getmtime(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getowner(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getpath(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getpathinfo(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getpathname(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getperms(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getrealpath(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_getsize(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_gettype(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_isdir(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_isexecutable(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_isfile(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_islink(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_isreadable(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_iswritable(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_openfile(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_setfileclass(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo_setinfoclass(VM::ActRec *ar); -TypedValue* fg_hphp_splfileinfo___tostring(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject___construct(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_current(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_eof(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fflush(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fgetc(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fgetcsv(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fgets(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fgetss(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_flock(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fpassthru(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fscanf(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fseek(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fstat(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_ftell(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_ftruncate(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_fwrite(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_getcvscontrol(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_getflags(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_getmaxlinelen(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_key(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_next(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_rewind(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_valid(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_seek(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_setcsvcontrol(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_setflags(VM::ActRec *ar); -TypedValue* fg_hphp_splfileobject_setmaxlinelen(VM::ActRec *ar); -TypedValue* fg_stream_context_create(VM::ActRec *ar); -TypedValue* fg_stream_context_get_default(VM::ActRec *ar); -TypedValue* fg_stream_context_get_options(VM::ActRec *ar); -TypedValue* fg_stream_context_set_option(VM::ActRec *ar); -TypedValue* fg_stream_context_set_param(VM::ActRec *ar); -TypedValue* fg_stream_copy_to_stream(VM::ActRec *ar); -TypedValue* fg_stream_encoding(VM::ActRec *ar); -TypedValue* fg_stream_bucket_append(VM::ActRec *ar); -TypedValue* fg_stream_bucket_prepend(VM::ActRec *ar); -TypedValue* fg_stream_bucket_make_writeable(VM::ActRec *ar); -TypedValue* fg_stream_bucket_new(VM::ActRec *ar); -TypedValue* fg_stream_filter_register(VM::ActRec *ar); -TypedValue* fg_stream_filter_remove(VM::ActRec *ar); -TypedValue* fg_stream_filter_append(VM::ActRec *ar); -TypedValue* fg_stream_filter_prepend(VM::ActRec *ar); -TypedValue* fg_stream_get_contents(VM::ActRec *ar); -TypedValue* fg_stream_get_filters(VM::ActRec *ar); -TypedValue* fg_stream_get_line(VM::ActRec *ar); -TypedValue* fg_stream_get_meta_data(VM::ActRec *ar); -TypedValue* fg_stream_get_transports(VM::ActRec *ar); -TypedValue* fg_stream_get_wrappers(VM::ActRec *ar); -TypedValue* fg_stream_register_wrapper(VM::ActRec *ar); -TypedValue* fg_stream_wrapper_register(VM::ActRec *ar); -TypedValue* fg_stream_wrapper_restore(VM::ActRec *ar); -TypedValue* fg_stream_wrapper_unregister(VM::ActRec *ar); -TypedValue* fg_stream_resolve_include_path(VM::ActRec *ar); -TypedValue* fg_stream_select(VM::ActRec *ar); -TypedValue* fg_stream_set_blocking(VM::ActRec *ar); -TypedValue* fg_stream_set_timeout(VM::ActRec *ar); -TypedValue* fg_stream_set_write_buffer(VM::ActRec *ar); -TypedValue* fg_set_file_buffer(VM::ActRec *ar); -TypedValue* fg_stream_socket_accept(VM::ActRec *ar); -TypedValue* fg_stream_socket_server(VM::ActRec *ar); -TypedValue* fg_stream_socket_client(VM::ActRec *ar); -TypedValue* fg_stream_socket_enable_crypto(VM::ActRec *ar); -TypedValue* fg_stream_socket_get_name(VM::ActRec *ar); -TypedValue* fg_stream_socket_pair(VM::ActRec *ar); -TypedValue* fg_stream_socket_recvfrom(VM::ActRec *ar); -TypedValue* fg_stream_socket_sendto(VM::ActRec *ar); -TypedValue* fg_stream_socket_shutdown(VM::ActRec *ar); -TypedValue* fg_addcslashes(VM::ActRec *ar); -TypedValue* fg_stripcslashes(VM::ActRec *ar); -TypedValue* fg_addslashes(VM::ActRec *ar); -TypedValue* fg_stripslashes(VM::ActRec *ar); -TypedValue* fg_bin2hex(VM::ActRec *ar); -TypedValue* fg_hex2bin(VM::ActRec *ar); -TypedValue* fg_nl2br(VM::ActRec *ar); -TypedValue* fg_quotemeta(VM::ActRec *ar); -TypedValue* fg_str_shuffle(VM::ActRec *ar); -TypedValue* fg_strrev(VM::ActRec *ar); -TypedValue* fg_strtolower(VM::ActRec *ar); -TypedValue* fg_strtoupper(VM::ActRec *ar); -TypedValue* fg_ucfirst(VM::ActRec *ar); -TypedValue* fg_lcfirst(VM::ActRec *ar); -TypedValue* fg_ucwords(VM::ActRec *ar); -TypedValue* fg_strip_tags(VM::ActRec *ar); -TypedValue* fg_trim(VM::ActRec *ar); -TypedValue* fg_ltrim(VM::ActRec *ar); -TypedValue* fg_rtrim(VM::ActRec *ar); -TypedValue* fg_chop(VM::ActRec *ar); -TypedValue* fg_explode(VM::ActRec *ar); -TypedValue* fg_implode(VM::ActRec *ar); -TypedValue* fg_join(VM::ActRec *ar); -TypedValue* fg_str_split(VM::ActRec *ar); -TypedValue* fg_chunk_split(VM::ActRec *ar); -TypedValue* fg_strtok(VM::ActRec *ar); -TypedValue* fg_str_replace(VM::ActRec *ar); -TypedValue* fg_str_ireplace(VM::ActRec *ar); -TypedValue* fg_substr_replace(VM::ActRec *ar); -TypedValue* fg_substr(VM::ActRec *ar); -TypedValue* fg_str_pad(VM::ActRec *ar); -TypedValue* fg_str_repeat(VM::ActRec *ar); -TypedValue* fg_wordwrap(VM::ActRec *ar); -TypedValue* fg_html_entity_decode(VM::ActRec *ar); -TypedValue* fg_htmlentities(VM::ActRec *ar); -TypedValue* fg_htmlspecialchars_decode(VM::ActRec *ar); -TypedValue* fg_htmlspecialchars(VM::ActRec *ar); -TypedValue* fg_fb_htmlspecialchars(VM::ActRec *ar); -TypedValue* fg_quoted_printable_encode(VM::ActRec *ar); -TypedValue* fg_quoted_printable_decode(VM::ActRec *ar); -TypedValue* fg_convert_uudecode(VM::ActRec *ar); -TypedValue* fg_convert_uuencode(VM::ActRec *ar); -TypedValue* fg_str_rot13(VM::ActRec *ar); -TypedValue* fg_crc32(VM::ActRec *ar); -TypedValue* fg_crypt(VM::ActRec *ar); -TypedValue* fg_md5(VM::ActRec *ar); -TypedValue* fg_sha1(VM::ActRec *ar); -TypedValue* fg_strtr(VM::ActRec *ar); -TypedValue* fg_convert_cyr_string(VM::ActRec *ar); -TypedValue* fg_get_html_translation_table(VM::ActRec *ar); -TypedValue* fg_hebrev(VM::ActRec *ar); -TypedValue* fg_hebrevc(VM::ActRec *ar); -TypedValue* fg_setlocale(VM::ActRec *ar); -TypedValue* fg_localeconv(VM::ActRec *ar); -TypedValue* fg_nl_langinfo(VM::ActRec *ar); -TypedValue* fg_printf(VM::ActRec *ar); -TypedValue* fg_vprintf(VM::ActRec *ar); -TypedValue* fg_sprintf(VM::ActRec *ar); -TypedValue* fg_vsprintf(VM::ActRec *ar); -TypedValue* fg_sscanf(VM::ActRec *ar); -TypedValue* fg_chr(VM::ActRec *ar); -TypedValue* fg_ord(VM::ActRec *ar); -TypedValue* fg_money_format(VM::ActRec *ar); -TypedValue* fg_number_format(VM::ActRec *ar); -TypedValue* fg_strcmp(VM::ActRec *ar); -TypedValue* fg_strncmp(VM::ActRec *ar); -TypedValue* fg_strnatcmp(VM::ActRec *ar); -TypedValue* fg_strcasecmp(VM::ActRec *ar); -TypedValue* fg_strncasecmp(VM::ActRec *ar); -TypedValue* fg_strnatcasecmp(VM::ActRec *ar); -TypedValue* fg_strcoll(VM::ActRec *ar); -TypedValue* fg_substr_compare(VM::ActRec *ar); -TypedValue* fg_strchr(VM::ActRec *ar); -TypedValue* fg_strrchr(VM::ActRec *ar); -TypedValue* fg_strstr(VM::ActRec *ar); -TypedValue* fg_stristr(VM::ActRec *ar); -TypedValue* fg_strpbrk(VM::ActRec *ar); -TypedValue* fg_strpos(VM::ActRec *ar); -TypedValue* fg_stripos(VM::ActRec *ar); -TypedValue* fg_strrpos(VM::ActRec *ar); -TypedValue* fg_strripos(VM::ActRec *ar); -TypedValue* fg_substr_count(VM::ActRec *ar); -TypedValue* fg_strspn(VM::ActRec *ar); -TypedValue* fg_strcspn(VM::ActRec *ar); -TypedValue* fg_strlen(VM::ActRec *ar); -TypedValue* fg_count_chars(VM::ActRec *ar); -TypedValue* fg_str_word_count(VM::ActRec *ar); -TypedValue* fg_levenshtein(VM::ActRec *ar); -TypedValue* fg_similar_text(VM::ActRec *ar); -TypedValue* fg_soundex(VM::ActRec *ar); -TypedValue* fg_metaphone(VM::ActRec *ar); -TypedValue* fg_parse_str(VM::ActRec *ar); -TypedValue* fg_hphp_is_service_thread(VM::ActRec *ar); -TypedValue* fg_hphp_service_thread_started(VM::ActRec *ar); -TypedValue* fg_hphp_service_thread_stopped(VM::ActRec *ar); -TypedValue* fg_hphp_thread_is_warmup_enabled(VM::ActRec *ar); -TypedValue* fg_hphp_thread_set_warmup_enabled(VM::ActRec *ar); -TypedValue* fg_hphp_get_thread_id(VM::ActRec *ar); -TypedValue* fg_hphp_gettid(VM::ActRec *ar); -TypedValue* fg_thrift_protocol_write_binary(VM::ActRec *ar); -TypedValue* fg_thrift_protocol_read_binary(VM::ActRec *ar); -TypedValue* fg_thrift_protocol_set_compact_version(VM::ActRec *ar); -TypedValue* fg_thrift_protocol_write_compact(VM::ActRec *ar); -TypedValue* fg_thrift_protocol_read_compact(VM::ActRec *ar); -TypedValue* fg_base64_decode(VM::ActRec *ar); -TypedValue* fg_base64_encode(VM::ActRec *ar); -TypedValue* fg_get_headers(VM::ActRec *ar); -TypedValue* fg_get_meta_tags(VM::ActRec *ar); -TypedValue* fg_http_build_query(VM::ActRec *ar); -TypedValue* fg_parse_url(VM::ActRec *ar); -TypedValue* fg_rawurldecode(VM::ActRec *ar); -TypedValue* fg_rawurlencode(VM::ActRec *ar); -TypedValue* fg_urldecode(VM::ActRec *ar); -TypedValue* fg_urlencode(VM::ActRec *ar); -TypedValue* fg_is_bool(VM::ActRec *ar); -TypedValue* fg_is_int(VM::ActRec *ar); -TypedValue* fg_is_integer(VM::ActRec *ar); -TypedValue* fg_is_long(VM::ActRec *ar); -TypedValue* fg_is_double(VM::ActRec *ar); -TypedValue* fg_is_float(VM::ActRec *ar); -TypedValue* fg_is_numeric(VM::ActRec *ar); -TypedValue* fg_is_real(VM::ActRec *ar); -TypedValue* fg_is_string(VM::ActRec *ar); -TypedValue* fg_is_scalar(VM::ActRec *ar); -TypedValue* fg_is_array(VM::ActRec *ar); -TypedValue* fg_is_object(VM::ActRec *ar); -TypedValue* fg_is_resource(VM::ActRec *ar); -TypedValue* fg_is_null(VM::ActRec *ar); -TypedValue* fg_gettype(VM::ActRec *ar); -TypedValue* fg_get_resource_type(VM::ActRec *ar); -TypedValue* fg_intval(VM::ActRec *ar); -TypedValue* fg_doubleval(VM::ActRec *ar); -TypedValue* fg_floatval(VM::ActRec *ar); -TypedValue* fg_strval(VM::ActRec *ar); -TypedValue* fg_settype(VM::ActRec *ar); -TypedValue* fg_print_r(VM::ActRec *ar); -TypedValue* fg_var_export(VM::ActRec *ar); -TypedValue* fg_var_dump(VM::ActRec *ar); -TypedValue* fg_debug_zval_dump(VM::ActRec *ar); -TypedValue* fg_serialize(VM::ActRec *ar); -TypedValue* fg_unserialize(VM::ActRec *ar); -TypedValue* fg_get_defined_vars(VM::ActRec *ar); -TypedValue* fg_import_request_variables(VM::ActRec *ar); -TypedValue* fg_extract(VM::ActRec *ar); -TypedValue* fg_xml_parser_create(VM::ActRec *ar); -TypedValue* fg_xml_parser_free(VM::ActRec *ar); -TypedValue* fg_xml_parse(VM::ActRec *ar); -TypedValue* fg_xml_parse_into_struct(VM::ActRec *ar); -TypedValue* fg_xml_parser_create_ns(VM::ActRec *ar); -TypedValue* fg_xml_parser_get_option(VM::ActRec *ar); -TypedValue* fg_xml_parser_set_option(VM::ActRec *ar); -TypedValue* fg_xml_set_character_data_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_default_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_element_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_processing_instruction_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_start_namespace_decl_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_end_namespace_decl_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_unparsed_entity_decl_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_external_entity_ref_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_notation_decl_handler(VM::ActRec *ar); -TypedValue* fg_xml_set_object(VM::ActRec *ar); -TypedValue* fg_xml_get_current_byte_index(VM::ActRec *ar); -TypedValue* fg_xml_get_current_column_number(VM::ActRec *ar); -TypedValue* fg_xml_get_current_line_number(VM::ActRec *ar); -TypedValue* fg_xml_get_error_code(VM::ActRec *ar); -TypedValue* fg_xml_error_string(VM::ActRec *ar); -TypedValue* fg_utf8_decode(VM::ActRec *ar); -TypedValue* fg_utf8_encode(VM::ActRec *ar); -TypedValue* fg_xmlwriter_open_memory(VM::ActRec *ar); -TypedValue* fg_xmlwriter_open_uri(VM::ActRec *ar); -TypedValue* fg_xmlwriter_set_indent_string(VM::ActRec *ar); -TypedValue* fg_xmlwriter_set_indent(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_document(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_element(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_element_ns(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_element_ns(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_element(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_element(VM::ActRec *ar); -TypedValue* fg_xmlwriter_full_end_element(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_attribute_ns(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_attribute(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_attribute_ns(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_attribute(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_attribute(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_cdata(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_cdata(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_cdata(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_comment(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_comment(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_comment(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_document(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_pi(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_pi(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_pi(VM::ActRec *ar); -TypedValue* fg_xmlwriter_text(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_raw(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_dtd(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_dtd(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_dtd_element(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_dtd_element(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_dtd_element(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_dtd_attlist(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_dtd_attlist(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_dtd_attlist(VM::ActRec *ar); -TypedValue* fg_xmlwriter_start_dtd_entity(VM::ActRec *ar); -TypedValue* fg_xmlwriter_write_dtd_entity(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_dtd_entity(VM::ActRec *ar); -TypedValue* fg_xmlwriter_end_dtd(VM::ActRec *ar); -TypedValue* fg_xmlwriter_flush(VM::ActRec *ar); -TypedValue* fg_xmlwriter_output_memory(VM::ActRec *ar); -TypedValue* fg_readgzfile(VM::ActRec *ar); -TypedValue* fg_gzfile(VM::ActRec *ar); -TypedValue* fg_gzcompress(VM::ActRec *ar); -TypedValue* fg_gzuncompress(VM::ActRec *ar); -TypedValue* fg_gzdeflate(VM::ActRec *ar); -TypedValue* fg_gzinflate(VM::ActRec *ar); -TypedValue* fg_gzencode(VM::ActRec *ar); -TypedValue* fg_gzdecode(VM::ActRec *ar); -TypedValue* fg_zlib_get_coding_type(VM::ActRec *ar); -TypedValue* fg_gzopen(VM::ActRec *ar); -TypedValue* fg_gzclose(VM::ActRec *ar); -TypedValue* fg_gzrewind(VM::ActRec *ar); -TypedValue* fg_gzeof(VM::ActRec *ar); -TypedValue* fg_gzgetc(VM::ActRec *ar); -TypedValue* fg_gzgets(VM::ActRec *ar); -TypedValue* fg_gzgetss(VM::ActRec *ar); -TypedValue* fg_gzread(VM::ActRec *ar); -TypedValue* fg_gzpassthru(VM::ActRec *ar); -TypedValue* fg_gzseek(VM::ActRec *ar); -TypedValue* fg_gztell(VM::ActRec *ar); -TypedValue* fg_gzwrite(VM::ActRec *ar); -TypedValue* fg_gzputs(VM::ActRec *ar); -TypedValue* fg_qlzcompress(VM::ActRec *ar); -TypedValue* fg_qlzuncompress(VM::ActRec *ar); -TypedValue* fg_sncompress(VM::ActRec *ar); -TypedValue* fg_snuncompress(VM::ActRec *ar); -TypedValue* fg_nzcompress(VM::ActRec *ar); -TypedValue* fg_nzuncompress(VM::ActRec *ar); -TypedValue* fg_lz4compress(VM::ActRec *ar); -TypedValue* fg_lz4hccompress(VM::ActRec *ar); -TypedValue* fg_lz4uncompress(VM::ActRec *ar); -TypedValue* tg_10WaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_getWaitHandle(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_import(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_join(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_isFinished(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_isSucceeded(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_isFailed(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_getID(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_getName(VM::ActRec *ar); -TypedValue* tg_10WaitHandle_getExceptionIfFailed(VM::ActRec *ar); -TypedValue* tg_16StaticWaitHandle___construct(VM::ActRec *ar); +struct TypedValue; +struct ActRec; +namespace VM { struct Class; } +TypedValue* fg_apache_note(ActRec *ar); +TypedValue* fg_apache_request_headers(ActRec *ar); +TypedValue* fg_apache_response_headers(ActRec *ar); +TypedValue* fg_apache_setenv(ActRec *ar); +TypedValue* fg_getallheaders(ActRec *ar); +TypedValue* fg_virtual(ActRec *ar); +TypedValue* fg_apache_get_config(ActRec *ar); +TypedValue* fg_apache_get_scoreboard(ActRec *ar); +TypedValue* fg_apache_get_rewrite_rules(ActRec *ar); +TypedValue* fg_apc_add(ActRec *ar); +TypedValue* fg_apc_store(ActRec *ar); +TypedValue* fg_apc_fetch(ActRec *ar); +TypedValue* fg_apc_delete(ActRec *ar); +TypedValue* fg_apc_compile_file(ActRec *ar); +TypedValue* fg_apc_cache_info(ActRec *ar); +TypedValue* fg_apc_clear_cache(ActRec *ar); +TypedValue* fg_apc_define_constants(ActRec *ar); +TypedValue* fg_apc_load_constants(ActRec *ar); +TypedValue* fg_apc_sma_info(ActRec *ar); +TypedValue* fg_apc_filehits(ActRec *ar); +TypedValue* fg_apc_delete_file(ActRec *ar); +TypedValue* fg_apc_inc(ActRec *ar); +TypedValue* fg_apc_dec(ActRec *ar); +TypedValue* fg_apc_cas(ActRec *ar); +TypedValue* fg_apc_exists(ActRec *ar); +TypedValue* fg_apc_bin_dump(ActRec *ar); +TypedValue* fg_apc_bin_load(ActRec *ar); +TypedValue* fg_apc_bin_dumpfile(ActRec *ar); +TypedValue* fg_apc_bin_loadfile(ActRec *ar); +TypedValue* fg_override_function(ActRec *ar); +TypedValue* fg_rename_function(ActRec *ar); +TypedValue* fg_apd_set_browser_trace(ActRec *ar); +TypedValue* fg_apd_set_pprof_trace(ActRec *ar); +TypedValue* fg_apd_set_session_trace_socket(ActRec *ar); +TypedValue* fg_apd_stop_trace(ActRec *ar); +TypedValue* fg_apd_breakpoint(ActRec *ar); +TypedValue* fg_apd_continue(ActRec *ar); +TypedValue* fg_apd_echo(ActRec *ar); +TypedValue* fg_array_change_key_case(ActRec *ar); +TypedValue* fg_array_chunk(ActRec *ar); +TypedValue* fg_array_column(ActRec *ar); +TypedValue* fg_array_combine(ActRec *ar); +TypedValue* fg_array_count_values(ActRec *ar); +TypedValue* fg_array_fill_keys(ActRec *ar); +TypedValue* fg_array_fill(ActRec *ar); +TypedValue* fg_array_filter(ActRec *ar); +TypedValue* fg_array_flip(ActRec *ar); +TypedValue* fg_array_key_exists(ActRec *ar); +TypedValue* fg_key_exists(ActRec *ar); +TypedValue* fg_array_keys(ActRec *ar); +TypedValue* fg_array_map(ActRec *ar); +TypedValue* fg_array_merge_recursive(ActRec *ar); +TypedValue* fg_array_merge(ActRec *ar); +TypedValue* fg_array_replace_recursive(ActRec *ar); +TypedValue* fg_array_replace(ActRec *ar); +TypedValue* fg_array_multisort(ActRec *ar); +TypedValue* fg_array_pad(ActRec *ar); +TypedValue* fg_array_pop(ActRec *ar); +TypedValue* fg_array_product(ActRec *ar); +TypedValue* fg_array_push(ActRec *ar); +TypedValue* fg_array_rand(ActRec *ar); +TypedValue* fg_array_reduce(ActRec *ar); +TypedValue* fg_array_reverse(ActRec *ar); +TypedValue* fg_array_search(ActRec *ar); +TypedValue* fg_array_shift(ActRec *ar); +TypedValue* fg_array_slice(ActRec *ar); +TypedValue* fg_array_splice(ActRec *ar); +TypedValue* fg_array_sum(ActRec *ar); +TypedValue* fg_array_unique(ActRec *ar); +TypedValue* fg_array_unshift(ActRec *ar); +TypedValue* fg_array_values(ActRec *ar); +TypedValue* fg_array_walk_recursive(ActRec *ar); +TypedValue* fg_array_walk(ActRec *ar); +TypedValue* fg_compact(ActRec *ar); +TypedValue* fg_shuffle(ActRec *ar); +TypedValue* fg_count(ActRec *ar); +TypedValue* fg_sizeof(ActRec *ar); +TypedValue* fg_each(ActRec *ar); +TypedValue* fg_current(ActRec *ar); +TypedValue* fg_hphp_current_ref(ActRec *ar); +TypedValue* fg_next(ActRec *ar); +TypedValue* fg_pos(ActRec *ar); +TypedValue* fg_prev(ActRec *ar); +TypedValue* fg_reset(ActRec *ar); +TypedValue* fg_end(ActRec *ar); +TypedValue* fg_key(ActRec *ar); +TypedValue* fg_hphp_get_iterator(ActRec *ar); +TypedValue* fg_hphp_get_mutable_iterator(ActRec *ar); +TypedValue* fg_in_array(ActRec *ar); +TypedValue* fg_range(ActRec *ar); +TypedValue* fg_array_diff(ActRec *ar); +TypedValue* fg_array_udiff(ActRec *ar); +TypedValue* fg_array_diff_assoc(ActRec *ar); +TypedValue* fg_array_diff_uassoc(ActRec *ar); +TypedValue* fg_array_udiff_assoc(ActRec *ar); +TypedValue* fg_array_udiff_uassoc(ActRec *ar); +TypedValue* fg_array_diff_key(ActRec *ar); +TypedValue* fg_array_diff_ukey(ActRec *ar); +TypedValue* fg_array_intersect(ActRec *ar); +TypedValue* fg_array_uintersect(ActRec *ar); +TypedValue* fg_array_intersect_assoc(ActRec *ar); +TypedValue* fg_array_intersect_uassoc(ActRec *ar); +TypedValue* fg_array_uintersect_assoc(ActRec *ar); +TypedValue* fg_array_uintersect_uassoc(ActRec *ar); +TypedValue* fg_array_intersect_key(ActRec *ar); +TypedValue* fg_array_intersect_ukey(ActRec *ar); +TypedValue* fg_sort(ActRec *ar); +TypedValue* fg_rsort(ActRec *ar); +TypedValue* fg_asort(ActRec *ar); +TypedValue* fg_arsort(ActRec *ar); +TypedValue* fg_ksort(ActRec *ar); +TypedValue* fg_krsort(ActRec *ar); +TypedValue* fg_usort(ActRec *ar); +TypedValue* fg_uasort(ActRec *ar); +TypedValue* fg_uksort(ActRec *ar); +TypedValue* fg_natsort(ActRec *ar); +TypedValue* fg_natcasesort(ActRec *ar); +TypedValue* fg_i18n_loc_get_default(ActRec *ar); +TypedValue* fg_i18n_loc_set_default(ActRec *ar); +TypedValue* fg_i18n_loc_set_attribute(ActRec *ar); +TypedValue* fg_i18n_loc_set_strength(ActRec *ar); +TypedValue* fg_i18n_loc_get_error_code(ActRec *ar); +TypedValue* fg_asio_enter_context(ActRec *ar); +TypedValue* fg_asio_exit_context(ActRec *ar); +TypedValue* fg_asio_get_current_context_idx(ActRec *ar); +TypedValue* fg_asio_get_running_in_context(ActRec *ar); +TypedValue* fg_asio_get_running(ActRec *ar); +TypedValue* fg_asio_get_current(ActRec *ar); +TypedValue* fg_asio_set_on_failed_callback(ActRec *ar); +TypedValue* fg_asio_set_on_started_callback(ActRec *ar); +TypedValue* fg_bcscale(ActRec *ar); +TypedValue* fg_bcadd(ActRec *ar); +TypedValue* fg_bcsub(ActRec *ar); +TypedValue* fg_bccomp(ActRec *ar); +TypedValue* fg_bcmul(ActRec *ar); +TypedValue* fg_bcdiv(ActRec *ar); +TypedValue* fg_bcmod(ActRec *ar); +TypedValue* fg_bcpow(ActRec *ar); +TypedValue* fg_bcpowmod(ActRec *ar); +TypedValue* fg_bcsqrt(ActRec *ar); +TypedValue* fg_bzclose(ActRec *ar); +TypedValue* fg_bzopen(ActRec *ar); +TypedValue* fg_bzread(ActRec *ar); +TypedValue* fg_bzwrite(ActRec *ar); +TypedValue* fg_bzflush(ActRec *ar); +TypedValue* fg_bzerrstr(ActRec *ar); +TypedValue* fg_bzerror(ActRec *ar); +TypedValue* fg_bzerrno(ActRec *ar); +TypedValue* fg_bzcompress(ActRec *ar); +TypedValue* fg_bzdecompress(ActRec *ar); +TypedValue* fg_get_declared_classes(ActRec *ar); +TypedValue* fg_get_declared_interfaces(ActRec *ar); +TypedValue* fg_get_declared_traits(ActRec *ar); +TypedValue* fg_class_exists(ActRec *ar); +TypedValue* fg_interface_exists(ActRec *ar); +TypedValue* fg_trait_exists(ActRec *ar); +TypedValue* fg_get_class_methods(ActRec *ar); +TypedValue* fg_get_class_vars(ActRec *ar); +TypedValue* fg_get_class_constants(ActRec *ar); +TypedValue* fg_get_class(ActRec *ar); +TypedValue* fg_get_parent_class(ActRec *ar); +TypedValue* fg_is_a(ActRec *ar); +TypedValue* fg_is_subclass_of(ActRec *ar); +TypedValue* fg_method_exists(ActRec *ar); +TypedValue* fg_property_exists(ActRec *ar); +TypedValue* fg_get_object_vars(ActRec *ar); +TypedValue* fg_call_user_method_array(ActRec *ar); +TypedValue* fg_call_user_method(ActRec *ar); +TypedValue* fg_hphp_create_continuation(ActRec *ar); +TypedValue* fg_ctype_alnum(ActRec *ar); +TypedValue* fg_ctype_alpha(ActRec *ar); +TypedValue* fg_ctype_cntrl(ActRec *ar); +TypedValue* fg_ctype_digit(ActRec *ar); +TypedValue* fg_ctype_graph(ActRec *ar); +TypedValue* fg_ctype_lower(ActRec *ar); +TypedValue* fg_ctype_print(ActRec *ar); +TypedValue* fg_ctype_punct(ActRec *ar); +TypedValue* fg_ctype_space(ActRec *ar); +TypedValue* fg_ctype_upper(ActRec *ar); +TypedValue* fg_ctype_xdigit(ActRec *ar); +TypedValue* fg_curl_init(ActRec *ar); +TypedValue* fg_curl_copy_handle(ActRec *ar); +TypedValue* fg_curl_version(ActRec *ar); +TypedValue* fg_curl_setopt(ActRec *ar); +TypedValue* fg_curl_setopt_array(ActRec *ar); +TypedValue* fg_fb_curl_getopt(ActRec *ar); +TypedValue* fg_curl_exec(ActRec *ar); +TypedValue* fg_curl_getinfo(ActRec *ar); +TypedValue* fg_curl_errno(ActRec *ar); +TypedValue* fg_curl_error(ActRec *ar); +TypedValue* fg_curl_close(ActRec *ar); +TypedValue* fg_curl_multi_init(ActRec *ar); +TypedValue* fg_curl_multi_add_handle(ActRec *ar); +TypedValue* fg_curl_multi_remove_handle(ActRec *ar); +TypedValue* fg_curl_multi_exec(ActRec *ar); +TypedValue* fg_curl_multi_select(ActRec *ar); +TypedValue* fg_fb_curl_multi_fdset(ActRec *ar); +TypedValue* fg_curl_multi_getcontent(ActRec *ar); +TypedValue* fg_curl_multi_info_read(ActRec *ar); +TypedValue* fg_curl_multi_close(ActRec *ar); +TypedValue* fg_evhttp_set_cache(ActRec *ar); +TypedValue* fg_evhttp_get(ActRec *ar); +TypedValue* fg_evhttp_post(ActRec *ar); +TypedValue* fg_evhttp_async_get(ActRec *ar); +TypedValue* fg_evhttp_async_post(ActRec *ar); +TypedValue* fg_evhttp_recv(ActRec *ar); +TypedValue* fg_checkdate(ActRec *ar); +TypedValue* fg_date_add(ActRec *ar); +TypedValue* fg_date_create_from_format(ActRec *ar); +TypedValue* fg_date_create(ActRec *ar); +TypedValue* fg_date_date_set(ActRec *ar); +TypedValue* fg_date_default_timezone_get(ActRec *ar); +TypedValue* fg_date_default_timezone_set(ActRec *ar); +TypedValue* fg_date_diff(ActRec *ar); +TypedValue* fg_date_format(ActRec *ar); +TypedValue* fg_date_get_last_errors(ActRec *ar); +TypedValue* fg_date_interval_create_from_date_string(ActRec *ar); +TypedValue* fg_date_interval_format(ActRec *ar); +TypedValue* fg_date_isodate_set(ActRec *ar); +TypedValue* fg_date_modify(ActRec *ar); +TypedValue* fg_date_offset_get(ActRec *ar); +TypedValue* fg_date_parse(ActRec *ar); +TypedValue* fg_date_sub(ActRec *ar); +TypedValue* fg_date_sun_info(ActRec *ar); +TypedValue* fg_date_sunrise(ActRec *ar); +TypedValue* fg_date_sunset(ActRec *ar); +TypedValue* fg_date_time_set(ActRec *ar); +TypedValue* fg_date_timestamp_get(ActRec *ar); +TypedValue* fg_date_timestamp_set(ActRec *ar); +TypedValue* fg_date_timezone_get(ActRec *ar); +TypedValue* fg_date_timezone_set(ActRec *ar); +TypedValue* fg_date(ActRec *ar); +TypedValue* fg_getdate(ActRec *ar); +TypedValue* fg_gettimeofday(ActRec *ar); +TypedValue* fg_gmdate(ActRec *ar); +TypedValue* fg_gmmktime(ActRec *ar); +TypedValue* fg_gmstrftime(ActRec *ar); +TypedValue* fg_idate(ActRec *ar); +TypedValue* fg_localtime(ActRec *ar); +TypedValue* fg_microtime(ActRec *ar); +TypedValue* fg_mktime(ActRec *ar); +TypedValue* fg_strftime(ActRec *ar); +TypedValue* fg_strptime(ActRec *ar); +TypedValue* fg_strtotime(ActRec *ar); +TypedValue* fg_time(ActRec *ar); +TypedValue* fg_timezone_abbreviations_list(ActRec *ar); +TypedValue* fg_timezone_identifiers_list(ActRec *ar); +TypedValue* fg_timezone_location_get(ActRec *ar); +TypedValue* fg_timezone_name_from_abbr(ActRec *ar); +TypedValue* fg_timezone_name_get(ActRec *ar); +TypedValue* fg_timezone_offset_get(ActRec *ar); +TypedValue* fg_timezone_open(ActRec *ar); +TypedValue* fg_timezone_transitions_get(ActRec *ar); +TypedValue* fg_timezone_version_get(ActRec *ar); +TypedValue* fg_hphpd_install_user_command(ActRec *ar); +TypedValue* fg_hphpd_get_user_commands(ActRec *ar); +TypedValue* fg_hphpd_break(ActRec *ar); +TypedValue* fg_hphpd_get_client(ActRec *ar); +TypedValue* fg_hphpd_client_ctrl(ActRec *ar); +TypedValue* fg_dom_document_create_element(ActRec *ar); +TypedValue* fg_dom_document_create_document_fragment(ActRec *ar); +TypedValue* fg_dom_document_create_text_node(ActRec *ar); +TypedValue* fg_dom_document_create_comment(ActRec *ar); +TypedValue* fg_dom_document_create_cdatasection(ActRec *ar); +TypedValue* fg_dom_document_create_processing_instruction(ActRec *ar); +TypedValue* fg_dom_document_create_attribute(ActRec *ar); +TypedValue* fg_dom_document_create_entity_reference(ActRec *ar); +TypedValue* fg_dom_document_get_elements_by_tag_name(ActRec *ar); +TypedValue* fg_dom_document_import_node(ActRec *ar); +TypedValue* fg_dom_document_create_element_ns(ActRec *ar); +TypedValue* fg_dom_document_create_attribute_ns(ActRec *ar); +TypedValue* fg_dom_document_get_elements_by_tag_name_ns(ActRec *ar); +TypedValue* fg_dom_document_get_element_by_id(ActRec *ar); +TypedValue* fg_dom_document_normalize_document(ActRec *ar); +TypedValue* fg_dom_document_save(ActRec *ar); +TypedValue* fg_dom_document_savexml(ActRec *ar); +TypedValue* fg_dom_document_validate(ActRec *ar); +TypedValue* fg_dom_document_xinclude(ActRec *ar); +TypedValue* fg_dom_document_save_html(ActRec *ar); +TypedValue* fg_dom_document_save_html_file(ActRec *ar); +TypedValue* fg_dom_document_schema_validate_file(ActRec *ar); +TypedValue* fg_dom_document_schema_validate_xml(ActRec *ar); +TypedValue* fg_dom_document_relaxng_validate_file(ActRec *ar); +TypedValue* fg_dom_document_relaxng_validate_xml(ActRec *ar); +TypedValue* fg_dom_node_insert_before(ActRec *ar); +TypedValue* fg_dom_node_replace_child(ActRec *ar); +TypedValue* fg_dom_node_remove_child(ActRec *ar); +TypedValue* fg_dom_node_append_child(ActRec *ar); +TypedValue* fg_dom_node_has_child_nodes(ActRec *ar); +TypedValue* fg_dom_node_clone_node(ActRec *ar); +TypedValue* fg_dom_node_normalize(ActRec *ar); +TypedValue* fg_dom_node_is_supported(ActRec *ar); +TypedValue* fg_dom_node_has_attributes(ActRec *ar); +TypedValue* fg_dom_node_is_same_node(ActRec *ar); +TypedValue* fg_dom_node_lookup_prefix(ActRec *ar); +TypedValue* fg_dom_node_is_default_namespace(ActRec *ar); +TypedValue* fg_dom_node_lookup_namespace_uri(ActRec *ar); +TypedValue* fg_dom_nodelist_item(ActRec *ar); +TypedValue* fg_dom_namednodemap_get_named_item(ActRec *ar); +TypedValue* fg_dom_namednodemap_item(ActRec *ar); +TypedValue* fg_dom_namednodemap_get_named_item_ns(ActRec *ar); +TypedValue* fg_dom_characterdata_substring_data(ActRec *ar); +TypedValue* fg_dom_characterdata_append_data(ActRec *ar); +TypedValue* fg_dom_characterdata_insert_data(ActRec *ar); +TypedValue* fg_dom_characterdata_delete_data(ActRec *ar); +TypedValue* fg_dom_characterdata_replace_data(ActRec *ar); +TypedValue* fg_dom_attr_is_id(ActRec *ar); +TypedValue* fg_dom_element_get_attribute(ActRec *ar); +TypedValue* fg_dom_element_set_attribute(ActRec *ar); +TypedValue* fg_dom_element_remove_attribute(ActRec *ar); +TypedValue* fg_dom_element_get_attribute_node(ActRec *ar); +TypedValue* fg_dom_element_set_attribute_node(ActRec *ar); +TypedValue* fg_dom_element_remove_attribute_node(ActRec *ar); +TypedValue* fg_dom_element_get_elements_by_tag_name(ActRec *ar); +TypedValue* fg_dom_element_get_attribute_ns(ActRec *ar); +TypedValue* fg_dom_element_set_attribute_ns(ActRec *ar); +TypedValue* fg_dom_element_remove_attribute_ns(ActRec *ar); +TypedValue* fg_dom_element_get_attribute_node_ns(ActRec *ar); +TypedValue* fg_dom_element_set_attribute_node_ns(ActRec *ar); +TypedValue* fg_dom_element_get_elements_by_tag_name_ns(ActRec *ar); +TypedValue* fg_dom_element_has_attribute(ActRec *ar); +TypedValue* fg_dom_element_has_attribute_ns(ActRec *ar); +TypedValue* fg_dom_element_set_id_attribute(ActRec *ar); +TypedValue* fg_dom_element_set_id_attribute_ns(ActRec *ar); +TypedValue* fg_dom_element_set_id_attribute_node(ActRec *ar); +TypedValue* fg_dom_text_split_text(ActRec *ar); +TypedValue* fg_dom_text_is_whitespace_in_element_content(ActRec *ar); +TypedValue* fg_dom_xpath_register_ns(ActRec *ar); +TypedValue* fg_dom_xpath_query(ActRec *ar); +TypedValue* fg_dom_xpath_evaluate(ActRec *ar); +TypedValue* fg_dom_xpath_register_php_functions(ActRec *ar); +TypedValue* fg_debug_backtrace(ActRec *ar); +TypedValue* fg_debug_print_backtrace(ActRec *ar); +TypedValue* fg_error_get_last(ActRec *ar); +TypedValue* fg_error_log(ActRec *ar); +TypedValue* fg_error_reporting(ActRec *ar); +TypedValue* fg_restore_error_handler(ActRec *ar); +TypedValue* fg_restore_exception_handler(ActRec *ar); +TypedValue* fg_set_error_handler(ActRec *ar); +TypedValue* fg_set_exception_handler(ActRec *ar); +TypedValue* fg_hphp_set_error_page(ActRec *ar); +TypedValue* fg_hphp_throw_fatal_error(ActRec *ar); +TypedValue* fg_hphp_clear_unflushed(ActRec *ar); +TypedValue* fg_hphp_debug_caller_info(ActRec *ar); +TypedValue* fg_trigger_error(ActRec *ar); +TypedValue* fg_user_error(ActRec *ar); +TypedValue* fg_fb_thrift_serialize(ActRec *ar); +TypedValue* fg_fb_thrift_unserialize(ActRec *ar); +TypedValue* fg_fb_serialize(ActRec *ar); +TypedValue* fg_fb_unserialize(ActRec *ar); +TypedValue* fg_fb_compact_serialize(ActRec *ar); +TypedValue* fg_fb_compact_unserialize(ActRec *ar); +TypedValue* fg_fb_could_include(ActRec *ar); +TypedValue* fg_fb_intercept(ActRec *ar); +TypedValue* fg_fb_stubout_intercept_handler(ActRec *ar); +TypedValue* fg_fb_rpc_intercept_handler(ActRec *ar); +TypedValue* fg_fb_renamed_functions(ActRec *ar); +TypedValue* fg_fb_rename_function(ActRec *ar); +TypedValue* fg_fb_autoload_map(ActRec *ar); +TypedValue* fg_fb_utf8ize(ActRec *ar); +TypedValue* fg_fb_utf8_strlen_deprecated(ActRec *ar); +TypedValue* fg_fb_utf8_strlen(ActRec *ar); +TypedValue* fg_fb_utf8_substr(ActRec *ar); +TypedValue* fg_fb_call_user_func_safe(ActRec *ar); +TypedValue* fg_fb_call_user_func_safe_return(ActRec *ar); +TypedValue* fg_fb_call_user_func_array_safe(ActRec *ar); +TypedValue* fg_fb_get_code_coverage(ActRec *ar); +TypedValue* fg_fb_enable_code_coverage(ActRec *ar); +TypedValue* fg_fb_disable_code_coverage(ActRec *ar); +TypedValue* fg_xhprof_enable(ActRec *ar); +TypedValue* fg_xhprof_disable(ActRec *ar); +TypedValue* fg_xhprof_network_enable(ActRec *ar); +TypedValue* fg_xhprof_network_disable(ActRec *ar); +TypedValue* fg_xhprof_frame_begin(ActRec *ar); +TypedValue* fg_xhprof_frame_end(ActRec *ar); +TypedValue* fg_xhprof_run_trace(ActRec *ar); +TypedValue* fg_xhprof_sample_enable(ActRec *ar); +TypedValue* fg_xhprof_sample_disable(ActRec *ar); +TypedValue* fg_fb_load_local_databases(ActRec *ar); +TypedValue* fg_fb_parallel_query(ActRec *ar); +TypedValue* fg_fb_crossall_query(ActRec *ar); +TypedValue* fg_fb_const_fetch(ActRec *ar); +TypedValue* fg_fb_output_compression(ActRec *ar); +TypedValue* fg_fb_set_exit_callback(ActRec *ar); +TypedValue* fg_fb_get_flush_stat(ActRec *ar); +TypedValue* fg_fb_get_last_flush_size(ActRec *ar); +TypedValue* fg_fb_lazy_stat(ActRec *ar); +TypedValue* fg_fb_lazy_lstat(ActRec *ar); +TypedValue* fg_fb_lazy_realpath(ActRec *ar); +TypedValue* fg_fb_setprofile(ActRec *ar); +TypedValue* fg_fb_gc_collect_cycles(ActRec *ar); +TypedValue* fg_fb_gc_detect_cycles(ActRec *ar); +TypedValue* fg_fopen(ActRec *ar); +TypedValue* fg_popen(ActRec *ar); +TypedValue* fg_fclose(ActRec *ar); +TypedValue* fg_pclose(ActRec *ar); +TypedValue* fg_fseek(ActRec *ar); +TypedValue* fg_rewind(ActRec *ar); +TypedValue* fg_ftell(ActRec *ar); +TypedValue* fg_feof(ActRec *ar); +TypedValue* fg_fstat(ActRec *ar); +TypedValue* fg_fread(ActRec *ar); +TypedValue* fg_fgetc(ActRec *ar); +TypedValue* fg_fgets(ActRec *ar); +TypedValue* fg_fgetss(ActRec *ar); +TypedValue* fg_fscanf(ActRec *ar); +TypedValue* fg_fpassthru(ActRec *ar); +TypedValue* fg_fwrite(ActRec *ar); +TypedValue* fg_fputs(ActRec *ar); +TypedValue* fg_fprintf(ActRec *ar); +TypedValue* fg_vfprintf(ActRec *ar); +TypedValue* fg_fflush(ActRec *ar); +TypedValue* fg_ftruncate(ActRec *ar); +TypedValue* fg_flock(ActRec *ar); +TypedValue* fg_fputcsv(ActRec *ar); +TypedValue* fg_fgetcsv(ActRec *ar); +TypedValue* fg_file_get_contents(ActRec *ar); +TypedValue* fg_file_put_contents(ActRec *ar); +TypedValue* fg_file(ActRec *ar); +TypedValue* fg_readfile(ActRec *ar); +TypedValue* fg_move_uploaded_file(ActRec *ar); +TypedValue* fg_parse_ini_file(ActRec *ar); +TypedValue* fg_parse_ini_string(ActRec *ar); +TypedValue* fg_parse_hdf_file(ActRec *ar); +TypedValue* fg_parse_hdf_string(ActRec *ar); +TypedValue* fg_write_hdf_file(ActRec *ar); +TypedValue* fg_write_hdf_string(ActRec *ar); +TypedValue* fg_md5_file(ActRec *ar); +TypedValue* fg_sha1_file(ActRec *ar); +TypedValue* fg_chmod(ActRec *ar); +TypedValue* fg_chown(ActRec *ar); +TypedValue* fg_lchown(ActRec *ar); +TypedValue* fg_chgrp(ActRec *ar); +TypedValue* fg_lchgrp(ActRec *ar); +TypedValue* fg_touch(ActRec *ar); +TypedValue* fg_copy(ActRec *ar); +TypedValue* fg_rename(ActRec *ar); +TypedValue* fg_umask(ActRec *ar); +TypedValue* fg_unlink(ActRec *ar); +TypedValue* fg_link(ActRec *ar); +TypedValue* fg_symlink(ActRec *ar); +TypedValue* fg_basename(ActRec *ar); +TypedValue* fg_fnmatch(ActRec *ar); +TypedValue* fg_glob(ActRec *ar); +TypedValue* fg_tempnam(ActRec *ar); +TypedValue* fg_tmpfile(ActRec *ar); +TypedValue* fg_fileperms(ActRec *ar); +TypedValue* fg_fileinode(ActRec *ar); +TypedValue* fg_filesize(ActRec *ar); +TypedValue* fg_fileowner(ActRec *ar); +TypedValue* fg_filegroup(ActRec *ar); +TypedValue* fg_fileatime(ActRec *ar); +TypedValue* fg_filemtime(ActRec *ar); +TypedValue* fg_filectime(ActRec *ar); +TypedValue* fg_filetype(ActRec *ar); +TypedValue* fg_linkinfo(ActRec *ar); +TypedValue* fg_is_writable(ActRec *ar); +TypedValue* fg_is_writeable(ActRec *ar); +TypedValue* fg_is_readable(ActRec *ar); +TypedValue* fg_is_executable(ActRec *ar); +TypedValue* fg_is_file(ActRec *ar); +TypedValue* fg_is_dir(ActRec *ar); +TypedValue* fg_is_link(ActRec *ar); +TypedValue* fg_is_uploaded_file(ActRec *ar); +TypedValue* fg_file_exists(ActRec *ar); +TypedValue* fg_stat(ActRec *ar); +TypedValue* fg_lstat(ActRec *ar); +TypedValue* fg_clearstatcache(ActRec *ar); +TypedValue* fg_readlink(ActRec *ar); +TypedValue* fg_realpath(ActRec *ar); +TypedValue* fg_pathinfo(ActRec *ar); +TypedValue* fg_disk_free_space(ActRec *ar); +TypedValue* fg_diskfreespace(ActRec *ar); +TypedValue* fg_disk_total_space(ActRec *ar); +TypedValue* fg_mkdir(ActRec *ar); +TypedValue* fg_rmdir(ActRec *ar); +TypedValue* fg_dirname(ActRec *ar); +TypedValue* fg_getcwd(ActRec *ar); +TypedValue* fg_chdir(ActRec *ar); +TypedValue* fg_chroot(ActRec *ar); +TypedValue* fg_dir(ActRec *ar); +TypedValue* fg_opendir(ActRec *ar); +TypedValue* fg_readdir(ActRec *ar); +TypedValue* fg_rewinddir(ActRec *ar); +TypedValue* fg_scandir(ActRec *ar); +TypedValue* fg_closedir(ActRec *ar); +TypedValue* fg_get_defined_functions(ActRec *ar); +TypedValue* fg_function_exists(ActRec *ar); +TypedValue* fg_is_callable(ActRec *ar); +TypedValue* fg_call_user_func_array(ActRec *ar); +TypedValue* fg_call_user_func(ActRec *ar); +TypedValue* fg_call_user_func_array_async(ActRec *ar); +TypedValue* fg_call_user_func_async(ActRec *ar); +TypedValue* fg_check_user_func_async(ActRec *ar); +TypedValue* fg_end_user_func_async(ActRec *ar); +TypedValue* fg_call_user_func_serialized(ActRec *ar); +TypedValue* fg_call_user_func_array_rpc(ActRec *ar); +TypedValue* fg_call_user_func_rpc(ActRec *ar); +TypedValue* fg_forward_static_call_array(ActRec *ar); +TypedValue* fg_forward_static_call(ActRec *ar); +TypedValue* fg_get_called_class(ActRec *ar); +TypedValue* fg_create_function(ActRec *ar); +TypedValue* fg_func_get_arg(ActRec *ar); +TypedValue* fg_func_get_args(ActRec *ar); +TypedValue* fg_func_num_args(ActRec *ar); +TypedValue* fg_register_postsend_function(ActRec *ar); +TypedValue* fg_register_shutdown_function(ActRec *ar); +TypedValue* fg_register_cleanup_function(ActRec *ar); +TypedValue* fg_register_tick_function(ActRec *ar); +TypedValue* fg_unregister_tick_function(ActRec *ar); +TypedValue* fg_hash(ActRec *ar); +TypedValue* fg_hash_algos(ActRec *ar); +TypedValue* fg_hash_init(ActRec *ar); +TypedValue* fg_hash_file(ActRec *ar); +TypedValue* fg_hash_final(ActRec *ar); +TypedValue* fg_hash_hmac_file(ActRec *ar); +TypedValue* fg_hash_hmac(ActRec *ar); +TypedValue* fg_hash_update_file(ActRec *ar); +TypedValue* fg_hash_update_stream(ActRec *ar); +TypedValue* fg_hash_update(ActRec *ar); +TypedValue* fg_furchash_hphp_ext(ActRec *ar); +TypedValue* fg_furchash_hphp_ext_supported(ActRec *ar); +TypedValue* fg_hphp_murmurhash(ActRec *ar); +TypedValue* fg_iconv_mime_encode(ActRec *ar); +TypedValue* fg_iconv_mime_decode(ActRec *ar); +TypedValue* fg_iconv_mime_decode_headers(ActRec *ar); +TypedValue* fg_iconv_get_encoding(ActRec *ar); +TypedValue* fg_iconv_set_encoding(ActRec *ar); +TypedValue* fg_iconv(ActRec *ar); +TypedValue* fg_iconv_strlen(ActRec *ar); +TypedValue* fg_iconv_strpos(ActRec *ar); +TypedValue* fg_iconv_strrpos(ActRec *ar); +TypedValue* fg_iconv_substr(ActRec *ar); +TypedValue* fg_ob_iconv_handler(ActRec *ar); +TypedValue* fg_icu_match(ActRec *ar); +TypedValue* fg_icu_transliterate(ActRec *ar); +TypedValue* fg_icu_tokenize(ActRec *ar); +TypedValue* fg_gd_info(ActRec *ar); +TypedValue* fg_getimagesize(ActRec *ar); +TypedValue* fg_image_type_to_extension(ActRec *ar); +TypedValue* fg_image_type_to_mime_type(ActRec *ar); +TypedValue* fg_image2wbmp(ActRec *ar); +TypedValue* fg_imagealphablending(ActRec *ar); +TypedValue* fg_imageantialias(ActRec *ar); +TypedValue* fg_imagearc(ActRec *ar); +TypedValue* fg_imagechar(ActRec *ar); +TypedValue* fg_imagecharup(ActRec *ar); +TypedValue* fg_imagecolorallocate(ActRec *ar); +TypedValue* fg_imagecolorallocatealpha(ActRec *ar); +TypedValue* fg_imagecolorat(ActRec *ar); +TypedValue* fg_imagecolorclosest(ActRec *ar); +TypedValue* fg_imagecolorclosestalpha(ActRec *ar); +TypedValue* fg_imagecolorclosesthwb(ActRec *ar); +TypedValue* fg_imagecolordeallocate(ActRec *ar); +TypedValue* fg_imagecolorexact(ActRec *ar); +TypedValue* fg_imagecolorexactalpha(ActRec *ar); +TypedValue* fg_imagecolormatch(ActRec *ar); +TypedValue* fg_imagecolorresolve(ActRec *ar); +TypedValue* fg_imagecolorresolvealpha(ActRec *ar); +TypedValue* fg_imagecolorset(ActRec *ar); +TypedValue* fg_imagecolorsforindex(ActRec *ar); +TypedValue* fg_imagecolorstotal(ActRec *ar); +TypedValue* fg_imagecolortransparent(ActRec *ar); +TypedValue* fg_imageconvolution(ActRec *ar); +TypedValue* fg_imagecopy(ActRec *ar); +TypedValue* fg_imagecopymerge(ActRec *ar); +TypedValue* fg_imagecopymergegray(ActRec *ar); +TypedValue* fg_imagecopyresampled(ActRec *ar); +TypedValue* fg_imagecopyresized(ActRec *ar); +TypedValue* fg_imagecreate(ActRec *ar); +TypedValue* fg_imagecreatefromgd2part(ActRec *ar); +TypedValue* fg_imagecreatefromgd(ActRec *ar); +TypedValue* fg_imagecreatefromgd2(ActRec *ar); +TypedValue* fg_imagecreatefromgif(ActRec *ar); +TypedValue* fg_imagecreatefromjpeg(ActRec *ar); +TypedValue* fg_imagecreatefrompng(ActRec *ar); +TypedValue* fg_imagecreatefromstring(ActRec *ar); +TypedValue* fg_imagecreatefromwbmp(ActRec *ar); +TypedValue* fg_imagecreatefromxbm(ActRec *ar); +TypedValue* fg_imagecreatefromxpm(ActRec *ar); +TypedValue* fg_imagecreatetruecolor(ActRec *ar); +TypedValue* fg_imagedashedline(ActRec *ar); +TypedValue* fg_imagedestroy(ActRec *ar); +TypedValue* fg_imageellipse(ActRec *ar); +TypedValue* fg_imagefill(ActRec *ar); +TypedValue* fg_imagefilledarc(ActRec *ar); +TypedValue* fg_imagefilledellipse(ActRec *ar); +TypedValue* fg_imagefilledpolygon(ActRec *ar); +TypedValue* fg_imagefilledrectangle(ActRec *ar); +TypedValue* fg_imagefilltoborder(ActRec *ar); +TypedValue* fg_imagefilter(ActRec *ar); +TypedValue* fg_imagefontheight(ActRec *ar); +TypedValue* fg_imagefontwidth(ActRec *ar); +TypedValue* fg_imageftbbox(ActRec *ar); +TypedValue* fg_imagefttext(ActRec *ar); +TypedValue* fg_imagegammacorrect(ActRec *ar); +TypedValue* fg_imagegd2(ActRec *ar); +TypedValue* fg_imagegd(ActRec *ar); +TypedValue* fg_imagegif(ActRec *ar); +TypedValue* fg_imagegrabscreen(ActRec *ar); +TypedValue* fg_imagegrabwindow(ActRec *ar); +TypedValue* fg_imageinterlace(ActRec *ar); +TypedValue* fg_imageistruecolor(ActRec *ar); +TypedValue* fg_imagejpeg(ActRec *ar); +TypedValue* fg_imagelayereffect(ActRec *ar); +TypedValue* fg_imageline(ActRec *ar); +TypedValue* fg_imageloadfont(ActRec *ar); +TypedValue* fg_imagepalettecopy(ActRec *ar); +TypedValue* fg_imagepng(ActRec *ar); +TypedValue* fg_imagepolygon(ActRec *ar); +TypedValue* fg_imagepsbbox(ActRec *ar); +TypedValue* fg_imagepsencodefont(ActRec *ar); +TypedValue* fg_imagepsextendfont(ActRec *ar); +TypedValue* fg_imagepsfreefont(ActRec *ar); +TypedValue* fg_imagepsloadfont(ActRec *ar); +TypedValue* fg_imagepsslantfont(ActRec *ar); +TypedValue* fg_imagepstext(ActRec *ar); +TypedValue* fg_imagerectangle(ActRec *ar); +TypedValue* fg_imagerotate(ActRec *ar); +TypedValue* fg_imagesavealpha(ActRec *ar); +TypedValue* fg_imagesetbrush(ActRec *ar); +TypedValue* fg_imagesetpixel(ActRec *ar); +TypedValue* fg_imagesetstyle(ActRec *ar); +TypedValue* fg_imagesetthickness(ActRec *ar); +TypedValue* fg_imagesettile(ActRec *ar); +TypedValue* fg_imagestring(ActRec *ar); +TypedValue* fg_imagestringup(ActRec *ar); +TypedValue* fg_imagesx(ActRec *ar); +TypedValue* fg_imagesy(ActRec *ar); +TypedValue* fg_imagetruecolortopalette(ActRec *ar); +TypedValue* fg_imagettfbbox(ActRec *ar); +TypedValue* fg_imagettftext(ActRec *ar); +TypedValue* fg_imagetypes(ActRec *ar); +TypedValue* fg_imagewbmp(ActRec *ar); +TypedValue* fg_imagexbm(ActRec *ar); +TypedValue* fg_iptcembed(ActRec *ar); +TypedValue* fg_iptcparse(ActRec *ar); +TypedValue* fg_jpeg2wbmp(ActRec *ar); +TypedValue* fg_png2wbmp(ActRec *ar); +TypedValue* fg_exif_imagetype(ActRec *ar); +TypedValue* fg_exif_read_data(ActRec *ar); +TypedValue* fg_read_exif_data(ActRec *ar); +TypedValue* fg_exif_tagname(ActRec *ar); +TypedValue* fg_exif_thumbnail(ActRec *ar); +TypedValue* fg_imap_8bit(ActRec *ar); +TypedValue* fg_imap_alerts(ActRec *ar); +TypedValue* fg_imap_append(ActRec *ar); +TypedValue* fg_imap_base64(ActRec *ar); +TypedValue* fg_imap_binary(ActRec *ar); +TypedValue* fg_imap_body(ActRec *ar); +TypedValue* fg_imap_bodystruct(ActRec *ar); +TypedValue* fg_imap_check(ActRec *ar); +TypedValue* fg_imap_clearflag_full(ActRec *ar); +TypedValue* fg_imap_close(ActRec *ar); +TypedValue* fg_imap_createmailbox(ActRec *ar); +TypedValue* fg_imap_delete(ActRec *ar); +TypedValue* fg_imap_deletemailbox(ActRec *ar); +TypedValue* fg_imap_errors(ActRec *ar); +TypedValue* fg_imap_expunge(ActRec *ar); +TypedValue* fg_imap_fetch_overview(ActRec *ar); +TypedValue* fg_imap_fetchbody(ActRec *ar); +TypedValue* fg_imap_fetchheader(ActRec *ar); +TypedValue* fg_imap_fetchstructure(ActRec *ar); +TypedValue* fg_imap_gc(ActRec *ar); +TypedValue* fg_imap_get_quota(ActRec *ar); +TypedValue* fg_imap_get_quotaroot(ActRec *ar); +TypedValue* fg_imap_getacl(ActRec *ar); +TypedValue* fg_imap_getmailboxes(ActRec *ar); +TypedValue* fg_imap_getsubscribed(ActRec *ar); +TypedValue* fg_imap_header(ActRec *ar); +TypedValue* fg_imap_headerinfo(ActRec *ar); +TypedValue* fg_imap_headers(ActRec *ar); +TypedValue* fg_imap_last_error(ActRec *ar); +TypedValue* fg_imap_list(ActRec *ar); +TypedValue* fg_imap_listmailbox(ActRec *ar); +TypedValue* fg_imap_listscan(ActRec *ar); +TypedValue* fg_imap_listsubscribed(ActRec *ar); +TypedValue* fg_imap_lsub(ActRec *ar); +TypedValue* fg_imap_mail_compose(ActRec *ar); +TypedValue* fg_imap_mail_copy(ActRec *ar); +TypedValue* fg_imap_mail_move(ActRec *ar); +TypedValue* fg_imap_mail(ActRec *ar); +TypedValue* fg_imap_mailboxmsginfo(ActRec *ar); +TypedValue* fg_imap_mime_header_decode(ActRec *ar); +TypedValue* fg_imap_msgno(ActRec *ar); +TypedValue* fg_imap_num_msg(ActRec *ar); +TypedValue* fg_imap_num_recent(ActRec *ar); +TypedValue* fg_imap_open(ActRec *ar); +TypedValue* fg_imap_ping(ActRec *ar); +TypedValue* fg_imap_qprint(ActRec *ar); +TypedValue* fg_imap_renamemailbox(ActRec *ar); +TypedValue* fg_imap_reopen(ActRec *ar); +TypedValue* fg_imap_rfc822_parse_adrlist(ActRec *ar); +TypedValue* fg_imap_rfc822_parse_headers(ActRec *ar); +TypedValue* fg_imap_rfc822_write_address(ActRec *ar); +TypedValue* fg_imap_savebody(ActRec *ar); +TypedValue* fg_imap_scanmailbox(ActRec *ar); +TypedValue* fg_imap_search(ActRec *ar); +TypedValue* fg_imap_set_quota(ActRec *ar); +TypedValue* fg_imap_setacl(ActRec *ar); +TypedValue* fg_imap_setflag_full(ActRec *ar); +TypedValue* fg_imap_sort(ActRec *ar); +TypedValue* fg_imap_status(ActRec *ar); +TypedValue* fg_imap_subscribe(ActRec *ar); +TypedValue* fg_imap_thread(ActRec *ar); +TypedValue* fg_imap_timeout(ActRec *ar); +TypedValue* fg_imap_uid(ActRec *ar); +TypedValue* fg_imap_undelete(ActRec *ar); +TypedValue* fg_imap_unsubscribe(ActRec *ar); +TypedValue* fg_imap_utf7_decode(ActRec *ar); +TypedValue* fg_imap_utf7_encode(ActRec *ar); +TypedValue* fg_imap_utf8(ActRec *ar); +TypedValue* fg_intl_get_error_code(ActRec *ar); +TypedValue* fg_intl_get_error_message(ActRec *ar); +TypedValue* fg_intl_error_name(ActRec *ar); +TypedValue* fg_intl_is_failure(ActRec *ar); +TypedValue* fg_collator_asort(ActRec *ar); +TypedValue* fg_collator_compare(ActRec *ar); +TypedValue* fg_collator_create(ActRec *ar); +TypedValue* fg_collator_get_attribute(ActRec *ar); +TypedValue* fg_collator_get_error_code(ActRec *ar); +TypedValue* fg_collator_get_error_message(ActRec *ar); +TypedValue* fg_collator_get_locale(ActRec *ar); +TypedValue* fg_collator_get_strength(ActRec *ar); +TypedValue* fg_collator_set_attribute(ActRec *ar); +TypedValue* fg_collator_set_strength(ActRec *ar); +TypedValue* fg_collator_sort_with_sort_keys(ActRec *ar); +TypedValue* fg_collator_sort(ActRec *ar); +TypedValue* fg_idn_to_ascii(ActRec *ar); +TypedValue* fg_idn_to_unicode(ActRec *ar); +TypedValue* fg_idn_to_utf8(ActRec *ar); +TypedValue* fg_ftok(ActRec *ar); +TypedValue* fg_msg_get_queue(ActRec *ar); +TypedValue* fg_msg_queue_exists(ActRec *ar); +TypedValue* fg_msg_send(ActRec *ar); +TypedValue* fg_msg_receive(ActRec *ar); +TypedValue* fg_msg_remove_queue(ActRec *ar); +TypedValue* fg_msg_set_queue(ActRec *ar); +TypedValue* fg_msg_stat_queue(ActRec *ar); +TypedValue* fg_sem_acquire(ActRec *ar); +TypedValue* fg_sem_get(ActRec *ar); +TypedValue* fg_sem_release(ActRec *ar); +TypedValue* fg_sem_remove(ActRec *ar); +TypedValue* fg_shm_attach(ActRec *ar); +TypedValue* fg_shm_detach(ActRec *ar); +TypedValue* fg_shm_remove(ActRec *ar); +TypedValue* fg_shm_get_var(ActRec *ar); +TypedValue* fg_shm_has_var(ActRec *ar); +TypedValue* fg_shm_put_var(ActRec *ar); +TypedValue* fg_shm_remove_var(ActRec *ar); +TypedValue* fg_hphp_recursiveiteratoriterator___construct(ActRec *ar); +TypedValue* fg_hphp_recursiveiteratoriterator_getinneriterator(ActRec *ar); +TypedValue* fg_hphp_recursiveiteratoriterator_current(ActRec *ar); +TypedValue* fg_hphp_recursiveiteratoriterator_key(ActRec *ar); +TypedValue* fg_hphp_recursiveiteratoriterator_next(ActRec *ar); +TypedValue* fg_hphp_recursiveiteratoriterator_rewind(ActRec *ar); +TypedValue* fg_hphp_recursiveiteratoriterator_valid(ActRec *ar); +TypedValue* fg_hphp_directoryiterator___construct(ActRec *ar); +TypedValue* fg_hphp_directoryiterator_key(ActRec *ar); +TypedValue* fg_hphp_directoryiterator_next(ActRec *ar); +TypedValue* fg_hphp_directoryiterator_rewind(ActRec *ar); +TypedValue* fg_hphp_directoryiterator_seek(ActRec *ar); +TypedValue* fg_hphp_directoryiterator_current(ActRec *ar); +TypedValue* fg_hphp_directoryiterator___tostring(ActRec *ar); +TypedValue* fg_hphp_directoryiterator_valid(ActRec *ar); +TypedValue* fg_hphp_directoryiterator_isdot(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator___construct(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_key(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_next(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_rewind(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_seek(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_current(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator___tostring(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_valid(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_haschildren(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_getchildren(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_getsubpath(ActRec *ar); +TypedValue* fg_hphp_recursivedirectoryiterator_getsubpathname(ActRec *ar); +TypedValue* fg_json_encode(ActRec *ar); +TypedValue* fg_json_decode(ActRec *ar); +TypedValue* fg_ldap_connect(ActRec *ar); +TypedValue* fg_ldap_explode_dn(ActRec *ar); +TypedValue* fg_ldap_dn2ufn(ActRec *ar); +TypedValue* fg_ldap_err2str(ActRec *ar); +TypedValue* fg_ldap_add(ActRec *ar); +TypedValue* fg_ldap_mod_add(ActRec *ar); +TypedValue* fg_ldap_mod_del(ActRec *ar); +TypedValue* fg_ldap_mod_replace(ActRec *ar); +TypedValue* fg_ldap_modify(ActRec *ar); +TypedValue* fg_ldap_bind(ActRec *ar); +TypedValue* fg_ldap_set_rebind_proc(ActRec *ar); +TypedValue* fg_ldap_sort(ActRec *ar); +TypedValue* fg_ldap_start_tls(ActRec *ar); +TypedValue* fg_ldap_unbind(ActRec *ar); +TypedValue* fg_ldap_get_option(ActRec *ar); +TypedValue* fg_ldap_set_option(ActRec *ar); +TypedValue* fg_ldap_close(ActRec *ar); +TypedValue* fg_ldap_list(ActRec *ar); +TypedValue* fg_ldap_read(ActRec *ar); +TypedValue* fg_ldap_search(ActRec *ar); +TypedValue* fg_ldap_rename(ActRec *ar); +TypedValue* fg_ldap_delete(ActRec *ar); +TypedValue* fg_ldap_compare(ActRec *ar); +TypedValue* fg_ldap_errno(ActRec *ar); +TypedValue* fg_ldap_error(ActRec *ar); +TypedValue* fg_ldap_get_dn(ActRec *ar); +TypedValue* fg_ldap_count_entries(ActRec *ar); +TypedValue* fg_ldap_get_entries(ActRec *ar); +TypedValue* fg_ldap_first_entry(ActRec *ar); +TypedValue* fg_ldap_next_entry(ActRec *ar); +TypedValue* fg_ldap_get_attributes(ActRec *ar); +TypedValue* fg_ldap_first_attribute(ActRec *ar); +TypedValue* fg_ldap_next_attribute(ActRec *ar); +TypedValue* fg_ldap_first_reference(ActRec *ar); +TypedValue* fg_ldap_next_reference(ActRec *ar); +TypedValue* fg_ldap_parse_reference(ActRec *ar); +TypedValue* fg_ldap_parse_result(ActRec *ar); +TypedValue* fg_ldap_free_result(ActRec *ar); +TypedValue* fg_ldap_get_values_len(ActRec *ar); +TypedValue* fg_ldap_get_values(ActRec *ar); +TypedValue* fg_magickgetcopyright(ActRec *ar); +TypedValue* fg_magickgethomeurl(ActRec *ar); +TypedValue* fg_magickgetpackagename(ActRec *ar); +TypedValue* fg_magickgetquantumdepth(ActRec *ar); +TypedValue* fg_magickgetreleasedate(ActRec *ar); +TypedValue* fg_magickgetresourcelimit(ActRec *ar); +TypedValue* fg_magickgetversion(ActRec *ar); +TypedValue* fg_magickgetversionnumber(ActRec *ar); +TypedValue* fg_magickgetversionstring(ActRec *ar); +TypedValue* fg_magickqueryconfigureoption(ActRec *ar); +TypedValue* fg_magickqueryconfigureoptions(ActRec *ar); +TypedValue* fg_magickqueryfonts(ActRec *ar); +TypedValue* fg_magickqueryformats(ActRec *ar); +TypedValue* fg_magicksetresourcelimit(ActRec *ar); +TypedValue* fg_newdrawingwand(ActRec *ar); +TypedValue* fg_newmagickwand(ActRec *ar); +TypedValue* fg_newpixeliterator(ActRec *ar); +TypedValue* fg_newpixelregioniterator(ActRec *ar); +TypedValue* fg_newpixelwand(ActRec *ar); +TypedValue* fg_newpixelwandarray(ActRec *ar); +TypedValue* fg_newpixelwands(ActRec *ar); +TypedValue* fg_destroydrawingwand(ActRec *ar); +TypedValue* fg_destroymagickwand(ActRec *ar); +TypedValue* fg_destroypixeliterator(ActRec *ar); +TypedValue* fg_destroypixelwand(ActRec *ar); +TypedValue* fg_destroypixelwandarray(ActRec *ar); +TypedValue* fg_destroypixelwands(ActRec *ar); +TypedValue* fg_isdrawingwand(ActRec *ar); +TypedValue* fg_ismagickwand(ActRec *ar); +TypedValue* fg_ispixeliterator(ActRec *ar); +TypedValue* fg_ispixelwand(ActRec *ar); +TypedValue* fg_cleardrawingwand(ActRec *ar); +TypedValue* fg_clearmagickwand(ActRec *ar); +TypedValue* fg_clearpixeliterator(ActRec *ar); +TypedValue* fg_clearpixelwand(ActRec *ar); +TypedValue* fg_clonedrawingwand(ActRec *ar); +TypedValue* fg_clonemagickwand(ActRec *ar); +TypedValue* fg_wandgetexception(ActRec *ar); +TypedValue* fg_wandgetexceptionstring(ActRec *ar); +TypedValue* fg_wandgetexceptiontype(ActRec *ar); +TypedValue* fg_wandhasexception(ActRec *ar); +TypedValue* fg_drawaffine(ActRec *ar); +TypedValue* fg_drawannotation(ActRec *ar); +TypedValue* fg_drawarc(ActRec *ar); +TypedValue* fg_drawbezier(ActRec *ar); +TypedValue* fg_drawcircle(ActRec *ar); +TypedValue* fg_drawcolor(ActRec *ar); +TypedValue* fg_drawcomment(ActRec *ar); +TypedValue* fg_drawcomposite(ActRec *ar); +TypedValue* fg_drawellipse(ActRec *ar); +TypedValue* fg_drawgetclippath(ActRec *ar); +TypedValue* fg_drawgetcliprule(ActRec *ar); +TypedValue* fg_drawgetclipunits(ActRec *ar); +TypedValue* fg_drawgetexception(ActRec *ar); +TypedValue* fg_drawgetexceptionstring(ActRec *ar); +TypedValue* fg_drawgetexceptiontype(ActRec *ar); +TypedValue* fg_drawgetfillalpha(ActRec *ar); +TypedValue* fg_drawgetfillcolor(ActRec *ar); +TypedValue* fg_drawgetfillopacity(ActRec *ar); +TypedValue* fg_drawgetfillrule(ActRec *ar); +TypedValue* fg_drawgetfont(ActRec *ar); +TypedValue* fg_drawgetfontfamily(ActRec *ar); +TypedValue* fg_drawgetfontsize(ActRec *ar); +TypedValue* fg_drawgetfontstretch(ActRec *ar); +TypedValue* fg_drawgetfontstyle(ActRec *ar); +TypedValue* fg_drawgetfontweight(ActRec *ar); +TypedValue* fg_drawgetgravity(ActRec *ar); +TypedValue* fg_drawgetstrokealpha(ActRec *ar); +TypedValue* fg_drawgetstrokeantialias(ActRec *ar); +TypedValue* fg_drawgetstrokecolor(ActRec *ar); +TypedValue* fg_drawgetstrokedasharray(ActRec *ar); +TypedValue* fg_drawgetstrokedashoffset(ActRec *ar); +TypedValue* fg_drawgetstrokelinecap(ActRec *ar); +TypedValue* fg_drawgetstrokelinejoin(ActRec *ar); +TypedValue* fg_drawgetstrokemiterlimit(ActRec *ar); +TypedValue* fg_drawgetstrokeopacity(ActRec *ar); +TypedValue* fg_drawgetstrokewidth(ActRec *ar); +TypedValue* fg_drawgettextalignment(ActRec *ar); +TypedValue* fg_drawgettextantialias(ActRec *ar); +TypedValue* fg_drawgettextdecoration(ActRec *ar); +TypedValue* fg_drawgettextencoding(ActRec *ar); +TypedValue* fg_drawgettextundercolor(ActRec *ar); +TypedValue* fg_drawgetvectorgraphics(ActRec *ar); +TypedValue* fg_drawline(ActRec *ar); +TypedValue* fg_drawmatte(ActRec *ar); +TypedValue* fg_drawpathclose(ActRec *ar); +TypedValue* fg_drawpathcurvetoabsolute(ActRec *ar); +TypedValue* fg_drawpathcurvetoquadraticbezierabsolute(ActRec *ar); +TypedValue* fg_drawpathcurvetoquadraticbezierrelative(ActRec *ar); +TypedValue* fg_drawpathcurvetoquadraticbeziersmoothabsolute(ActRec *ar); +TypedValue* fg_drawpathcurvetoquadraticbeziersmoothrelative(ActRec *ar); +TypedValue* fg_drawpathcurvetorelative(ActRec *ar); +TypedValue* fg_drawpathcurvetosmoothabsolute(ActRec *ar); +TypedValue* fg_drawpathcurvetosmoothrelative(ActRec *ar); +TypedValue* fg_drawpathellipticarcabsolute(ActRec *ar); +TypedValue* fg_drawpathellipticarcrelative(ActRec *ar); +TypedValue* fg_drawpathfinish(ActRec *ar); +TypedValue* fg_drawpathlinetoabsolute(ActRec *ar); +TypedValue* fg_drawpathlinetohorizontalabsolute(ActRec *ar); +TypedValue* fg_drawpathlinetohorizontalrelative(ActRec *ar); +TypedValue* fg_drawpathlinetorelative(ActRec *ar); +TypedValue* fg_drawpathlinetoverticalabsolute(ActRec *ar); +TypedValue* fg_drawpathlinetoverticalrelative(ActRec *ar); +TypedValue* fg_drawpathmovetoabsolute(ActRec *ar); +TypedValue* fg_drawpathmovetorelative(ActRec *ar); +TypedValue* fg_drawpathstart(ActRec *ar); +TypedValue* fg_drawpoint(ActRec *ar); +TypedValue* fg_drawpolygon(ActRec *ar); +TypedValue* fg_drawpolyline(ActRec *ar); +TypedValue* fg_drawrectangle(ActRec *ar); +TypedValue* fg_drawrender(ActRec *ar); +TypedValue* fg_drawrotate(ActRec *ar); +TypedValue* fg_drawroundrectangle(ActRec *ar); +TypedValue* fg_drawscale(ActRec *ar); +TypedValue* fg_drawsetclippath(ActRec *ar); +TypedValue* fg_drawsetcliprule(ActRec *ar); +TypedValue* fg_drawsetclipunits(ActRec *ar); +TypedValue* fg_drawsetfillalpha(ActRec *ar); +TypedValue* fg_drawsetfillcolor(ActRec *ar); +TypedValue* fg_drawsetfillopacity(ActRec *ar); +TypedValue* fg_drawsetfillpatternurl(ActRec *ar); +TypedValue* fg_drawsetfillrule(ActRec *ar); +TypedValue* fg_drawsetfont(ActRec *ar); +TypedValue* fg_drawsetfontfamily(ActRec *ar); +TypedValue* fg_drawsetfontsize(ActRec *ar); +TypedValue* fg_drawsetfontstretch(ActRec *ar); +TypedValue* fg_drawsetfontstyle(ActRec *ar); +TypedValue* fg_drawsetfontweight(ActRec *ar); +TypedValue* fg_drawsetgravity(ActRec *ar); +TypedValue* fg_drawsetstrokealpha(ActRec *ar); +TypedValue* fg_drawsetstrokeantialias(ActRec *ar); +TypedValue* fg_drawsetstrokecolor(ActRec *ar); +TypedValue* fg_drawsetstrokedasharray(ActRec *ar); +TypedValue* fg_drawsetstrokedashoffset(ActRec *ar); +TypedValue* fg_drawsetstrokelinecap(ActRec *ar); +TypedValue* fg_drawsetstrokelinejoin(ActRec *ar); +TypedValue* fg_drawsetstrokemiterlimit(ActRec *ar); +TypedValue* fg_drawsetstrokeopacity(ActRec *ar); +TypedValue* fg_drawsetstrokepatternurl(ActRec *ar); +TypedValue* fg_drawsetstrokewidth(ActRec *ar); +TypedValue* fg_drawsettextalignment(ActRec *ar); +TypedValue* fg_drawsettextantialias(ActRec *ar); +TypedValue* fg_drawsettextdecoration(ActRec *ar); +TypedValue* fg_drawsettextencoding(ActRec *ar); +TypedValue* fg_drawsettextundercolor(ActRec *ar); +TypedValue* fg_drawsetvectorgraphics(ActRec *ar); +TypedValue* fg_drawsetviewbox(ActRec *ar); +TypedValue* fg_drawskewx(ActRec *ar); +TypedValue* fg_drawskewy(ActRec *ar); +TypedValue* fg_drawtranslate(ActRec *ar); +TypedValue* fg_pushdrawingwand(ActRec *ar); +TypedValue* fg_drawpushclippath(ActRec *ar); +TypedValue* fg_drawpushdefs(ActRec *ar); +TypedValue* fg_drawpushpattern(ActRec *ar); +TypedValue* fg_popdrawingwand(ActRec *ar); +TypedValue* fg_drawpopclippath(ActRec *ar); +TypedValue* fg_drawpopdefs(ActRec *ar); +TypedValue* fg_drawpoppattern(ActRec *ar); +TypedValue* fg_magickadaptivethresholdimage(ActRec *ar); +TypedValue* fg_magickaddimage(ActRec *ar); +TypedValue* fg_magickaddnoiseimage(ActRec *ar); +TypedValue* fg_magickaffinetransformimage(ActRec *ar); +TypedValue* fg_magickannotateimage(ActRec *ar); +TypedValue* fg_magickappendimages(ActRec *ar); +TypedValue* fg_magickaverageimages(ActRec *ar); +TypedValue* fg_magickblackthresholdimage(ActRec *ar); +TypedValue* fg_magickblurimage(ActRec *ar); +TypedValue* fg_magickborderimage(ActRec *ar); +TypedValue* fg_magickcharcoalimage(ActRec *ar); +TypedValue* fg_magickchopimage(ActRec *ar); +TypedValue* fg_magickclipimage(ActRec *ar); +TypedValue* fg_magickclippathimage(ActRec *ar); +TypedValue* fg_magickcoalesceimages(ActRec *ar); +TypedValue* fg_magickcolorfloodfillimage(ActRec *ar); +TypedValue* fg_magickcolorizeimage(ActRec *ar); +TypedValue* fg_magickcombineimages(ActRec *ar); +TypedValue* fg_magickcommentimage(ActRec *ar); +TypedValue* fg_magickcompareimages(ActRec *ar); +TypedValue* fg_magickcompositeimage(ActRec *ar); +TypedValue* fg_magickconstituteimage(ActRec *ar); +TypedValue* fg_magickcontrastimage(ActRec *ar); +TypedValue* fg_magickconvolveimage(ActRec *ar); +TypedValue* fg_magickcropimage(ActRec *ar); +TypedValue* fg_magickcyclecolormapimage(ActRec *ar); +TypedValue* fg_magickdeconstructimages(ActRec *ar); +TypedValue* fg_magickdescribeimage(ActRec *ar); +TypedValue* fg_magickdespeckleimage(ActRec *ar); +TypedValue* fg_magickdrawimage(ActRec *ar); +TypedValue* fg_magickechoimageblob(ActRec *ar); +TypedValue* fg_magickechoimagesblob(ActRec *ar); +TypedValue* fg_magickedgeimage(ActRec *ar); +TypedValue* fg_magickembossimage(ActRec *ar); +TypedValue* fg_magickenhanceimage(ActRec *ar); +TypedValue* fg_magickequalizeimage(ActRec *ar); +TypedValue* fg_magickevaluateimage(ActRec *ar); +TypedValue* fg_magickflattenimages(ActRec *ar); +TypedValue* fg_magickflipimage(ActRec *ar); +TypedValue* fg_magickflopimage(ActRec *ar); +TypedValue* fg_magickframeimage(ActRec *ar); +TypedValue* fg_magickfximage(ActRec *ar); +TypedValue* fg_magickgammaimage(ActRec *ar); +TypedValue* fg_magickgaussianblurimage(ActRec *ar); +TypedValue* fg_magickgetcharheight(ActRec *ar); +TypedValue* fg_magickgetcharwidth(ActRec *ar); +TypedValue* fg_magickgetexception(ActRec *ar); +TypedValue* fg_magickgetexceptionstring(ActRec *ar); +TypedValue* fg_magickgetexceptiontype(ActRec *ar); +TypedValue* fg_magickgetfilename(ActRec *ar); +TypedValue* fg_magickgetformat(ActRec *ar); +TypedValue* fg_magickgetimage(ActRec *ar); +TypedValue* fg_magickgetimagebackgroundcolor(ActRec *ar); +TypedValue* fg_magickgetimageblob(ActRec *ar); +TypedValue* fg_magickgetimageblueprimary(ActRec *ar); +TypedValue* fg_magickgetimagebordercolor(ActRec *ar); +TypedValue* fg_magickgetimagechannelmean(ActRec *ar); +TypedValue* fg_magickgetimagecolormapcolor(ActRec *ar); +TypedValue* fg_magickgetimagecolors(ActRec *ar); +TypedValue* fg_magickgetimagecolorspace(ActRec *ar); +TypedValue* fg_magickgetimagecompose(ActRec *ar); +TypedValue* fg_magickgetimagecompression(ActRec *ar); +TypedValue* fg_magickgetimagecompressionquality(ActRec *ar); +TypedValue* fg_magickgetimagedelay(ActRec *ar); +TypedValue* fg_magickgetimagedepth(ActRec *ar); +TypedValue* fg_magickgetimagedispose(ActRec *ar); +TypedValue* fg_magickgetimageextrema(ActRec *ar); +TypedValue* fg_magickgetimagefilename(ActRec *ar); +TypedValue* fg_magickgetimageformat(ActRec *ar); +TypedValue* fg_magickgetimagegamma(ActRec *ar); +TypedValue* fg_magickgetimagegreenprimary(ActRec *ar); +TypedValue* fg_magickgetimageheight(ActRec *ar); +TypedValue* fg_magickgetimagehistogram(ActRec *ar); +TypedValue* fg_magickgetimageindex(ActRec *ar); +TypedValue* fg_magickgetimageinterlacescheme(ActRec *ar); +TypedValue* fg_magickgetimageiterations(ActRec *ar); +TypedValue* fg_magickgetimagemattecolor(ActRec *ar); +TypedValue* fg_magickgetimagemimetype(ActRec *ar); +TypedValue* fg_magickgetimagepixels(ActRec *ar); +TypedValue* fg_magickgetimageprofile(ActRec *ar); +TypedValue* fg_magickgetimageredprimary(ActRec *ar); +TypedValue* fg_magickgetimagerenderingintent(ActRec *ar); +TypedValue* fg_magickgetimageresolution(ActRec *ar); +TypedValue* fg_magickgetimagescene(ActRec *ar); +TypedValue* fg_magickgetimagesignature(ActRec *ar); +TypedValue* fg_magickgetimagesize(ActRec *ar); +TypedValue* fg_magickgetimagetype(ActRec *ar); +TypedValue* fg_magickgetimageunits(ActRec *ar); +TypedValue* fg_magickgetimagevirtualpixelmethod(ActRec *ar); +TypedValue* fg_magickgetimagewhitepoint(ActRec *ar); +TypedValue* fg_magickgetimagewidth(ActRec *ar); +TypedValue* fg_magickgetimagesblob(ActRec *ar); +TypedValue* fg_magickgetinterlacescheme(ActRec *ar); +TypedValue* fg_magickgetmaxtextadvance(ActRec *ar); +TypedValue* fg_magickgetmimetype(ActRec *ar); +TypedValue* fg_magickgetnumberimages(ActRec *ar); +TypedValue* fg_magickgetsamplingfactors(ActRec *ar); +TypedValue* fg_magickgetsize(ActRec *ar); +TypedValue* fg_magickgetstringheight(ActRec *ar); +TypedValue* fg_magickgetstringwidth(ActRec *ar); +TypedValue* fg_magickgettextascent(ActRec *ar); +TypedValue* fg_magickgettextdescent(ActRec *ar); +TypedValue* fg_magickgetwandsize(ActRec *ar); +TypedValue* fg_magickhasnextimage(ActRec *ar); +TypedValue* fg_magickhaspreviousimage(ActRec *ar); +TypedValue* fg_magickimplodeimage(ActRec *ar); +TypedValue* fg_magicklabelimage(ActRec *ar); +TypedValue* fg_magicklevelimage(ActRec *ar); +TypedValue* fg_magickmagnifyimage(ActRec *ar); +TypedValue* fg_magickmapimage(ActRec *ar); +TypedValue* fg_magickmattefloodfillimage(ActRec *ar); +TypedValue* fg_magickmedianfilterimage(ActRec *ar); +TypedValue* fg_magickminifyimage(ActRec *ar); +TypedValue* fg_magickmodulateimage(ActRec *ar); +TypedValue* fg_magickmontageimage(ActRec *ar); +TypedValue* fg_magickmorphimages(ActRec *ar); +TypedValue* fg_magickmosaicimages(ActRec *ar); +TypedValue* fg_magickmotionblurimage(ActRec *ar); +TypedValue* fg_magicknegateimage(ActRec *ar); +TypedValue* fg_magicknewimage(ActRec *ar); +TypedValue* fg_magicknextimage(ActRec *ar); +TypedValue* fg_magicknormalizeimage(ActRec *ar); +TypedValue* fg_magickoilpaintimage(ActRec *ar); +TypedValue* fg_magickpaintopaqueimage(ActRec *ar); +TypedValue* fg_magickpainttransparentimage(ActRec *ar); +TypedValue* fg_magickpingimage(ActRec *ar); +TypedValue* fg_magickposterizeimage(ActRec *ar); +TypedValue* fg_magickpreviewimages(ActRec *ar); +TypedValue* fg_magickpreviousimage(ActRec *ar); +TypedValue* fg_magickprofileimage(ActRec *ar); +TypedValue* fg_magickquantizeimage(ActRec *ar); +TypedValue* fg_magickquantizeimages(ActRec *ar); +TypedValue* fg_magickqueryfontmetrics(ActRec *ar); +TypedValue* fg_magickradialblurimage(ActRec *ar); +TypedValue* fg_magickraiseimage(ActRec *ar); +TypedValue* fg_magickreadimage(ActRec *ar); +TypedValue* fg_magickreadimageblob(ActRec *ar); +TypedValue* fg_magickreadimagefile(ActRec *ar); +TypedValue* fg_magickreadimages(ActRec *ar); +TypedValue* fg_magickreducenoiseimage(ActRec *ar); +TypedValue* fg_magickremoveimage(ActRec *ar); +TypedValue* fg_magickremoveimageprofile(ActRec *ar); +TypedValue* fg_magickremoveimageprofiles(ActRec *ar); +TypedValue* fg_magickresampleimage(ActRec *ar); +TypedValue* fg_magickresetiterator(ActRec *ar); +TypedValue* fg_magickresizeimage(ActRec *ar); +TypedValue* fg_magickrollimage(ActRec *ar); +TypedValue* fg_magickrotateimage(ActRec *ar); +TypedValue* fg_magicksampleimage(ActRec *ar); +TypedValue* fg_magickscaleimage(ActRec *ar); +TypedValue* fg_magickseparateimagechannel(ActRec *ar); +TypedValue* fg_magicksetcompressionquality(ActRec *ar); +TypedValue* fg_magicksetfilename(ActRec *ar); +TypedValue* fg_magicksetfirstiterator(ActRec *ar); +TypedValue* fg_magicksetformat(ActRec *ar); +TypedValue* fg_magicksetimage(ActRec *ar); +TypedValue* fg_magicksetimagebackgroundcolor(ActRec *ar); +TypedValue* fg_magicksetimagebias(ActRec *ar); +TypedValue* fg_magicksetimageblueprimary(ActRec *ar); +TypedValue* fg_magicksetimagebordercolor(ActRec *ar); +TypedValue* fg_magicksetimagecolormapcolor(ActRec *ar); +TypedValue* fg_magicksetimagecolorspace(ActRec *ar); +TypedValue* fg_magicksetimagecompose(ActRec *ar); +TypedValue* fg_magicksetimagecompression(ActRec *ar); +TypedValue* fg_magicksetimagecompressionquality(ActRec *ar); +TypedValue* fg_magicksetimagedelay(ActRec *ar); +TypedValue* fg_magicksetimagedepth(ActRec *ar); +TypedValue* fg_magicksetimagedispose(ActRec *ar); +TypedValue* fg_magicksetimagefilename(ActRec *ar); +TypedValue* fg_magicksetimageformat(ActRec *ar); +TypedValue* fg_magicksetimagegamma(ActRec *ar); +TypedValue* fg_magicksetimagegreenprimary(ActRec *ar); +TypedValue* fg_magicksetimageindex(ActRec *ar); +TypedValue* fg_magicksetimageinterlacescheme(ActRec *ar); +TypedValue* fg_magicksetimageiterations(ActRec *ar); +TypedValue* fg_magicksetimagemattecolor(ActRec *ar); +TypedValue* fg_magicksetimageoption(ActRec *ar); +TypedValue* fg_magicksetimagepixels(ActRec *ar); +TypedValue* fg_magicksetimageprofile(ActRec *ar); +TypedValue* fg_magicksetimageredprimary(ActRec *ar); +TypedValue* fg_magicksetimagerenderingintent(ActRec *ar); +TypedValue* fg_magicksetimageresolution(ActRec *ar); +TypedValue* fg_magicksetimagescene(ActRec *ar); +TypedValue* fg_magicksetimagetype(ActRec *ar); +TypedValue* fg_magicksetimageunits(ActRec *ar); +TypedValue* fg_magicksetimagevirtualpixelmethod(ActRec *ar); +TypedValue* fg_magicksetimagewhitepoint(ActRec *ar); +TypedValue* fg_magicksetinterlacescheme(ActRec *ar); +TypedValue* fg_magicksetlastiterator(ActRec *ar); +TypedValue* fg_magicksetpassphrase(ActRec *ar); +TypedValue* fg_magicksetresolution(ActRec *ar); +TypedValue* fg_magicksetsamplingfactors(ActRec *ar); +TypedValue* fg_magicksetsize(ActRec *ar); +TypedValue* fg_magicksetwandsize(ActRec *ar); +TypedValue* fg_magicksharpenimage(ActRec *ar); +TypedValue* fg_magickshaveimage(ActRec *ar); +TypedValue* fg_magickshearimage(ActRec *ar); +TypedValue* fg_magicksolarizeimage(ActRec *ar); +TypedValue* fg_magickspliceimage(ActRec *ar); +TypedValue* fg_magickspreadimage(ActRec *ar); +TypedValue* fg_magicksteganoimage(ActRec *ar); +TypedValue* fg_magickstereoimage(ActRec *ar); +TypedValue* fg_magickstripimage(ActRec *ar); +TypedValue* fg_magickswirlimage(ActRec *ar); +TypedValue* fg_magicktextureimage(ActRec *ar); +TypedValue* fg_magickthresholdimage(ActRec *ar); +TypedValue* fg_magicktintimage(ActRec *ar); +TypedValue* fg_magicktransformimage(ActRec *ar); +TypedValue* fg_magicktrimimage(ActRec *ar); +TypedValue* fg_magickunsharpmaskimage(ActRec *ar); +TypedValue* fg_magickwaveimage(ActRec *ar); +TypedValue* fg_magickwhitethresholdimage(ActRec *ar); +TypedValue* fg_magickwriteimage(ActRec *ar); +TypedValue* fg_magickwriteimagefile(ActRec *ar); +TypedValue* fg_magickwriteimages(ActRec *ar); +TypedValue* fg_magickwriteimagesfile(ActRec *ar); +TypedValue* fg_pixelgetalpha(ActRec *ar); +TypedValue* fg_pixelgetalphaquantum(ActRec *ar); +TypedValue* fg_pixelgetblack(ActRec *ar); +TypedValue* fg_pixelgetblackquantum(ActRec *ar); +TypedValue* fg_pixelgetblue(ActRec *ar); +TypedValue* fg_pixelgetbluequantum(ActRec *ar); +TypedValue* fg_pixelgetcolorasstring(ActRec *ar); +TypedValue* fg_pixelgetcolorcount(ActRec *ar); +TypedValue* fg_pixelgetcyan(ActRec *ar); +TypedValue* fg_pixelgetcyanquantum(ActRec *ar); +TypedValue* fg_pixelgetexception(ActRec *ar); +TypedValue* fg_pixelgetexceptionstring(ActRec *ar); +TypedValue* fg_pixelgetexceptiontype(ActRec *ar); +TypedValue* fg_pixelgetgreen(ActRec *ar); +TypedValue* fg_pixelgetgreenquantum(ActRec *ar); +TypedValue* fg_pixelgetindex(ActRec *ar); +TypedValue* fg_pixelgetmagenta(ActRec *ar); +TypedValue* fg_pixelgetmagentaquantum(ActRec *ar); +TypedValue* fg_pixelgetopacity(ActRec *ar); +TypedValue* fg_pixelgetopacityquantum(ActRec *ar); +TypedValue* fg_pixelgetquantumcolor(ActRec *ar); +TypedValue* fg_pixelgetred(ActRec *ar); +TypedValue* fg_pixelgetredquantum(ActRec *ar); +TypedValue* fg_pixelgetyellow(ActRec *ar); +TypedValue* fg_pixelgetyellowquantum(ActRec *ar); +TypedValue* fg_pixelsetalpha(ActRec *ar); +TypedValue* fg_pixelsetalphaquantum(ActRec *ar); +TypedValue* fg_pixelsetblack(ActRec *ar); +TypedValue* fg_pixelsetblackquantum(ActRec *ar); +TypedValue* fg_pixelsetblue(ActRec *ar); +TypedValue* fg_pixelsetbluequantum(ActRec *ar); +TypedValue* fg_pixelsetcolor(ActRec *ar); +TypedValue* fg_pixelsetcolorcount(ActRec *ar); +TypedValue* fg_pixelsetcyan(ActRec *ar); +TypedValue* fg_pixelsetcyanquantum(ActRec *ar); +TypedValue* fg_pixelsetgreen(ActRec *ar); +TypedValue* fg_pixelsetgreenquantum(ActRec *ar); +TypedValue* fg_pixelsetindex(ActRec *ar); +TypedValue* fg_pixelsetmagenta(ActRec *ar); +TypedValue* fg_pixelsetmagentaquantum(ActRec *ar); +TypedValue* fg_pixelsetopacity(ActRec *ar); +TypedValue* fg_pixelsetopacityquantum(ActRec *ar); +TypedValue* fg_pixelsetquantumcolor(ActRec *ar); +TypedValue* fg_pixelsetred(ActRec *ar); +TypedValue* fg_pixelsetredquantum(ActRec *ar); +TypedValue* fg_pixelsetyellow(ActRec *ar); +TypedValue* fg_pixelsetyellowquantum(ActRec *ar); +TypedValue* fg_pixelgetiteratorexception(ActRec *ar); +TypedValue* fg_pixelgetiteratorexceptionstring(ActRec *ar); +TypedValue* fg_pixelgetiteratorexceptiontype(ActRec *ar); +TypedValue* fg_pixelgetnextiteratorrow(ActRec *ar); +TypedValue* fg_pixelresetiterator(ActRec *ar); +TypedValue* fg_pixelsetiteratorrow(ActRec *ar); +TypedValue* fg_pixelsynciterator(ActRec *ar); +TypedValue* fg_mail(ActRec *ar); +TypedValue* fg_ezmlm_hash(ActRec *ar); +TypedValue* fg_mailparse_msg_create(ActRec *ar); +TypedValue* fg_mailparse_msg_free(ActRec *ar); +TypedValue* fg_mailparse_msg_parse_file(ActRec *ar); +TypedValue* fg_mailparse_msg_parse(ActRec *ar); +TypedValue* fg_mailparse_msg_extract_part_file(ActRec *ar); +TypedValue* fg_mailparse_msg_extract_whole_part_file(ActRec *ar); +TypedValue* fg_mailparse_msg_extract_part(ActRec *ar); +TypedValue* fg_mailparse_msg_get_part_data(ActRec *ar); +TypedValue* fg_mailparse_msg_get_part(ActRec *ar); +TypedValue* fg_mailparse_msg_get_structure(ActRec *ar); +TypedValue* fg_mailparse_rfc822_parse_addresses(ActRec *ar); +TypedValue* fg_mailparse_stream_encode(ActRec *ar); +TypedValue* fg_mailparse_uudecode_all(ActRec *ar); +TypedValue* fg_mailparse_determine_best_xfer_encoding(ActRec *ar); +TypedValue* fg_pi(ActRec *ar); +TypedValue* fg_min(ActRec *ar); +TypedValue* fg_max(ActRec *ar); +TypedValue* fg_abs(ActRec *ar); +TypedValue* fg_is_finite(ActRec *ar); +TypedValue* fg_is_infinite(ActRec *ar); +TypedValue* fg_is_nan(ActRec *ar); +TypedValue* fg_ceil(ActRec *ar); +TypedValue* fg_floor(ActRec *ar); +TypedValue* fg_round(ActRec *ar); +TypedValue* fg_deg2rad(ActRec *ar); +TypedValue* fg_rad2deg(ActRec *ar); +TypedValue* fg_decbin(ActRec *ar); +TypedValue* fg_dechex(ActRec *ar); +TypedValue* fg_decoct(ActRec *ar); +TypedValue* fg_bindec(ActRec *ar); +TypedValue* fg_hexdec(ActRec *ar); +TypedValue* fg_octdec(ActRec *ar); +TypedValue* fg_base_convert(ActRec *ar); +TypedValue* fg_pow(ActRec *ar); +TypedValue* fg_exp(ActRec *ar); +TypedValue* fg_expm1(ActRec *ar); +TypedValue* fg_log10(ActRec *ar); +TypedValue* fg_log1p(ActRec *ar); +TypedValue* fg_log(ActRec *ar); +TypedValue* fg_cos(ActRec *ar); +TypedValue* fg_cosh(ActRec *ar); +TypedValue* fg_sin(ActRec *ar); +TypedValue* fg_sinh(ActRec *ar); +TypedValue* fg_tan(ActRec *ar); +TypedValue* fg_tanh(ActRec *ar); +TypedValue* fg_acos(ActRec *ar); +TypedValue* fg_acosh(ActRec *ar); +TypedValue* fg_asin(ActRec *ar); +TypedValue* fg_asinh(ActRec *ar); +TypedValue* fg_atan(ActRec *ar); +TypedValue* fg_atanh(ActRec *ar); +TypedValue* fg_atan2(ActRec *ar); +TypedValue* fg_hypot(ActRec *ar); +TypedValue* fg_fmod(ActRec *ar); +TypedValue* fg_sqrt(ActRec *ar); +TypedValue* fg_getrandmax(ActRec *ar); +TypedValue* fg_srand(ActRec *ar); +TypedValue* fg_rand(ActRec *ar); +TypedValue* fg_mt_getrandmax(ActRec *ar); +TypedValue* fg_mt_srand(ActRec *ar); +TypedValue* fg_mt_rand(ActRec *ar); +TypedValue* fg_lcg_value(ActRec *ar); +TypedValue* fg_mb_list_encodings(ActRec *ar); +TypedValue* fg_mb_list_encodings_alias_names(ActRec *ar); +TypedValue* fg_mb_list_mime_names(ActRec *ar); +TypedValue* fg_mb_check_encoding(ActRec *ar); +TypedValue* fg_mb_convert_case(ActRec *ar); +TypedValue* fg_mb_convert_encoding(ActRec *ar); +TypedValue* fg_mb_convert_kana(ActRec *ar); +TypedValue* fg_mb_convert_variables(ActRec *ar); +TypedValue* fg_mb_decode_mimeheader(ActRec *ar); +TypedValue* fg_mb_decode_numericentity(ActRec *ar); +TypedValue* fg_mb_detect_encoding(ActRec *ar); +TypedValue* fg_mb_detect_order(ActRec *ar); +TypedValue* fg_mb_encode_mimeheader(ActRec *ar); +TypedValue* fg_mb_encode_numericentity(ActRec *ar); +TypedValue* fg_mb_ereg_match(ActRec *ar); +TypedValue* fg_mb_ereg_replace(ActRec *ar); +TypedValue* fg_mb_ereg_search_getpos(ActRec *ar); +TypedValue* fg_mb_ereg_search_getregs(ActRec *ar); +TypedValue* fg_mb_ereg_search_init(ActRec *ar); +TypedValue* fg_mb_ereg_search_pos(ActRec *ar); +TypedValue* fg_mb_ereg_search_regs(ActRec *ar); +TypedValue* fg_mb_ereg_search_setpos(ActRec *ar); +TypedValue* fg_mb_ereg_search(ActRec *ar); +TypedValue* fg_mb_ereg(ActRec *ar); +TypedValue* fg_mb_eregi_replace(ActRec *ar); +TypedValue* fg_mb_eregi(ActRec *ar); +TypedValue* fg_mb_get_info(ActRec *ar); +TypedValue* fg_mb_http_input(ActRec *ar); +TypedValue* fg_mb_http_output(ActRec *ar); +TypedValue* fg_mb_internal_encoding(ActRec *ar); +TypedValue* fg_mb_language(ActRec *ar); +TypedValue* fg_mb_output_handler(ActRec *ar); +TypedValue* fg_mb_parse_str(ActRec *ar); +TypedValue* fg_mb_preferred_mime_name(ActRec *ar); +TypedValue* fg_mb_regex_encoding(ActRec *ar); +TypedValue* fg_mb_regex_set_options(ActRec *ar); +TypedValue* fg_mb_send_mail(ActRec *ar); +TypedValue* fg_mb_split(ActRec *ar); +TypedValue* fg_mb_strcut(ActRec *ar); +TypedValue* fg_mb_strimwidth(ActRec *ar); +TypedValue* fg_mb_stripos(ActRec *ar); +TypedValue* fg_mb_stristr(ActRec *ar); +TypedValue* fg_mb_strlen(ActRec *ar); +TypedValue* fg_mb_strpos(ActRec *ar); +TypedValue* fg_mb_strrchr(ActRec *ar); +TypedValue* fg_mb_strrichr(ActRec *ar); +TypedValue* fg_mb_strripos(ActRec *ar); +TypedValue* fg_mb_strrpos(ActRec *ar); +TypedValue* fg_mb_strstr(ActRec *ar); +TypedValue* fg_mb_strtolower(ActRec *ar); +TypedValue* fg_mb_strtoupper(ActRec *ar); +TypedValue* fg_mb_strwidth(ActRec *ar); +TypedValue* fg_mb_substitute_character(ActRec *ar); +TypedValue* fg_mb_substr_count(ActRec *ar); +TypedValue* fg_mb_substr(ActRec *ar); +TypedValue* fg_mcrypt_module_open(ActRec *ar); +TypedValue* fg_mcrypt_module_close(ActRec *ar); +TypedValue* fg_mcrypt_list_algorithms(ActRec *ar); +TypedValue* fg_mcrypt_list_modes(ActRec *ar); +TypedValue* fg_mcrypt_module_get_algo_block_size(ActRec *ar); +TypedValue* fg_mcrypt_module_get_algo_key_size(ActRec *ar); +TypedValue* fg_mcrypt_module_get_supported_key_sizes(ActRec *ar); +TypedValue* fg_mcrypt_module_is_block_algorithm_mode(ActRec *ar); +TypedValue* fg_mcrypt_module_is_block_algorithm(ActRec *ar); +TypedValue* fg_mcrypt_module_is_block_mode(ActRec *ar); +TypedValue* fg_mcrypt_module_self_test(ActRec *ar); +TypedValue* fg_mcrypt_create_iv(ActRec *ar); +TypedValue* fg_mcrypt_encrypt(ActRec *ar); +TypedValue* fg_mcrypt_decrypt(ActRec *ar); +TypedValue* fg_mcrypt_cbc(ActRec *ar); +TypedValue* fg_mcrypt_cfb(ActRec *ar); +TypedValue* fg_mcrypt_ecb(ActRec *ar); +TypedValue* fg_mcrypt_ofb(ActRec *ar); +TypedValue* fg_mcrypt_get_block_size(ActRec *ar); +TypedValue* fg_mcrypt_get_cipher_name(ActRec *ar); +TypedValue* fg_mcrypt_get_iv_size(ActRec *ar); +TypedValue* fg_mcrypt_get_key_size(ActRec *ar); +TypedValue* fg_mcrypt_enc_get_algorithms_name(ActRec *ar); +TypedValue* fg_mcrypt_enc_get_block_size(ActRec *ar); +TypedValue* fg_mcrypt_enc_get_iv_size(ActRec *ar); +TypedValue* fg_mcrypt_enc_get_key_size(ActRec *ar); +TypedValue* fg_mcrypt_enc_get_modes_name(ActRec *ar); +TypedValue* fg_mcrypt_enc_get_supported_key_sizes(ActRec *ar); +TypedValue* fg_mcrypt_enc_is_block_algorithm_mode(ActRec *ar); +TypedValue* fg_mcrypt_enc_is_block_algorithm(ActRec *ar); +TypedValue* fg_mcrypt_enc_is_block_mode(ActRec *ar); +TypedValue* fg_mcrypt_enc_self_test(ActRec *ar); +TypedValue* fg_mcrypt_generic(ActRec *ar); +TypedValue* fg_mcrypt_generic_init(ActRec *ar); +TypedValue* fg_mdecrypt_generic(ActRec *ar); +TypedValue* fg_mcrypt_generic_deinit(ActRec *ar); +TypedValue* fg_mcrypt_generic_end(ActRec *ar); +TypedValue* fg_memcache_connect(ActRec *ar); +TypedValue* fg_memcache_pconnect(ActRec *ar); +TypedValue* fg_memcache_add(ActRec *ar); +TypedValue* fg_memcache_set(ActRec *ar); +TypedValue* fg_memcache_replace(ActRec *ar); +TypedValue* fg_memcache_get(ActRec *ar); +TypedValue* fg_memcache_delete(ActRec *ar); +TypedValue* fg_memcache_increment(ActRec *ar); +TypedValue* fg_memcache_decrement(ActRec *ar); +TypedValue* fg_memcache_close(ActRec *ar); +TypedValue* fg_memcache_debug(ActRec *ar); +TypedValue* fg_memcache_get_version(ActRec *ar); +TypedValue* fg_memcache_flush(ActRec *ar); +TypedValue* fg_memcache_setoptimeout(ActRec *ar); +TypedValue* fg_memcache_get_server_status(ActRec *ar); +TypedValue* fg_memcache_set_compress_threshold(ActRec *ar); +TypedValue* fg_memcache_get_stats(ActRec *ar); +TypedValue* fg_memcache_get_extended_stats(ActRec *ar); +TypedValue* fg_memcache_set_server_params(ActRec *ar); +TypedValue* fg_memcache_add_server(ActRec *ar); +TypedValue* fg_connection_aborted(ActRec *ar); +TypedValue* fg_connection_status(ActRec *ar); +TypedValue* fg_connection_timeout(ActRec *ar); +TypedValue* fg_constant(ActRec *ar); +TypedValue* fg_define(ActRec *ar); +TypedValue* fg_defined(ActRec *ar); +TypedValue* fg_die(ActRec *ar); +TypedValue* fg_exit(ActRec *ar); +TypedValue* fg_eval(ActRec *ar); +TypedValue* fg_get_browser(ActRec *ar); +TypedValue* fg___halt_compiler(ActRec *ar); +TypedValue* fg_highlight_file(ActRec *ar); +TypedValue* fg_show_source(ActRec *ar); +TypedValue* fg_highlight_string(ActRec *ar); +TypedValue* fg_ignore_user_abort(ActRec *ar); +TypedValue* fg_pack(ActRec *ar); +TypedValue* fg_php_check_syntax(ActRec *ar); +TypedValue* fg_php_strip_whitespace(ActRec *ar); +TypedValue* fg_sleep(ActRec *ar); +TypedValue* fg_usleep(ActRec *ar); +TypedValue* fg_time_nanosleep(ActRec *ar); +TypedValue* fg_time_sleep_until(ActRec *ar); +TypedValue* fg_uniqid(ActRec *ar); +TypedValue* fg_unpack(ActRec *ar); +TypedValue* fg_sys_getloadavg(ActRec *ar); +TypedValue* fg_token_get_all(ActRec *ar); +TypedValue* fg_token_name(ActRec *ar); +TypedValue* fg_hphp_process_abort(ActRec *ar); +TypedValue* fg_hphp_to_string(ActRec *ar); +TypedValue* fg_mysql_connect(ActRec *ar); +TypedValue* fg_mysql_async_connect_start(ActRec *ar); +TypedValue* fg_mysql_async_connect_completed(ActRec *ar); +TypedValue* fg_mysql_async_query_start(ActRec *ar); +TypedValue* fg_mysql_async_query_result(ActRec *ar); +TypedValue* fg_mysql_async_query_completed(ActRec *ar); +TypedValue* fg_mysql_async_fetch_array(ActRec *ar); +TypedValue* fg_mysql_async_wait_actionable(ActRec *ar); +TypedValue* fg_mysql_async_status(ActRec *ar); +TypedValue* fg_mysql_pconnect(ActRec *ar); +TypedValue* fg_mysql_connect_with_db(ActRec *ar); +TypedValue* fg_mysql_pconnect_with_db(ActRec *ar); +TypedValue* fg_mysql_set_charset(ActRec *ar); +TypedValue* fg_mysql_ping(ActRec *ar); +TypedValue* fg_mysql_escape_string(ActRec *ar); +TypedValue* fg_mysql_real_escape_string(ActRec *ar); +TypedValue* fg_mysql_client_encoding(ActRec *ar); +TypedValue* fg_mysql_close(ActRec *ar); +TypedValue* fg_mysql_errno(ActRec *ar); +TypedValue* fg_mysql_error(ActRec *ar); +TypedValue* fg_mysql_warning_count(ActRec *ar); +TypedValue* fg_mysql_get_client_info(ActRec *ar); +TypedValue* fg_mysql_get_host_info(ActRec *ar); +TypedValue* fg_mysql_get_proto_info(ActRec *ar); +TypedValue* fg_mysql_get_server_info(ActRec *ar); +TypedValue* fg_mysql_info(ActRec *ar); +TypedValue* fg_mysql_insert_id(ActRec *ar); +TypedValue* fg_mysql_stat(ActRec *ar); +TypedValue* fg_mysql_thread_id(ActRec *ar); +TypedValue* fg_mysql_create_db(ActRec *ar); +TypedValue* fg_mysql_select_db(ActRec *ar); +TypedValue* fg_mysql_drop_db(ActRec *ar); +TypedValue* fg_mysql_affected_rows(ActRec *ar); +TypedValue* fg_mysql_set_timeout(ActRec *ar); +TypedValue* fg_mysql_query(ActRec *ar); +TypedValue* fg_mysql_multi_query(ActRec *ar); +TypedValue* fg_mysql_next_result(ActRec *ar); +TypedValue* fg_mysql_more_results(ActRec *ar); +TypedValue* fg_mysql_fetch_result(ActRec *ar); +TypedValue* fg_mysql_unbuffered_query(ActRec *ar); +TypedValue* fg_mysql_db_query(ActRec *ar); +TypedValue* fg_mysql_list_dbs(ActRec *ar); +TypedValue* fg_mysql_list_tables(ActRec *ar); +TypedValue* fg_mysql_list_fields(ActRec *ar); +TypedValue* fg_mysql_list_processes(ActRec *ar); +TypedValue* fg_mysql_db_name(ActRec *ar); +TypedValue* fg_mysql_tablename(ActRec *ar); +TypedValue* fg_mysql_num_fields(ActRec *ar); +TypedValue* fg_mysql_num_rows(ActRec *ar); +TypedValue* fg_mysql_free_result(ActRec *ar); +TypedValue* fg_mysql_data_seek(ActRec *ar); +TypedValue* fg_mysql_fetch_row(ActRec *ar); +TypedValue* fg_mysql_fetch_assoc(ActRec *ar); +TypedValue* fg_mysql_fetch_array(ActRec *ar); +TypedValue* fg_mysql_fetch_lengths(ActRec *ar); +TypedValue* fg_mysql_fetch_object(ActRec *ar); +TypedValue* fg_mysql_result(ActRec *ar); +TypedValue* fg_mysql_fetch_field(ActRec *ar); +TypedValue* fg_mysql_field_seek(ActRec *ar); +TypedValue* fg_mysql_field_name(ActRec *ar); +TypedValue* fg_mysql_field_table(ActRec *ar); +TypedValue* fg_mysql_field_len(ActRec *ar); +TypedValue* fg_mysql_field_type(ActRec *ar); +TypedValue* fg_mysql_field_flags(ActRec *ar); +TypedValue* fg_gethostname(ActRec *ar); +TypedValue* fg_gethostbyaddr(ActRec *ar); +TypedValue* fg_gethostbyname(ActRec *ar); +TypedValue* fg_gethostbynamel(ActRec *ar); +TypedValue* fg_getprotobyname(ActRec *ar); +TypedValue* fg_getprotobynumber(ActRec *ar); +TypedValue* fg_getservbyname(ActRec *ar); +TypedValue* fg_getservbyport(ActRec *ar); +TypedValue* fg_inet_ntop(ActRec *ar); +TypedValue* fg_inet_pton(ActRec *ar); +TypedValue* fg_ip2long(ActRec *ar); +TypedValue* fg_long2ip(ActRec *ar); +TypedValue* fg_dns_check_record(ActRec *ar); +TypedValue* fg_checkdnsrr(ActRec *ar); +TypedValue* fg_dns_get_record(ActRec *ar); +TypedValue* fg_dns_get_mx(ActRec *ar); +TypedValue* fg_getmxrr(ActRec *ar); +TypedValue* fg_fsockopen(ActRec *ar); +TypedValue* fg_pfsockopen(ActRec *ar); +TypedValue* fg_socket_get_status(ActRec *ar); +TypedValue* fg_socket_set_blocking(ActRec *ar); +TypedValue* fg_socket_set_timeout(ActRec *ar); +TypedValue* fg_header(ActRec *ar); +TypedValue* fg_http_response_code(ActRec *ar); +TypedValue* fg_headers_list(ActRec *ar); +TypedValue* fg_get_http_request_size(ActRec *ar); +TypedValue* fg_headers_sent(ActRec *ar); +TypedValue* fg_header_register_callback(ActRec *ar); +TypedValue* fg_header_remove(ActRec *ar); +TypedValue* fg_setcookie(ActRec *ar); +TypedValue* fg_setrawcookie(ActRec *ar); +TypedValue* fg_define_syslog_variables(ActRec *ar); +TypedValue* fg_openlog(ActRec *ar); +TypedValue* fg_closelog(ActRec *ar); +TypedValue* fg_syslog(ActRec *ar); +TypedValue* fg_openssl_csr_export_to_file(ActRec *ar); +TypedValue* fg_openssl_csr_export(ActRec *ar); +TypedValue* fg_openssl_csr_get_public_key(ActRec *ar); +TypedValue* fg_openssl_csr_get_subject(ActRec *ar); +TypedValue* fg_openssl_csr_new(ActRec *ar); +TypedValue* fg_openssl_csr_sign(ActRec *ar); +TypedValue* fg_openssl_error_string(ActRec *ar); +TypedValue* fg_openssl_open(ActRec *ar); +TypedValue* fg_openssl_pkcs12_export_to_file(ActRec *ar); +TypedValue* fg_openssl_pkcs12_export(ActRec *ar); +TypedValue* fg_openssl_pkcs12_read(ActRec *ar); +TypedValue* fg_openssl_pkcs7_decrypt(ActRec *ar); +TypedValue* fg_openssl_pkcs7_encrypt(ActRec *ar); +TypedValue* fg_openssl_pkcs7_sign(ActRec *ar); +TypedValue* fg_openssl_pkcs7_verify(ActRec *ar); +TypedValue* fg_openssl_pkey_export_to_file(ActRec *ar); +TypedValue* fg_openssl_pkey_export(ActRec *ar); +TypedValue* fg_openssl_pkey_free(ActRec *ar); +TypedValue* fg_openssl_free_key(ActRec *ar); +TypedValue* fg_openssl_pkey_get_details(ActRec *ar); +TypedValue* fg_openssl_pkey_get_private(ActRec *ar); +TypedValue* fg_openssl_get_privatekey(ActRec *ar); +TypedValue* fg_openssl_pkey_get_public(ActRec *ar); +TypedValue* fg_openssl_get_publickey(ActRec *ar); +TypedValue* fg_openssl_pkey_new(ActRec *ar); +TypedValue* fg_openssl_private_decrypt(ActRec *ar); +TypedValue* fg_openssl_private_encrypt(ActRec *ar); +TypedValue* fg_openssl_public_decrypt(ActRec *ar); +TypedValue* fg_openssl_public_encrypt(ActRec *ar); +TypedValue* fg_openssl_seal(ActRec *ar); +TypedValue* fg_openssl_sign(ActRec *ar); +TypedValue* fg_openssl_verify(ActRec *ar); +TypedValue* fg_openssl_x509_check_private_key(ActRec *ar); +TypedValue* fg_openssl_x509_checkpurpose(ActRec *ar); +TypedValue* fg_openssl_x509_export_to_file(ActRec *ar); +TypedValue* fg_openssl_x509_export(ActRec *ar); +TypedValue* fg_openssl_x509_free(ActRec *ar); +TypedValue* fg_openssl_x509_parse(ActRec *ar); +TypedValue* fg_openssl_x509_read(ActRec *ar); +TypedValue* fg_openssl_random_pseudo_bytes(ActRec *ar); +TypedValue* fg_openssl_cipher_iv_length(ActRec *ar); +TypedValue* fg_openssl_encrypt(ActRec *ar); +TypedValue* fg_openssl_decrypt(ActRec *ar); +TypedValue* fg_openssl_digest(ActRec *ar); +TypedValue* fg_openssl_get_cipher_methods(ActRec *ar); +TypedValue* fg_openssl_get_md_methods(ActRec *ar); +TypedValue* fg_assert_options(ActRec *ar); +TypedValue* fg_assert(ActRec *ar); +TypedValue* fg_dl(ActRec *ar); +TypedValue* fg_extension_loaded(ActRec *ar); +TypedValue* fg_get_loaded_extensions(ActRec *ar); +TypedValue* fg_get_extension_funcs(ActRec *ar); +TypedValue* fg_get_cfg_var(ActRec *ar); +TypedValue* fg_get_current_user(ActRec *ar); +TypedValue* fg_get_defined_constants(ActRec *ar); +TypedValue* fg_get_include_path(ActRec *ar); +TypedValue* fg_restore_include_path(ActRec *ar); +TypedValue* fg_set_include_path(ActRec *ar); +TypedValue* fg_get_included_files(ActRec *ar); +TypedValue* fg_inclued_get_data(ActRec *ar); +TypedValue* fg_get_magic_quotes_gpc(ActRec *ar); +TypedValue* fg_get_magic_quotes_runtime(ActRec *ar); +TypedValue* fg_get_required_files(ActRec *ar); +TypedValue* fg_getenv(ActRec *ar); +TypedValue* fg_getlastmod(ActRec *ar); +TypedValue* fg_getmygid(ActRec *ar); +TypedValue* fg_getmyinode(ActRec *ar); +TypedValue* fg_getmypid(ActRec *ar); +TypedValue* fg_getmyuid(ActRec *ar); +TypedValue* fg_getopt(ActRec *ar); +TypedValue* fg_getrusage(ActRec *ar); +TypedValue* fg_clock_getres(ActRec *ar); +TypedValue* fg_clock_gettime(ActRec *ar); +TypedValue* fg_clock_settime(ActRec *ar); +TypedValue* fg_cpu_get_count(ActRec *ar); +TypedValue* fg_cpu_get_model(ActRec *ar); +TypedValue* fg_ini_alter(ActRec *ar); +TypedValue* fg_ini_get_all(ActRec *ar); +TypedValue* fg_ini_get(ActRec *ar); +TypedValue* fg_ini_restore(ActRec *ar); +TypedValue* fg_ini_set(ActRec *ar); +TypedValue* fg_memory_get_allocation(ActRec *ar); +TypedValue* fg_memory_get_peak_usage(ActRec *ar); +TypedValue* fg_memory_get_usage(ActRec *ar); +TypedValue* fg_php_ini_scanned_files(ActRec *ar); +TypedValue* fg_php_logo_guid(ActRec *ar); +TypedValue* fg_php_sapi_name(ActRec *ar); +TypedValue* fg_php_uname(ActRec *ar); +TypedValue* fg_phpcredits(ActRec *ar); +TypedValue* fg_phpinfo(ActRec *ar); +TypedValue* fg_phpversion(ActRec *ar); +TypedValue* fg_putenv(ActRec *ar); +TypedValue* fg_set_magic_quotes_runtime(ActRec *ar); +TypedValue* fg_set_time_limit(ActRec *ar); +TypedValue* fg_sys_get_temp_dir(ActRec *ar); +TypedValue* fg_version_compare(ActRec *ar); +TypedValue* fg_gc_enabled(ActRec *ar); +TypedValue* fg_gc_enable(ActRec *ar); +TypedValue* fg_gc_disable(ActRec *ar); +TypedValue* fg_gc_collect_cycles(ActRec *ar); +TypedValue* fg_zend_logo_guid(ActRec *ar); +TypedValue* fg_zend_thread_id(ActRec *ar); +TypedValue* fg_zend_version(ActRec *ar); +TypedValue* fg_ob_start(ActRec *ar); +TypedValue* fg_ob_clean(ActRec *ar); +TypedValue* fg_ob_flush(ActRec *ar); +TypedValue* fg_ob_end_clean(ActRec *ar); +TypedValue* fg_ob_end_flush(ActRec *ar); +TypedValue* fg_flush(ActRec *ar); +TypedValue* fg_ob_get_clean(ActRec *ar); +TypedValue* fg_ob_get_contents(ActRec *ar); +TypedValue* fg_ob_get_flush(ActRec *ar); +TypedValue* fg_ob_get_length(ActRec *ar); +TypedValue* fg_ob_get_level(ActRec *ar); +TypedValue* fg_ob_get_status(ActRec *ar); +TypedValue* fg_ob_gzhandler(ActRec *ar); +TypedValue* fg_ob_implicit_flush(ActRec *ar); +TypedValue* fg_ob_list_handlers(ActRec *ar); +TypedValue* fg_output_add_rewrite_var(ActRec *ar); +TypedValue* fg_output_reset_rewrite_vars(ActRec *ar); +TypedValue* fg_hphp_crash_log(ActRec *ar); +TypedValue* fg_hphp_stats(ActRec *ar); +TypedValue* fg_hphp_get_stats(ActRec *ar); +TypedValue* fg_hphp_get_status(ActRec *ar); +TypedValue* fg_hphp_get_iostatus(ActRec *ar); +TypedValue* fg_hphp_set_iostatus_address(ActRec *ar); +TypedValue* fg_hphp_get_timers(ActRec *ar); +TypedValue* fg_hphp_output_global_state(ActRec *ar); +TypedValue* fg_hphp_instruction_counter(ActRec *ar); +TypedValue* fg_hphp_get_hardware_counters(ActRec *ar); +TypedValue* fg_hphp_set_hardware_events(ActRec *ar); +TypedValue* fg_hphp_clear_hardware_events(ActRec *ar); +TypedValue* fg_pdo_drivers(ActRec *ar); +TypedValue* fg_posix_access(ActRec *ar); +TypedValue* fg_posix_ctermid(ActRec *ar); +TypedValue* fg_posix_get_last_error(ActRec *ar); +TypedValue* fg_posix_getcwd(ActRec *ar); +TypedValue* fg_posix_getegid(ActRec *ar); +TypedValue* fg_posix_geteuid(ActRec *ar); +TypedValue* fg_posix_getgid(ActRec *ar); +TypedValue* fg_posix_getgrgid(ActRec *ar); +TypedValue* fg_posix_getgrnam(ActRec *ar); +TypedValue* fg_posix_getgroups(ActRec *ar); +TypedValue* fg_posix_getlogin(ActRec *ar); +TypedValue* fg_posix_getpgid(ActRec *ar); +TypedValue* fg_posix_getpgrp(ActRec *ar); +TypedValue* fg_posix_getpid(ActRec *ar); +TypedValue* fg_posix_getppid(ActRec *ar); +TypedValue* fg_posix_getpwnam(ActRec *ar); +TypedValue* fg_posix_getpwuid(ActRec *ar); +TypedValue* fg_posix_getrlimit(ActRec *ar); +TypedValue* fg_posix_getsid(ActRec *ar); +TypedValue* fg_posix_getuid(ActRec *ar); +TypedValue* fg_posix_initgroups(ActRec *ar); +TypedValue* fg_posix_isatty(ActRec *ar); +TypedValue* fg_posix_kill(ActRec *ar); +TypedValue* fg_posix_mkfifo(ActRec *ar); +TypedValue* fg_posix_mknod(ActRec *ar); +TypedValue* fg_posix_setegid(ActRec *ar); +TypedValue* fg_posix_seteuid(ActRec *ar); +TypedValue* fg_posix_setgid(ActRec *ar); +TypedValue* fg_posix_setpgid(ActRec *ar); +TypedValue* fg_posix_setsid(ActRec *ar); +TypedValue* fg_posix_setuid(ActRec *ar); +TypedValue* fg_posix_strerror(ActRec *ar); +TypedValue* fg_posix_times(ActRec *ar); +TypedValue* fg_posix_ttyname(ActRec *ar); +TypedValue* fg_posix_uname(ActRec *ar); +TypedValue* fg_preg_grep(ActRec *ar); +TypedValue* fg_preg_match(ActRec *ar); +TypedValue* fg_preg_match_all(ActRec *ar); +TypedValue* fg_preg_replace(ActRec *ar); +TypedValue* fg_preg_replace_callback(ActRec *ar); +TypedValue* fg_preg_split(ActRec *ar); +TypedValue* fg_preg_quote(ActRec *ar); +TypedValue* fg_preg_last_error(ActRec *ar); +TypedValue* fg_ereg_replace(ActRec *ar); +TypedValue* fg_eregi_replace(ActRec *ar); +TypedValue* fg_ereg(ActRec *ar); +TypedValue* fg_eregi(ActRec *ar); +TypedValue* fg_split(ActRec *ar); +TypedValue* fg_spliti(ActRec *ar); +TypedValue* fg_sql_regcase(ActRec *ar); +TypedValue* fg_pcntl_alarm(ActRec *ar); +TypedValue* fg_pcntl_exec(ActRec *ar); +TypedValue* fg_pcntl_fork(ActRec *ar); +TypedValue* fg_pcntl_getpriority(ActRec *ar); +TypedValue* fg_pcntl_setpriority(ActRec *ar); +TypedValue* fg_pcntl_signal(ActRec *ar); +TypedValue* fg_pcntl_wait(ActRec *ar); +TypedValue* fg_pcntl_waitpid(ActRec *ar); +TypedValue* fg_pcntl_wexitstatus(ActRec *ar); +TypedValue* fg_pcntl_wifexited(ActRec *ar); +TypedValue* fg_pcntl_wifsignaled(ActRec *ar); +TypedValue* fg_pcntl_wifstopped(ActRec *ar); +TypedValue* fg_pcntl_wstopsig(ActRec *ar); +TypedValue* fg_pcntl_wtermsig(ActRec *ar); +TypedValue* fg_pcntl_signal_dispatch(ActRec *ar); +TypedValue* fg_shell_exec(ActRec *ar); +TypedValue* fg_exec(ActRec *ar); +TypedValue* fg_passthru(ActRec *ar); +TypedValue* fg_system(ActRec *ar); +TypedValue* fg_proc_open(ActRec *ar); +TypedValue* fg_proc_terminate(ActRec *ar); +TypedValue* fg_proc_close(ActRec *ar); +TypedValue* fg_proc_get_status(ActRec *ar); +TypedValue* fg_proc_nice(ActRec *ar); +TypedValue* fg_escapeshellarg(ActRec *ar); +TypedValue* fg_escapeshellcmd(ActRec *ar); +TypedValue* fg_hphp_get_extension_info(ActRec *ar); +TypedValue* fg_hphp_get_method_info(ActRec *ar); +TypedValue* fg_hphp_get_closure_info(ActRec *ar); +TypedValue* fg_hphp_get_class_constant(ActRec *ar); +TypedValue* fg_hphp_get_class_info(ActRec *ar); +TypedValue* fg_hphp_get_function_info(ActRec *ar); +TypedValue* fg_hphp_invoke(ActRec *ar); +TypedValue* fg_hphp_invoke_method(ActRec *ar); +TypedValue* fg_hphp_instanceof(ActRec *ar); +TypedValue* fg_hphp_create_object(ActRec *ar); +TypedValue* fg_hphp_create_object_without_constructor(ActRec *ar); +TypedValue* fg_hphp_get_property(ActRec *ar); +TypedValue* fg_hphp_set_property(ActRec *ar); +TypedValue* fg_hphp_get_static_property(ActRec *ar); +TypedValue* fg_hphp_set_static_property(ActRec *ar); +TypedValue* fg_hphp_get_original_class_name(ActRec *ar); +TypedValue* fg_hphp_scalar_typehints_enabled(ActRec *ar); +TypedValue* fg_dangling_server_proxy_old_request(ActRec *ar); +TypedValue* fg_dangling_server_proxy_new_request(ActRec *ar); +TypedValue* fg_pagelet_server_is_enabled(ActRec *ar); +TypedValue* fg_pagelet_server_task_start(ActRec *ar); +TypedValue* fg_pagelet_server_task_status(ActRec *ar); +TypedValue* fg_pagelet_server_task_result(ActRec *ar); +TypedValue* fg_pagelet_server_flush(ActRec *ar); +TypedValue* fg_xbox_send_message(ActRec *ar); +TypedValue* fg_xbox_post_message(ActRec *ar); +TypedValue* fg_xbox_task_start(ActRec *ar); +TypedValue* fg_xbox_task_status(ActRec *ar); +TypedValue* fg_xbox_task_result(ActRec *ar); +TypedValue* fg_xbox_process_call_message(ActRec *ar); +TypedValue* fg_xbox_get_thread_timeout(ActRec *ar); +TypedValue* fg_xbox_set_thread_timeout(ActRec *ar); +TypedValue* fg_xbox_schedule_thread_reset(ActRec *ar); +TypedValue* fg_xbox_get_thread_time(ActRec *ar); +TypedValue* fg_session_set_cookie_params(ActRec *ar); +TypedValue* fg_session_get_cookie_params(ActRec *ar); +TypedValue* fg_session_name(ActRec *ar); +TypedValue* fg_session_module_name(ActRec *ar); +TypedValue* fg_session_set_save_handler(ActRec *ar); +TypedValue* fg_session_save_path(ActRec *ar); +TypedValue* fg_session_id(ActRec *ar); +TypedValue* fg_session_regenerate_id(ActRec *ar); +TypedValue* fg_session_cache_limiter(ActRec *ar); +TypedValue* fg_session_cache_expire(ActRec *ar); +TypedValue* fg_session_encode(ActRec *ar); +TypedValue* fg_session_decode(ActRec *ar); +TypedValue* fg_session_start(ActRec *ar); +TypedValue* fg_session_destroy(ActRec *ar); +TypedValue* fg_session_unset(ActRec *ar); +TypedValue* fg_session_commit(ActRec *ar); +TypedValue* fg_session_write_close(ActRec *ar); +TypedValue* fg_session_register(ActRec *ar); +TypedValue* fg_session_unregister(ActRec *ar); +TypedValue* fg_session_is_registered(ActRec *ar); +TypedValue* fg_simplexml_load_string(ActRec *ar); +TypedValue* fg_simplexml_load_file(ActRec *ar); +TypedValue* fg_libxml_get_errors(ActRec *ar); +TypedValue* fg_libxml_get_last_error(ActRec *ar); +TypedValue* fg_libxml_clear_errors(ActRec *ar); +TypedValue* fg_libxml_use_internal_errors(ActRec *ar); +TypedValue* fg_libxml_set_streams_context(ActRec *ar); +TypedValue* fg_libxml_disable_entity_loader(ActRec *ar); +TypedValue* fg_use_soap_error_handler(ActRec *ar); +TypedValue* fg_is_soap_fault(ActRec *ar); +TypedValue* fg__soap_active_version(ActRec *ar); +TypedValue* fg_socket_create(ActRec *ar); +TypedValue* fg_socket_create_listen(ActRec *ar); +TypedValue* fg_socket_create_pair(ActRec *ar); +TypedValue* fg_socket_get_option(ActRec *ar); +TypedValue* fg_socket_getpeername(ActRec *ar); +TypedValue* fg_socket_getsockname(ActRec *ar); +TypedValue* fg_socket_set_block(ActRec *ar); +TypedValue* fg_socket_set_nonblock(ActRec *ar); +TypedValue* fg_socket_set_option(ActRec *ar); +TypedValue* fg_socket_connect(ActRec *ar); +TypedValue* fg_socket_bind(ActRec *ar); +TypedValue* fg_socket_listen(ActRec *ar); +TypedValue* fg_socket_select(ActRec *ar); +TypedValue* fg_socket_server(ActRec *ar); +TypedValue* fg_socket_accept(ActRec *ar); +TypedValue* fg_socket_read(ActRec *ar); +TypedValue* fg_socket_write(ActRec *ar); +TypedValue* fg_socket_send(ActRec *ar); +TypedValue* fg_socket_sendto(ActRec *ar); +TypedValue* fg_socket_recv(ActRec *ar); +TypedValue* fg_socket_recvfrom(ActRec *ar); +TypedValue* fg_socket_shutdown(ActRec *ar); +TypedValue* fg_socket_close(ActRec *ar); +TypedValue* fg_socket_strerror(ActRec *ar); +TypedValue* fg_socket_last_error(ActRec *ar); +TypedValue* fg_socket_clear_error(ActRec *ar); +TypedValue* fg_getaddrinfo(ActRec *ar); +TypedValue* fg_spl_classes(ActRec *ar); +TypedValue* fg_spl_object_hash(ActRec *ar); +TypedValue* fg_hphp_object_pointer(ActRec *ar); +TypedValue* fg_hphp_get_this(ActRec *ar); +TypedValue* fg_class_implements(ActRec *ar); +TypedValue* fg_class_parents(ActRec *ar); +TypedValue* fg_class_uses(ActRec *ar); +TypedValue* fg_iterator_apply(ActRec *ar); +TypedValue* fg_iterator_count(ActRec *ar); +TypedValue* fg_iterator_to_array(ActRec *ar); +TypedValue* fg_spl_autoload_call(ActRec *ar); +TypedValue* fg_spl_autoload_extensions(ActRec *ar); +TypedValue* fg_spl_autoload_functions(ActRec *ar); +TypedValue* fg_spl_autoload_register(ActRec *ar); +TypedValue* fg_spl_autoload_unregister(ActRec *ar); +TypedValue* fg_spl_autoload(ActRec *ar); +TypedValue* fg_hphp_splfileinfo___construct(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getatime(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getbasename(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getctime(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getfileinfo(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getfilename(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getgroup(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getinode(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getlinktarget(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getmtime(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getowner(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getpath(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getpathinfo(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getpathname(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getperms(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getrealpath(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_getsize(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_gettype(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_isdir(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_isexecutable(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_isfile(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_islink(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_isreadable(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_iswritable(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_openfile(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_setfileclass(ActRec *ar); +TypedValue* fg_hphp_splfileinfo_setinfoclass(ActRec *ar); +TypedValue* fg_hphp_splfileinfo___tostring(ActRec *ar); +TypedValue* fg_hphp_splfileobject___construct(ActRec *ar); +TypedValue* fg_hphp_splfileobject_current(ActRec *ar); +TypedValue* fg_hphp_splfileobject_eof(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fflush(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fgetc(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fgetcsv(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fgets(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fgetss(ActRec *ar); +TypedValue* fg_hphp_splfileobject_flock(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fpassthru(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fscanf(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fseek(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fstat(ActRec *ar); +TypedValue* fg_hphp_splfileobject_ftell(ActRec *ar); +TypedValue* fg_hphp_splfileobject_ftruncate(ActRec *ar); +TypedValue* fg_hphp_splfileobject_fwrite(ActRec *ar); +TypedValue* fg_hphp_splfileobject_getcvscontrol(ActRec *ar); +TypedValue* fg_hphp_splfileobject_getflags(ActRec *ar); +TypedValue* fg_hphp_splfileobject_getmaxlinelen(ActRec *ar); +TypedValue* fg_hphp_splfileobject_key(ActRec *ar); +TypedValue* fg_hphp_splfileobject_next(ActRec *ar); +TypedValue* fg_hphp_splfileobject_rewind(ActRec *ar); +TypedValue* fg_hphp_splfileobject_valid(ActRec *ar); +TypedValue* fg_hphp_splfileobject_seek(ActRec *ar); +TypedValue* fg_hphp_splfileobject_setcsvcontrol(ActRec *ar); +TypedValue* fg_hphp_splfileobject_setflags(ActRec *ar); +TypedValue* fg_hphp_splfileobject_setmaxlinelen(ActRec *ar); +TypedValue* fg_stream_context_create(ActRec *ar); +TypedValue* fg_stream_context_get_default(ActRec *ar); +TypedValue* fg_stream_context_get_options(ActRec *ar); +TypedValue* fg_stream_context_set_option(ActRec *ar); +TypedValue* fg_stream_context_set_param(ActRec *ar); +TypedValue* fg_stream_copy_to_stream(ActRec *ar); +TypedValue* fg_stream_encoding(ActRec *ar); +TypedValue* fg_stream_bucket_append(ActRec *ar); +TypedValue* fg_stream_bucket_prepend(ActRec *ar); +TypedValue* fg_stream_bucket_make_writeable(ActRec *ar); +TypedValue* fg_stream_bucket_new(ActRec *ar); +TypedValue* fg_stream_filter_register(ActRec *ar); +TypedValue* fg_stream_filter_remove(ActRec *ar); +TypedValue* fg_stream_filter_append(ActRec *ar); +TypedValue* fg_stream_filter_prepend(ActRec *ar); +TypedValue* fg_stream_get_contents(ActRec *ar); +TypedValue* fg_stream_get_filters(ActRec *ar); +TypedValue* fg_stream_get_line(ActRec *ar); +TypedValue* fg_stream_get_meta_data(ActRec *ar); +TypedValue* fg_stream_get_transports(ActRec *ar); +TypedValue* fg_stream_get_wrappers(ActRec *ar); +TypedValue* fg_stream_register_wrapper(ActRec *ar); +TypedValue* fg_stream_wrapper_register(ActRec *ar); +TypedValue* fg_stream_wrapper_restore(ActRec *ar); +TypedValue* fg_stream_wrapper_unregister(ActRec *ar); +TypedValue* fg_stream_resolve_include_path(ActRec *ar); +TypedValue* fg_stream_select(ActRec *ar); +TypedValue* fg_stream_set_blocking(ActRec *ar); +TypedValue* fg_stream_set_timeout(ActRec *ar); +TypedValue* fg_stream_set_write_buffer(ActRec *ar); +TypedValue* fg_set_file_buffer(ActRec *ar); +TypedValue* fg_stream_socket_accept(ActRec *ar); +TypedValue* fg_stream_socket_server(ActRec *ar); +TypedValue* fg_stream_socket_client(ActRec *ar); +TypedValue* fg_stream_socket_enable_crypto(ActRec *ar); +TypedValue* fg_stream_socket_get_name(ActRec *ar); +TypedValue* fg_stream_socket_pair(ActRec *ar); +TypedValue* fg_stream_socket_recvfrom(ActRec *ar); +TypedValue* fg_stream_socket_sendto(ActRec *ar); +TypedValue* fg_stream_socket_shutdown(ActRec *ar); +TypedValue* fg_addcslashes(ActRec *ar); +TypedValue* fg_stripcslashes(ActRec *ar); +TypedValue* fg_addslashes(ActRec *ar); +TypedValue* fg_stripslashes(ActRec *ar); +TypedValue* fg_bin2hex(ActRec *ar); +TypedValue* fg_hex2bin(ActRec *ar); +TypedValue* fg_nl2br(ActRec *ar); +TypedValue* fg_quotemeta(ActRec *ar); +TypedValue* fg_str_shuffle(ActRec *ar); +TypedValue* fg_strrev(ActRec *ar); +TypedValue* fg_strtolower(ActRec *ar); +TypedValue* fg_strtoupper(ActRec *ar); +TypedValue* fg_ucfirst(ActRec *ar); +TypedValue* fg_lcfirst(ActRec *ar); +TypedValue* fg_ucwords(ActRec *ar); +TypedValue* fg_strip_tags(ActRec *ar); +TypedValue* fg_trim(ActRec *ar); +TypedValue* fg_ltrim(ActRec *ar); +TypedValue* fg_rtrim(ActRec *ar); +TypedValue* fg_chop(ActRec *ar); +TypedValue* fg_explode(ActRec *ar); +TypedValue* fg_implode(ActRec *ar); +TypedValue* fg_join(ActRec *ar); +TypedValue* fg_str_split(ActRec *ar); +TypedValue* fg_chunk_split(ActRec *ar); +TypedValue* fg_strtok(ActRec *ar); +TypedValue* fg_str_replace(ActRec *ar); +TypedValue* fg_str_ireplace(ActRec *ar); +TypedValue* fg_substr_replace(ActRec *ar); +TypedValue* fg_substr(ActRec *ar); +TypedValue* fg_str_pad(ActRec *ar); +TypedValue* fg_str_repeat(ActRec *ar); +TypedValue* fg_wordwrap(ActRec *ar); +TypedValue* fg_html_entity_decode(ActRec *ar); +TypedValue* fg_htmlentities(ActRec *ar); +TypedValue* fg_htmlspecialchars_decode(ActRec *ar); +TypedValue* fg_htmlspecialchars(ActRec *ar); +TypedValue* fg_fb_htmlspecialchars(ActRec *ar); +TypedValue* fg_quoted_printable_encode(ActRec *ar); +TypedValue* fg_quoted_printable_decode(ActRec *ar); +TypedValue* fg_convert_uudecode(ActRec *ar); +TypedValue* fg_convert_uuencode(ActRec *ar); +TypedValue* fg_str_rot13(ActRec *ar); +TypedValue* fg_crc32(ActRec *ar); +TypedValue* fg_crypt(ActRec *ar); +TypedValue* fg_md5(ActRec *ar); +TypedValue* fg_sha1(ActRec *ar); +TypedValue* fg_strtr(ActRec *ar); +TypedValue* fg_convert_cyr_string(ActRec *ar); +TypedValue* fg_get_html_translation_table(ActRec *ar); +TypedValue* fg_hebrev(ActRec *ar); +TypedValue* fg_hebrevc(ActRec *ar); +TypedValue* fg_setlocale(ActRec *ar); +TypedValue* fg_localeconv(ActRec *ar); +TypedValue* fg_nl_langinfo(ActRec *ar); +TypedValue* fg_printf(ActRec *ar); +TypedValue* fg_vprintf(ActRec *ar); +TypedValue* fg_sprintf(ActRec *ar); +TypedValue* fg_vsprintf(ActRec *ar); +TypedValue* fg_sscanf(ActRec *ar); +TypedValue* fg_chr(ActRec *ar); +TypedValue* fg_ord(ActRec *ar); +TypedValue* fg_money_format(ActRec *ar); +TypedValue* fg_number_format(ActRec *ar); +TypedValue* fg_strcmp(ActRec *ar); +TypedValue* fg_strncmp(ActRec *ar); +TypedValue* fg_strnatcmp(ActRec *ar); +TypedValue* fg_strcasecmp(ActRec *ar); +TypedValue* fg_strncasecmp(ActRec *ar); +TypedValue* fg_strnatcasecmp(ActRec *ar); +TypedValue* fg_strcoll(ActRec *ar); +TypedValue* fg_substr_compare(ActRec *ar); +TypedValue* fg_strchr(ActRec *ar); +TypedValue* fg_strrchr(ActRec *ar); +TypedValue* fg_strstr(ActRec *ar); +TypedValue* fg_stristr(ActRec *ar); +TypedValue* fg_strpbrk(ActRec *ar); +TypedValue* fg_strpos(ActRec *ar); +TypedValue* fg_stripos(ActRec *ar); +TypedValue* fg_strrpos(ActRec *ar); +TypedValue* fg_strripos(ActRec *ar); +TypedValue* fg_substr_count(ActRec *ar); +TypedValue* fg_strspn(ActRec *ar); +TypedValue* fg_strcspn(ActRec *ar); +TypedValue* fg_strlen(ActRec *ar); +TypedValue* fg_count_chars(ActRec *ar); +TypedValue* fg_str_word_count(ActRec *ar); +TypedValue* fg_levenshtein(ActRec *ar); +TypedValue* fg_similar_text(ActRec *ar); +TypedValue* fg_soundex(ActRec *ar); +TypedValue* fg_metaphone(ActRec *ar); +TypedValue* fg_parse_str(ActRec *ar); +TypedValue* fg_hphp_is_service_thread(ActRec *ar); +TypedValue* fg_hphp_service_thread_started(ActRec *ar); +TypedValue* fg_hphp_service_thread_stopped(ActRec *ar); +TypedValue* fg_hphp_thread_is_warmup_enabled(ActRec *ar); +TypedValue* fg_hphp_thread_set_warmup_enabled(ActRec *ar); +TypedValue* fg_hphp_get_thread_id(ActRec *ar); +TypedValue* fg_hphp_gettid(ActRec *ar); +TypedValue* fg_thrift_protocol_write_binary(ActRec *ar); +TypedValue* fg_thrift_protocol_read_binary(ActRec *ar); +TypedValue* fg_thrift_protocol_set_compact_version(ActRec *ar); +TypedValue* fg_thrift_protocol_write_compact(ActRec *ar); +TypedValue* fg_thrift_protocol_read_compact(ActRec *ar); +TypedValue* fg_base64_decode(ActRec *ar); +TypedValue* fg_base64_encode(ActRec *ar); +TypedValue* fg_get_headers(ActRec *ar); +TypedValue* fg_get_meta_tags(ActRec *ar); +TypedValue* fg_http_build_query(ActRec *ar); +TypedValue* fg_parse_url(ActRec *ar); +TypedValue* fg_rawurldecode(ActRec *ar); +TypedValue* fg_rawurlencode(ActRec *ar); +TypedValue* fg_urldecode(ActRec *ar); +TypedValue* fg_urlencode(ActRec *ar); +TypedValue* fg_is_bool(ActRec *ar); +TypedValue* fg_is_int(ActRec *ar); +TypedValue* fg_is_integer(ActRec *ar); +TypedValue* fg_is_long(ActRec *ar); +TypedValue* fg_is_double(ActRec *ar); +TypedValue* fg_is_float(ActRec *ar); +TypedValue* fg_is_numeric(ActRec *ar); +TypedValue* fg_is_real(ActRec *ar); +TypedValue* fg_is_string(ActRec *ar); +TypedValue* fg_is_scalar(ActRec *ar); +TypedValue* fg_is_array(ActRec *ar); +TypedValue* fg_is_object(ActRec *ar); +TypedValue* fg_is_resource(ActRec *ar); +TypedValue* fg_is_null(ActRec *ar); +TypedValue* fg_gettype(ActRec *ar); +TypedValue* fg_get_resource_type(ActRec *ar); +TypedValue* fg_intval(ActRec *ar); +TypedValue* fg_doubleval(ActRec *ar); +TypedValue* fg_floatval(ActRec *ar); +TypedValue* fg_strval(ActRec *ar); +TypedValue* fg_settype(ActRec *ar); +TypedValue* fg_print_r(ActRec *ar); +TypedValue* fg_var_export(ActRec *ar); +TypedValue* fg_var_dump(ActRec *ar); +TypedValue* fg_debug_zval_dump(ActRec *ar); +TypedValue* fg_serialize(ActRec *ar); +TypedValue* fg_unserialize(ActRec *ar); +TypedValue* fg_get_defined_vars(ActRec *ar); +TypedValue* fg_import_request_variables(ActRec *ar); +TypedValue* fg_extract(ActRec *ar); +TypedValue* fg_xml_parser_create(ActRec *ar); +TypedValue* fg_xml_parser_free(ActRec *ar); +TypedValue* fg_xml_parse(ActRec *ar); +TypedValue* fg_xml_parse_into_struct(ActRec *ar); +TypedValue* fg_xml_parser_create_ns(ActRec *ar); +TypedValue* fg_xml_parser_get_option(ActRec *ar); +TypedValue* fg_xml_parser_set_option(ActRec *ar); +TypedValue* fg_xml_set_character_data_handler(ActRec *ar); +TypedValue* fg_xml_set_default_handler(ActRec *ar); +TypedValue* fg_xml_set_element_handler(ActRec *ar); +TypedValue* fg_xml_set_processing_instruction_handler(ActRec *ar); +TypedValue* fg_xml_set_start_namespace_decl_handler(ActRec *ar); +TypedValue* fg_xml_set_end_namespace_decl_handler(ActRec *ar); +TypedValue* fg_xml_set_unparsed_entity_decl_handler(ActRec *ar); +TypedValue* fg_xml_set_external_entity_ref_handler(ActRec *ar); +TypedValue* fg_xml_set_notation_decl_handler(ActRec *ar); +TypedValue* fg_xml_set_object(ActRec *ar); +TypedValue* fg_xml_get_current_byte_index(ActRec *ar); +TypedValue* fg_xml_get_current_column_number(ActRec *ar); +TypedValue* fg_xml_get_current_line_number(ActRec *ar); +TypedValue* fg_xml_get_error_code(ActRec *ar); +TypedValue* fg_xml_error_string(ActRec *ar); +TypedValue* fg_utf8_decode(ActRec *ar); +TypedValue* fg_utf8_encode(ActRec *ar); +TypedValue* fg_xmlwriter_open_memory(ActRec *ar); +TypedValue* fg_xmlwriter_open_uri(ActRec *ar); +TypedValue* fg_xmlwriter_set_indent_string(ActRec *ar); +TypedValue* fg_xmlwriter_set_indent(ActRec *ar); +TypedValue* fg_xmlwriter_start_document(ActRec *ar); +TypedValue* fg_xmlwriter_start_element(ActRec *ar); +TypedValue* fg_xmlwriter_start_element_ns(ActRec *ar); +TypedValue* fg_xmlwriter_write_element_ns(ActRec *ar); +TypedValue* fg_xmlwriter_write_element(ActRec *ar); +TypedValue* fg_xmlwriter_end_element(ActRec *ar); +TypedValue* fg_xmlwriter_full_end_element(ActRec *ar); +TypedValue* fg_xmlwriter_start_attribute_ns(ActRec *ar); +TypedValue* fg_xmlwriter_start_attribute(ActRec *ar); +TypedValue* fg_xmlwriter_write_attribute_ns(ActRec *ar); +TypedValue* fg_xmlwriter_write_attribute(ActRec *ar); +TypedValue* fg_xmlwriter_end_attribute(ActRec *ar); +TypedValue* fg_xmlwriter_start_cdata(ActRec *ar); +TypedValue* fg_xmlwriter_write_cdata(ActRec *ar); +TypedValue* fg_xmlwriter_end_cdata(ActRec *ar); +TypedValue* fg_xmlwriter_start_comment(ActRec *ar); +TypedValue* fg_xmlwriter_write_comment(ActRec *ar); +TypedValue* fg_xmlwriter_end_comment(ActRec *ar); +TypedValue* fg_xmlwriter_end_document(ActRec *ar); +TypedValue* fg_xmlwriter_start_pi(ActRec *ar); +TypedValue* fg_xmlwriter_write_pi(ActRec *ar); +TypedValue* fg_xmlwriter_end_pi(ActRec *ar); +TypedValue* fg_xmlwriter_text(ActRec *ar); +TypedValue* fg_xmlwriter_write_raw(ActRec *ar); +TypedValue* fg_xmlwriter_start_dtd(ActRec *ar); +TypedValue* fg_xmlwriter_write_dtd(ActRec *ar); +TypedValue* fg_xmlwriter_start_dtd_element(ActRec *ar); +TypedValue* fg_xmlwriter_write_dtd_element(ActRec *ar); +TypedValue* fg_xmlwriter_end_dtd_element(ActRec *ar); +TypedValue* fg_xmlwriter_start_dtd_attlist(ActRec *ar); +TypedValue* fg_xmlwriter_write_dtd_attlist(ActRec *ar); +TypedValue* fg_xmlwriter_end_dtd_attlist(ActRec *ar); +TypedValue* fg_xmlwriter_start_dtd_entity(ActRec *ar); +TypedValue* fg_xmlwriter_write_dtd_entity(ActRec *ar); +TypedValue* fg_xmlwriter_end_dtd_entity(ActRec *ar); +TypedValue* fg_xmlwriter_end_dtd(ActRec *ar); +TypedValue* fg_xmlwriter_flush(ActRec *ar); +TypedValue* fg_xmlwriter_output_memory(ActRec *ar); +TypedValue* fg_readgzfile(ActRec *ar); +TypedValue* fg_gzfile(ActRec *ar); +TypedValue* fg_gzcompress(ActRec *ar); +TypedValue* fg_gzuncompress(ActRec *ar); +TypedValue* fg_gzdeflate(ActRec *ar); +TypedValue* fg_gzinflate(ActRec *ar); +TypedValue* fg_gzencode(ActRec *ar); +TypedValue* fg_gzdecode(ActRec *ar); +TypedValue* fg_zlib_get_coding_type(ActRec *ar); +TypedValue* fg_gzopen(ActRec *ar); +TypedValue* fg_gzclose(ActRec *ar); +TypedValue* fg_gzrewind(ActRec *ar); +TypedValue* fg_gzeof(ActRec *ar); +TypedValue* fg_gzgetc(ActRec *ar); +TypedValue* fg_gzgets(ActRec *ar); +TypedValue* fg_gzgetss(ActRec *ar); +TypedValue* fg_gzread(ActRec *ar); +TypedValue* fg_gzpassthru(ActRec *ar); +TypedValue* fg_gzseek(ActRec *ar); +TypedValue* fg_gztell(ActRec *ar); +TypedValue* fg_gzwrite(ActRec *ar); +TypedValue* fg_gzputs(ActRec *ar); +TypedValue* fg_qlzcompress(ActRec *ar); +TypedValue* fg_qlzuncompress(ActRec *ar); +TypedValue* fg_sncompress(ActRec *ar); +TypedValue* fg_snuncompress(ActRec *ar); +TypedValue* fg_nzcompress(ActRec *ar); +TypedValue* fg_nzuncompress(ActRec *ar); +TypedValue* fg_lz4compress(ActRec *ar); +TypedValue* fg_lz4hccompress(ActRec *ar); +TypedValue* fg_lz4uncompress(ActRec *ar); +TypedValue* tg_10WaitHandle___construct(ActRec *ar); +TypedValue* tg_10WaitHandle_getWaitHandle(ActRec *ar); +TypedValue* tg_10WaitHandle_import(ActRec *ar); +TypedValue* tg_10WaitHandle_join(ActRec *ar); +TypedValue* tg_10WaitHandle_isFinished(ActRec *ar); +TypedValue* tg_10WaitHandle_isSucceeded(ActRec *ar); +TypedValue* tg_10WaitHandle_isFailed(ActRec *ar); +TypedValue* tg_10WaitHandle_getID(ActRec *ar); +TypedValue* tg_10WaitHandle_getName(ActRec *ar); +TypedValue* tg_10WaitHandle_getExceptionIfFailed(ActRec *ar); +TypedValue* tg_16StaticWaitHandle___construct(ActRec *ar); VM::Instance* new_StaticResultWaitHandle_Instance(VM::Class*); -TypedValue* tg_22StaticResultWaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_22StaticResultWaitHandle_create(VM::ActRec *ar); +TypedValue* tg_22StaticResultWaitHandle___construct(ActRec *ar); +TypedValue* tg_22StaticResultWaitHandle_create(ActRec *ar); VM::Instance* new_StaticExceptionWaitHandle_Instance(VM::Class*); -TypedValue* tg_25StaticExceptionWaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_25StaticExceptionWaitHandle_create(VM::ActRec *ar); -TypedValue* tg_18WaitableWaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_18WaitableWaitHandle_getContextIdx(VM::ActRec *ar); -TypedValue* tg_18WaitableWaitHandle_getCreator(VM::ActRec *ar); -TypedValue* tg_18WaitableWaitHandle_getParents(VM::ActRec *ar); -TypedValue* tg_18WaitableWaitHandle_getStackTrace(VM::ActRec *ar); -TypedValue* tg_19BlockableWaitHandle___construct(VM::ActRec *ar); +TypedValue* tg_25StaticExceptionWaitHandle___construct(ActRec *ar); +TypedValue* tg_25StaticExceptionWaitHandle_create(ActRec *ar); +TypedValue* tg_18WaitableWaitHandle___construct(ActRec *ar); +TypedValue* tg_18WaitableWaitHandle_getContextIdx(ActRec *ar); +TypedValue* tg_18WaitableWaitHandle_getCreator(ActRec *ar); +TypedValue* tg_18WaitableWaitHandle_getParents(ActRec *ar); +TypedValue* tg_18WaitableWaitHandle_getStackTrace(ActRec *ar); +TypedValue* tg_19BlockableWaitHandle___construct(ActRec *ar); VM::Instance* new_ContinuationWaitHandle_Instance(VM::Class*); -TypedValue* tg_22ContinuationWaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_22ContinuationWaitHandle_start(VM::ActRec *ar); -TypedValue* tg_22ContinuationWaitHandle_getPrivData(VM::ActRec *ar); -TypedValue* tg_22ContinuationWaitHandle_setPrivData(VM::ActRec *ar); +TypedValue* tg_22ContinuationWaitHandle___construct(ActRec *ar); +TypedValue* tg_22ContinuationWaitHandle_start(ActRec *ar); +TypedValue* tg_22ContinuationWaitHandle_getPrivData(ActRec *ar); +TypedValue* tg_22ContinuationWaitHandle_setPrivData(ActRec *ar); VM::Instance* new_GenArrayWaitHandle_Instance(VM::Class*); -TypedValue* tg_18GenArrayWaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_18GenArrayWaitHandle_create(VM::ActRec *ar); +TypedValue* tg_18GenArrayWaitHandle___construct(ActRec *ar); +TypedValue* tg_18GenArrayWaitHandle_create(ActRec *ar); VM::Instance* new_SetResultToRefWaitHandle_Instance(VM::Class*); -TypedValue* tg_24SetResultToRefWaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_24SetResultToRefWaitHandle_create(VM::ActRec *ar); +TypedValue* tg_24SetResultToRefWaitHandle___construct(ActRec *ar); +TypedValue* tg_24SetResultToRefWaitHandle_create(ActRec *ar); VM::Instance* new_RescheduleWaitHandle_Instance(VM::Class*); -TypedValue* tg_20RescheduleWaitHandle___construct(VM::ActRec *ar); -TypedValue* tg_20RescheduleWaitHandle_create(VM::ActRec *ar); +TypedValue* tg_20RescheduleWaitHandle___construct(ActRec *ar); +TypedValue* tg_20RescheduleWaitHandle_create(ActRec *ar); VM::Instance* new_Closure_Instance(VM::Class*); -TypedValue* tg_7Closure___construct(VM::ActRec *ar); +TypedValue* tg_7Closure___construct(ActRec *ar); VM::Instance* new_DummyClosure_Instance(VM::Class*); -TypedValue* tg_12DummyClosure___construct(VM::ActRec *ar); +TypedValue* tg_12DummyClosure___construct(ActRec *ar); VM::Instance* new_Vector_Instance(VM::Class*); -TypedValue* tg_6Vector___construct(VM::ActRec *ar); -TypedValue* tg_6Vector_isEmpty(VM::ActRec *ar); -TypedValue* tg_6Vector_count(VM::ActRec *ar); -TypedValue* tg_6Vector_items(VM::ActRec *ar); -TypedValue* tg_6Vector_keys(VM::ActRec *ar); -TypedValue* tg_6Vector_view(VM::ActRec *ar); -TypedValue* tg_6Vector_kvzip(VM::ActRec *ar); -TypedValue* tg_6Vector_at(VM::ActRec *ar); -TypedValue* tg_6Vector_get(VM::ActRec *ar); -TypedValue* tg_6Vector_set(VM::ActRec *ar); -TypedValue* tg_6Vector_setAll(VM::ActRec *ar); -TypedValue* tg_6Vector_put(VM::ActRec *ar); -TypedValue* tg_6Vector_clear(VM::ActRec *ar); -TypedValue* tg_6Vector_contains(VM::ActRec *ar); -TypedValue* tg_6Vector_containsKey(VM::ActRec *ar); -TypedValue* tg_6Vector_removeKey(VM::ActRec *ar); -TypedValue* tg_6Vector_append(VM::ActRec *ar); -TypedValue* tg_6Vector_add(VM::ActRec *ar); -TypedValue* tg_6Vector_addAll(VM::ActRec *ar); -TypedValue* tg_6Vector_pop(VM::ActRec *ar); -TypedValue* tg_6Vector_resize(VM::ActRec *ar); -TypedValue* tg_6Vector_toArray(VM::ActRec *ar); -TypedValue* tg_6Vector_getIterator(VM::ActRec *ar); -TypedValue* tg_6Vector_map(VM::ActRec *ar); -TypedValue* tg_6Vector_filter(VM::ActRec *ar); -TypedValue* tg_6Vector_zip(VM::ActRec *ar); -TypedValue* tg_6Vector_sort(VM::ActRec *ar); -TypedValue* tg_6Vector_reverse(VM::ActRec *ar); -TypedValue* tg_6Vector_splice(VM::ActRec *ar); -TypedValue* tg_6Vector_linearSearch(VM::ActRec *ar); -TypedValue* tg_6Vector_shuffle(VM::ActRec *ar); -TypedValue* tg_6Vector___toString(VM::ActRec *ar); -TypedValue* tg_6Vector___get(VM::ActRec *ar); -TypedValue* tg_6Vector___set(VM::ActRec *ar); -TypedValue* tg_6Vector___isset(VM::ActRec *ar); -TypedValue* tg_6Vector___unset(VM::ActRec *ar); -TypedValue* tg_6Vector_fromItems(VM::ActRec *ar); -TypedValue* tg_6Vector_fromArray(VM::ActRec *ar); -TypedValue* tg_6Vector_fromVector(VM::ActRec *ar); -TypedValue* tg_6Vector_slice(VM::ActRec *ar); +TypedValue* tg_6Vector___construct(ActRec *ar); +TypedValue* tg_6Vector_isEmpty(ActRec *ar); +TypedValue* tg_6Vector_count(ActRec *ar); +TypedValue* tg_6Vector_items(ActRec *ar); +TypedValue* tg_6Vector_keys(ActRec *ar); +TypedValue* tg_6Vector_view(ActRec *ar); +TypedValue* tg_6Vector_kvzip(ActRec *ar); +TypedValue* tg_6Vector_at(ActRec *ar); +TypedValue* tg_6Vector_get(ActRec *ar); +TypedValue* tg_6Vector_set(ActRec *ar); +TypedValue* tg_6Vector_setAll(ActRec *ar); +TypedValue* tg_6Vector_put(ActRec *ar); +TypedValue* tg_6Vector_clear(ActRec *ar); +TypedValue* tg_6Vector_contains(ActRec *ar); +TypedValue* tg_6Vector_containsKey(ActRec *ar); +TypedValue* tg_6Vector_removeKey(ActRec *ar); +TypedValue* tg_6Vector_append(ActRec *ar); +TypedValue* tg_6Vector_add(ActRec *ar); +TypedValue* tg_6Vector_addAll(ActRec *ar); +TypedValue* tg_6Vector_pop(ActRec *ar); +TypedValue* tg_6Vector_resize(ActRec *ar); +TypedValue* tg_6Vector_toArray(ActRec *ar); +TypedValue* tg_6Vector_getIterator(ActRec *ar); +TypedValue* tg_6Vector_map(ActRec *ar); +TypedValue* tg_6Vector_filter(ActRec *ar); +TypedValue* tg_6Vector_zip(ActRec *ar); +TypedValue* tg_6Vector_sort(ActRec *ar); +TypedValue* tg_6Vector_reverse(ActRec *ar); +TypedValue* tg_6Vector_splice(ActRec *ar); +TypedValue* tg_6Vector_linearSearch(ActRec *ar); +TypedValue* tg_6Vector_shuffle(ActRec *ar); +TypedValue* tg_6Vector___toString(ActRec *ar); +TypedValue* tg_6Vector___get(ActRec *ar); +TypedValue* tg_6Vector___set(ActRec *ar); +TypedValue* tg_6Vector___isset(ActRec *ar); +TypedValue* tg_6Vector___unset(ActRec *ar); +TypedValue* tg_6Vector_fromItems(ActRec *ar); +TypedValue* tg_6Vector_fromArray(ActRec *ar); +TypedValue* tg_6Vector_fromVector(ActRec *ar); +TypedValue* tg_6Vector_slice(ActRec *ar); VM::Instance* new_VectorIterator_Instance(VM::Class*); -TypedValue* tg_14VectorIterator___construct(VM::ActRec *ar); -TypedValue* tg_14VectorIterator_current(VM::ActRec *ar); -TypedValue* tg_14VectorIterator_key(VM::ActRec *ar); -TypedValue* tg_14VectorIterator_valid(VM::ActRec *ar); -TypedValue* tg_14VectorIterator_next(VM::ActRec *ar); -TypedValue* tg_14VectorIterator_rewind(VM::ActRec *ar); +TypedValue* tg_14VectorIterator___construct(ActRec *ar); +TypedValue* tg_14VectorIterator_current(ActRec *ar); +TypedValue* tg_14VectorIterator_key(ActRec *ar); +TypedValue* tg_14VectorIterator_valid(ActRec *ar); +TypedValue* tg_14VectorIterator_next(ActRec *ar); +TypedValue* tg_14VectorIterator_rewind(ActRec *ar); VM::Instance* new_Map_Instance(VM::Class*); -TypedValue* tg_3Map___construct(VM::ActRec *ar); -TypedValue* tg_3Map_isEmpty(VM::ActRec *ar); -TypedValue* tg_3Map_count(VM::ActRec *ar); -TypedValue* tg_3Map_items(VM::ActRec *ar); -TypedValue* tg_3Map_keys(VM::ActRec *ar); -TypedValue* tg_3Map_view(VM::ActRec *ar); -TypedValue* tg_3Map_kvzip(VM::ActRec *ar); -TypedValue* tg_3Map_at(VM::ActRec *ar); -TypedValue* tg_3Map_get(VM::ActRec *ar); -TypedValue* tg_3Map_set(VM::ActRec *ar); -TypedValue* tg_3Map_setAll(VM::ActRec *ar); -TypedValue* tg_3Map_put(VM::ActRec *ar); -TypedValue* tg_3Map_clear(VM::ActRec *ar); -TypedValue* tg_3Map_contains(VM::ActRec *ar); -TypedValue* tg_3Map_containsKey(VM::ActRec *ar); -TypedValue* tg_3Map_remove(VM::ActRec *ar); -TypedValue* tg_3Map_removeKey(VM::ActRec *ar); -TypedValue* tg_3Map_discard(VM::ActRec *ar); -TypedValue* tg_3Map_add(VM::ActRec *ar); -TypedValue* tg_3Map_addAll(VM::ActRec *ar); -TypedValue* tg_3Map_toArray(VM::ActRec *ar); -TypedValue* tg_3Map_copyAsArray(VM::ActRec *ar); -TypedValue* tg_3Map_toKeysArray(VM::ActRec *ar); -TypedValue* tg_3Map_values(VM::ActRec *ar); -TypedValue* tg_3Map_toValuesArray(VM::ActRec *ar); -TypedValue* tg_3Map_updateFromArray(VM::ActRec *ar); -TypedValue* tg_3Map_updateFromIterable(VM::ActRec *ar); -TypedValue* tg_3Map_differenceByKey(VM::ActRec *ar); -TypedValue* tg_3Map_getIterator(VM::ActRec *ar); -TypedValue* tg_3Map_map(VM::ActRec *ar); -TypedValue* tg_3Map_filter(VM::ActRec *ar); -TypedValue* tg_3Map_zip(VM::ActRec *ar); -TypedValue* tg_3Map___toString(VM::ActRec *ar); -TypedValue* tg_3Map___get(VM::ActRec *ar); -TypedValue* tg_3Map___set(VM::ActRec *ar); -TypedValue* tg_3Map___isset(VM::ActRec *ar); -TypedValue* tg_3Map___unset(VM::ActRec *ar); -TypedValue* tg_3Map_fromItems(VM::ActRec *ar); -TypedValue* tg_3Map_fromArray(VM::ActRec *ar); -TypedValue* tg_3Map_fromIterable(VM::ActRec *ar); +TypedValue* tg_3Map___construct(ActRec *ar); +TypedValue* tg_3Map_isEmpty(ActRec *ar); +TypedValue* tg_3Map_count(ActRec *ar); +TypedValue* tg_3Map_items(ActRec *ar); +TypedValue* tg_3Map_keys(ActRec *ar); +TypedValue* tg_3Map_view(ActRec *ar); +TypedValue* tg_3Map_kvzip(ActRec *ar); +TypedValue* tg_3Map_at(ActRec *ar); +TypedValue* tg_3Map_get(ActRec *ar); +TypedValue* tg_3Map_set(ActRec *ar); +TypedValue* tg_3Map_setAll(ActRec *ar); +TypedValue* tg_3Map_put(ActRec *ar); +TypedValue* tg_3Map_clear(ActRec *ar); +TypedValue* tg_3Map_contains(ActRec *ar); +TypedValue* tg_3Map_containsKey(ActRec *ar); +TypedValue* tg_3Map_remove(ActRec *ar); +TypedValue* tg_3Map_removeKey(ActRec *ar); +TypedValue* tg_3Map_discard(ActRec *ar); +TypedValue* tg_3Map_add(ActRec *ar); +TypedValue* tg_3Map_addAll(ActRec *ar); +TypedValue* tg_3Map_toArray(ActRec *ar); +TypedValue* tg_3Map_copyAsArray(ActRec *ar); +TypedValue* tg_3Map_toKeysArray(ActRec *ar); +TypedValue* tg_3Map_values(ActRec *ar); +TypedValue* tg_3Map_toValuesArray(ActRec *ar); +TypedValue* tg_3Map_updateFromArray(ActRec *ar); +TypedValue* tg_3Map_updateFromIterable(ActRec *ar); +TypedValue* tg_3Map_differenceByKey(ActRec *ar); +TypedValue* tg_3Map_getIterator(ActRec *ar); +TypedValue* tg_3Map_map(ActRec *ar); +TypedValue* tg_3Map_filter(ActRec *ar); +TypedValue* tg_3Map_zip(ActRec *ar); +TypedValue* tg_3Map___toString(ActRec *ar); +TypedValue* tg_3Map___get(ActRec *ar); +TypedValue* tg_3Map___set(ActRec *ar); +TypedValue* tg_3Map___isset(ActRec *ar); +TypedValue* tg_3Map___unset(ActRec *ar); +TypedValue* tg_3Map_fromItems(ActRec *ar); +TypedValue* tg_3Map_fromArray(ActRec *ar); +TypedValue* tg_3Map_fromIterable(ActRec *ar); VM::Instance* new_MapIterator_Instance(VM::Class*); -TypedValue* tg_11MapIterator___construct(VM::ActRec *ar); -TypedValue* tg_11MapIterator_current(VM::ActRec *ar); -TypedValue* tg_11MapIterator_key(VM::ActRec *ar); -TypedValue* tg_11MapIterator_valid(VM::ActRec *ar); -TypedValue* tg_11MapIterator_next(VM::ActRec *ar); -TypedValue* tg_11MapIterator_rewind(VM::ActRec *ar); +TypedValue* tg_11MapIterator___construct(ActRec *ar); +TypedValue* tg_11MapIterator_current(ActRec *ar); +TypedValue* tg_11MapIterator_key(ActRec *ar); +TypedValue* tg_11MapIterator_valid(ActRec *ar); +TypedValue* tg_11MapIterator_next(ActRec *ar); +TypedValue* tg_11MapIterator_rewind(ActRec *ar); VM::Instance* new_StableMap_Instance(VM::Class*); -TypedValue* tg_9StableMap___construct(VM::ActRec *ar); -TypedValue* tg_9StableMap_isEmpty(VM::ActRec *ar); -TypedValue* tg_9StableMap_count(VM::ActRec *ar); -TypedValue* tg_9StableMap_items(VM::ActRec *ar); -TypedValue* tg_9StableMap_keys(VM::ActRec *ar); -TypedValue* tg_9StableMap_view(VM::ActRec *ar); -TypedValue* tg_9StableMap_kvzip(VM::ActRec *ar); -TypedValue* tg_9StableMap_at(VM::ActRec *ar); -TypedValue* tg_9StableMap_get(VM::ActRec *ar); -TypedValue* tg_9StableMap_set(VM::ActRec *ar); -TypedValue* tg_9StableMap_setAll(VM::ActRec *ar); -TypedValue* tg_9StableMap_put(VM::ActRec *ar); -TypedValue* tg_9StableMap_clear(VM::ActRec *ar); -TypedValue* tg_9StableMap_contains(VM::ActRec *ar); -TypedValue* tg_9StableMap_containsKey(VM::ActRec *ar); -TypedValue* tg_9StableMap_remove(VM::ActRec *ar); -TypedValue* tg_9StableMap_removeKey(VM::ActRec *ar); -TypedValue* tg_9StableMap_discard(VM::ActRec *ar); -TypedValue* tg_9StableMap_add(VM::ActRec *ar); -TypedValue* tg_9StableMap_addAll(VM::ActRec *ar); -TypedValue* tg_9StableMap_toArray(VM::ActRec *ar); -TypedValue* tg_9StableMap_copyAsArray(VM::ActRec *ar); -TypedValue* tg_9StableMap_toKeysArray(VM::ActRec *ar); -TypedValue* tg_9StableMap_values(VM::ActRec *ar); -TypedValue* tg_9StableMap_toValuesArray(VM::ActRec *ar); -TypedValue* tg_9StableMap_updateFromArray(VM::ActRec *ar); -TypedValue* tg_9StableMap_updateFromIterable(VM::ActRec *ar); -TypedValue* tg_9StableMap_differenceByKey(VM::ActRec *ar); -TypedValue* tg_9StableMap_getIterator(VM::ActRec *ar); -TypedValue* tg_9StableMap_map(VM::ActRec *ar); -TypedValue* tg_9StableMap_filter(VM::ActRec *ar); -TypedValue* tg_9StableMap_zip(VM::ActRec *ar); -TypedValue* tg_9StableMap___get(VM::ActRec *ar); -TypedValue* tg_9StableMap___set(VM::ActRec *ar); -TypedValue* tg_9StableMap___isset(VM::ActRec *ar); -TypedValue* tg_9StableMap___unset(VM::ActRec *ar); -TypedValue* tg_9StableMap_fromItems(VM::ActRec *ar); -TypedValue* tg_9StableMap___toString(VM::ActRec *ar); -TypedValue* tg_9StableMap_fromArray(VM::ActRec *ar); -TypedValue* tg_9StableMap_fromIterable(VM::ActRec *ar); +TypedValue* tg_9StableMap___construct(ActRec *ar); +TypedValue* tg_9StableMap_isEmpty(ActRec *ar); +TypedValue* tg_9StableMap_count(ActRec *ar); +TypedValue* tg_9StableMap_items(ActRec *ar); +TypedValue* tg_9StableMap_keys(ActRec *ar); +TypedValue* tg_9StableMap_view(ActRec *ar); +TypedValue* tg_9StableMap_kvzip(ActRec *ar); +TypedValue* tg_9StableMap_at(ActRec *ar); +TypedValue* tg_9StableMap_get(ActRec *ar); +TypedValue* tg_9StableMap_set(ActRec *ar); +TypedValue* tg_9StableMap_setAll(ActRec *ar); +TypedValue* tg_9StableMap_put(ActRec *ar); +TypedValue* tg_9StableMap_clear(ActRec *ar); +TypedValue* tg_9StableMap_contains(ActRec *ar); +TypedValue* tg_9StableMap_containsKey(ActRec *ar); +TypedValue* tg_9StableMap_remove(ActRec *ar); +TypedValue* tg_9StableMap_removeKey(ActRec *ar); +TypedValue* tg_9StableMap_discard(ActRec *ar); +TypedValue* tg_9StableMap_add(ActRec *ar); +TypedValue* tg_9StableMap_addAll(ActRec *ar); +TypedValue* tg_9StableMap_toArray(ActRec *ar); +TypedValue* tg_9StableMap_copyAsArray(ActRec *ar); +TypedValue* tg_9StableMap_toKeysArray(ActRec *ar); +TypedValue* tg_9StableMap_values(ActRec *ar); +TypedValue* tg_9StableMap_toValuesArray(ActRec *ar); +TypedValue* tg_9StableMap_updateFromArray(ActRec *ar); +TypedValue* tg_9StableMap_updateFromIterable(ActRec *ar); +TypedValue* tg_9StableMap_differenceByKey(ActRec *ar); +TypedValue* tg_9StableMap_getIterator(ActRec *ar); +TypedValue* tg_9StableMap_map(ActRec *ar); +TypedValue* tg_9StableMap_filter(ActRec *ar); +TypedValue* tg_9StableMap_zip(ActRec *ar); +TypedValue* tg_9StableMap___get(ActRec *ar); +TypedValue* tg_9StableMap___set(ActRec *ar); +TypedValue* tg_9StableMap___isset(ActRec *ar); +TypedValue* tg_9StableMap___unset(ActRec *ar); +TypedValue* tg_9StableMap_fromItems(ActRec *ar); +TypedValue* tg_9StableMap___toString(ActRec *ar); +TypedValue* tg_9StableMap_fromArray(ActRec *ar); +TypedValue* tg_9StableMap_fromIterable(ActRec *ar); VM::Instance* new_StableMapIterator_Instance(VM::Class*); -TypedValue* tg_17StableMapIterator___construct(VM::ActRec *ar); -TypedValue* tg_17StableMapIterator_current(VM::ActRec *ar); -TypedValue* tg_17StableMapIterator_key(VM::ActRec *ar); -TypedValue* tg_17StableMapIterator_valid(VM::ActRec *ar); -TypedValue* tg_17StableMapIterator_next(VM::ActRec *ar); -TypedValue* tg_17StableMapIterator_rewind(VM::ActRec *ar); +TypedValue* tg_17StableMapIterator___construct(ActRec *ar); +TypedValue* tg_17StableMapIterator_current(ActRec *ar); +TypedValue* tg_17StableMapIterator_key(ActRec *ar); +TypedValue* tg_17StableMapIterator_valid(ActRec *ar); +TypedValue* tg_17StableMapIterator_next(ActRec *ar); +TypedValue* tg_17StableMapIterator_rewind(ActRec *ar); VM::Instance* new_Pair_Instance(VM::Class*); -TypedValue* tg_4Pair___construct(VM::ActRec *ar); -TypedValue* tg_4Pair_isEmpty(VM::ActRec *ar); -TypedValue* tg_4Pair_count(VM::ActRec *ar); -TypedValue* tg_4Pair_items(VM::ActRec *ar); -TypedValue* tg_4Pair_keys(VM::ActRec *ar); -TypedValue* tg_4Pair_view(VM::ActRec *ar); -TypedValue* tg_4Pair_kvzip(VM::ActRec *ar); -TypedValue* tg_4Pair_toArray(VM::ActRec *ar); -TypedValue* tg_4Pair_getIterator(VM::ActRec *ar); -TypedValue* tg_4Pair_map(VM::ActRec *ar); -TypedValue* tg_4Pair_filter(VM::ActRec *ar); -TypedValue* tg_4Pair_zip(VM::ActRec *ar); -TypedValue* tg_4Pair_at(VM::ActRec *ar); -TypedValue* tg_4Pair_get(VM::ActRec *ar); -TypedValue* tg_4Pair_containsKey(VM::ActRec *ar); +TypedValue* tg_4Pair___construct(ActRec *ar); +TypedValue* tg_4Pair_isEmpty(ActRec *ar); +TypedValue* tg_4Pair_count(ActRec *ar); +TypedValue* tg_4Pair_items(ActRec *ar); +TypedValue* tg_4Pair_keys(ActRec *ar); +TypedValue* tg_4Pair_view(ActRec *ar); +TypedValue* tg_4Pair_kvzip(ActRec *ar); +TypedValue* tg_4Pair_toArray(ActRec *ar); +TypedValue* tg_4Pair_getIterator(ActRec *ar); +TypedValue* tg_4Pair_map(ActRec *ar); +TypedValue* tg_4Pair_filter(ActRec *ar); +TypedValue* tg_4Pair_zip(ActRec *ar); +TypedValue* tg_4Pair_at(ActRec *ar); +TypedValue* tg_4Pair_get(ActRec *ar); +TypedValue* tg_4Pair_containsKey(ActRec *ar); VM::Instance* new_PairIterator_Instance(VM::Class*); -TypedValue* tg_12PairIterator___construct(VM::ActRec *ar); -TypedValue* tg_12PairIterator_current(VM::ActRec *ar); -TypedValue* tg_12PairIterator_key(VM::ActRec *ar); -TypedValue* tg_12PairIterator_valid(VM::ActRec *ar); -TypedValue* tg_12PairIterator_next(VM::ActRec *ar); -TypedValue* tg_12PairIterator_rewind(VM::ActRec *ar); +TypedValue* tg_12PairIterator___construct(ActRec *ar); +TypedValue* tg_12PairIterator_current(ActRec *ar); +TypedValue* tg_12PairIterator_key(ActRec *ar); +TypedValue* tg_12PairIterator_valid(ActRec *ar); +TypedValue* tg_12PairIterator_next(ActRec *ar); +TypedValue* tg_12PairIterator_rewind(ActRec *ar); VM::Instance* new_Continuation_Instance(VM::Class*); -TypedValue* tg_12Continuation___construct(VM::ActRec *ar); -TypedValue* tg_12Continuation_update(VM::ActRec *ar); -TypedValue* tg_12Continuation_getWaitHandle(VM::ActRec *ar); -TypedValue* tg_12Continuation_getLabel(VM::ActRec *ar); -TypedValue* tg_12Continuation_num_args(VM::ActRec *ar); -TypedValue* tg_12Continuation_get_args(VM::ActRec *ar); -TypedValue* tg_12Continuation_get_arg(VM::ActRec *ar); -TypedValue* tg_12Continuation_current(VM::ActRec *ar); -TypedValue* tg_12Continuation_key(VM::ActRec *ar); -TypedValue* tg_12Continuation_next(VM::ActRec *ar); -TypedValue* tg_12Continuation_rewind(VM::ActRec *ar); -TypedValue* tg_12Continuation_valid(VM::ActRec *ar); -TypedValue* tg_12Continuation_send(VM::ActRec *ar); -TypedValue* tg_12Continuation_raise(VM::ActRec *ar); -TypedValue* tg_12Continuation_getOrigFuncName(VM::ActRec *ar); -TypedValue* tg_12Continuation___clone(VM::ActRec *ar); +TypedValue* tg_12Continuation___construct(ActRec *ar); +TypedValue* tg_12Continuation_update(ActRec *ar); +TypedValue* tg_12Continuation_getWaitHandle(ActRec *ar); +TypedValue* tg_12Continuation_getLabel(ActRec *ar); +TypedValue* tg_12Continuation_num_args(ActRec *ar); +TypedValue* tg_12Continuation_get_args(ActRec *ar); +TypedValue* tg_12Continuation_get_arg(ActRec *ar); +TypedValue* tg_12Continuation_current(ActRec *ar); +TypedValue* tg_12Continuation_key(ActRec *ar); +TypedValue* tg_12Continuation_next(ActRec *ar); +TypedValue* tg_12Continuation_rewind(ActRec *ar); +TypedValue* tg_12Continuation_valid(ActRec *ar); +TypedValue* tg_12Continuation_send(ActRec *ar); +TypedValue* tg_12Continuation_raise(ActRec *ar); +TypedValue* tg_12Continuation_getOrigFuncName(ActRec *ar); +TypedValue* tg_12Continuation___clone(ActRec *ar); VM::Instance* new_DummyContinuation_Instance(VM::Class*); -TypedValue* tg_17DummyContinuation___construct(VM::ActRec *ar); -TypedValue* tg_17DummyContinuation_current(VM::ActRec *ar); -TypedValue* tg_17DummyContinuation_key(VM::ActRec *ar); -TypedValue* tg_17DummyContinuation_next(VM::ActRec *ar); -TypedValue* tg_17DummyContinuation_rewind(VM::ActRec *ar); -TypedValue* tg_17DummyContinuation_valid(VM::ActRec *ar); +TypedValue* tg_17DummyContinuation___construct(ActRec *ar); +TypedValue* tg_17DummyContinuation_current(ActRec *ar); +TypedValue* tg_17DummyContinuation_key(ActRec *ar); +TypedValue* tg_17DummyContinuation_next(ActRec *ar); +TypedValue* tg_17DummyContinuation_rewind(ActRec *ar); +TypedValue* tg_17DummyContinuation_valid(ActRec *ar); VM::Instance* new_DateTime_Instance(VM::Class*); -TypedValue* tg_8DateTime_add(VM::ActRec *ar); -TypedValue* tg_8DateTime___construct(VM::ActRec *ar); -TypedValue* tg_8DateTime_createFromFormat(VM::ActRec *ar); -TypedValue* tg_8DateTime_diff(VM::ActRec *ar); -TypedValue* tg_8DateTime_format(VM::ActRec *ar); -TypedValue* tg_8DateTime_getLastErrors(VM::ActRec *ar); -TypedValue* tg_8DateTime_getOffset(VM::ActRec *ar); -TypedValue* tg_8DateTime_getTimestamp(VM::ActRec *ar); -TypedValue* tg_8DateTime_getTimezone(VM::ActRec *ar); -TypedValue* tg_8DateTime_modify(VM::ActRec *ar); -TypedValue* tg_8DateTime_setDate(VM::ActRec *ar); -TypedValue* tg_8DateTime_setISODate(VM::ActRec *ar); -TypedValue* tg_8DateTime_setTime(VM::ActRec *ar); -TypedValue* tg_8DateTime_setTimestamp(VM::ActRec *ar); -TypedValue* tg_8DateTime_setTimezone(VM::ActRec *ar); -TypedValue* tg_8DateTime_sub(VM::ActRec *ar); +TypedValue* tg_8DateTime_add(ActRec *ar); +TypedValue* tg_8DateTime___construct(ActRec *ar); +TypedValue* tg_8DateTime_createFromFormat(ActRec *ar); +TypedValue* tg_8DateTime_diff(ActRec *ar); +TypedValue* tg_8DateTime_format(ActRec *ar); +TypedValue* tg_8DateTime_getLastErrors(ActRec *ar); +TypedValue* tg_8DateTime_getOffset(ActRec *ar); +TypedValue* tg_8DateTime_getTimestamp(ActRec *ar); +TypedValue* tg_8DateTime_getTimezone(ActRec *ar); +TypedValue* tg_8DateTime_modify(ActRec *ar); +TypedValue* tg_8DateTime_setDate(ActRec *ar); +TypedValue* tg_8DateTime_setISODate(ActRec *ar); +TypedValue* tg_8DateTime_setTime(ActRec *ar); +TypedValue* tg_8DateTime_setTimestamp(ActRec *ar); +TypedValue* tg_8DateTime_setTimezone(ActRec *ar); +TypedValue* tg_8DateTime_sub(ActRec *ar); VM::Instance* new_DateTimeZone_Instance(VM::Class*); -TypedValue* tg_12DateTimeZone___construct(VM::ActRec *ar); -TypedValue* tg_12DateTimeZone_getLocation(VM::ActRec *ar); -TypedValue* tg_12DateTimeZone_getName(VM::ActRec *ar); -TypedValue* tg_12DateTimeZone_getOffset(VM::ActRec *ar); -TypedValue* tg_12DateTimeZone_getTransitions(VM::ActRec *ar); -TypedValue* tg_12DateTimeZone_listAbbreviations(VM::ActRec *ar); -TypedValue* tg_12DateTimeZone_listIdentifiers(VM::ActRec *ar); +TypedValue* tg_12DateTimeZone___construct(ActRec *ar); +TypedValue* tg_12DateTimeZone_getLocation(ActRec *ar); +TypedValue* tg_12DateTimeZone_getName(ActRec *ar); +TypedValue* tg_12DateTimeZone_getOffset(ActRec *ar); +TypedValue* tg_12DateTimeZone_getTransitions(ActRec *ar); +TypedValue* tg_12DateTimeZone_listAbbreviations(ActRec *ar); +TypedValue* tg_12DateTimeZone_listIdentifiers(ActRec *ar); VM::Instance* new_DateInterval_Instance(VM::Class*); -TypedValue* tg_12DateInterval___construct(VM::ActRec *ar); -TypedValue* tg_12DateInterval___get(VM::ActRec *ar); -TypedValue* tg_12DateInterval___set(VM::ActRec *ar); -TypedValue* tg_12DateInterval_createFromDateString(VM::ActRec *ar); -TypedValue* tg_12DateInterval_format(VM::ActRec *ar); +TypedValue* tg_12DateInterval___construct(ActRec *ar); +TypedValue* tg_12DateInterval___get(ActRec *ar); +TypedValue* tg_12DateInterval___set(ActRec *ar); +TypedValue* tg_12DateInterval_createFromDateString(ActRec *ar); +TypedValue* tg_12DateInterval_format(ActRec *ar); VM::Instance* new_DebuggerProxyCmdUser_Instance(VM::Class*); -TypedValue* tg_20DebuggerProxyCmdUser___construct(VM::ActRec *ar); -TypedValue* tg_20DebuggerProxyCmdUser_isLocal(VM::ActRec *ar); -TypedValue* tg_20DebuggerProxyCmdUser_send(VM::ActRec *ar); +TypedValue* tg_20DebuggerProxyCmdUser___construct(ActRec *ar); +TypedValue* tg_20DebuggerProxyCmdUser_isLocal(ActRec *ar); +TypedValue* tg_20DebuggerProxyCmdUser_send(ActRec *ar); VM::Instance* new_DebuggerClientCmdUser_Instance(VM::Class*); -TypedValue* tg_21DebuggerClientCmdUser___construct(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_quit(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_print(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_help(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_info(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_output(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_error(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_code(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_ask(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_wrap(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_helpTitle(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_helpCmds(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_helpBody(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_helpSection(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_tutorial(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_getCode(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_getCommand(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_arg(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_argCount(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_argValue(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_lineRest(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_args(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_send(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_xend(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_getCurrentLocation(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_getStackTrace(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_getFrame(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_printFrame(VM::ActRec *ar); -TypedValue* tg_21DebuggerClientCmdUser_addCompletion(VM::ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser___construct(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_quit(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_print(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_help(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_info(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_output(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_error(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_code(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_ask(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_wrap(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_helpTitle(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_helpCmds(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_helpBody(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_helpSection(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_tutorial(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_getCode(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_getCommand(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_arg(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_argCount(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_argValue(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_lineRest(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_args(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_send(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_xend(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_getCurrentLocation(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_getStackTrace(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_getFrame(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_printFrame(ActRec *ar); +TypedValue* tg_21DebuggerClientCmdUser_addCompletion(ActRec *ar); VM::Instance* new_DebuggerClient_Instance(VM::Class*); -TypedValue* tg_14DebuggerClient___construct(VM::ActRec *ar); -TypedValue* tg_14DebuggerClient_getState(VM::ActRec *ar); -TypedValue* tg_14DebuggerClient_init(VM::ActRec *ar); -TypedValue* tg_14DebuggerClient_processCmd(VM::ActRec *ar); +TypedValue* tg_14DebuggerClient___construct(ActRec *ar); +TypedValue* tg_14DebuggerClient_getState(ActRec *ar); +TypedValue* tg_14DebuggerClient_init(ActRec *ar); +TypedValue* tg_14DebuggerClient_processCmd(ActRec *ar); VM::Instance* new_DOMNode_Instance(VM::Class*); -TypedValue* tg_7DOMNode___construct(VM::ActRec *ar); -TypedValue* tg_7DOMNode_appendChild(VM::ActRec *ar); -TypedValue* tg_7DOMNode_cloneNode(VM::ActRec *ar); -TypedValue* tg_7DOMNode_getLineNo(VM::ActRec *ar); -TypedValue* tg_7DOMNode_hasAttributes(VM::ActRec *ar); -TypedValue* tg_7DOMNode_hasChildNodes(VM::ActRec *ar); -TypedValue* tg_7DOMNode_insertBefore(VM::ActRec *ar); -TypedValue* tg_7DOMNode_isDefaultNamespace(VM::ActRec *ar); -TypedValue* tg_7DOMNode_isSameNode(VM::ActRec *ar); -TypedValue* tg_7DOMNode_isSupported(VM::ActRec *ar); -TypedValue* tg_7DOMNode_lookupNamespaceUri(VM::ActRec *ar); -TypedValue* tg_7DOMNode_lookupPrefix(VM::ActRec *ar); -TypedValue* tg_7DOMNode_normalize(VM::ActRec *ar); -TypedValue* tg_7DOMNode_removeChild(VM::ActRec *ar); -TypedValue* tg_7DOMNode_replaceChild(VM::ActRec *ar); -TypedValue* tg_7DOMNode_c14n(VM::ActRec *ar); -TypedValue* tg_7DOMNode_c14nfile(VM::ActRec *ar); -TypedValue* tg_7DOMNode_getNodePath(VM::ActRec *ar); -TypedValue* tg_7DOMNode___get(VM::ActRec *ar); -TypedValue* tg_7DOMNode___set(VM::ActRec *ar); -TypedValue* tg_7DOMNode___isset(VM::ActRec *ar); +TypedValue* tg_7DOMNode___construct(ActRec *ar); +TypedValue* tg_7DOMNode_appendChild(ActRec *ar); +TypedValue* tg_7DOMNode_cloneNode(ActRec *ar); +TypedValue* tg_7DOMNode_getLineNo(ActRec *ar); +TypedValue* tg_7DOMNode_hasAttributes(ActRec *ar); +TypedValue* tg_7DOMNode_hasChildNodes(ActRec *ar); +TypedValue* tg_7DOMNode_insertBefore(ActRec *ar); +TypedValue* tg_7DOMNode_isDefaultNamespace(ActRec *ar); +TypedValue* tg_7DOMNode_isSameNode(ActRec *ar); +TypedValue* tg_7DOMNode_isSupported(ActRec *ar); +TypedValue* tg_7DOMNode_lookupNamespaceUri(ActRec *ar); +TypedValue* tg_7DOMNode_lookupPrefix(ActRec *ar); +TypedValue* tg_7DOMNode_normalize(ActRec *ar); +TypedValue* tg_7DOMNode_removeChild(ActRec *ar); +TypedValue* tg_7DOMNode_replaceChild(ActRec *ar); +TypedValue* tg_7DOMNode_c14n(ActRec *ar); +TypedValue* tg_7DOMNode_c14nfile(ActRec *ar); +TypedValue* tg_7DOMNode_getNodePath(ActRec *ar); +TypedValue* tg_7DOMNode___get(ActRec *ar); +TypedValue* tg_7DOMNode___set(ActRec *ar); +TypedValue* tg_7DOMNode___isset(ActRec *ar); VM::Instance* new_DOMAttr_Instance(VM::Class*); -TypedValue* tg_7DOMAttr___construct(VM::ActRec *ar); -TypedValue* tg_7DOMAttr_isId(VM::ActRec *ar); -TypedValue* tg_7DOMAttr___get(VM::ActRec *ar); -TypedValue* tg_7DOMAttr___set(VM::ActRec *ar); -TypedValue* tg_7DOMAttr___isset(VM::ActRec *ar); +TypedValue* tg_7DOMAttr___construct(ActRec *ar); +TypedValue* tg_7DOMAttr_isId(ActRec *ar); +TypedValue* tg_7DOMAttr___get(ActRec *ar); +TypedValue* tg_7DOMAttr___set(ActRec *ar); +TypedValue* tg_7DOMAttr___isset(ActRec *ar); VM::Instance* new_DOMCharacterData_Instance(VM::Class*); -TypedValue* tg_16DOMCharacterData___construct(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData_appendData(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData_deleteData(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData_insertData(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData_replaceData(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData_substringData(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData___get(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData___set(VM::ActRec *ar); -TypedValue* tg_16DOMCharacterData___isset(VM::ActRec *ar); +TypedValue* tg_16DOMCharacterData___construct(ActRec *ar); +TypedValue* tg_16DOMCharacterData_appendData(ActRec *ar); +TypedValue* tg_16DOMCharacterData_deleteData(ActRec *ar); +TypedValue* tg_16DOMCharacterData_insertData(ActRec *ar); +TypedValue* tg_16DOMCharacterData_replaceData(ActRec *ar); +TypedValue* tg_16DOMCharacterData_substringData(ActRec *ar); +TypedValue* tg_16DOMCharacterData___get(ActRec *ar); +TypedValue* tg_16DOMCharacterData___set(ActRec *ar); +TypedValue* tg_16DOMCharacterData___isset(ActRec *ar); VM::Instance* new_DOMComment_Instance(VM::Class*); -TypedValue* tg_10DOMComment___construct(VM::ActRec *ar); +TypedValue* tg_10DOMComment___construct(ActRec *ar); VM::Instance* new_DOMText_Instance(VM::Class*); -TypedValue* tg_7DOMText___construct(VM::ActRec *ar); -TypedValue* tg_7DOMText_isWhitespaceInElementContent(VM::ActRec *ar); -TypedValue* tg_7DOMText_splitText(VM::ActRec *ar); -TypedValue* tg_7DOMText___get(VM::ActRec *ar); -TypedValue* tg_7DOMText___set(VM::ActRec *ar); -TypedValue* tg_7DOMText___isset(VM::ActRec *ar); +TypedValue* tg_7DOMText___construct(ActRec *ar); +TypedValue* tg_7DOMText_isWhitespaceInElementContent(ActRec *ar); +TypedValue* tg_7DOMText_splitText(ActRec *ar); +TypedValue* tg_7DOMText___get(ActRec *ar); +TypedValue* tg_7DOMText___set(ActRec *ar); +TypedValue* tg_7DOMText___isset(ActRec *ar); VM::Instance* new_DOMCDATASection_Instance(VM::Class*); -TypedValue* tg_15DOMCDATASection___construct(VM::ActRec *ar); +TypedValue* tg_15DOMCDATASection___construct(ActRec *ar); VM::Instance* new_DOMDocument_Instance(VM::Class*); -TypedValue* tg_11DOMDocument___construct(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createAttribute(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createAttributens(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createCDATASection(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createComment(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createDocumentFragment(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createElement(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createElementNS(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createEntityReference(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createProcessingInstruction(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_createTextNode(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_getElementById(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_getElementsByTagName(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_getElementsByTagNameNS(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_importNode(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_load(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_loadHTML(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_loadHTMLFile(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_loadXML(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_normalizeDocument(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_registerNodeClass(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_relaxNGValidate(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_relaxNGValidateSource(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_save(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_saveHTML(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_saveHTMLFile(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_saveXML(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_schemaValidate(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_schemaValidateSource(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_validate(VM::ActRec *ar); -TypedValue* tg_11DOMDocument_xinclude(VM::ActRec *ar); -TypedValue* tg_11DOMDocument___get(VM::ActRec *ar); -TypedValue* tg_11DOMDocument___set(VM::ActRec *ar); -TypedValue* tg_11DOMDocument___isset(VM::ActRec *ar); +TypedValue* tg_11DOMDocument___construct(ActRec *ar); +TypedValue* tg_11DOMDocument_createAttribute(ActRec *ar); +TypedValue* tg_11DOMDocument_createAttributens(ActRec *ar); +TypedValue* tg_11DOMDocument_createCDATASection(ActRec *ar); +TypedValue* tg_11DOMDocument_createComment(ActRec *ar); +TypedValue* tg_11DOMDocument_createDocumentFragment(ActRec *ar); +TypedValue* tg_11DOMDocument_createElement(ActRec *ar); +TypedValue* tg_11DOMDocument_createElementNS(ActRec *ar); +TypedValue* tg_11DOMDocument_createEntityReference(ActRec *ar); +TypedValue* tg_11DOMDocument_createProcessingInstruction(ActRec *ar); +TypedValue* tg_11DOMDocument_createTextNode(ActRec *ar); +TypedValue* tg_11DOMDocument_getElementById(ActRec *ar); +TypedValue* tg_11DOMDocument_getElementsByTagName(ActRec *ar); +TypedValue* tg_11DOMDocument_getElementsByTagNameNS(ActRec *ar); +TypedValue* tg_11DOMDocument_importNode(ActRec *ar); +TypedValue* tg_11DOMDocument_load(ActRec *ar); +TypedValue* tg_11DOMDocument_loadHTML(ActRec *ar); +TypedValue* tg_11DOMDocument_loadHTMLFile(ActRec *ar); +TypedValue* tg_11DOMDocument_loadXML(ActRec *ar); +TypedValue* tg_11DOMDocument_normalizeDocument(ActRec *ar); +TypedValue* tg_11DOMDocument_registerNodeClass(ActRec *ar); +TypedValue* tg_11DOMDocument_relaxNGValidate(ActRec *ar); +TypedValue* tg_11DOMDocument_relaxNGValidateSource(ActRec *ar); +TypedValue* tg_11DOMDocument_save(ActRec *ar); +TypedValue* tg_11DOMDocument_saveHTML(ActRec *ar); +TypedValue* tg_11DOMDocument_saveHTMLFile(ActRec *ar); +TypedValue* tg_11DOMDocument_saveXML(ActRec *ar); +TypedValue* tg_11DOMDocument_schemaValidate(ActRec *ar); +TypedValue* tg_11DOMDocument_schemaValidateSource(ActRec *ar); +TypedValue* tg_11DOMDocument_validate(ActRec *ar); +TypedValue* tg_11DOMDocument_xinclude(ActRec *ar); +TypedValue* tg_11DOMDocument___get(ActRec *ar); +TypedValue* tg_11DOMDocument___set(ActRec *ar); +TypedValue* tg_11DOMDocument___isset(ActRec *ar); VM::Instance* new_DOMDocumentFragment_Instance(VM::Class*); -TypedValue* tg_19DOMDocumentFragment___construct(VM::ActRec *ar); -TypedValue* tg_19DOMDocumentFragment_appendXML(VM::ActRec *ar); +TypedValue* tg_19DOMDocumentFragment___construct(ActRec *ar); +TypedValue* tg_19DOMDocumentFragment_appendXML(ActRec *ar); VM::Instance* new_DOMDocumentType_Instance(VM::Class*); -TypedValue* tg_15DOMDocumentType___construct(VM::ActRec *ar); -TypedValue* tg_15DOMDocumentType___get(VM::ActRec *ar); -TypedValue* tg_15DOMDocumentType___set(VM::ActRec *ar); -TypedValue* tg_15DOMDocumentType___isset(VM::ActRec *ar); +TypedValue* tg_15DOMDocumentType___construct(ActRec *ar); +TypedValue* tg_15DOMDocumentType___get(ActRec *ar); +TypedValue* tg_15DOMDocumentType___set(ActRec *ar); +TypedValue* tg_15DOMDocumentType___isset(ActRec *ar); VM::Instance* new_DOMElement_Instance(VM::Class*); -TypedValue* tg_10DOMElement___construct(VM::ActRec *ar); -TypedValue* tg_10DOMElement_getAttribute(VM::ActRec *ar); -TypedValue* tg_10DOMElement_getAttributeNode(VM::ActRec *ar); -TypedValue* tg_10DOMElement_getAttributeNodeNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement_getAttributeNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement_getElementsByTagName(VM::ActRec *ar); -TypedValue* tg_10DOMElement_getElementsByTagNameNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement_hasAttribute(VM::ActRec *ar); -TypedValue* tg_10DOMElement_hasAttributeNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement_removeAttribute(VM::ActRec *ar); -TypedValue* tg_10DOMElement_removeAttributeNode(VM::ActRec *ar); -TypedValue* tg_10DOMElement_removeAttributeNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement_setAttribute(VM::ActRec *ar); -TypedValue* tg_10DOMElement_setAttributeNode(VM::ActRec *ar); -TypedValue* tg_10DOMElement_setAttributeNodeNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement_setAttributeNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement_setIDAttribute(VM::ActRec *ar); -TypedValue* tg_10DOMElement_setIDAttributeNode(VM::ActRec *ar); -TypedValue* tg_10DOMElement_setIDAttributeNS(VM::ActRec *ar); -TypedValue* tg_10DOMElement___get(VM::ActRec *ar); -TypedValue* tg_10DOMElement___set(VM::ActRec *ar); -TypedValue* tg_10DOMElement___isset(VM::ActRec *ar); +TypedValue* tg_10DOMElement___construct(ActRec *ar); +TypedValue* tg_10DOMElement_getAttribute(ActRec *ar); +TypedValue* tg_10DOMElement_getAttributeNode(ActRec *ar); +TypedValue* tg_10DOMElement_getAttributeNodeNS(ActRec *ar); +TypedValue* tg_10DOMElement_getAttributeNS(ActRec *ar); +TypedValue* tg_10DOMElement_getElementsByTagName(ActRec *ar); +TypedValue* tg_10DOMElement_getElementsByTagNameNS(ActRec *ar); +TypedValue* tg_10DOMElement_hasAttribute(ActRec *ar); +TypedValue* tg_10DOMElement_hasAttributeNS(ActRec *ar); +TypedValue* tg_10DOMElement_removeAttribute(ActRec *ar); +TypedValue* tg_10DOMElement_removeAttributeNode(ActRec *ar); +TypedValue* tg_10DOMElement_removeAttributeNS(ActRec *ar); +TypedValue* tg_10DOMElement_setAttribute(ActRec *ar); +TypedValue* tg_10DOMElement_setAttributeNode(ActRec *ar); +TypedValue* tg_10DOMElement_setAttributeNodeNS(ActRec *ar); +TypedValue* tg_10DOMElement_setAttributeNS(ActRec *ar); +TypedValue* tg_10DOMElement_setIDAttribute(ActRec *ar); +TypedValue* tg_10DOMElement_setIDAttributeNode(ActRec *ar); +TypedValue* tg_10DOMElement_setIDAttributeNS(ActRec *ar); +TypedValue* tg_10DOMElement___get(ActRec *ar); +TypedValue* tg_10DOMElement___set(ActRec *ar); +TypedValue* tg_10DOMElement___isset(ActRec *ar); VM::Instance* new_DOMEntity_Instance(VM::Class*); -TypedValue* tg_9DOMEntity___construct(VM::ActRec *ar); -TypedValue* tg_9DOMEntity___get(VM::ActRec *ar); -TypedValue* tg_9DOMEntity___set(VM::ActRec *ar); -TypedValue* tg_9DOMEntity___isset(VM::ActRec *ar); +TypedValue* tg_9DOMEntity___construct(ActRec *ar); +TypedValue* tg_9DOMEntity___get(ActRec *ar); +TypedValue* tg_9DOMEntity___set(ActRec *ar); +TypedValue* tg_9DOMEntity___isset(ActRec *ar); VM::Instance* new_DOMEntityReference_Instance(VM::Class*); -TypedValue* tg_18DOMEntityReference___construct(VM::ActRec *ar); +TypedValue* tg_18DOMEntityReference___construct(ActRec *ar); VM::Instance* new_DOMNotation_Instance(VM::Class*); -TypedValue* tg_11DOMNotation___construct(VM::ActRec *ar); -TypedValue* tg_11DOMNotation___get(VM::ActRec *ar); -TypedValue* tg_11DOMNotation___set(VM::ActRec *ar); -TypedValue* tg_11DOMNotation___isset(VM::ActRec *ar); +TypedValue* tg_11DOMNotation___construct(ActRec *ar); +TypedValue* tg_11DOMNotation___get(ActRec *ar); +TypedValue* tg_11DOMNotation___set(ActRec *ar); +TypedValue* tg_11DOMNotation___isset(ActRec *ar); VM::Instance* new_DOMProcessingInstruction_Instance(VM::Class*); -TypedValue* tg_24DOMProcessingInstruction___construct(VM::ActRec *ar); -TypedValue* tg_24DOMProcessingInstruction___get(VM::ActRec *ar); -TypedValue* tg_24DOMProcessingInstruction___set(VM::ActRec *ar); -TypedValue* tg_24DOMProcessingInstruction___isset(VM::ActRec *ar); +TypedValue* tg_24DOMProcessingInstruction___construct(ActRec *ar); +TypedValue* tg_24DOMProcessingInstruction___get(ActRec *ar); +TypedValue* tg_24DOMProcessingInstruction___set(ActRec *ar); +TypedValue* tg_24DOMProcessingInstruction___isset(ActRec *ar); VM::Instance* new_DOMNodeIterator_Instance(VM::Class*); -TypedValue* tg_15DOMNodeIterator___construct(VM::ActRec *ar); -TypedValue* tg_15DOMNodeIterator_current(VM::ActRec *ar); -TypedValue* tg_15DOMNodeIterator_key(VM::ActRec *ar); -TypedValue* tg_15DOMNodeIterator_next(VM::ActRec *ar); -TypedValue* tg_15DOMNodeIterator_rewind(VM::ActRec *ar); -TypedValue* tg_15DOMNodeIterator_valid(VM::ActRec *ar); +TypedValue* tg_15DOMNodeIterator___construct(ActRec *ar); +TypedValue* tg_15DOMNodeIterator_current(ActRec *ar); +TypedValue* tg_15DOMNodeIterator_key(ActRec *ar); +TypedValue* tg_15DOMNodeIterator_next(ActRec *ar); +TypedValue* tg_15DOMNodeIterator_rewind(ActRec *ar); +TypedValue* tg_15DOMNodeIterator_valid(ActRec *ar); VM::Instance* new_DOMNamedNodeMap_Instance(VM::Class*); -TypedValue* tg_15DOMNamedNodeMap___construct(VM::ActRec *ar); -TypedValue* tg_15DOMNamedNodeMap_getNamedItem(VM::ActRec *ar); -TypedValue* tg_15DOMNamedNodeMap_getNamedItemNS(VM::ActRec *ar); -TypedValue* tg_15DOMNamedNodeMap_item(VM::ActRec *ar); -TypedValue* tg_15DOMNamedNodeMap___get(VM::ActRec *ar); -TypedValue* tg_15DOMNamedNodeMap___set(VM::ActRec *ar); -TypedValue* tg_15DOMNamedNodeMap___isset(VM::ActRec *ar); -TypedValue* tg_15DOMNamedNodeMap_getIterator(VM::ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap___construct(ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap_getNamedItem(ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap_getNamedItemNS(ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap_item(ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap___get(ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap___set(ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap___isset(ActRec *ar); +TypedValue* tg_15DOMNamedNodeMap_getIterator(ActRec *ar); VM::Instance* new_DOMNodeList_Instance(VM::Class*); -TypedValue* tg_11DOMNodeList___construct(VM::ActRec *ar); -TypedValue* tg_11DOMNodeList_item(VM::ActRec *ar); -TypedValue* tg_11DOMNodeList___get(VM::ActRec *ar); -TypedValue* tg_11DOMNodeList___set(VM::ActRec *ar); -TypedValue* tg_11DOMNodeList___isset(VM::ActRec *ar); -TypedValue* tg_11DOMNodeList_getIterator(VM::ActRec *ar); +TypedValue* tg_11DOMNodeList___construct(ActRec *ar); +TypedValue* tg_11DOMNodeList_item(ActRec *ar); +TypedValue* tg_11DOMNodeList___get(ActRec *ar); +TypedValue* tg_11DOMNodeList___set(ActRec *ar); +TypedValue* tg_11DOMNodeList___isset(ActRec *ar); +TypedValue* tg_11DOMNodeList_getIterator(ActRec *ar); VM::Instance* new_DOMImplementation_Instance(VM::Class*); -TypedValue* tg_17DOMImplementation___construct(VM::ActRec *ar); -TypedValue* tg_17DOMImplementation_createDocument(VM::ActRec *ar); -TypedValue* tg_17DOMImplementation_createDocumentType(VM::ActRec *ar); -TypedValue* tg_17DOMImplementation_hasFeature(VM::ActRec *ar); +TypedValue* tg_17DOMImplementation___construct(ActRec *ar); +TypedValue* tg_17DOMImplementation_createDocument(ActRec *ar); +TypedValue* tg_17DOMImplementation_createDocumentType(ActRec *ar); +TypedValue* tg_17DOMImplementation_hasFeature(ActRec *ar); VM::Instance* new_DOMXPath_Instance(VM::Class*); -TypedValue* tg_8DOMXPath___construct(VM::ActRec *ar); -TypedValue* tg_8DOMXPath_evaluate(VM::ActRec *ar); -TypedValue* tg_8DOMXPath_query(VM::ActRec *ar); -TypedValue* tg_8DOMXPath_registerNamespace(VM::ActRec *ar); -TypedValue* tg_8DOMXPath_registerPHPFunctions(VM::ActRec *ar); -TypedValue* tg_8DOMXPath___get(VM::ActRec *ar); -TypedValue* tg_8DOMXPath___set(VM::ActRec *ar); -TypedValue* tg_8DOMXPath___isset(VM::ActRec *ar); +TypedValue* tg_8DOMXPath___construct(ActRec *ar); +TypedValue* tg_8DOMXPath_evaluate(ActRec *ar); +TypedValue* tg_8DOMXPath_query(ActRec *ar); +TypedValue* tg_8DOMXPath_registerNamespace(ActRec *ar); +TypedValue* tg_8DOMXPath_registerPHPFunctions(ActRec *ar); +TypedValue* tg_8DOMXPath___get(ActRec *ar); +TypedValue* tg_8DOMXPath___set(ActRec *ar); +TypedValue* tg_8DOMXPath___isset(ActRec *ar); VM::Instance* new_UConverter_Instance(VM::Class*); -TypedValue* tg_10UConverter___construct(VM::ActRec *ar); -TypedValue* tg_10UConverter___destruct(VM::ActRec *ar); -TypedValue* tg_10UConverter_getSourceEncoding(VM::ActRec *ar); -TypedValue* tg_10UConverter_setSourceEncoding(VM::ActRec *ar); -TypedValue* tg_10UConverter_getDestinationEncoding(VM::ActRec *ar); -TypedValue* tg_10UConverter_setDestinationEncoding(VM::ActRec *ar); -TypedValue* tg_10UConverter_getSourceType(VM::ActRec *ar); -TypedValue* tg_10UConverter_getDestinationType(VM::ActRec *ar); -TypedValue* tg_10UConverter_getSubstChars(VM::ActRec *ar); -TypedValue* tg_10UConverter_setSubstChars(VM::ActRec *ar); -TypedValue* tg_10UConverter_fromUCallback(VM::ActRec *ar); -TypedValue* tg_10UConverter_toUCallback(VM::ActRec *ar); -TypedValue* tg_10UConverter_convert(VM::ActRec *ar); -TypedValue* tg_10UConverter_transcode(VM::ActRec *ar); -TypedValue* tg_10UConverter_getErrorCode(VM::ActRec *ar); -TypedValue* tg_10UConverter_getErrorMessage(VM::ActRec *ar); -TypedValue* tg_10UConverter_reasonText(VM::ActRec *ar); -TypedValue* tg_10UConverter_getAvailable(VM::ActRec *ar); -TypedValue* tg_10UConverter_getAliases(VM::ActRec *ar); -TypedValue* tg_10UConverter_getStandards(VM::ActRec *ar); -TypedValue* tg_10UConverter_getStandardName(VM::ActRec *ar); -TypedValue* tg_10UConverter_getMIMEName(VM::ActRec *ar); +TypedValue* tg_10UConverter___construct(ActRec *ar); +TypedValue* tg_10UConverter___destruct(ActRec *ar); +TypedValue* tg_10UConverter_getSourceEncoding(ActRec *ar); +TypedValue* tg_10UConverter_setSourceEncoding(ActRec *ar); +TypedValue* tg_10UConverter_getDestinationEncoding(ActRec *ar); +TypedValue* tg_10UConverter_setDestinationEncoding(ActRec *ar); +TypedValue* tg_10UConverter_getSourceType(ActRec *ar); +TypedValue* tg_10UConverter_getDestinationType(ActRec *ar); +TypedValue* tg_10UConverter_getSubstChars(ActRec *ar); +TypedValue* tg_10UConverter_setSubstChars(ActRec *ar); +TypedValue* tg_10UConverter_fromUCallback(ActRec *ar); +TypedValue* tg_10UConverter_toUCallback(ActRec *ar); +TypedValue* tg_10UConverter_convert(ActRec *ar); +TypedValue* tg_10UConverter_transcode(ActRec *ar); +TypedValue* tg_10UConverter_getErrorCode(ActRec *ar); +TypedValue* tg_10UConverter_getErrorMessage(ActRec *ar); +TypedValue* tg_10UConverter_reasonText(ActRec *ar); +TypedValue* tg_10UConverter_getAvailable(ActRec *ar); +TypedValue* tg_10UConverter_getAliases(ActRec *ar); +TypedValue* tg_10UConverter_getStandards(ActRec *ar); +TypedValue* tg_10UConverter_getStandardName(ActRec *ar); +TypedValue* tg_10UConverter_getMIMEName(ActRec *ar); VM::Instance* new_EncodingDetector_Instance(VM::Class*); -TypedValue* tg_16EncodingDetector___construct(VM::ActRec *ar); -TypedValue* tg_16EncodingDetector_setText(VM::ActRec *ar); -TypedValue* tg_16EncodingDetector_setDeclaredEncoding(VM::ActRec *ar); -TypedValue* tg_16EncodingDetector_detect(VM::ActRec *ar); -TypedValue* tg_16EncodingDetector_detectAll(VM::ActRec *ar); +TypedValue* tg_16EncodingDetector___construct(ActRec *ar); +TypedValue* tg_16EncodingDetector_setText(ActRec *ar); +TypedValue* tg_16EncodingDetector_setDeclaredEncoding(ActRec *ar); +TypedValue* tg_16EncodingDetector_detect(ActRec *ar); +TypedValue* tg_16EncodingDetector_detectAll(ActRec *ar); VM::Instance* new_EncodingMatch_Instance(VM::Class*); -TypedValue* tg_13EncodingMatch___construct(VM::ActRec *ar); -TypedValue* tg_13EncodingMatch_isValid(VM::ActRec *ar); -TypedValue* tg_13EncodingMatch_getEncoding(VM::ActRec *ar); -TypedValue* tg_13EncodingMatch_getConfidence(VM::ActRec *ar); -TypedValue* tg_13EncodingMatch_getLanguage(VM::ActRec *ar); -TypedValue* tg_13EncodingMatch_getUTF8(VM::ActRec *ar); +TypedValue* tg_13EncodingMatch___construct(ActRec *ar); +TypedValue* tg_13EncodingMatch_isValid(ActRec *ar); +TypedValue* tg_13EncodingMatch_getEncoding(ActRec *ar); +TypedValue* tg_13EncodingMatch_getConfidence(ActRec *ar); +TypedValue* tg_13EncodingMatch_getLanguage(ActRec *ar); +TypedValue* tg_13EncodingMatch_getUTF8(ActRec *ar); VM::Instance* new_SpoofChecker_Instance(VM::Class*); -TypedValue* tg_12SpoofChecker___construct(VM::ActRec *ar); -TypedValue* tg_12SpoofChecker_isSuspicious(VM::ActRec *ar); -TypedValue* tg_12SpoofChecker_areConfusable(VM::ActRec *ar); -TypedValue* tg_12SpoofChecker_setAllowedLocales(VM::ActRec *ar); -TypedValue* tg_12SpoofChecker_setChecks(VM::ActRec *ar); +TypedValue* tg_12SpoofChecker___construct(ActRec *ar); +TypedValue* tg_12SpoofChecker_isSuspicious(ActRec *ar); +TypedValue* tg_12SpoofChecker_areConfusable(ActRec *ar); +TypedValue* tg_12SpoofChecker_setAllowedLocales(ActRec *ar); +TypedValue* tg_12SpoofChecker_setChecks(ActRec *ar); VM::Instance* new_ImageSprite_Instance(VM::Class*); -TypedValue* tg_11ImageSprite___construct(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_addFile(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_addString(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_addUrl(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_clear(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_loadDims(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_loadImages(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_output(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_css(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_getErrors(VM::ActRec *ar); -TypedValue* tg_11ImageSprite_mapping(VM::ActRec *ar); -TypedValue* tg_11ImageSprite___destruct(VM::ActRec *ar); +TypedValue* tg_11ImageSprite___construct(ActRec *ar); +TypedValue* tg_11ImageSprite_addFile(ActRec *ar); +TypedValue* tg_11ImageSprite_addString(ActRec *ar); +TypedValue* tg_11ImageSprite_addUrl(ActRec *ar); +TypedValue* tg_11ImageSprite_clear(ActRec *ar); +TypedValue* tg_11ImageSprite_loadDims(ActRec *ar); +TypedValue* tg_11ImageSprite_loadImages(ActRec *ar); +TypedValue* tg_11ImageSprite_output(ActRec *ar); +TypedValue* tg_11ImageSprite_css(ActRec *ar); +TypedValue* tg_11ImageSprite_getErrors(ActRec *ar); +TypedValue* tg_11ImageSprite_mapping(ActRec *ar); +TypedValue* tg_11ImageSprite___destruct(ActRec *ar); VM::Instance* new_Collator_Instance(VM::Class*); -TypedValue* tg_8Collator___construct(VM::ActRec *ar); -TypedValue* tg_8Collator_asort(VM::ActRec *ar); -TypedValue* tg_8Collator_compare(VM::ActRec *ar); -TypedValue* tg_8Collator_create(VM::ActRec *ar); -TypedValue* tg_8Collator_getattribute(VM::ActRec *ar); -TypedValue* tg_8Collator_geterrorcode(VM::ActRec *ar); -TypedValue* tg_8Collator_geterrormessage(VM::ActRec *ar); -TypedValue* tg_8Collator_getlocale(VM::ActRec *ar); -TypedValue* tg_8Collator_getstrength(VM::ActRec *ar); -TypedValue* tg_8Collator_setattribute(VM::ActRec *ar); -TypedValue* tg_8Collator_setstrength(VM::ActRec *ar); -TypedValue* tg_8Collator_sortwithsortkeys(VM::ActRec *ar); -TypedValue* tg_8Collator_sort(VM::ActRec *ar); +TypedValue* tg_8Collator___construct(ActRec *ar); +TypedValue* tg_8Collator_asort(ActRec *ar); +TypedValue* tg_8Collator_compare(ActRec *ar); +TypedValue* tg_8Collator_create(ActRec *ar); +TypedValue* tg_8Collator_getattribute(ActRec *ar); +TypedValue* tg_8Collator_geterrorcode(ActRec *ar); +TypedValue* tg_8Collator_geterrormessage(ActRec *ar); +TypedValue* tg_8Collator_getlocale(ActRec *ar); +TypedValue* tg_8Collator_getstrength(ActRec *ar); +TypedValue* tg_8Collator_setattribute(ActRec *ar); +TypedValue* tg_8Collator_setstrength(ActRec *ar); +TypedValue* tg_8Collator_sortwithsortkeys(ActRec *ar); +TypedValue* tg_8Collator_sort(ActRec *ar); VM::Instance* new_Locale_Instance(VM::Class*); -TypedValue* tg_6Locale___construct(VM::ActRec *ar); +TypedValue* tg_6Locale___construct(ActRec *ar); VM::Instance* new_Normalizer_Instance(VM::Class*); -TypedValue* tg_10Normalizer___construct(VM::ActRec *ar); -TypedValue* tg_10Normalizer_isnormalized(VM::ActRec *ar); -TypedValue* tg_10Normalizer_normalize(VM::ActRec *ar); +TypedValue* tg_10Normalizer___construct(ActRec *ar); +TypedValue* tg_10Normalizer_isnormalized(ActRec *ar); +TypedValue* tg_10Normalizer_normalize(ActRec *ar); VM::Instance* new_MutableArrayIterator_Instance(VM::Class*); -TypedValue* tg_20MutableArrayIterator___construct(VM::ActRec *ar); -TypedValue* tg_20MutableArrayIterator_currentRef(VM::ActRec *ar); -TypedValue* tg_20MutableArrayIterator_current(VM::ActRec *ar); -TypedValue* tg_20MutableArrayIterator_key(VM::ActRec *ar); -TypedValue* tg_20MutableArrayIterator_next(VM::ActRec *ar); -TypedValue* tg_20MutableArrayIterator_valid(VM::ActRec *ar); +TypedValue* tg_20MutableArrayIterator___construct(ActRec *ar); +TypedValue* tg_20MutableArrayIterator_currentRef(ActRec *ar); +TypedValue* tg_20MutableArrayIterator_current(ActRec *ar); +TypedValue* tg_20MutableArrayIterator_key(ActRec *ar); +TypedValue* tg_20MutableArrayIterator_next(ActRec *ar); +TypedValue* tg_20MutableArrayIterator_valid(ActRec *ar); VM::Instance* new_Memcache_Instance(VM::Class*); -TypedValue* tg_8Memcache___construct(VM::ActRec *ar); -TypedValue* tg_8Memcache_connect(VM::ActRec *ar); -TypedValue* tg_8Memcache_pconnect(VM::ActRec *ar); -TypedValue* tg_8Memcache_add(VM::ActRec *ar); -TypedValue* tg_8Memcache_set(VM::ActRec *ar); -TypedValue* tg_8Memcache_replace(VM::ActRec *ar); -TypedValue* tg_8Memcache_get(VM::ActRec *ar); -TypedValue* tg_8Memcache_delete(VM::ActRec *ar); -TypedValue* tg_8Memcache_increment(VM::ActRec *ar); -TypedValue* tg_8Memcache_decrement(VM::ActRec *ar); -TypedValue* tg_8Memcache_getversion(VM::ActRec *ar); -TypedValue* tg_8Memcache_flush(VM::ActRec *ar); -TypedValue* tg_8Memcache_setoptimeout(VM::ActRec *ar); -TypedValue* tg_8Memcache_close(VM::ActRec *ar); -TypedValue* tg_8Memcache_getserverstatus(VM::ActRec *ar); -TypedValue* tg_8Memcache_setcompressthreshold(VM::ActRec *ar); -TypedValue* tg_8Memcache_getstats(VM::ActRec *ar); -TypedValue* tg_8Memcache_getextendedstats(VM::ActRec *ar); -TypedValue* tg_8Memcache_setserverparams(VM::ActRec *ar); -TypedValue* tg_8Memcache_addserver(VM::ActRec *ar); -TypedValue* tg_8Memcache___destruct(VM::ActRec *ar); +TypedValue* tg_8Memcache___construct(ActRec *ar); +TypedValue* tg_8Memcache_connect(ActRec *ar); +TypedValue* tg_8Memcache_pconnect(ActRec *ar); +TypedValue* tg_8Memcache_add(ActRec *ar); +TypedValue* tg_8Memcache_set(ActRec *ar); +TypedValue* tg_8Memcache_replace(ActRec *ar); +TypedValue* tg_8Memcache_get(ActRec *ar); +TypedValue* tg_8Memcache_delete(ActRec *ar); +TypedValue* tg_8Memcache_increment(ActRec *ar); +TypedValue* tg_8Memcache_decrement(ActRec *ar); +TypedValue* tg_8Memcache_getversion(ActRec *ar); +TypedValue* tg_8Memcache_flush(ActRec *ar); +TypedValue* tg_8Memcache_setoptimeout(ActRec *ar); +TypedValue* tg_8Memcache_close(ActRec *ar); +TypedValue* tg_8Memcache_getserverstatus(ActRec *ar); +TypedValue* tg_8Memcache_setcompressthreshold(ActRec *ar); +TypedValue* tg_8Memcache_getstats(ActRec *ar); +TypedValue* tg_8Memcache_getextendedstats(ActRec *ar); +TypedValue* tg_8Memcache_setserverparams(ActRec *ar); +TypedValue* tg_8Memcache_addserver(ActRec *ar); +TypedValue* tg_8Memcache___destruct(ActRec *ar); VM::Instance* new_Memcached_Instance(VM::Class*); -TypedValue* tg_9Memcached___construct(VM::ActRec *ar); -TypedValue* tg_9Memcached_add(VM::ActRec *ar); -TypedValue* tg_9Memcached_addByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_addServer(VM::ActRec *ar); -TypedValue* tg_9Memcached_addServers(VM::ActRec *ar); -TypedValue* tg_9Memcached_append(VM::ActRec *ar); -TypedValue* tg_9Memcached_appendByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_cas(VM::ActRec *ar); -TypedValue* tg_9Memcached_casByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_decrement(VM::ActRec *ar); -TypedValue* tg_9Memcached_delete(VM::ActRec *ar); -TypedValue* tg_9Memcached_deleteByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_fetch(VM::ActRec *ar); -TypedValue* tg_9Memcached_fetchAll(VM::ActRec *ar); -TypedValue* tg_9Memcached_flush(VM::ActRec *ar); -TypedValue* tg_9Memcached_get(VM::ActRec *ar); -TypedValue* tg_9Memcached_getByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_getDelayed(VM::ActRec *ar); -TypedValue* tg_9Memcached_getDelayedByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_getMulti(VM::ActRec *ar); -TypedValue* tg_9Memcached_getMultiByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_getOption(VM::ActRec *ar); -TypedValue* tg_9Memcached_getResultCode(VM::ActRec *ar); -TypedValue* tg_9Memcached_getResultMessage(VM::ActRec *ar); -TypedValue* tg_9Memcached_getServerByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_getServerList(VM::ActRec *ar); -TypedValue* tg_9Memcached_getStats(VM::ActRec *ar); -TypedValue* tg_9Memcached_getVersion(VM::ActRec *ar); -TypedValue* tg_9Memcached_increment(VM::ActRec *ar); -TypedValue* tg_9Memcached_prepend(VM::ActRec *ar); -TypedValue* tg_9Memcached_prependByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_replace(VM::ActRec *ar); -TypedValue* tg_9Memcached_replaceByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_set(VM::ActRec *ar); -TypedValue* tg_9Memcached_setByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_setMulti(VM::ActRec *ar); -TypedValue* tg_9Memcached_setMultiByKey(VM::ActRec *ar); -TypedValue* tg_9Memcached_setOption(VM::ActRec *ar); +TypedValue* tg_9Memcached___construct(ActRec *ar); +TypedValue* tg_9Memcached_add(ActRec *ar); +TypedValue* tg_9Memcached_addByKey(ActRec *ar); +TypedValue* tg_9Memcached_addServer(ActRec *ar); +TypedValue* tg_9Memcached_addServers(ActRec *ar); +TypedValue* tg_9Memcached_append(ActRec *ar); +TypedValue* tg_9Memcached_appendByKey(ActRec *ar); +TypedValue* tg_9Memcached_cas(ActRec *ar); +TypedValue* tg_9Memcached_casByKey(ActRec *ar); +TypedValue* tg_9Memcached_decrement(ActRec *ar); +TypedValue* tg_9Memcached_delete(ActRec *ar); +TypedValue* tg_9Memcached_deleteByKey(ActRec *ar); +TypedValue* tg_9Memcached_fetch(ActRec *ar); +TypedValue* tg_9Memcached_fetchAll(ActRec *ar); +TypedValue* tg_9Memcached_flush(ActRec *ar); +TypedValue* tg_9Memcached_get(ActRec *ar); +TypedValue* tg_9Memcached_getByKey(ActRec *ar); +TypedValue* tg_9Memcached_getDelayed(ActRec *ar); +TypedValue* tg_9Memcached_getDelayedByKey(ActRec *ar); +TypedValue* tg_9Memcached_getMulti(ActRec *ar); +TypedValue* tg_9Memcached_getMultiByKey(ActRec *ar); +TypedValue* tg_9Memcached_getOption(ActRec *ar); +TypedValue* tg_9Memcached_getResultCode(ActRec *ar); +TypedValue* tg_9Memcached_getResultMessage(ActRec *ar); +TypedValue* tg_9Memcached_getServerByKey(ActRec *ar); +TypedValue* tg_9Memcached_getServerList(ActRec *ar); +TypedValue* tg_9Memcached_getStats(ActRec *ar); +TypedValue* tg_9Memcached_getVersion(ActRec *ar); +TypedValue* tg_9Memcached_increment(ActRec *ar); +TypedValue* tg_9Memcached_prepend(ActRec *ar); +TypedValue* tg_9Memcached_prependByKey(ActRec *ar); +TypedValue* tg_9Memcached_replace(ActRec *ar); +TypedValue* tg_9Memcached_replaceByKey(ActRec *ar); +TypedValue* tg_9Memcached_set(ActRec *ar); +TypedValue* tg_9Memcached_setByKey(ActRec *ar); +TypedValue* tg_9Memcached_setMulti(ActRec *ar); +TypedValue* tg_9Memcached_setMultiByKey(ActRec *ar); +TypedValue* tg_9Memcached_setOption(ActRec *ar); VM::Instance* new_PDO_Instance(VM::Class*); -TypedValue* tg_3PDO___construct(VM::ActRec *ar); -TypedValue* tg_3PDO_prepare(VM::ActRec *ar); -TypedValue* tg_3PDO_begintransaction(VM::ActRec *ar); -TypedValue* tg_3PDO_commit(VM::ActRec *ar); -TypedValue* tg_3PDO_rollback(VM::ActRec *ar); -TypedValue* tg_3PDO_setattribute(VM::ActRec *ar); -TypedValue* tg_3PDO_getattribute(VM::ActRec *ar); -TypedValue* tg_3PDO_exec(VM::ActRec *ar); -TypedValue* tg_3PDO_lastinsertid(VM::ActRec *ar); -TypedValue* tg_3PDO_errorcode(VM::ActRec *ar); -TypedValue* tg_3PDO_errorinfo(VM::ActRec *ar); -TypedValue* tg_3PDO_query(VM::ActRec *ar); -TypedValue* tg_3PDO_quote(VM::ActRec *ar); -TypedValue* tg_3PDO___wakeup(VM::ActRec *ar); -TypedValue* tg_3PDO___sleep(VM::ActRec *ar); -TypedValue* tg_3PDO_getavailabledrivers(VM::ActRec *ar); +TypedValue* tg_3PDO___construct(ActRec *ar); +TypedValue* tg_3PDO_prepare(ActRec *ar); +TypedValue* tg_3PDO_begintransaction(ActRec *ar); +TypedValue* tg_3PDO_commit(ActRec *ar); +TypedValue* tg_3PDO_rollback(ActRec *ar); +TypedValue* tg_3PDO_setattribute(ActRec *ar); +TypedValue* tg_3PDO_getattribute(ActRec *ar); +TypedValue* tg_3PDO_exec(ActRec *ar); +TypedValue* tg_3PDO_lastinsertid(ActRec *ar); +TypedValue* tg_3PDO_errorcode(ActRec *ar); +TypedValue* tg_3PDO_errorinfo(ActRec *ar); +TypedValue* tg_3PDO_query(ActRec *ar); +TypedValue* tg_3PDO_quote(ActRec *ar); +TypedValue* tg_3PDO___wakeup(ActRec *ar); +TypedValue* tg_3PDO___sleep(ActRec *ar); +TypedValue* tg_3PDO_getavailabledrivers(ActRec *ar); VM::Instance* new_PDOStatement_Instance(VM::Class*); -TypedValue* tg_12PDOStatement___construct(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_execute(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_fetch(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_fetchobject(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_fetchcolumn(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_fetchall(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_bindvalue(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_bindparam(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_bindcolumn(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_rowcount(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_errorcode(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_errorinfo(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_setattribute(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_getattribute(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_columncount(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_getcolumnmeta(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_setfetchmode(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_nextrowset(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_closecursor(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_debugdumpparams(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_current(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_key(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_next(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_rewind(VM::ActRec *ar); -TypedValue* tg_12PDOStatement_valid(VM::ActRec *ar); -TypedValue* tg_12PDOStatement___wakeup(VM::ActRec *ar); -TypedValue* tg_12PDOStatement___sleep(VM::ActRec *ar); +TypedValue* tg_12PDOStatement___construct(ActRec *ar); +TypedValue* tg_12PDOStatement_execute(ActRec *ar); +TypedValue* tg_12PDOStatement_fetch(ActRec *ar); +TypedValue* tg_12PDOStatement_fetchobject(ActRec *ar); +TypedValue* tg_12PDOStatement_fetchcolumn(ActRec *ar); +TypedValue* tg_12PDOStatement_fetchall(ActRec *ar); +TypedValue* tg_12PDOStatement_bindvalue(ActRec *ar); +TypedValue* tg_12PDOStatement_bindparam(ActRec *ar); +TypedValue* tg_12PDOStatement_bindcolumn(ActRec *ar); +TypedValue* tg_12PDOStatement_rowcount(ActRec *ar); +TypedValue* tg_12PDOStatement_errorcode(ActRec *ar); +TypedValue* tg_12PDOStatement_errorinfo(ActRec *ar); +TypedValue* tg_12PDOStatement_setattribute(ActRec *ar); +TypedValue* tg_12PDOStatement_getattribute(ActRec *ar); +TypedValue* tg_12PDOStatement_columncount(ActRec *ar); +TypedValue* tg_12PDOStatement_getcolumnmeta(ActRec *ar); +TypedValue* tg_12PDOStatement_setfetchmode(ActRec *ar); +TypedValue* tg_12PDOStatement_nextrowset(ActRec *ar); +TypedValue* tg_12PDOStatement_closecursor(ActRec *ar); +TypedValue* tg_12PDOStatement_debugdumpparams(ActRec *ar); +TypedValue* tg_12PDOStatement_current(ActRec *ar); +TypedValue* tg_12PDOStatement_key(ActRec *ar); +TypedValue* tg_12PDOStatement_next(ActRec *ar); +TypedValue* tg_12PDOStatement_rewind(ActRec *ar); +TypedValue* tg_12PDOStatement_valid(ActRec *ar); +TypedValue* tg_12PDOStatement___wakeup(ActRec *ar); +TypedValue* tg_12PDOStatement___sleep(ActRec *ar); VM::Instance* new_SimpleXMLElement_Instance(VM::Class*); -TypedValue* tg_16SimpleXMLElement___construct(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_offsetExists(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_offsetGet(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_offsetSet(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_offsetUnset(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_getIterator(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_count(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_xpath(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_registerXPathNamespace(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_asXML(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_getNamespaces(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_getDocNamespaces(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_children(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_getName(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_attributes(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_addChild(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement_addAttribute(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement___toString(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement___get(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement___set(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement___isset(VM::ActRec *ar); -TypedValue* tg_16SimpleXMLElement___unset(VM::ActRec *ar); +TypedValue* tg_16SimpleXMLElement___construct(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_offsetExists(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_offsetGet(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_offsetSet(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_offsetUnset(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_getIterator(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_count(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_xpath(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_registerXPathNamespace(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_asXML(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_getNamespaces(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_getDocNamespaces(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_children(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_getName(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_attributes(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_addChild(ActRec *ar); +TypedValue* tg_16SimpleXMLElement_addAttribute(ActRec *ar); +TypedValue* tg_16SimpleXMLElement___toString(ActRec *ar); +TypedValue* tg_16SimpleXMLElement___get(ActRec *ar); +TypedValue* tg_16SimpleXMLElement___set(ActRec *ar); +TypedValue* tg_16SimpleXMLElement___isset(ActRec *ar); +TypedValue* tg_16SimpleXMLElement___unset(ActRec *ar); VM::Instance* new_LibXMLError_Instance(VM::Class*); -TypedValue* tg_11LibXMLError___construct(VM::ActRec *ar); +TypedValue* tg_11LibXMLError___construct(ActRec *ar); VM::Instance* new_SimpleXMLElementIterator_Instance(VM::Class*); -TypedValue* tg_24SimpleXMLElementIterator___construct(VM::ActRec *ar); -TypedValue* tg_24SimpleXMLElementIterator_current(VM::ActRec *ar); -TypedValue* tg_24SimpleXMLElementIterator_key(VM::ActRec *ar); -TypedValue* tg_24SimpleXMLElementIterator_next(VM::ActRec *ar); -TypedValue* tg_24SimpleXMLElementIterator_rewind(VM::ActRec *ar); -TypedValue* tg_24SimpleXMLElementIterator_valid(VM::ActRec *ar); +TypedValue* tg_24SimpleXMLElementIterator___construct(ActRec *ar); +TypedValue* tg_24SimpleXMLElementIterator_current(ActRec *ar); +TypedValue* tg_24SimpleXMLElementIterator_key(ActRec *ar); +TypedValue* tg_24SimpleXMLElementIterator_next(ActRec *ar); +TypedValue* tg_24SimpleXMLElementIterator_rewind(ActRec *ar); +TypedValue* tg_24SimpleXMLElementIterator_valid(ActRec *ar); VM::Instance* new_SoapServer_Instance(VM::Class*); -TypedValue* tg_10SoapServer___construct(VM::ActRec *ar); -TypedValue* tg_10SoapServer_setclass(VM::ActRec *ar); -TypedValue* tg_10SoapServer_setobject(VM::ActRec *ar); -TypedValue* tg_10SoapServer_addfunction(VM::ActRec *ar); -TypedValue* tg_10SoapServer_getfunctions(VM::ActRec *ar); -TypedValue* tg_10SoapServer_handle(VM::ActRec *ar); -TypedValue* tg_10SoapServer_setpersistence(VM::ActRec *ar); -TypedValue* tg_10SoapServer_fault(VM::ActRec *ar); -TypedValue* tg_10SoapServer_addsoapheader(VM::ActRec *ar); +TypedValue* tg_10SoapServer___construct(ActRec *ar); +TypedValue* tg_10SoapServer_setclass(ActRec *ar); +TypedValue* tg_10SoapServer_setobject(ActRec *ar); +TypedValue* tg_10SoapServer_addfunction(ActRec *ar); +TypedValue* tg_10SoapServer_getfunctions(ActRec *ar); +TypedValue* tg_10SoapServer_handle(ActRec *ar); +TypedValue* tg_10SoapServer_setpersistence(ActRec *ar); +TypedValue* tg_10SoapServer_fault(ActRec *ar); +TypedValue* tg_10SoapServer_addsoapheader(ActRec *ar); VM::Instance* new_SoapClient_Instance(VM::Class*); -TypedValue* tg_10SoapClient___construct(VM::ActRec *ar); -TypedValue* tg_10SoapClient___call(VM::ActRec *ar); -TypedValue* tg_10SoapClient___soapcall(VM::ActRec *ar); -TypedValue* tg_10SoapClient___getlastrequest(VM::ActRec *ar); -TypedValue* tg_10SoapClient___getlastresponse(VM::ActRec *ar); -TypedValue* tg_10SoapClient___getlastrequestheaders(VM::ActRec *ar); -TypedValue* tg_10SoapClient___getlastresponseheaders(VM::ActRec *ar); -TypedValue* tg_10SoapClient___getfunctions(VM::ActRec *ar); -TypedValue* tg_10SoapClient___gettypes(VM::ActRec *ar); -TypedValue* tg_10SoapClient___dorequest(VM::ActRec *ar); -TypedValue* tg_10SoapClient___setcookie(VM::ActRec *ar); -TypedValue* tg_10SoapClient___setlocation(VM::ActRec *ar); -TypedValue* tg_10SoapClient___setsoapheaders(VM::ActRec *ar); +TypedValue* tg_10SoapClient___construct(ActRec *ar); +TypedValue* tg_10SoapClient___call(ActRec *ar); +TypedValue* tg_10SoapClient___soapcall(ActRec *ar); +TypedValue* tg_10SoapClient___getlastrequest(ActRec *ar); +TypedValue* tg_10SoapClient___getlastresponse(ActRec *ar); +TypedValue* tg_10SoapClient___getlastrequestheaders(ActRec *ar); +TypedValue* tg_10SoapClient___getlastresponseheaders(ActRec *ar); +TypedValue* tg_10SoapClient___getfunctions(ActRec *ar); +TypedValue* tg_10SoapClient___gettypes(ActRec *ar); +TypedValue* tg_10SoapClient___dorequest(ActRec *ar); +TypedValue* tg_10SoapClient___setcookie(ActRec *ar); +TypedValue* tg_10SoapClient___setlocation(ActRec *ar); +TypedValue* tg_10SoapClient___setsoapheaders(ActRec *ar); VM::Instance* new_SoapVar_Instance(VM::Class*); -TypedValue* tg_7SoapVar___construct(VM::ActRec *ar); +TypedValue* tg_7SoapVar___construct(ActRec *ar); VM::Instance* new_SoapParam_Instance(VM::Class*); -TypedValue* tg_9SoapParam___construct(VM::ActRec *ar); +TypedValue* tg_9SoapParam___construct(ActRec *ar); VM::Instance* new_SoapHeader_Instance(VM::Class*); -TypedValue* tg_10SoapHeader___construct(VM::ActRec *ar); +TypedValue* tg_10SoapHeader___construct(ActRec *ar); VM::Instance* new_SQLite3_Instance(VM::Class*); -TypedValue* tg_7SQLite3___construct(VM::ActRec *ar); -TypedValue* tg_7SQLite3_open(VM::ActRec *ar); -TypedValue* tg_7SQLite3_busytimeout(VM::ActRec *ar); -TypedValue* tg_7SQLite3_close(VM::ActRec *ar); -TypedValue* tg_7SQLite3_exec(VM::ActRec *ar); -TypedValue* tg_7SQLite3_version(VM::ActRec *ar); -TypedValue* tg_7SQLite3_lastinsertrowid(VM::ActRec *ar); -TypedValue* tg_7SQLite3_lasterrorcode(VM::ActRec *ar); -TypedValue* tg_7SQLite3_lasterrormsg(VM::ActRec *ar); -TypedValue* tg_7SQLite3_loadextension(VM::ActRec *ar); -TypedValue* tg_7SQLite3_changes(VM::ActRec *ar); -TypedValue* tg_7SQLite3_escapestring(VM::ActRec *ar); -TypedValue* tg_7SQLite3_prepare(VM::ActRec *ar); -TypedValue* tg_7SQLite3_query(VM::ActRec *ar); -TypedValue* tg_7SQLite3_querysingle(VM::ActRec *ar); -TypedValue* tg_7SQLite3_createfunction(VM::ActRec *ar); -TypedValue* tg_7SQLite3_createaggregate(VM::ActRec *ar); -TypedValue* tg_7SQLite3_openblob(VM::ActRec *ar); +TypedValue* tg_7SQLite3___construct(ActRec *ar); +TypedValue* tg_7SQLite3_open(ActRec *ar); +TypedValue* tg_7SQLite3_busytimeout(ActRec *ar); +TypedValue* tg_7SQLite3_close(ActRec *ar); +TypedValue* tg_7SQLite3_exec(ActRec *ar); +TypedValue* tg_7SQLite3_version(ActRec *ar); +TypedValue* tg_7SQLite3_lastinsertrowid(ActRec *ar); +TypedValue* tg_7SQLite3_lasterrorcode(ActRec *ar); +TypedValue* tg_7SQLite3_lasterrormsg(ActRec *ar); +TypedValue* tg_7SQLite3_loadextension(ActRec *ar); +TypedValue* tg_7SQLite3_changes(ActRec *ar); +TypedValue* tg_7SQLite3_escapestring(ActRec *ar); +TypedValue* tg_7SQLite3_prepare(ActRec *ar); +TypedValue* tg_7SQLite3_query(ActRec *ar); +TypedValue* tg_7SQLite3_querysingle(ActRec *ar); +TypedValue* tg_7SQLite3_createfunction(ActRec *ar); +TypedValue* tg_7SQLite3_createaggregate(ActRec *ar); +TypedValue* tg_7SQLite3_openblob(ActRec *ar); VM::Instance* new_SQLite3Stmt_Instance(VM::Class*); -TypedValue* tg_11SQLite3Stmt___construct(VM::ActRec *ar); -TypedValue* tg_11SQLite3Stmt_paramcount(VM::ActRec *ar); -TypedValue* tg_11SQLite3Stmt_close(VM::ActRec *ar); -TypedValue* tg_11SQLite3Stmt_reset(VM::ActRec *ar); -TypedValue* tg_11SQLite3Stmt_clear(VM::ActRec *ar); -TypedValue* tg_11SQLite3Stmt_bindparam(VM::ActRec *ar); -TypedValue* tg_11SQLite3Stmt_bindvalue(VM::ActRec *ar); -TypedValue* tg_11SQLite3Stmt_execute(VM::ActRec *ar); +TypedValue* tg_11SQLite3Stmt___construct(ActRec *ar); +TypedValue* tg_11SQLite3Stmt_paramcount(ActRec *ar); +TypedValue* tg_11SQLite3Stmt_close(ActRec *ar); +TypedValue* tg_11SQLite3Stmt_reset(ActRec *ar); +TypedValue* tg_11SQLite3Stmt_clear(ActRec *ar); +TypedValue* tg_11SQLite3Stmt_bindparam(ActRec *ar); +TypedValue* tg_11SQLite3Stmt_bindvalue(ActRec *ar); +TypedValue* tg_11SQLite3Stmt_execute(ActRec *ar); VM::Instance* new_SQLite3Result_Instance(VM::Class*); -TypedValue* tg_13SQLite3Result___construct(VM::ActRec *ar); -TypedValue* tg_13SQLite3Result_numcolumns(VM::ActRec *ar); -TypedValue* tg_13SQLite3Result_columnname(VM::ActRec *ar); -TypedValue* tg_13SQLite3Result_columntype(VM::ActRec *ar); -TypedValue* tg_13SQLite3Result_fetcharray(VM::ActRec *ar); -TypedValue* tg_13SQLite3Result_reset(VM::ActRec *ar); -TypedValue* tg_13SQLite3Result_finalize(VM::ActRec *ar); +TypedValue* tg_13SQLite3Result___construct(ActRec *ar); +TypedValue* tg_13SQLite3Result_numcolumns(ActRec *ar); +TypedValue* tg_13SQLite3Result_columnname(ActRec *ar); +TypedValue* tg_13SQLite3Result_columntype(ActRec *ar); +TypedValue* tg_13SQLite3Result_fetcharray(ActRec *ar); +TypedValue* tg_13SQLite3Result_reset(ActRec *ar); +TypedValue* tg_13SQLite3Result_finalize(ActRec *ar); VM::Instance* new_XMLReader_Instance(VM::Class*); -TypedValue* tg_9XMLReader___construct(VM::ActRec *ar); -TypedValue* tg_9XMLReader_open(VM::ActRec *ar); -TypedValue* tg_9XMLReader_XML(VM::ActRec *ar); -TypedValue* tg_9XMLReader_close(VM::ActRec *ar); -TypedValue* tg_9XMLReader_read(VM::ActRec *ar); -TypedValue* tg_9XMLReader_next(VM::ActRec *ar); -TypedValue* tg_9XMLReader_readString(VM::ActRec *ar); -TypedValue* tg_9XMLReader_readInnerXML(VM::ActRec *ar); -TypedValue* tg_9XMLReader_readOuterXML(VM::ActRec *ar); -TypedValue* tg_9XMLReader_moveToNextAttribute(VM::ActRec *ar); -TypedValue* tg_9XMLReader_getAttribute(VM::ActRec *ar); -TypedValue* tg_9XMLReader_getAttributeNo(VM::ActRec *ar); -TypedValue* tg_9XMLReader_getAttributeNs(VM::ActRec *ar); -TypedValue* tg_9XMLReader_moveToAttribute(VM::ActRec *ar); -TypedValue* tg_9XMLReader_moveToAttributeNo(VM::ActRec *ar); -TypedValue* tg_9XMLReader_moveToAttributeNs(VM::ActRec *ar); -TypedValue* tg_9XMLReader_moveToElement(VM::ActRec *ar); -TypedValue* tg_9XMLReader_moveToFirstAttribute(VM::ActRec *ar); -TypedValue* tg_9XMLReader_isValid(VM::ActRec *ar); -TypedValue* tg_9XMLReader_expand(VM::ActRec *ar); -TypedValue* tg_9XMLReader___get(VM::ActRec *ar); -TypedValue* tg_9XMLReader_getParserProperty(VM::ActRec *ar); -TypedValue* tg_9XMLReader_lookupNamespace(VM::ActRec *ar); -TypedValue* tg_9XMLReader_setSchema(VM::ActRec *ar); -TypedValue* tg_9XMLReader_setParserProperty(VM::ActRec *ar); -TypedValue* tg_9XMLReader_setRelaxNGSchema(VM::ActRec *ar); -TypedValue* tg_9XMLReader_setRelaxNGSchemaSource(VM::ActRec *ar); +TypedValue* tg_9XMLReader___construct(ActRec *ar); +TypedValue* tg_9XMLReader_open(ActRec *ar); +TypedValue* tg_9XMLReader_XML(ActRec *ar); +TypedValue* tg_9XMLReader_close(ActRec *ar); +TypedValue* tg_9XMLReader_read(ActRec *ar); +TypedValue* tg_9XMLReader_next(ActRec *ar); +TypedValue* tg_9XMLReader_readString(ActRec *ar); +TypedValue* tg_9XMLReader_readInnerXML(ActRec *ar); +TypedValue* tg_9XMLReader_readOuterXML(ActRec *ar); +TypedValue* tg_9XMLReader_moveToNextAttribute(ActRec *ar); +TypedValue* tg_9XMLReader_getAttribute(ActRec *ar); +TypedValue* tg_9XMLReader_getAttributeNo(ActRec *ar); +TypedValue* tg_9XMLReader_getAttributeNs(ActRec *ar); +TypedValue* tg_9XMLReader_moveToAttribute(ActRec *ar); +TypedValue* tg_9XMLReader_moveToAttributeNo(ActRec *ar); +TypedValue* tg_9XMLReader_moveToAttributeNs(ActRec *ar); +TypedValue* tg_9XMLReader_moveToElement(ActRec *ar); +TypedValue* tg_9XMLReader_moveToFirstAttribute(ActRec *ar); +TypedValue* tg_9XMLReader_isValid(ActRec *ar); +TypedValue* tg_9XMLReader_expand(ActRec *ar); +TypedValue* tg_9XMLReader___get(ActRec *ar); +TypedValue* tg_9XMLReader_getParserProperty(ActRec *ar); +TypedValue* tg_9XMLReader_lookupNamespace(ActRec *ar); +TypedValue* tg_9XMLReader_setSchema(ActRec *ar); +TypedValue* tg_9XMLReader_setParserProperty(ActRec *ar); +TypedValue* tg_9XMLReader_setRelaxNGSchema(ActRec *ar); +TypedValue* tg_9XMLReader_setRelaxNGSchemaSource(ActRec *ar); VM::Instance* new_XMLWriter_Instance(VM::Class*); -TypedValue* tg_9XMLWriter___construct(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_openMemory(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_openURI(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_setIndentString(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_setIndent(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startDocument(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startElement(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startElementNS(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeElementNS(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeElement(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endElement(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_fullEndElement(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startAttributens(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startAttribute(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeAttributeNS(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeAttribute(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endAttribute(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startCData(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeCData(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endCData(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startComment(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeComment(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endComment(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endDocument(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startPI(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writePI(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endPI(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_text(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeRaw(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startDTD(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeDTD(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startDTDElement(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeDTDElement(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endDTDElement(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startDTDAttlist(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeDTDAttlist(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endDTDAttlist(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_startDTDEntity(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_writeDTDEntity(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endDTDEntity(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_endDTD(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_flush(VM::ActRec *ar); -TypedValue* tg_9XMLWriter_outputMemory(VM::ActRec *ar); +TypedValue* tg_9XMLWriter___construct(ActRec *ar); +TypedValue* tg_9XMLWriter_openMemory(ActRec *ar); +TypedValue* tg_9XMLWriter_openURI(ActRec *ar); +TypedValue* tg_9XMLWriter_setIndentString(ActRec *ar); +TypedValue* tg_9XMLWriter_setIndent(ActRec *ar); +TypedValue* tg_9XMLWriter_startDocument(ActRec *ar); +TypedValue* tg_9XMLWriter_startElement(ActRec *ar); +TypedValue* tg_9XMLWriter_startElementNS(ActRec *ar); +TypedValue* tg_9XMLWriter_writeElementNS(ActRec *ar); +TypedValue* tg_9XMLWriter_writeElement(ActRec *ar); +TypedValue* tg_9XMLWriter_endElement(ActRec *ar); +TypedValue* tg_9XMLWriter_fullEndElement(ActRec *ar); +TypedValue* tg_9XMLWriter_startAttributens(ActRec *ar); +TypedValue* tg_9XMLWriter_startAttribute(ActRec *ar); +TypedValue* tg_9XMLWriter_writeAttributeNS(ActRec *ar); +TypedValue* tg_9XMLWriter_writeAttribute(ActRec *ar); +TypedValue* tg_9XMLWriter_endAttribute(ActRec *ar); +TypedValue* tg_9XMLWriter_startCData(ActRec *ar); +TypedValue* tg_9XMLWriter_writeCData(ActRec *ar); +TypedValue* tg_9XMLWriter_endCData(ActRec *ar); +TypedValue* tg_9XMLWriter_startComment(ActRec *ar); +TypedValue* tg_9XMLWriter_writeComment(ActRec *ar); +TypedValue* tg_9XMLWriter_endComment(ActRec *ar); +TypedValue* tg_9XMLWriter_endDocument(ActRec *ar); +TypedValue* tg_9XMLWriter_startPI(ActRec *ar); +TypedValue* tg_9XMLWriter_writePI(ActRec *ar); +TypedValue* tg_9XMLWriter_endPI(ActRec *ar); +TypedValue* tg_9XMLWriter_text(ActRec *ar); +TypedValue* tg_9XMLWriter_writeRaw(ActRec *ar); +TypedValue* tg_9XMLWriter_startDTD(ActRec *ar); +TypedValue* tg_9XMLWriter_writeDTD(ActRec *ar); +TypedValue* tg_9XMLWriter_startDTDElement(ActRec *ar); +TypedValue* tg_9XMLWriter_writeDTDElement(ActRec *ar); +TypedValue* tg_9XMLWriter_endDTDElement(ActRec *ar); +TypedValue* tg_9XMLWriter_startDTDAttlist(ActRec *ar); +TypedValue* tg_9XMLWriter_writeDTDAttlist(ActRec *ar); +TypedValue* tg_9XMLWriter_endDTDAttlist(ActRec *ar); +TypedValue* tg_9XMLWriter_startDTDEntity(ActRec *ar); +TypedValue* tg_9XMLWriter_writeDTDEntity(ActRec *ar); +TypedValue* tg_9XMLWriter_endDTDEntity(ActRec *ar); +TypedValue* tg_9XMLWriter_endDTD(ActRec *ar); +TypedValue* tg_9XMLWriter_flush(ActRec *ar); +TypedValue* tg_9XMLWriter_outputMemory(ActRec *ar); const long long hhbc_ext_funcs_count = 2205; const HhbcExtFuncInfo hhbc_ext_funcs[] = { diff --git a/hphp/runtime/ext_hhvm/gen_ext_hhvm.php b/hphp/runtime/ext_hhvm/gen_ext_hhvm.php index c5a4011d4..f22ec0b6c 100644 --- a/hphp/runtime/ext_hhvm/gen_ext_hhvm.php +++ b/hphp/runtime/ext_hhvm/gen_ext_hhvm.php @@ -712,17 +712,17 @@ function phase2() { // Emit the fg1_ function if needed if ($obj->numTypeChecks > 0) { fwrite($ext_hhvm_cpp, "TypedValue * fg1_" . $obj->name . - "(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) " . + "(TypedValue* rv, ActRec* ar, int64_t count) " . "__attribute__((noinline,cold));\n"); fwrite($ext_hhvm_cpp, "TypedValue * fg1_" . $obj->name . - "(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count) {\n"); + "(TypedValue* rv, ActRec* ar, int64_t count) {\n"); $indent = ' '; emitSlowPathHelper($obj, $ext_hhvm_cpp, $indent, 'fh_'); fwrite($ext_hhvm_cpp, "}\n\n"); } // Start emitting the fg_ function fwrite($ext_hhvm_cpp, "TypedValue* fg_" . $obj->name . - "(HPHP::VM::ActRec *ar) {\n"); + "(ActRec *ar) {\n"); $indent = ' '; $indent .= ' '; fwrite($ext_hhvm_cpp, $indent . "TypedValue rv;\n"); @@ -825,11 +825,11 @@ function phase2() { // Emit the tg1_ function if needed if ($obj->numTypeChecks > 0) { fwrite($ext_hhvm_cpp, "TypedValue* tg1_" . getUniqueFuncName($obj) . - "(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count" . + "(TypedValue* rv, ActRec* ar, int64_t count" . (!$obj->isStatic ? ", ObjectData* this_" : "") . ") __attribute__((noinline,cold));\n"); fwrite($ext_hhvm_cpp, "TypedValue* tg1_" . getUniqueFuncName($obj) . - "(TypedValue* rv, HPHP::VM::ActRec* ar, int64_t count" . + "(TypedValue* rv, ActRec* ar, int64_t count" . (!$obj->isStatic ? ", ObjectData* this_" : "") . ") {\n"); $indent = ' '; @@ -839,7 +839,7 @@ function phase2() { } // Start emitting the tg_ function fwrite($ext_hhvm_cpp, "TypedValue* tg_" . getUniqueFuncName($obj) . - "(HPHP::VM::ActRec *ar) {\n"); + "(ActRec *ar) {\n"); $indent = ' '; $indent .= ' '; fwrite($ext_hhvm_cpp, $indent . "TypedValue rv;\n"); diff --git a/hphp/runtime/ext_hhvm/gen_infotabs.php b/hphp/runtime/ext_hhvm/gen_infotabs.php index 052c771f0..cd3f6eaea 100644 --- a/hphp/runtime/ext_hhvm/gen_infotabs.php +++ b/hphp/runtime/ext_hhvm/gen_infotabs.php @@ -55,19 +55,17 @@ function main() { emit_include($outfile, "runtime/ext_hhvm/ext_hhvm.h"); emit_include($outfile, "runtime/ext/ext.h"); fwrite($outfile, "#include \"ext_hhvm_infotabs.h\"\n"); - fwrite($outfile, - "namespace HPHP {\n" . - " struct TypedValue;\n" . - " namespace VM { struct ActRec; struct Class; }\n" . - "}\n\n" - ); - fwrite($outfile, "namespace HPHP {\n\n"); + fwrite($outfile, "\nnamespace HPHP {\n\n"); + fwrite($outfile, + "struct TypedValue;\n" . + "struct ActRec;\n" . + "namespace VM { struct Class; }\n"); // First declare all the stubs we need to be able to register. foreach ($ext_func_info as $obj) { fwrite($outfile, "TypedValue* fg_" . $obj->name . - "(VM::ActRec *ar);\n"); + "(ActRec *ar);\n"); } foreach ($ext_class_info as $cname => $cls_info) { if (!($cls_info['flags'] & IsCppAbstract)) { @@ -77,7 +75,7 @@ function main() { } foreach ($cls_info['methods'] as $obj) { fwrite($outfile, "TypedValue* tg_" . getUniqueFuncName($obj) . - "(VM::ActRec *ar);\n"); + "(ActRec *ar);\n"); } } fwrite($outfile, "\n"); diff --git a/hphp/runtime/vm/bytecode.cpp b/hphp/runtime/vm/bytecode.cpp index 0ba167f96..daf05836d 100644 --- a/hphp/runtime/vm/bytecode.cpp +++ b/hphp/runtime/vm/bytecode.cpp @@ -57,7 +57,7 @@ #include #include #include -#include +#include #include #include #include @@ -69,7 +69,6 @@ #include "runtime/vm/request_arena.h" #include "util/arena.h" -using std::string; namespace HPHP { @@ -77,9 +76,15 @@ namespace HPHP { // to be closer to other bytecode.cpp data. bool RuntimeOption::RepoAuthoritative = false; -namespace VM { +using std::string; -using Transl::tx64; +using VM::Transl::tx64; +using VM::Unit; +using VM::Class; +using VM::Func; +using VM::FPIEnt; +using VM::EHEnt; +using VM::NameValueTable; #if DEBUG #define OPTBLD_INLINE @@ -200,7 +205,7 @@ VarEnv::VarEnv() TypedValue globalArray; globalArray.m_type = KindOfArray; globalArray.m_data.parr = - new (request_arena()) GlobalNameValueTableWrapper(&*m_nvTable); + new (request_arena()) VM::GlobalNameValueTableWrapper(&*m_nvTable); globalArray.m_data.parr->incRefCount(); m_nvTable->set(StringData::GetStaticString("GLOBALS"), &globalArray); tvRefcountedDecRef(&globalArray); @@ -264,8 +269,9 @@ VarEnv* VarEnv::createLazyAttach(ActRec* fp, TRACE(3, "Creating lazily attached VarEnv\n"); if (LIKELY(!skipInsert)) { - varenv_arena().beginFrame(); - void* mem = varenv_arena().alloc(neededSz); + auto& va = varenv_arena(); + va.beginFrame(); + void* mem = va.alloc(neededSz); VarEnv* ret = new (mem) VarEnv(fp, eArgs); TRACE(3, "Creating lazily attached VarEnv %p\n", mem); ret->setPrevious(g_vmContext->m_topVarEnv); @@ -890,7 +896,7 @@ string Stack::toString(const ActRec* fp, int offset, const string prefix/* = "" */) const { std::ostringstream os; os << prefix << "=== Stack at " << curUnit()->filepath()->data() << ":" << - curUnit()->getLineNumber(curUnit()->offsetOf(Transl::vmpc())) << " func " << + curUnit()->getLineNumber(curUnit()->offsetOf(vmpc())) << " func " << curFunc()->fullName()->data() << " ===\n"; toStringFrame(os, fp, offset, m_top, prefix); @@ -1131,8 +1137,6 @@ TypedValue* Stack::generatorStackBase(const ActRec* fp) { __thread RequestArenaStorage s_requestArenaStorage; __thread VarEnvArenaStorage s_varEnvArenaStorage; -/////////////////////////////////////////////////////////////////////////////// -} // namespace VM //============================================================================= // ExecutionContext. @@ -1537,8 +1541,8 @@ void VMExecutionContext::addRenameableFunctions(ArrayData* arr) { VarEnv* VMExecutionContext::getVarEnv() { Transl::VMRegAnchor _; - HPHP::VM::VarEnv* builtinVarEnv = nullptr; - HPHP::VM::ActRec* fp = getFP(); + VarEnv* builtinVarEnv = nullptr; + ActRec* fp = getFP(); if (UNLIKELY(!fp)) return NULL; if (fp->skipFrame()) { if (fp->hasVarEnv()) { @@ -1815,7 +1819,7 @@ void VMExecutionContext::enterVMWork(ActRec* enterFnAr) { !ThreadInfo::s_threadInfo->m_reqInjectionData.coverage && !(RuntimeOption::EvalJitDisabledByHphpd && isDebuggerAttached()) && LIKELY(!DEBUGGER_FORCE_INTR)) { - Transl::SrcKey sk(Transl::curFunc(), m_pc); + Transl::SrcKey sk(curFunc(), m_pc); (void) curUnit()->offsetOf(m_pc); /* assert */ tx64->enterTC(sk, start); } else { @@ -2012,7 +2016,7 @@ void VMExecutionContext::invokeFunc(TypedValue* retval, // If this is a method, either this_ or cls must be non-NULL assert(!f->preClass() || (this_ || cls)); // If this is a static method, this_ must be NULL - assert(!(f->attrs() & HPHP::VM::AttrStatic && !f->isClosureBody()) || + assert(!(f->attrs() & AttrStatic && !f->isClosureBody()) || (!this_)); // invName should only be non-NULL if we are calling __call or // __callStatic @@ -2838,7 +2842,7 @@ CStrRef VMExecutionContext::createFunction(CStrRef args, CStrRef code) { << "(" << args.data() << ") {" << code.data() << "}\n"; StringData* evalCode = StringData::GetStaticString(codeStr.str()); - Unit* unit = VM::compile_string(evalCode->data(), evalCode->size()); + Unit* unit = compile_string(evalCode->data(), evalCode->size()); // Move the function to a different name. std::ostringstream newNameStr; newNameStr << '\0' << "lambda_" << ++m_lambdaCounter; @@ -2879,7 +2883,7 @@ void VMExecutionContext::evalPHPDebugger(TypedValue* retval, StringData *code, ActRec *fp = getFP(); ActRec *cfpSave = nullptr; if (fp) { - VM::VarEnv* vit = 0; + VarEnv* vit = nullptr; for (; frame > 0; --frame) { if (fp->hasVarEnv()) { if (!vit) { @@ -5626,10 +5630,10 @@ inline void OPTBLD_INLINE VMExecutionContext::doFPushCuf(PC& pc, HPHP::VM::Class* cls = nullptr; StringData* invName = nullptr; - const HPHP::VM::Func* f = vm_decode_function(tvAsVariant(&func), getFP(), - forward, - obj, cls, invName, - !safe); + const Func* f = vm_decode_function(tvAsVariant(&func), getFP(), + forward, + obj, cls, invName, + !safe); if (safe) m_stack.topTV()[1] = m_stack.topTV()[0]; m_stack.ndiscard(1); @@ -6075,7 +6079,7 @@ bool VMExecutionContext::prepareArrayArgs(ActRec* ar, return true; } -static void cleanupParamsAndActRec(VM::Stack& stack, +static void cleanupParamsAndActRec(Stack& stack, ActRec* ar, ExtraArgs* extraArgs) { assert(stack.top() + (extraArgs ? @@ -7338,7 +7342,7 @@ void VMExecutionContext::requestInit() { new (&s_requestArenaStorage) RequestArena(); new (&s_varEnvArenaStorage) VarEnvArena(); - VM::VarEnv::createGlobal(); + VarEnv::createGlobal(); m_stack.requestInit(); tx64 = nextTx64; tx64->requestInit(); @@ -7367,7 +7371,7 @@ void VMExecutionContext::requestExit() { if (m_globalVarEnv) { assert(m_topVarEnv = m_globalVarEnv); - VM::VarEnv::destroy(m_globalVarEnv); + VarEnv::destroy(m_globalVarEnv); m_globalVarEnv = m_topVarEnv = 0; } diff --git a/hphp/runtime/vm/bytecode.h b/hphp/runtime/vm/bytecode.h index e5fcd0739..8d5e982c6 100644 --- a/hphp/runtime/vm/bytecode.h +++ b/hphp/runtime/vm/bytecode.h @@ -33,8 +33,6 @@ namespace HPHP { -namespace VM { - // SETOP_BODY() would ideally be an inline function, but the header // dependencies for concat_assign() make this unfeasible. #define SETOP_BODY(lhs, op, rhs) do { \ @@ -57,7 +55,8 @@ namespace VM { } \ } while (0) -class Func; +namespace VM { class Func; } +class ActRec; // max number of arguments for direct call to builtin static const int kMaxBuiltinArgs = 5; @@ -130,7 +129,7 @@ class VarEnv { // TinyVector<> for now increased icache misses, but maybe will be // feasable later (see D511561). std::vector m_restoreLocations; - boost::optional m_nvTable; + boost::optional m_nvTable; private: explicit VarEnv(); @@ -229,7 +228,7 @@ struct ActRec { union { TypedValue _dummyB; struct { - const Func* m_func; // Function. + const VM::Func* m_func; // Function. uint32_t m_soff; // Saved offset of caller from beginning of // caller's Func's bytecode. @@ -244,7 +243,7 @@ struct ActRec { struct { union { ObjectData* m_this; // This. - Class* m_cls; // Late bound class. + VM::Class* m_cls; // Late bound class. }; union { VarEnv* m_varEnv; // Variable environment; only used when the @@ -358,7 +357,7 @@ struct ActRec { // Note that reordering these is likely to require changes to the // translator. - UNION_FIELD_ACCESSORS2(This, ObjectData*, m_this, Class, Class*, m_cls) + UNION_FIELD_ACCESSORS2(This, ObjectData*, m_this, Class, VM::Class*, m_cls) static const int8_t kInvNameBit = 0x1; static const int8_t kExtraArgsBit = 0x2; UNION_FIELD_ACCESSORS3(VarEnv, VarEnv*, m_varEnv, InvName, StringData*, @@ -396,18 +395,23 @@ inline void arSetSfp(ActRec* ar, const ActRec* sfp) { ar->m_savedRbp = (uint64_t)sfp; } -template Class* arGetContextClassImpl(const ActRec* ar); -#define arGetContextClass(ar) HPHP::VM::arGetContextClassImpl(ar) -#define arGetContextClassFromBuiltin(ar) \ - HPHP::VM::arGetContextClassImpl(ar) +template VM::Class* arGetContextClassImpl(const ActRec* ar); +template <> VM::Class* arGetContextClassImpl(const ActRec* ar); +template <> VM::Class* arGetContextClassImpl(const ActRec* ar); +inline VM::Class* arGetContextClass(const ActRec* ar) { + return arGetContextClassImpl(ar); +} +inline VM::Class* arGetContextClassFromBuiltin(const ActRec* ar) { + return arGetContextClassImpl(ar); +} // Used by extension functions that take a PHP "callback", since they need to // figure out the callback context once and call it multiple times. (e.g. // array_map, array_filter, ...) struct CallCtx { - const Func* func; + const VM::Func* func; ObjectData* this_; - Class* cls; + VM::Class* cls; StringData* invName; }; @@ -473,7 +477,7 @@ private: void toStringFrag(std::ostream& os, const ActRec* fp, const TypedValue* top) const; void toStringAR(std::ostream& os, const ActRec* fp, - const FPIEnt *fe, const TypedValue* top) const; + const VM::FPIEnt *fe, const TypedValue* top) const; void toStringFragAR(std::ostream& os, const ActRec* fp, int offset, const TypedValue* top) const; void toStringFrame(std::ostream& os, const ActRec* fp, @@ -490,7 +494,7 @@ private: // it's impossible to have more than one chain of nested unactivated ActRecs // on the stack, this means that after this function returns, everything // between the stack pointer and frame pointer is a value, Iter or local. - void unwindAR(ActRec* fp, const FPIEnt* fe); + void unwindAR(ActRec* fp, const VM::FPIEnt* fe); public: static const int sSurprisePageSize; static const uint sMinStackElms; @@ -774,7 +778,7 @@ public: assert(m_top != m_base); return &m_top[ind]; } - inline void ALWAYS_INLINE pushClass(Class* clss) { + inline void ALWAYS_INLINE pushClass(VM::Class* clss) { assert(m_top != m_elms); m_top--; m_top->m_data.pcls = clss; @@ -784,6 +788,5 @@ public: /////////////////////////////////////////////////////////////////////////////// } -} #endif // __VM_BYTECODE_H__ diff --git a/hphp/runtime/vm/core_types.h b/hphp/runtime/vm/core_types.h index 5d2c385f9..e3d958f10 100644 --- a/hphp/runtime/vm/core_types.h +++ b/hphp/runtime/vm/core_types.h @@ -22,7 +22,6 @@ #include "runtime/base/complex_types.h" namespace HPHP { -namespace VM { /////////////////////////////////////////////////////////////////////////////// /* @@ -123,6 +122,6 @@ static inline const char * attrToVisibilityStr(Attr attr) { (attr & AttrProtected) ? "protected" : "public"; } -} } +} #endif diff --git a/hphp/runtime/vm/hhbc.cpp b/hphp/runtime/vm/hhbc.cpp index ea3d7f49b..bf7e4e52e 100644 --- a/hphp/runtime/vm/hhbc.cpp +++ b/hphp/runtime/vm/hhbc.cpp @@ -17,7 +17,7 @@ #include #include #include -#include +#include #include namespace HPHP { diff --git a/hphp/runtime/vm/instance.cpp b/hphp/runtime/vm/instance.cpp index 60a94074f..6c93151c5 100644 --- a/hphp/runtime/vm/instance.cpp +++ b/hphp/runtime/vm/instance.cpp @@ -41,6 +41,20 @@ TRACE_SET_MOD(runtime); int HPHP::VM::Instance::ObjAllocatorSizeClassCount = HPHP::VM::InitializeAllocators(); +void deepInitHelper(TypedValue* propVec, const TypedValueAux* propData, + size_t nProps) { + auto* dst = propVec; + auto* src = propData; + for (; src != propData + nProps; ++src, ++dst) { + *dst = *src; + // m_aux.u_deepInit is true for properties that need "deep" initialization + if (src->deepInit()) { + tvIncRef(dst); + collectionDeepCopyTV(dst); + } + } +} + TypedValue* Instance::propVec() { uintptr_t ret = (uintptr_t)this + sizeof(ObjectData) + builtinPropSize(); // TODO(#1432007): some builtins still do not have TypedValue-aligned sizes. diff --git a/hphp/runtime/vm/instance.h b/hphp/runtime/vm/instance.h index 83fe88fea..07dea3a33 100644 --- a/hphp/runtime/vm/instance.h +++ b/hphp/runtime/vm/instance.h @@ -28,7 +28,8 @@ namespace HPHP { namespace VM { -void deepInitHelper(TypedValue*, const TypedValueAux*, size_t); +void deepInitHelper(TypedValue* propVec, const TypedValueAux* propData, + size_t nProps); class Instance : public ObjectData { // Do not declare any fields directly in Instance; instead embed them in @@ -250,7 +251,7 @@ namespace HPHP { class ExtObjectData : public HPHP::VM::Instance { public: - ExtObjectData(HPHP::VM::Class* cls) + explicit ExtObjectData(HPHP::VM::Class* cls) : HPHP::VM::Instance(cls, false) { assert(!m_cls->callsCustomInstanceInit()); } @@ -258,7 +259,7 @@ class ExtObjectData : public HPHP::VM::Instance { template class ExtObjectDataFlags : public ExtObjectData { public: - ExtObjectDataFlags(HPHP::VM::Class* cb) : ExtObjectData(cb) { + explicit ExtObjectDataFlags(HPHP::VM::Class* cb) : ExtObjectData(cb) { ObjectData::setAttributes(flags); } }; diff --git a/hphp/runtime/vm/instrumentation.cpp b/hphp/runtime/vm/instrumentation.cpp index ddb547986..3759e89bf 100644 --- a/hphp/runtime/vm/instrumentation.cpp +++ b/hphp/runtime/vm/instrumentation.cpp @@ -52,7 +52,7 @@ void Injection::execute() const { } // Note: For now we don't merge analysis code's class and function. // Later we might decide to do so - g_vmContext->invokeFunc(&retval, m_unit->getMain(Transl::curClass()), + g_vmContext->invokeFunc(&retval, m_unit->getMain(curClass()), Array::Create(), this_, cls, varEnv, nullptr, nullptr); if (varEnv) { varEnv->setCfp(cfpSave); diff --git a/hphp/runtime/vm/request_arena.h b/hphp/runtime/vm/request_arena.h index 90da75c8f..9dc0e0d70 100644 --- a/hphp/runtime/vm/request_arena.h +++ b/hphp/runtime/vm/request_arena.h @@ -20,7 +20,7 @@ #include "util/arena.h" -namespace HPHP { namespace VM { +namespace HPHP { ////////////////////////////////////////////////////////////////////// @@ -53,6 +53,6 @@ inline VarEnvArena& varenv_arena() { ////////////////////////////////////////////////////////////////////// -}} +} #endif diff --git a/hphp/runtime/vm/runtime.cpp b/hphp/runtime/vm/runtime.cpp index 3baf54388..46564083d 100644 --- a/hphp/runtime/vm/runtime.cpp +++ b/hphp/runtime/vm/runtime.cpp @@ -33,7 +33,10 @@ #include "runtime/ext/ext_string.h" namespace HPHP { -namespace VM { + +using VM::Unit; +using VM::Func; +using VM::Transl::tx64; static const Trace::Module TRACEMOD = Trace::runtime; @@ -197,7 +200,7 @@ concat_si(StringData* v1, int64_t v2) { * incRef the output string */ StringData* -concat(DataType t1, uint64_t v1, DataType t2, uint64_t v2) { +concat_tv(DataType t1, uint64_t v1, DataType t2, uint64_t v2) { const char *s1, *s2; size_t s1len, s2len; bool free1, free2; @@ -283,7 +286,7 @@ int64_t arr0_to_bool(ArrayData* ad) { } int64_t arr_to_bool(ArrayData* ad) { - assert(Transl::tx64->stateIsDirty()); + assert(tx64->stateIsDirty()); int64_t retval = arr0_to_bool(ad); decRefArr(ad); return retval; @@ -331,7 +334,7 @@ Unit* compile_string(const char* s, size_t sz) { int out_len; md5 = MD5(string_md5(s, sz, false, out_len)); - VM::Unit* u = Repo::get().loadUnit("", md5); + VM::Unit* u = VM::Repo::get().loadUnit("", md5); if (u != nullptr) { return u; } @@ -475,20 +478,6 @@ void assertTv(const TypedValue* tv) { always_assert(checkTv(tv)); } -void deepInitHelper(TypedValue* propVec, const TypedValueAux* propData, - size_t nProps) { - auto* dst = propVec; - auto* src = propData; - for (; src != propData + nProps; ++src, ++dst) { - *dst = *src; - // m_aux.u_deepInit is true for properties that need "deep" initialization - if (src->deepInit()) { - tvIncRef(dst); - collectionDeepCopyTV(dst); - } - } -} - int init_closure(ActRec* ar, TypedValue* sp) { c_Closure* closure = static_cast(ar->getThis()); @@ -529,5 +518,5 @@ HOT_FUNC int64_t modHelper(int64_t left, int64_t right) { return left % right; } -} } // HPHP::VM +} // HPHP::VM diff --git a/hphp/runtime/vm/runtime.h b/hphp/runtime/vm/runtime.h index 2d6c99b4d..e104df4c2 100644 --- a/hphp/runtime/vm/runtime.h +++ b/hphp/runtime/vm/runtime.h @@ -27,8 +27,6 @@ namespace HPHP { struct HhbcExtFuncInfo; struct HhbcExtClassInfo; -namespace VM { - ArrayData* new_array(int capacity); ArrayData* new_tuple(int numArgs, const TypedValue* args); @@ -40,7 +38,7 @@ ObjectData* newPairHelper(); StringData* concat_is(int64_t v1, StringData* v2); StringData* concat_si(StringData* v1, int64_t v2); StringData* concat_ss(StringData* v1, StringData* v2); -StringData* concat(DataType t1, uint64_t v1, DataType t2, uint64_t v2); +StringData* concat_tv(DataType t1, uint64_t v1, DataType t2, uint64_t v2); int64_t tv_to_bool(TypedValue* tv); @@ -128,13 +126,13 @@ frame_free_locals_inl(ActRec* fp, int numLocals) { decRefObj(this_); } frame_free_locals_helper_inl(fp, numLocals); - EventHook::FunctionExit(fp); + VM::EventHook::FunctionExit(fp); } inline void ALWAYS_INLINE frame_free_locals_no_this_inl(ActRec* fp, int numLocals) { frame_free_locals_helper_inl(fp, numLocals); - EventHook::FunctionExit(fp); + VM::EventHook::FunctionExit(fp); } inline void ALWAYS_INLINE @@ -155,12 +153,13 @@ frame_free_args(TypedValue* args, int count) { } -Unit* compile_file(const char* s, size_t sz, const MD5& md5, const char* fname); -Unit* compile_string(const char* s, size_t sz); -Unit* build_native_func_unit(const HhbcExtFuncInfo* builtinFuncs, - ssize_t numBuiltinFuncs); -Unit* build_native_class_unit(const HhbcExtClassInfo* builtinClasses, - ssize_t numBuiltinClasses); +VM::Unit* +compile_file(const char* s, size_t sz, const MD5& md5, const char* fname); +VM::Unit* compile_string(const char* s, size_t sz); +VM::Unit* build_native_func_unit(const HhbcExtFuncInfo* builtinFuncs, + ssize_t numBuiltinFuncs); +VM::Unit* build_native_class_unit(const HhbcExtClassInfo* builtinClasses, + ssize_t numBuiltinClasses); HphpArray* pack_args_into_array(ActRec* ar, int nargs); @@ -171,11 +170,12 @@ void call_intercept_handler(TypedValue* retval, Variant* ihandler) { if (handle_throw) { assert(ar); } ObjectData* intThis = nullptr; - Class* intCls = nullptr; + VM::Class* intCls = nullptr; StringData* intInvName = nullptr; - const Func* handler = vm_decode_function(ihandler->asCArrRef()[0], - g_vmContext->getFP(), - false, intThis, intCls, intInvName); + const VM::Func* handler = vm_decode_function(ihandler->asCArrRef()[0], + g_vmContext->getFP(), + false, intThis, intCls, + intInvName); if (handle_throw) { // It's possible for the intercept handler could throw an exception. // If run_intercept_handler() was called from the translator and the @@ -244,16 +244,16 @@ bool run_intercept_handler(ActRec* ar, Variant* ihandler) { } bool run_intercept_handler_for_invokefunc(TypedValue* retval, - const Func* f, + const VM::Func* f, CArrRef params, ObjectData* this_, StringData* invName, Variant* ihandler); -static inline Instance* -newInstance(Class* cls) { +static inline VM::Instance* +newInstance(VM::Class* cls) { assert(cls); - Instance *inst = Instance::newInstance(cls); + auto* inst = VM::Instance::newInstance(cls); if (UNLIKELY(RuntimeOption::EnableObjDestructCall)) { g_vmContext->m_liveBCObjs.insert(inst); } @@ -270,9 +270,9 @@ HphpArray* get_static_locals(const ActRec* ar); * be set up before you use those parts of the runtime. */ -typedef Unit* (*CompileStringFn)(const char*, int, const MD5&, const char*); -typedef Unit* (*BuildNativeFuncUnitFn)(const HhbcExtFuncInfo*, ssize_t); -typedef Unit* (*BuildNativeClassUnitFn)(const HhbcExtClassInfo*, ssize_t); +typedef VM::Unit* (*CompileStringFn)(const char*, int, const MD5&, const char*); +typedef VM::Unit* (*BuildNativeFuncUnitFn)(const HhbcExtFuncInfo*, ssize_t); +typedef VM::Unit* (*BuildNativeClassUnitFn)(const HhbcExtClassInfo*, ssize_t); extern CompileStringFn g_hphp_compiler_parse; extern BuildNativeFuncUnitFn g_hphp_build_native_func_unit; @@ -289,11 +289,8 @@ bool checkTv(const TypedValue* tv); // always_assert tv is a plausible TypedValue* void assertTv(const TypedValue* tv); -void deepInitHelper(TypedValue* propVec, const TypedValueAux* propData, - size_t nProps); - // returns the number of things it put on sp int init_closure(ActRec* ar, TypedValue* sp); -} } +} #endif diff --git a/hphp/runtime/vm/translator/hopt/codegen.cpp b/hphp/runtime/vm/translator/hopt/codegen.cpp index 38bcd5250..30709d3f2 100644 --- a/hphp/runtime/vm/translator/hopt/codegen.cpp +++ b/hphp/runtime/vm/translator/hopt/codegen.cpp @@ -32,7 +32,7 @@ #include "runtime/ext/ext_continuation.h" #include "runtime/vm/bytecode.h" #include "runtime/vm/runtime.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/translator/targetcache.h" #include "runtime/vm/translator/translator-inline.h" #include "runtime/vm/translator/translator-x64.h" @@ -4555,21 +4555,12 @@ void CodeGenerator::cgDefCns(IRInstruction* inst) { UNUSED SSATmp* cnsName = inst->getSrc(0); UNUSED SSATmp* val = inst->getSrc(1); using namespace TargetCache; -#if 0 - UNUSED CacheHandle ch = allocConstant((StringData*)cnsName->getValStr()); - // ALIA:TODO - // XXX second param is an inout pointer to a Ref, so we need to pass - // the pointer to a stack slot - EMIT_CALL3(a, defCnsHelper, IMM(ch), A(i.inputs[0]->location), - IMM((uint64_t)name)); -#endif - CG_PUNT(DefCns); } // TODO: Kill this #2031980 static StringData* concat_value(TypedValue tv1, TypedValue tv2) { - return concat(tv1.m_type, tv1.m_data.num, tv2.m_type, tv2.m_data.num); + return concat_tv(tv1.m_type, tv1.m_data.num, tv2.m_type, tv2.m_data.num); } void CodeGenerator::cgConcat(IRInstruction* inst) { diff --git a/hphp/runtime/vm/translator/hopt/hhbctranslator.cpp b/hphp/runtime/vm/translator/hopt/hhbctranslator.cpp index cd6332c4f..f2048a373 100644 --- a/hphp/runtime/vm/translator/hopt/hhbctranslator.cpp +++ b/hphp/runtime/vm/translator/hopt/hhbctranslator.cpp @@ -20,7 +20,7 @@ #include "runtime/ext/ext_continuation.h" #include "runtime/vm/translator/translator-runtime.h" #include "runtime/vm/translator/translator-x64.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/unit.h" #include "runtime/vm/runtime.h" #include "runtime/vm/translator/hopt/irfactory.h" diff --git a/hphp/runtime/vm/translator/hopt/ir.cpp b/hphp/runtime/vm/translator/hopt/ir.cpp index a75eae438..c335c55b2 100644 --- a/hphp/runtime/vm/translator/hopt/ir.cpp +++ b/hphp/runtime/vm/translator/hopt/ir.cpp @@ -31,7 +31,7 @@ #include "util/text_color.h" #include "runtime/base/string_data.h" #include "runtime/vm/runtime.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/translator/hopt/irfactory.h" #include "runtime/vm/translator/hopt/linearscan.h" #include "runtime/vm/translator/hopt/cse.h" diff --git a/hphp/runtime/vm/translator/hopt/irtranslator.cpp b/hphp/runtime/vm/translator/hopt/irtranslator.cpp index 6db871fd8..ba3922d09 100644 --- a/hphp/runtime/vm/translator/hopt/irtranslator.cpp +++ b/hphp/runtime/vm/translator/hopt/irtranslator.cpp @@ -29,7 +29,7 @@ #include "runtime/vm/translator/translator-deps.h" #include "runtime/vm/translator/translator-inline.h" #include "runtime/vm/translator/translator-x64.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/translator/hopt/ir.h" #include "runtime/vm/translator/hopt/opt.h" diff --git a/hphp/runtime/vm/translator/hopt/nativecalls.cpp b/hphp/runtime/vm/translator/hopt/nativecalls.cpp index 2f8580299..14805eecf 100644 --- a/hphp/runtime/vm/translator/hopt/nativecalls.cpp +++ b/hphp/runtime/vm/translator/hopt/nativecalls.cpp @@ -17,7 +17,7 @@ #include "runtime/vm/translator/hopt/nativecalls.h" #include "runtime/vm/runtime.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/translator/targetcache.h" #include "runtime/vm/translator/translator-runtime.h" #include "runtime/vm/translator/hopt/ir.h" diff --git a/hphp/runtime/vm/translator/hopt/tracebuilder.cpp b/hphp/runtime/vm/translator/hopt/tracebuilder.cpp index cccaa661a..9141a713e 100644 --- a/hphp/runtime/vm/translator/hopt/tracebuilder.cpp +++ b/hphp/runtime/vm/translator/hopt/tracebuilder.cpp @@ -76,7 +76,7 @@ SSATmp* TraceBuilder::genConcat(SSATmp* tl, SSATmp* tr) { return gen(Concat, tl, tr); } -void TraceBuilder::genDefCls(PreClass* clss, const HPHP::VM::Opcode* after) { +void TraceBuilder::genDefCls(PreClass* clss, const Opcode* after) { PUNT(DefCls); } diff --git a/hphp/runtime/vm/translator/hopt/tracebuilder.h b/hphp/runtime/vm/translator/hopt/tracebuilder.h index 040b93656..2094aed25 100644 --- a/hphp/runtime/vm/translator/hopt/tracebuilder.h +++ b/hphp/runtime/vm/translator/hopt/tracebuilder.h @@ -83,7 +83,7 @@ public: SSATmp* genDefCns(const StringData* cnsName, SSATmp* val); SSATmp* genConcat(SSATmp* tl, SSATmp* tr); - void genDefCls(PreClass*, const HPHP::VM::Opcode* after); + void genDefCls(PreClass*, const Opcode* after); void genDefFunc(Func*); SSATmp* genLdThis(Trace* trace); diff --git a/hphp/runtime/vm/translator/hopt/vectortranslator-internal.h b/hphp/runtime/vm/translator/hopt/vectortranslator-internal.h index c4ff3cbf4..f72bd795f 100644 --- a/hphp/runtime/vm/translator/hopt/vectortranslator-internal.h +++ b/hphp/runtime/vm/translator/hopt/vectortranslator-internal.h @@ -19,7 +19,7 @@ #include "util/base.h" #include "runtime/base/types.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/translator/translator.h" #include "runtime/vm/member_operations.h" diff --git a/hphp/runtime/vm/translator/targetcache.cpp b/hphp/runtime/vm/translator/targetcache.cpp index 520b5fdbd..cb463d436 100644 --- a/hphp/runtime/vm/translator/targetcache.cpp +++ b/hphp/runtime/vm/translator/targetcache.cpp @@ -30,7 +30,7 @@ #include #include #include -#include +#include using namespace HPHP::MethodLookup; using namespace HPHP::Util; diff --git a/hphp/runtime/vm/translator/translator-inline.h b/hphp/runtime/vm/translator/translator-inline.h index 153f69a1d..12eae10a4 100644 --- a/hphp/runtime/vm/translator/translator-inline.h +++ b/hphp/runtime/vm/translator/translator-inline.h @@ -29,8 +29,6 @@ * translation-related helpers cannot live in translator.h. */ namespace HPHP { -namespace VM { -namespace Transl { /* * Accessors for the virtual machine registers, both rvalues and @@ -45,17 +43,20 @@ static inline const uchar*& vmpc() { return g_vmContext->m_pc; } static inline ActRec*& vmFirstAR() { return g_vmContext->m_firstAR; } static inline ActRec* curFrame() { return (ActRec*)vmfp(); } -static inline const Func* curFunc() { return curFrame()->m_func; } -static inline const Unit* curUnit() { return curFunc()->unit(); } -static inline Class* curClass() { - const Func* func = curFunc(); - Class* clss = func->cls(); - if (func->isPseudoMain() || func->isTraitMethod() || clss == nullptr) { +static inline const VM::Func* curFunc() { return curFrame()->m_func; } +static inline const VM::Unit* curUnit() { return curFunc()->unit(); } +static inline VM::Class* curClass() { + const auto* func = curFunc(); + auto* cls = func->cls(); + if (func->isPseudoMain() || func->isTraitMethod() || cls == nullptr) { return nullptr; } - return clss; + return cls; } +namespace VM { +namespace Transl { + static inline uintptr_t tlsBase() { uintptr_t retval; #if defined(__x86_64__) diff --git a/hphp/runtime/vm/translator/translator-x64-helpers.cpp b/hphp/runtime/vm/translator/translator-x64-helpers.cpp index a4c4deb63..fe3ce4bc6 100644 --- a/hphp/runtime/vm/translator/translator-x64-helpers.cpp +++ b/hphp/runtime/vm/translator/translator-x64-helpers.cpp @@ -19,7 +19,7 @@ #include #include #include -#include +#include namespace HPHP { namespace VM { diff --git a/hphp/runtime/vm/translator/translator-x64-vector.cpp b/hphp/runtime/vm/translator/translator-x64-vector.cpp index fde01411f..c0be78f51 100644 --- a/hphp/runtime/vm/translator/translator-x64-vector.cpp +++ b/hphp/runtime/vm/translator/translator-x64-vector.cpp @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include #include diff --git a/hphp/runtime/vm/translator/translator-x64.cpp b/hphp/runtime/vm/translator/translator-x64.cpp index daa052203..03e782e17 100644 --- a/hphp/runtime/vm/translator/translator-x64.cpp +++ b/hphp/runtime/vm/translator/translator-x64.cpp @@ -80,7 +80,7 @@ typedef __sighandler_t *sighandler_t; #include "runtime/vm/translator/srcdb.h" #include "runtime/vm/translator/x64-util.h" #include "runtime/vm/translator/unwind-x64.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/pendq.h" #include "runtime/vm/treadmill.h" #include "runtime/vm/repo.h" @@ -5765,12 +5765,12 @@ TranslatorX64::translateConcat(const Tracelet& t, if (false) { // type check uint64_t v1 = 0, v2 = 0; DataType t1 = KindOfUninit, t2 = KindOfUninit; - StringData *retval = concat(t1, v1, t2, v2); + StringData *retval = concat_tv(t1, v1, t2, v2); printf("%p", retval); // use retval } // concat will decRef the two inputs and incRef the output // for us if appropriate - EMIT_RCALL(a, i, concat, + EMIT_RCALL(a, i, concat_tv, IMM(l.valueType()), V(l.location), IMM(r.valueType()), V(r.location)); assert(i.outStack->isString()); diff --git a/hphp/runtime/vm/translator/unwind-x64.cpp b/hphp/runtime/vm/translator/unwind-x64.cpp index 3f90e4e52..01e1d2616 100644 --- a/hphp/runtime/vm/translator/unwind-x64.cpp +++ b/hphp/runtime/vm/translator/unwind-x64.cpp @@ -24,7 +24,7 @@ #include "runtime/vm/translator/translator-x64.h" #include "runtime/vm/translator/runtime-type.h" #include "runtime/vm/translator/abi-x64.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/runtime.h" // libgcc exports this for registering eh information for diff --git a/hphp/runtime/vm/type_profile.cpp b/hphp/runtime/vm/type_profile.cpp index 5dc4ac6ae..f8b165415 100644 --- a/hphp/runtime/vm/type_profile.cpp +++ b/hphp/runtime/vm/type_profile.cpp @@ -23,7 +23,7 @@ #include "util/trace.h" #include "runtime/base/types.h" #include "runtime/base/runtime_option.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/translator/translator.h" #include "runtime/vm/type_profile.h" diff --git a/hphp/runtime/vm/unit.cpp b/hphp/runtime/vm/unit.cpp index 225726370..472dea957 100644 --- a/hphp/runtime/vm/unit.cpp +++ b/hphp/runtime/vm/unit.cpp @@ -40,7 +40,7 @@ #include "runtime/base/strings.h" #include "runtime/vm/func_inline.h" #include "runtime/eval/runtime/file_repository.h" -#include "runtime/vm/stats.h" +#include "runtime/base/stats.h" #include "runtime/vm/treadmill.h" namespace HPHP { diff --git a/hphp/runtime/vm/unit.h b/hphp/runtime/vm/unit.h index 04cec6b1a..ad686b527 100644 --- a/hphp/runtime/vm/unit.h +++ b/hphp/runtime/vm/unit.h @@ -30,16 +30,16 @@ #include "util/tiny_vector.h" namespace HPHP { +// Forward declarations. namespace Compiler { class Peephole; } +struct ActRec; namespace VM { -// Forward declarations. class Func; class FuncEmitter; class Repo; class FuncDict; class Unit; -struct ActRec; enum UnitOrigin { UnitOriginFile = 0, @@ -714,7 +714,7 @@ class UnitEmitter { friend class UnitRepoProxy; friend class ::HPHP::Compiler::Peephole; public: - UnitEmitter(const MD5& md5); + explicit UnitEmitter(const MD5& md5); ~UnitEmitter(); int repoId() const { return m_repoId; } @@ -885,7 +885,7 @@ class UnitRepoProxy : public RepoProxy { friend class Unit; friend class UnitEmitter; public: - UnitRepoProxy(Repo& repo); + explicit UnitRepoProxy(Repo& repo); ~UnitRepoProxy(); void createSchema(int repoId, RepoTxn& txn); Unit* load(const std::string& name, const MD5& md5); diff --git a/hphp/test/main.cpp b/hphp/test/main.cpp index e49c45733..eb91be369 100644 --- a/hphp/test/main.cpp +++ b/hphp/test/main.cpp @@ -66,7 +66,7 @@ int main(int argc, char **argv) { } // Initialize compiler state - VM::compile_file(0, 0, MD5(), 0); + compile_file(0, 0, MD5(), 0); hphp_process_init(); Test test; return test.RunTests(suite, which, set) ? 0 : -1;