| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065 |
- //-------------------------------------------------------------------------------------------------------
- // 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 Cloner
- {
- Cloner(Lowerer *lowerer, JitArenaAllocator *alloc) :
- alloc(alloc),
- symMap(nullptr),
- labelMap(nullptr),
- lowerer(lowerer),
- instrFirst(nullptr),
- instrLast(nullptr),
- fRetargetClonedBranch(FALSE)
- {
- }
- ~Cloner()
- {
- if (symMap)
- {
- Adelete(alloc, symMap);
- }
- if (labelMap)
- {
- Adelete(alloc, labelMap);
- }
- }
- void AddInstr(IR::Instr * instrOrig, IR::Instr * instrClone);
- void Finish();
- void RetargetClonedBranches();
- HashTable<StackSym*> *symMap;
- HashTable<IR::LabelInstr*> *labelMap;
- Lowerer * lowerer;
- IR::Instr * instrFirst;
- IR::Instr * instrLast;
- BOOL fRetargetClonedBranch;
- JitArenaAllocator *alloc;
- 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 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
- {
- return DoGlobOpt() && !GetTopFunc()->HasTry();
- }
- 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(_M_IX86) || defined (_M_ARM)
- static const uint32 c_debugFillPattern = c_debugFillPattern4;
- #elif defined(_M_X64) || defined(_M_ARM64)
- static const unsigned __int64 c_debugFillPattern = c_debugFillPattern8;
- #else
- #error unsupported platform
- #endif
- #endif
- bool IsSIMDEnabled() const
- {
- return GetScriptContextInfo()->IsSIMDEnabled();
- }
- 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;
- Func * GetTopFunc();
- 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();
- Js::JitEquivalentTypeGuard * CreateEquivalentTypeGuard(JITTypeHolder type, 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;
- }
- IR::SymOpnd *GetInlineeArgCountSlotOpnd()
- {
- return GetInlineeOpndAtOffset(Js::Constants::InlineeMetaArgIndex_Argc * MachPtr);
- }
- IR::SymOpnd *GetNextInlineeFrameArgCountSlotOpnd()
- {
- Assert(!this->m_hasInlineArgsOpt);
- return GetInlineeOpndAtOffset((Js::Constants::InlineeMetaArgCount + actualCount) * MachPtr);
- }
- IR::SymOpnd *GetInlineeFunctionObjectSlotOpnd()
- {
- Assert(!this->m_hasInlineArgsOpt);
- return GetInlineeOpndAtOffset(Js::Constants::InlineeMetaArgIndex_FunctionObject * MachPtr);
- }
- IR::SymOpnd *GetInlineeArgumentsObjectSlotOpnd()
- {
- return GetInlineeOpndAtOffset(Js::Constants::InlineeMetaArgIndex_ArgumentsObject * MachPtr);
- }
- IR::SymOpnd *GetInlineeArgvSlotOpnd()
- {
- Assert(!this->m_hasInlineArgsOpt);
- 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 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::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;
- Js::ProfileId callSiteIdInParentFunc;
- bool m_isLeaf: 1; // This is set in the IRBuilder and might be inaccurate after inlining
- 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 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 hasApplyTargetInlining: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;
- #if DBG
- bool hasCalledSetDoFastPaths:1;
- bool isPostLower:1;
- bool isPostRegAlloc:1;
- bool isPostPeeps:1;
- bool isPostLayout:1;
- bool isPostFinalLower:1;
- 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 GetMaxInlineeArgOutCount() const { return maxInlineeArgOutCount; }
- void UpdateMaxInlineeArgOutCount(uint inlineeArgOutCount);
- #if DBG_DUMP
- ptrdiff_t m_codeSize;
- #endif
- bool GetHasCalls() const { return this->m_hasCalls; }
- void SetHasCalls() { this->m_hasCalls = true; }
- void SetHasCallsOnSelfAndParents()
- {
- Func *curFunc = this;
- while (curFunc)
- {
- curFunc->SetHasCalls();
- 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 GetHasApplyTargetInlining() const { return this->hasApplyTargetInlining;}
- void SetHasApplyTargetInlining() { this->hasApplyTargetInlining = 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::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 count = this->GetMaxInlineeArgOutCount();
- if (count)
- {
- return ((count + 1) * 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 parentFunc;
- StackSym * m_inlineeFrameStartSym;
- uint maxInlineeArgOutCount;
- 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
- #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;
- };
- #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
|