| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #pragma once
- struct CodeGenWorkItem;
- class Lowerer;
- class Inline;
- class FlowGraph;
- #if defined(_M_ARM32_OR_ARM64)
- #include "UnwindInfoManager.h"
- #endif
- struct Int64RegPair
- {
- IR::Opnd* high = nullptr;
- IR::Opnd* low = nullptr;
- };
- struct Cloner
- {
- Cloner(Lowerer *lowerer, JitArenaAllocator *alloc) :
- alloc(alloc),
- symMap(nullptr),
- labelMap(nullptr),
- lowerer(lowerer),
- instrFirst(nullptr),
- instrLast(nullptr),
- fRetargetClonedBranch(FALSE),
- clonedInstrGetOrigArgSlotSym(false)
- {
- }
- ~Cloner()
- {
- if (symMap)
- {
- Adelete(alloc, symMap);
- }
- if (labelMap)
- {
- Adelete(alloc, labelMap);
- }
- }
- void AddInstr(IR::Instr * instrOrig, IR::Instr * instrClone);
- void Finish();
- void RetargetClonedBranches();
- JitArenaAllocator *alloc;
- HashTable<StackSym*> *symMap;
- HashTable<IR::LabelInstr*> *labelMap;
- Lowerer * lowerer;
- IR::Instr * instrFirst;
- IR::Instr * instrLast;
- BOOL fRetargetClonedBranch;
- bool clonedInstrGetOrigArgSlotSym;
- };
- /*
- * This class keeps track of various information required for Stack Arguments optimization with formals.
- */
- class StackArgWithFormalsTracker
- {
- private:
- BVSparse<JitArenaAllocator> * formalsArraySyms; //Tracks Formal parameter Array - Is this Bv required explicitly?
- StackSym** formalsIndexToStackSymMap; //Tracks the stack sym for each formal
- StackSym* m_scopeObjSym; // Tracks the stack sym for the scope object that is created.
- JitArenaAllocator* alloc;
- public:
- StackArgWithFormalsTracker(JitArenaAllocator *alloc):
- formalsArraySyms(nullptr),
- formalsIndexToStackSymMap(nullptr),
- m_scopeObjSym(nullptr),
- alloc(alloc)
- {
- }
- BVSparse<JitArenaAllocator> * GetFormalsArraySyms();
- void SetFormalsArraySyms(SymID symId);
- StackSym ** GetFormalsIndexToStackSymMap();
- void SetStackSymInFormalsIndexMap(StackSym * sym, Js::ArgSlot formalsIndex, Js::ArgSlot formalsCount);
- void SetScopeObjSym(StackSym * sym);
- StackSym * GetScopeObjSym();
- };
- typedef JsUtil::Pair<uint32, IR::LabelInstr*> YieldOffsetResumeLabel;
- typedef JsUtil::List<YieldOffsetResumeLabel, JitArenaAllocator> YieldOffsetResumeLabelList;
- typedef HashTable<uint32, JitArenaAllocator> SlotArrayCheckTable;
- struct FrameDisplayCheckRecord
- {
- SlotArrayCheckTable *table;
- uint32 slotId;
- FrameDisplayCheckRecord() : table(nullptr), slotId((uint32)-1) {}
- };
- typedef HashTable<FrameDisplayCheckRecord*, JitArenaAllocator> FrameDisplayCheckTable;
- class Func
- {
- public:
- Func(JitArenaAllocator *alloc, JITTimeWorkItem * workItem,
- ThreadContextInfo * threadContextInfo,
- ScriptContextInfo * scriptContextInfo,
- JITOutputIDL * outputData,
- Js::EntryPointInfo* epInfo,
- const FunctionJITRuntimeInfo *const runtimeInfo,
- JITTimePolymorphicInlineCacheInfo * const polymorphicInlineCacheInfo, void * const codeGenAllocators,
- #if !FLOATVAR
- CodeGenNumberAllocator * numberAllocator,
- #endif
- Js::ScriptContextProfiler *const codeGenProfiler, const bool isBackgroundJIT, Func * parentFunc = nullptr,
- uint postCallByteCodeOffset = Js::Constants::NoByteCodeOffset,
- Js::RegSlot returnValueRegSlot = Js::Constants::NoRegister, const bool isInlinedConstructor = false,
- Js::ProfileId callSiteIdInParentFunc = UINT16_MAX, bool isGetterSetter = false);
- public:
- void * const GetCodeGenAllocators()
- {
- return this->GetTopFunc()->m_codeGenAllocators;
- }
- InProcCodeGenAllocators * const GetInProcCodeGenAllocators()
- {
- Assert(!JITManager::GetJITManager()->IsJITServer());
- return reinterpret_cast<InProcCodeGenAllocators*>(this->GetTopFunc()->m_codeGenAllocators);
- }
- #if ENABLE_OOP_NATIVE_CODEGEN
- OOPCodeGenAllocators * const GetOOPCodeGenAllocators()
- {
- Assert(JITManager::GetJITManager()->IsJITServer());
- return reinterpret_cast<OOPCodeGenAllocators*>(this->GetTopFunc()->m_codeGenAllocators);
- }
- #endif
- NativeCodeData::Allocator *GetNativeCodeDataAllocator()
- {
- return &this->GetTopFunc()->nativeCodeDataAllocator;
- }
- NativeCodeData::Allocator *GetTransferDataAllocator()
- {
- return &this->GetTopFunc()->transferDataAllocator;
- }
- #if !FLOATVAR
- CodeGenNumberAllocator * GetNumberAllocator()
- {
- return this->numberAllocator;
- }
- #endif
- #if !FLOATVAR
- XProcNumberPageSegmentImpl* GetXProcNumberAllocator()
- {
- if (this->GetJITOutput()->GetOutputData()->numberPageSegments == nullptr)
- {
- XProcNumberPageSegmentImpl* seg = (XProcNumberPageSegmentImpl*)midl_user_allocate(sizeof(XProcNumberPageSegment));
- if (seg == nullptr)
- {
- Js::Throw::OutOfMemory();
- }
- this->GetJITOutput()->GetOutputData()->numberPageSegments = new (seg) XProcNumberPageSegmentImpl();
- }
- return (XProcNumberPageSegmentImpl*)this->GetJITOutput()->GetOutputData()->numberPageSegments;
- }
- #endif
- Js::ScriptContextProfiler *GetCodeGenProfiler() const
- {
- #ifdef PROFILE_EXEC
- return m_codeGenProfiler;
- #else
- return nullptr;
- #endif
- }
- bool IsOOPJIT() const { return JITManager::GetJITManager()->IsOOPJITEnabled(); }
- void InitLocalClosureSyms();
- bool HasAnyStackNestedFunc() const { return this->hasAnyStackNestedFunc; }
- bool DoStackNestedFunc() const { return this->stackNestedFunc; }
- bool DoStackFrameDisplay() const { return this->stackClosure; }
- bool DoStackScopeSlots() const { return this->stackClosure; }
- bool IsBackgroundJIT() const { return this->m_isBackgroundJIT; }
- bool HasArgumentSlot() const { return this->GetInParamsCount() != 0 && !this->IsLoopBody(); }
- bool IsLoopBody() const { return m_workItem->IsLoopBody(); }
- bool IsLoopBodyInTry() const;
- bool IsLoopBodyInTryFinally() const;
- bool CanAllocInPreReservedHeapPageSegment();
- void SetDoFastPaths();
- bool DoFastPaths() const { Assert(this->hasCalledSetDoFastPaths); return this->m_doFastPaths; }
- bool DoLoopFastPaths() const
- {
- return
- (!IsSimpleJit() || CONFIG_FLAG(NewSimpleJit)) &&
- !PHASE_OFF(Js::FastPathPhase, this) &&
- !PHASE_OFF(Js::LoopFastPathPhase, this);
- }
- bool DoGlobOpt() const
- {
- return
- !PHASE_OFF(Js::GlobOptPhase, this) && !IsSimpleJit() &&
- (!GetTopFunc()->HasTry() || GetTopFunc()->CanOptimizeTryCatch()) &&
- (!GetTopFunc()->HasFinally() || GetTopFunc()->CanOptimizeTryFinally());
- }
- bool DoInline() const
- {
- #ifdef _M_IX86
- return DoGlobOpt() && !GetTopFunc()->HasTry();
- #else
- return DoGlobOpt();
- #endif
- }
- bool DoOptimizeTry() const
- {
- Assert(IsTopFunc());
- return DoGlobOpt();
- }
- bool CanOptimizeTryFinally() const
- {
- return !this->m_workItem->IsLoopBody() && !PHASE_OFF(Js::OptimizeTryFinallyPhase, this) &&
- (!this->HasProfileInfo() || !this->GetReadOnlyProfileInfo()->IsOptimizeTryFinallyDisabled());
- }
- bool CanOptimizeTryCatch() const
- {
- return !this->m_workItem->IsLoopBody() && !PHASE_OFF(Js::OptimizeTryCatchPhase, this);
- }
- bool DoSimpleJitDynamicProfile() const;
- bool IsSimpleJit() const { return m_workItem->GetJitMode() == ExecutionMode::SimpleJit; }
- JITTimeWorkItem * GetWorkItem() const
- {
- return m_workItem;
- }
- ThreadContext * GetInProcThreadContext() const
- {
- Assert(!IsOOPJIT());
- return (ThreadContext*)m_threadContextInfo;
- }
- ServerThreadContext* GetOOPThreadContext() const
- {
- Assert(IsOOPJIT());
- return (ServerThreadContext*)m_threadContextInfo;
- }
- ThreadContextInfo * GetThreadContextInfo() const
- {
- return m_threadContextInfo;
- }
- ScriptContextInfo * GetScriptContextInfo() const
- {
- return m_scriptContextInfo;
- }
- JITOutput* GetJITOutput()
- {
- return &m_output;
- }
- const JITOutput* GetJITOutput() const
- {
- return &m_output;
- }
- const JITTimeFunctionBody * const GetJITFunctionBody() const
- {
- return m_workItem->GetJITFunctionBody();
- }
- Js::EntryPointInfo* GetInProcJITEntryPointInfo() const
- {
- Assert(!IsOOPJIT());
- return m_entryPointInfo;
- }
- char16* GetDebugNumberSet(wchar(&bufferToWriteTo)[MAX_FUNCTION_BODY_DEBUG_STRING_SIZE]) const
- {
- return m_workItem->GetJITTimeInfo()->GetDebugNumberSet(bufferToWriteTo);
- }
- void TryCodegen();
- static void Codegen(JitArenaAllocator *alloc, JITTimeWorkItem * workItem,
- ThreadContextInfo * threadContextInfo,
- ScriptContextInfo * scriptContextInfo,
- JITOutputIDL * outputData,
- Js::EntryPointInfo* epInfo, // for in-proc jit only
- const FunctionJITRuntimeInfo *const runtimeInfo,
- JITTimePolymorphicInlineCacheInfo * const polymorphicInlineCacheInfo, void * const codeGenAllocators,
- #if !FLOATVAR
- CodeGenNumberAllocator * numberAllocator,
- #endif
- Js::ScriptContextProfiler *const codeGenProfiler, const bool isBackgroundJIT);
- int32 StackAllocate(int size);
- int32 StackAllocate(StackSym *stackSym, int size);
- void SetArgOffset(StackSym *stackSym, int32 offset);
- int32 GetLocalVarSlotOffset(int32 slotId);
- int32 GetHasLocalVarChangedOffset();
- bool IsJitInDebugMode() const;
- bool IsNonTempLocalVar(uint32 slotIndex);
- void OnAddSym(Sym* sym);
- uint GetLocalFunctionId() const
- {
- return m_workItem->GetJITTimeInfo()->GetLocalFunctionId();
- }
- uint GetSourceContextId() const
- {
- return m_workItem->GetJITFunctionBody()->GetSourceContextId();
- }
- #ifdef MD_GROW_LOCALS_AREA_UP
- void AjustLocalVarSlotOffset();
- #endif
- bool DoGlobOptsForGeneratorFunc() const;
- static int32 AdjustOffsetValue(int32 offset);
- static inline uint32 GetDiagLocalSlotSize()
- {
- // For the debug purpose we will have fixed stack slot size
- // We will allocated the 8 bytes for each variable.
- return MachDouble;
- }
- #ifdef DBG
- // The pattern used to pre-fill locals for CHK builds.
- // When we restore bailout values we check for this pattern, this is how we assert for non-initialized variables/garbage.
- static const uint32 c_debugFillPattern4 = 0xcececece;
- static const unsigned __int64 c_debugFillPattern8 = 0xcececececececece;
- #if defined(TARGET_32)
- static const uint32 c_debugFillPattern = c_debugFillPattern4;
- #elif defined(TARGET_64)
- static const unsigned __int64 c_debugFillPattern = c_debugFillPattern8;
- #else
- #error unsupported platform
- #endif
- #endif
- uint32 GetInstrCount();
- inline Js::ScriptContext* GetScriptContext() const
- {
- Assert(!IsOOPJIT());
- return static_cast<Js::ScriptContext*>(this->GetScriptContextInfo());
- }
- void NumberInstrs();
- bool IsTopFunc() const { return this->parentFunc == nullptr; }
- Func const * GetTopFunc() const { return this->topFunc; }
- Func * GetTopFunc() { return this->topFunc; }
- void SetFirstArgOffset(IR::Instr* inlineeStart);
- uint GetFunctionNumber() const
- {
- return m_workItem->GetJITFunctionBody()->GetFunctionNumber();
- }
- BOOL HasTry() const
- {
- Assert(this->IsTopFunc());
- return this->GetJITFunctionBody()->HasTry();
- }
- bool HasFinally() const
- {
- Assert(this->IsTopFunc());
- return this->GetJITFunctionBody()->HasFinally();
- }
- bool HasThis() const
- {
- Assert(this->IsTopFunc());
- Assert(this->GetJITFunctionBody()); // For now we always have a function body
- return this->GetJITFunctionBody()->HasThis();
- }
- Js::ArgSlot GetInParamsCount() const
- {
- Assert(this->IsTopFunc());
- return this->GetJITFunctionBody()->GetInParamsCount();
- }
- bool IsGlobalFunc() const
- {
- Assert(this->IsTopFunc());
- return this->GetJITFunctionBody()->IsGlobalFunc();
- }
- uint16 GetArgUsedForBranch() const;
- intptr_t GetWeakFuncRef() const;
- const FunctionJITRuntimeInfo * GetRuntimeInfo() const { return m_runtimeInfo; }
- bool IsLambda() const
- {
- Assert(this->IsTopFunc());
- Assert(this->GetJITFunctionBody()); // For now we always have a function body
- return this->GetJITFunctionBody()->IsLambda();
- }
- bool IsTrueLeaf() const
- {
- return !GetHasCalls() && !GetHasImplicitCalls();
- }
- StackSym *EnsureLoopParamSym();
- void UpdateForInLoopMaxDepth(uint forInLoopMaxDepth);
- int GetForInEnumeratorArrayOffset() const;
- StackSym *GetFuncObjSym() const { return m_funcObjSym; }
- void SetFuncObjSym(StackSym *sym) { m_funcObjSym = sym; }
- StackSym *GetJavascriptLibrarySym() const { return m_javascriptLibrarySym; }
- void SetJavascriptLibrarySym(StackSym *sym) { m_javascriptLibrarySym = sym; }
- StackSym *GetScriptContextSym() const { return m_scriptContextSym; }
- void SetScriptContextSym(StackSym *sym) { m_scriptContextSym = sym; }
- StackSym *GetFunctionBodySym() const { return m_functionBodySym; }
- void SetFunctionBodySym(StackSym *sym) { m_functionBodySym = sym; }
- StackSym *GetLocalClosureSym() const { return m_localClosureSym; }
- void SetLocalClosureSym(StackSym *sym) { m_localClosureSym = sym; }
- StackSym *GetParamClosureSym() const { return m_paramClosureSym; }
- void SetParamClosureSym(StackSym *sym) { m_paramClosureSym = sym; }
- StackSym *GetLocalFrameDisplaySym() const { return m_localFrameDisplaySym; }
- void SetLocalFrameDisplaySym(StackSym *sym) { m_localFrameDisplaySym = sym; }
- intptr_t GetJittedLoopIterationsSinceLastBailoutAddress() const;
- void EnsurePinnedTypeRefs();
- void PinTypeRef(void* typeRef);
- void EnsureSingleTypeGuards();
- Js::JitTypePropertyGuard* GetOrCreateSingleTypeGuard(intptr_t typeAddr);
- void EnsureEquivalentTypeGuards();
- void InitializeEquivalentTypeGuard(Js::JitEquivalentTypeGuard * guard);
- Js::JitEquivalentTypeGuard * CreateEquivalentTypeGuard(JITTypeHolder type, uint32 objTypeSpecFldId);
- Js::JitPolyEquivalentTypeGuard * CreatePolyEquivalentTypeGuard(uint32 objTypeSpecFldId);
- void ThrowIfScriptClosed();
- void EnsurePropertyGuardsByPropertyId();
- void EnsureCtorCachesByPropertyId();
- void LinkGuardToPropertyId(Js::PropertyId propertyId, Js::JitIndexedPropertyGuard* guard);
- void LinkCtorCacheToPropertyId(Js::PropertyId propertyId, JITTimeConstructorCache* cache);
- JITTimeConstructorCache * GetConstructorCache(const Js::ProfileId profiledCallSiteId);
- void SetConstructorCache(const Js::ProfileId profiledCallSiteId, JITTimeConstructorCache* constructorCache);
- void EnsurePropertiesWrittenTo();
- void EnsureCallSiteToArgumentsOffsetFixupMap();
- IR::LabelInstr * EnsureFuncStartLabel();
- IR::LabelInstr * GetFuncStartLabel();
- IR::LabelInstr * EnsureFuncEndLabel();
- IR::LabelInstr * GetFuncEndLabel();
- #ifdef _M_X64
- void SetSpillSize(int32 spillSize)
- {
- m_spillSize = spillSize;
- }
- int32 GetSpillSize()
- {
- return m_spillSize;
- }
- void SetArgsSize(int32 argsSize)
- {
- m_argsSize = argsSize;
- }
- int32 GetArgsSize()
- {
- return m_argsSize;
- }
- void SetSavedRegSize(int32 savedRegSize)
- {
- m_savedRegSize = savedRegSize;
- }
- int32 GetSavedRegSize()
- {
- return m_savedRegSize;
- }
- #endif
- bool IsInlinee() const
- {
- Assert(m_inlineeFrameStartSym ? (m_inlineeFrameStartSym->m_offset != -1) : true);
- return m_inlineeFrameStartSym != nullptr;
- }
- void SetInlineeFrameStartSym(StackSym *sym)
- {
- Assert(m_inlineeFrameStartSym == nullptr);
- m_inlineeFrameStartSym = sym;
- }
- void SetInlineeStart(IR::Instr *inlineeStartInstr)
- {
- Assert(inlineeStart == nullptr);
- inlineeStart = inlineeStartInstr;
- }
- IR::Instr* GetInlineeStart()
- {
- return inlineeStart;
- }
- IR::SymOpnd *GetInlineeArgCountSlotOpnd()
- {
- return GetInlineeOpndAtOffset(Js::Constants::InlineeMetaArgIndex_Argc * MachPtr);
- }
- IR::SymOpnd *GetNextInlineeFrameArgCountSlotOpnd()
- {
- Assert(!this->m_hasInlineArgsOpt);
- if (this->m_hasInlineArgsOpt)
- {
- // If the function has inlineArgsOpt turned on, jitted code will not write to stack slots for inlinee's function object
- // and arguments, until needed. If we attempt to read from those slots, we may be reading uninitialized memory.
- throw Js::OperationAbortedException();
- }
- return GetInlineeOpndAtOffset((Js::Constants::InlineeMetaArgCount + actualCount) * MachPtr);
- }
- IR::SymOpnd *GetInlineeFunctionObjectSlotOpnd()
- {
- Assert(!this->m_hasInlineArgsOpt);
- if (this->m_hasInlineArgsOpt)
- {
- // If the function has inlineArgsOpt turned on, jitted code will not write to stack slots for inlinee's function object
- // and arguments, until needed. If we attempt to read from those slots, we may be reading uninitialized memory.
- throw Js::OperationAbortedException();
- }
- return GetInlineeOpndAtOffset(Js::Constants::InlineeMetaArgIndex_FunctionObject * MachPtr);
- }
- IR::SymOpnd *GetInlineeArgumentsObjectSlotOpnd()
- {
- return GetInlineeOpndAtOffset(Js::Constants::InlineeMetaArgIndex_ArgumentsObject * MachPtr);
- }
- IR::SymOpnd *GetInlineeArgvSlotOpnd()
- {
- Assert(!this->m_hasInlineArgsOpt);
- if (this->m_hasInlineArgsOpt)
- {
- // If the function has inlineArgsOpt turned on, jitted code will not write to stack slots for inlinee's function object
- // and arguments, until needed. If we attempt to read from those slots, we may be reading uninitialized memory.
- throw Js::OperationAbortedException();
- }
- return GetInlineeOpndAtOffset(Js::Constants::InlineeMetaArgIndex_Argv * MachPtr);
- }
- bool IsInlined() const
- {
- return this->parentFunc != nullptr;
- }
- bool IsInlinedConstructor() const
- {
- return this->isInlinedConstructor;
- }
- bool IsTJLoopBody()const {
- return this->isTJLoopBody;
- }
- Js::Var AllocateNumber(double value);
- ObjTypeSpecFldInfo* GetObjTypeSpecFldInfo(const uint index) const;
- ObjTypeSpecFldInfo* GetGlobalObjTypeSpecFldInfo(uint propertyInfoId) const;
- // Gets an inline cache pointer to use in jitted code. Cached data may not be stable while jitting. Does not return null.
- intptr_t GetRuntimeInlineCache(const uint index) const;
- JITTimePolymorphicInlineCache * GetRuntimePolymorphicInlineCache(const uint index) const;
- byte GetPolyCacheUtil(const uint index) const;
- byte GetPolyCacheUtilToInitialize(const uint index) const;
- #if LOWER_SPLIT_INT64
- Int64RegPair FindOrCreateInt64Pair(IR::Opnd*);
- void Int64SplitExtendLoopLifetime(Loop* loop);
- #endif
- #if defined(_M_ARM32_OR_ARM64)
- RegNum GetLocalsPointer() const;
- #endif
- #if DBG_DUMP
- void Dump(IRDumpFlags flags);
- void Dump();
- void DumpHeader();
- #endif
- #if DBG_DUMP || defined(ENABLE_IR_VIEWER)
- LPCSTR GetVtableName(INT_PTR address);
- #endif
- #if DBG_DUMP | defined(VTUNE_PROFILING)
- bool DoRecordNativeMap() const;
- #endif
- #ifdef ENABLE_DEBUG_CONFIG_OPTIONS
- void DumpFullFunctionName();
- #endif
- public:
- JitArenaAllocator * m_alloc;
- const FunctionJITRuntimeInfo *const m_runtimeInfo;
- ThreadContextInfo * m_threadContextInfo;
- ScriptContextInfo * m_scriptContextInfo;
- JITTimeWorkItem * m_workItem;
- JITTimePolymorphicInlineCacheInfo *const m_polymorphicInlineCacheInfo;
- // This indicates how many constructor caches we inserted into the constructorCaches array, not the total size of the array.
- uint constructorCacheCount;
- // This array maps callsite ids to constructor caches. The size corresponds to the number of callsites in the function.
- JITTimeConstructorCache** constructorCaches;
- typedef JsUtil::BaseHashSet<void*, JitArenaAllocator, PowerOf2SizePolicy> TypeRefSet;
- TypeRefSet* pinnedTypeRefs;
- typedef JsUtil::BaseDictionary<intptr_t, Js::JitTypePropertyGuard*, JitArenaAllocator, PowerOf2SizePolicy> TypePropertyGuardDictionary;
- TypePropertyGuardDictionary* singleTypeGuards;
- typedef SListCounted<Js::JitEquivalentTypeGuard*> EquivalentTypeGuardList;
- EquivalentTypeGuardList* equivalentTypeGuards;
- typedef JsUtil::BaseHashSet<Js::JitIndexedPropertyGuard*, JitArenaAllocator, PowerOf2SizePolicy> IndexedPropertyGuardSet;
- typedef JsUtil::BaseDictionary<Js::PropertyId, IndexedPropertyGuardSet*, JitArenaAllocator, PowerOf2SizePolicy> PropertyGuardByPropertyIdMap;
- PropertyGuardByPropertyIdMap* propertyGuardsByPropertyId;
- typedef JsUtil::BaseHashSet<intptr_t, JitArenaAllocator, PowerOf2SizePolicy> CtorCacheSet;
- typedef JsUtil::BaseDictionary<Js::PropertyId, CtorCacheSet*, JitArenaAllocator, PowerOf2SizePolicy> CtorCachesByPropertyIdMap;
- CtorCachesByPropertyIdMap* ctorCachesByPropertyId;
- typedef JsUtil::BaseDictionary<Js::ProfileId, int32, JitArenaAllocator, PrimeSizePolicy> CallSiteToArgumentsOffsetFixupMap;
- CallSiteToArgumentsOffsetFixupMap* callSiteToArgumentsOffsetFixupMap;
- int indexedPropertyGuardCount;
- typedef JsUtil::BaseHashSet<Js::PropertyId, JitArenaAllocator> PropertyIdSet;
- PropertyIdSet* propertiesWrittenTo;
- PropertyIdSet lazyBailoutProperties;
- bool anyPropertyMayBeWrittenTo;
- SlotArrayCheckTable *slotArrayCheckTable;
- FrameDisplayCheckTable *frameDisplayCheckTable;
- IR::Instr * m_headInstr;
- IR::Instr * m_exitInstr;
- IR::Instr * m_tailInstr;
- #ifdef _M_X64
- int32 m_spillSize;
- int32 m_argsSize;
- int32 m_savedRegSize;
- PrologEncoder m_prologEncoder;
- #endif
- SymTable * m_symTable;
- StackSym * m_loopParamSym;
- StackSym * m_funcObjSym;
- StackSym * m_javascriptLibrarySym;
- StackSym * m_scriptContextSym;
- StackSym * m_functionBodySym;
- StackSym * m_localClosureSym;
- StackSym * m_paramClosureSym;
- StackSym * m_localFrameDisplaySym;
- StackSym * m_bailoutReturnValueSym;
- StackSym * m_hasBailedOutSym;
- uint m_forInLoopMaxDepth;
- uint m_forInLoopBaseDepth;
- int32 m_forInEnumeratorArrayOffset;
- int32 m_localStackHeight;
- uint frameSize;
- uint32 inlineDepth;
- uint32 postCallByteCodeOffset;
- Js::RegSlot returnValueRegSlot;
- Js::RegSlot firstIRTemp;
- Js::ArgSlot actualCount;
- int32 firstActualStackOffset;
- uint32 tryCatchNestingLevel;
- uint32 m_totalJumpTableSizeInBytesForSwitchStatements;
- #if defined(_M_ARM32_OR_ARM64)
- //Offset to arguments from sp + m_localStackHeight;
- //For non leaf functions this is (callee saved register count + LR + R11) * MachRegInt
- //For leaf functions this is (saved registers) * MachRegInt
- int32 m_ArgumentsOffset;
- UnwindInfoManager m_unwindInfo;
- IR::LabelInstr * m_epilogLabel;
- #endif
- IR::LabelInstr * m_funcStartLabel;
- IR::LabelInstr * m_funcEndLabel;
- // Keep track of the maximum number of args on the stack.
- uint32 m_argSlotsForFunctionsCalled;
- #if DBG
- uint32 m_callSiteCount;
- #endif
- FlowGraph * m_fg;
- unsigned int m_labelCount;
- BitVector m_regsUsed;
- StackSym * tempSymDouble;
- StackSym * tempSymBool;
- uint32 loopCount;
- uint32 unoptimizableArgumentsObjReference;
- Js::ProfileId callSiteIdInParentFunc;
- InlineeFrameInfo* cachedInlineeFrameInfo;
- bool m_hasCalls: 1; // This is more accurate compared to m_isLeaf
- bool m_hasInlineArgsOpt : 1;
- bool m_doFastPaths : 1;
- bool hasBailout: 1;
- bool hasBailoutInEHRegion : 1;
- bool hasStackArgs: 1;
- bool hasArgLenAndConstOpt : 1;
- bool hasImplicitParamLoad : 1; // True if there is a load of CallInfo, FunctionObject
- bool hasThrow : 1;
- bool hasUnoptimizedArgumentsAccess : 1; // True if there are any arguments access beyond the simple case of this.apply pattern
- bool m_canDoInlineArgsOpt : 1;
- bool applyTargetInliningRemovedArgumentsAccess : 1;
- bool isGetterSetter : 1;
- const bool isInlinedConstructor: 1;
- bool hasImplicitCalls: 1;
- bool hasTempObjectProducingInstr:1; // At least one instruction which can produce temp object
- bool isTJLoopBody : 1;
- bool isFlowGraphValid : 1;
- bool legalizePostRegAlloc : 1;
- #if DBG
- bool hasCalledSetDoFastPaths:1;
- bool isPostLower:1;
- bool isPostRegAlloc:1;
- bool isPostPeeps:1;
- bool isPostLayout:1;
- bool isPostFinalLower:1;
- struct InstrByteCodeRegisterUses
- {
- Js::OpCode capturingOpCode;
- BVSparse<JitArenaAllocator>* bv;
- };
- typedef JsUtil::BaseDictionary<uint32, InstrByteCodeRegisterUses, JitArenaAllocator> ByteCodeRegisterUses;
- ByteCodeRegisterUses* byteCodeRegisterUses = nullptr;
- BVSparse<JitArenaAllocator>* GetByteCodeOffsetUses(uint offset) const;
- typedef JsUtil::Stack<Js::Phase> CurrentPhasesStack;
- CurrentPhasesStack currentPhases;
- bool IsInPhase(Js::Phase tag);
- #endif
- void BeginPhase(Js::Phase tag);
- void EndPhase(Js::Phase tag, bool dump = true);
- void EndProfiler(Js::Phase tag);
- void BeginClone(Lowerer *lowerer, JitArenaAllocator *alloc);
- void EndClone();
- Cloner * GetCloner() const { return GetTopFunc()->m_cloner; }
- InstrMap * GetCloneMap() const { return GetTopFunc()->m_cloneMap; }
- void ClearCloneMap() { Assert(this->IsTopFunc()); this->m_cloneMap = nullptr; }
- bool HasByteCodeOffset() const { return !this->GetTopFunc()->hasInstrNumber; }
- bool DoMaintainByteCodeOffset() const { return this->HasByteCodeOffset() && this->GetTopFunc()->maintainByteCodeOffset; }
- void StopMaintainByteCodeOffset() { this->GetTopFunc()->maintainByteCodeOffset = false; }
- Func * GetParentFunc() const { return parentFunc; }
- uint GetMaxInlineeArgOutSize() const { return this->maxInlineeArgOutSize; }
- void UpdateMaxInlineeArgOutSize(uint inlineeArgOutSize);
- #if DBG_DUMP
- ptrdiff_t m_codeSize;
- #endif
- bool GetHasCalls() const { return this->m_hasCalls; }
- void SetHasCallsOnSelfAndParents()
- {
- Func *curFunc = this;
- while (curFunc)
- {
- curFunc->m_hasCalls = true;
- curFunc = curFunc->GetParentFunc();
- }
- }
- void SetHasInstrNumber(bool has) { this->GetTopFunc()->hasInstrNumber = has; }
- bool HasInstrNumber() const { return this->GetTopFunc()->hasInstrNumber; }
- bool HasInlinee() const { Assert(this->IsTopFunc()); return this->hasInlinee; }
- void SetHasInlinee() { Assert(this->IsTopFunc()); this->hasInlinee = true; }
- bool GetThisOrParentInlinerHasArguments() const { return thisOrParentInlinerHasArguments; }
- bool GetHasStackArgs() const
- {
- return this->hasStackArgs && !IsStackArgOptDisabled() && !PHASE_OFF1(Js::StackArgOptPhase);
- }
- void SetHasStackArgs(bool has) { this->hasStackArgs = has;}
- bool IsStackArgsEnabled()
- {
- Func* curFunc = this;
- bool isStackArgsEnabled = GetJITFunctionBody()->UsesArgumentsObject() && curFunc->GetHasStackArgs();
- Func * topFunc = curFunc->GetTopFunc();
- if (topFunc != nullptr)
- {
- isStackArgsEnabled = isStackArgsEnabled && topFunc->GetHasStackArgs();
- }
- return isStackArgsEnabled;
- }
- bool GetHasImplicitParamLoad() const { return this->hasImplicitParamLoad; }
- void SetHasImplicitParamLoad() { this->hasImplicitParamLoad = true; }
- bool GetHasThrow() const { return this->hasThrow; }
- void SetHasThrow() { this->hasThrow = true; }
- bool GetHasUnoptimizedArgumentsAccess() const { return this->hasUnoptimizedArgumentsAccess; }
- void SetHasUnoptimizedArgumentsAccess(bool args)
- {
- // Once set to 'true' make sure this does not become false
- if (!this->hasUnoptimizedArgumentsAccess)
- {
- this->hasUnoptimizedArgumentsAccess = args;
- }
- if (args)
- {
- Func *curFunc = this->GetParentFunc();
- while (curFunc)
- {
- curFunc->hasUnoptimizedArgumentsAccess = args;
- curFunc = curFunc->GetParentFunc();
- }
- }
- }
- void DisableCanDoInlineArgOpt()
- {
- Func* curFunc = this;
- while (curFunc)
- {
- curFunc->m_canDoInlineArgsOpt = false;
- curFunc->m_hasInlineArgsOpt = false;
- curFunc = curFunc->GetParentFunc();
- }
- }
- bool ShouldLegalizePostRegAlloc() const { return topFunc->legalizePostRegAlloc; }
- bool GetApplyTargetInliningRemovedArgumentsAccess() const { return this->applyTargetInliningRemovedArgumentsAccess;}
- void SetApplyTargetInliningRemovedArgumentsAccess() { this->applyTargetInliningRemovedArgumentsAccess = true;}
- bool GetHasMarkTempObjects() const { return this->hasMarkTempObjects; }
- void SetHasMarkTempObjects() { this->hasMarkTempObjects = true; }
- bool GetHasNonSimpleParams() const { return this->hasNonSimpleParams; }
- void SetHasNonSimpleParams() { this->hasNonSimpleParams = true; }
- bool GetHasImplicitCalls() const { return this->hasImplicitCalls;}
- void SetHasImplicitCalls(bool has) { this->hasImplicitCalls = has;}
- void SetHasImplicitCallsOnSelfAndParents()
- {
- this->SetHasImplicitCalls(true);
- Func *curFunc = this->GetParentFunc();
- while (curFunc && !curFunc->IsTopFunc())
- {
- curFunc->SetHasImplicitCalls(true);
- curFunc = curFunc->GetParentFunc();
- }
- }
- bool GetHasTempObjectProducingInstr() const { return this->hasTempObjectProducingInstr; }
- void SetHasTempObjectProducingInstr(bool has) { this->hasTempObjectProducingInstr = has; }
- const JITTimeProfileInfo * GetReadOnlyProfileInfo() const { return GetJITFunctionBody()->GetReadOnlyProfileInfo(); }
- bool HasProfileInfo() const { return GetJITFunctionBody()->HasProfileInfo(); }
- bool HasArrayInfo()
- {
- const auto top = this->GetTopFunc();
- return this->HasProfileInfo() && this->GetWeakFuncRef() && !(top->HasTry() && !top->DoOptimizeTry()) &&
- top->DoGlobOpt() && !PHASE_OFF(Js::LoopFastPathPhase, top);
- }
- static Js::OpCode GetLoadOpForType(IRType type)
- {
- if (type == TyVar || IRType_IsFloat(type))
- {
- return Js::OpCode::Ld_A;
- }
- else
- {
- Assert(IRType_IsNativeInt(type));
- return Js::OpCode::Ld_I4;
- }
- }
- static Js::BuiltinFunction GetBuiltInIndex(IR::Opnd* opnd)
- {
- Assert(opnd);
- Js::BuiltinFunction index;
- if (opnd->IsRegOpnd())
- {
- index = opnd->AsRegOpnd()->m_sym->m_builtInIndex;
- }
- else if (opnd->IsSymOpnd())
- {
- PropertySym *propertySym = opnd->AsSymOpnd()->m_sym->AsPropertySym();
- index = Js::JavascriptLibrary::GetBuiltinFunctionForPropId(propertySym->m_propertyId);
- }
- else
- {
- index = Js::BuiltinFunction::None;
- }
- return index;
- }
- static bool IsBuiltInInlinedInLowerer(IR::Opnd* opnd)
- {
- Assert(opnd);
- Js::BuiltinFunction index = Func::GetBuiltInIndex(opnd);
- switch (index)
- {
- case Js::BuiltinFunction::JavascriptString_CharAt:
- case Js::BuiltinFunction::JavascriptString_CharCodeAt:
- case Js::BuiltinFunction::JavascriptString_CodePointAt:
- case Js::BuiltinFunction::Math_Abs:
- case Js::BuiltinFunction::JavascriptArray_Push:
- case Js::BuiltinFunction::JavascriptString_Replace:
- case Js::BuiltinFunction::JavascriptObject_HasOwnProperty:
- case Js::BuiltinFunction::JavascriptArray_IsArray:
- return true;
- default:
- return false;
- }
- }
- void AddYieldOffsetResumeLabel(uint32 offset, IR::LabelInstr* label)
- {
- m_yieldOffsetResumeLabelList->Add(YieldOffsetResumeLabel(offset, label));
- }
- template <typename Fn>
- void MapYieldOffsetResumeLabels(Fn fn)
- {
- m_yieldOffsetResumeLabelList->Map(fn);
- }
- template <typename Fn>
- bool MapUntilYieldOffsetResumeLabels(Fn fn)
- {
- return m_yieldOffsetResumeLabelList->MapUntil(fn);
- }
- void RemoveYieldOffsetResumeLabel(const YieldOffsetResumeLabel& yorl)
- {
- m_yieldOffsetResumeLabelList->Remove(yorl);
- }
- void RemoveDeadYieldOffsetResumeLabel(IR::LabelInstr* label)
- {
- uint32 offset;
- bool found = m_yieldOffsetResumeLabelList->MapUntil([&offset, &label](int i, YieldOffsetResumeLabel& yorl)
- {
- if (yorl.Second() == label)
- {
- offset = yorl.First();
- return true;
- }
- return false;
- });
- Assert(found);
- RemoveYieldOffsetResumeLabel(YieldOffsetResumeLabel(offset, label));
- AddYieldOffsetResumeLabel(offset, nullptr);
- }
- IR::Instr * GetFunctionEntryInsertionPoint();
- IR::IndirOpnd * GetConstantAddressIndirOpnd(intptr_t address, IR::Opnd *largeConstOpnd, IR::AddrOpndKind kind, IRType type, Js::OpCode loadOpCode);
- void MarkConstantAddressSyms(BVSparse<JitArenaAllocator> * bv);
- void DisableConstandAddressLoadHoist() { canHoistConstantAddressLoad = false; }
- void AddSlotArrayCheck(IR::SymOpnd *fieldOpnd);
- void AddFrameDisplayCheck(IR::SymOpnd *fieldOpnd, uint32 slotId = (uint32)-1);
- void EnsureStackArgWithFormalsTracker();
- BOOL IsFormalsArraySym(SymID symId);
- void TrackFormalsArraySym(SymID symId);
- void TrackStackSymForFormalIndex(Js::ArgSlot formalsIndex, StackSym * sym);
- StackSym* GetStackSymForFormal(Js::ArgSlot formalsIndex);
- bool HasStackSymForFormal(Js::ArgSlot formalsIndex);
- void SetScopeObjSym(StackSym * sym);
- StackSym * GetScopeObjSym();
- bool IsTrackCompoundedIntOverflowDisabled() const;
- bool IsArrayCheckHoistDisabled() const;
- bool IsStackArgOptDisabled() const;
- bool IsSwitchOptDisabled() const;
- bool IsAggressiveIntTypeSpecDisabled() const;
- #if DBG
- bool allowRemoveBailOutArgInstr;
- #endif
- #if defined(_M_ARM32_OR_ARM64)
- int32 GetInlineeArgumentStackSize()
- {
- int32 size = this->GetMaxInlineeArgOutSize();
- if (size)
- {
- return size + MachPtr; // +1 for the dedicated zero out argc slot
- }
- return 0;
- }
- #endif
- public:
- BVSparse<JitArenaAllocator> * argObjSyms;
- BVSparse<JitArenaAllocator> * m_nonTempLocalVars; // Only populated in debug mode as part of IRBuilder. Used in GlobOpt and BackwardPass.
- InlineeFrameInfo* frameInfo;
- Js::ArgSlot argInsCount; // This count doesn't include the ArgIn instr for "this".
- uint32 m_inlineeId;
- IR::LabelInstr * m_bailOutNoSaveLabel;
- StackSym * GetNativeCodeDataSym() const;
- void SetNativeCodeDataSym(StackSym * sym);
- private:
- Js::EntryPointInfo* m_entryPointInfo; // for in-proc JIT only
- JITOutput m_output;
- #ifdef PROFILE_EXEC
- Js::ScriptContextProfiler *const m_codeGenProfiler;
- #endif
- Func * const topFunc;
- Func * const parentFunc;
- StackSym * m_inlineeFrameStartSym;
- IR::Instr * inlineeStart;
- uint maxInlineeArgOutSize;
- const bool m_isBackgroundJIT;
- bool hasInstrNumber;
- bool maintainByteCodeOffset;
- bool hasInlinee;
- bool thisOrParentInlinerHasArguments;
- bool useRuntimeStats;
- bool stackNestedFunc;
- bool stackClosure;
- bool hasAnyStackNestedFunc;
- bool hasMarkTempObjects;
- bool hasNonSimpleParams;
- Cloner * m_cloner;
- InstrMap * m_cloneMap;
- NativeCodeData::Allocator nativeCodeDataAllocator;
- NativeCodeData::Allocator transferDataAllocator;
- #if !FLOATVAR
- CodeGenNumberAllocator * numberAllocator;
- #endif
- int32 m_localVarSlotsOffset;
- int32 m_hasLocalVarChangedOffset; // Offset on stack of 1 byte which indicates if any local var has changed.
- void * const m_codeGenAllocators;
- YieldOffsetResumeLabelList * m_yieldOffsetResumeLabelList;
- StackArgWithFormalsTracker * stackArgWithFormalsTracker;
- ObjTypeSpecFldInfo ** m_globalObjTypeSpecFldInfoArray;
- StackSym *CreateInlineeStackSym();
- IR::SymOpnd *GetInlineeOpndAtOffset(int32 offset);
- bool HasLocalVarSlotCreated() const { return m_localVarSlotsOffset != Js::Constants::InvalidOffset; }
- void EnsureLocalVarSlots();
- StackSym * m_nativeCodeDataSym;
- SList<IR::RegOpnd *> constantAddressRegOpnd;
- IR::Instr * lastConstantAddressRegLoadInstr;
- bool canHoistConstantAddressLoad;
- #if DBG
- VtableHashMap * vtableMap;
- #endif
- #if LOWER_SPLIT_INT64
- struct Int64SymPair {StackSym* high = nullptr; StackSym* low = nullptr;};
- // Key is an int64 symId, value is a pair of int32 StackSym
- typedef JsUtil::BaseDictionary<SymID, Int64SymPair, JitArenaAllocator> Int64SymPairMap;
- Int64SymPairMap* m_int64SymPairMap;
- #endif
- #ifdef RECYCLER_WRITE_BARRIER_JIT
- public:
- Lowerer* m_lowerer;
- #endif
- };
- class AutoCodeGenPhase
- {
- public:
- AutoCodeGenPhase(Func * func, Js::Phase phase) : func(func), phase(phase), dump(false), isPhaseComplete(false)
- {
- func->BeginPhase(phase);
- }
- ~AutoCodeGenPhase()
- {
- if(this->isPhaseComplete)
- {
- func->EndPhase(phase, dump);
- }
- else
- {
- //End the profiler tag
- func->EndProfiler(phase);
- }
- }
- void EndPhase(Func * func, Js::Phase phase, bool dump, bool isPhaseComplete)
- {
- Assert(this->func == func);
- Assert(this->phase == phase);
- this->dump = dump && (PHASE_DUMP(Js::SimpleJitPhase, func) || !func->IsSimpleJit());
- this->isPhaseComplete = isPhaseComplete;
- }
- private:
- Func * func;
- Js::Phase phase;
- bool dump;
- bool isPhaseComplete;
- };
- class AutoRestoreLegalize
- {
- public:
- AutoRestoreLegalize(Func * func, bool val) :
- m_func(func->GetTopFunc()),
- m_originalValue(m_func->legalizePostRegAlloc)
- {
- m_func->legalizePostRegAlloc = val;
- }
- ~AutoRestoreLegalize()
- {
- m_func->legalizePostRegAlloc = m_originalValue;
- }
- private:
- Func * m_func;
- bool m_originalValue;
- };
- #define BEGIN_CODEGEN_PHASE(func, phase) { AutoCodeGenPhase __autoCodeGen(func, phase);
- #define END_CODEGEN_PHASE(func, phase) __autoCodeGen.EndPhase(func, phase, true, true); }
- #define END_CODEGEN_PHASE_NO_DUMP(func, phase) __autoCodeGen.EndPhase(func, phase, false, true); }
- #ifdef PERF_HINT
- void WritePerfHint(PerfHints hint, Func* func, uint byteCodeOffset = Js::Constants::NoByteCodeOffset);
- #endif
|