Home
last modified time | relevance | path

Searched refs:maxRegCount (Results 1 - 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Dlive.h53 SparseDataInfo *NewLiveIn(uint32 maxRegCount) const in NewLiveIn()
55 return memPool->New<SparseDataInfo>(maxRegCount, alloc); in NewLiveIn()
58 SparseDataInfo *NewLiveOut(uint32 maxRegCount) const in NewLiveOut()
60 return memPool->New<SparseDataInfo>(maxRegCount, alloc); in NewLiveOut()
63 SparseDataInfo *NewDef(uint32 maxRegCount) const in NewDef()
65 return memPool->New<SparseDataInfo>(maxRegCount, alloc); in NewDef()
73 SparseDataInfo *NewUse(uint32 maxRegCount) const in NewUse()
75 return memPool->New<SparseDataInfo>(maxRegCount, alloc); in NewUse()
H A Dreg_info.h61 static uint32 maxRegCount; member in maplebe::VregInfo
74 maxRegCount = kBaseVirtualRegNO; in VregInfo()
83 /* when vReg reach to maxRegCount, maxRegCount limit adds 80 every time */ in GetNextVregNO()
85 if (virtualRegCount >= maxRegCount) { in GetNextVregNO()
86 DEBUG_ASSERT(virtualRegCount < maxRegCount + 1, "MAINTAIN FAILED"); in GetNextVregNO()
87 maxRegCount += kRegIncrStepLen; in GetNextVregNO()
88 VRegTableResize(maxRegCount); in GetNextVregNO()
124 /* maxRegCount related stuff */
127 return maxRegCount;
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dlive.cpp398 const uint32 maxRegCount = cgFunc->GetMaxVReg(); in InitBB() local
399 bb.SetLiveIn(*NewLiveIn(maxRegCount)); in InitBB()
400 bb.SetLiveOut(*NewLiveOut(maxRegCount)); in InitBB()
401 bb.SetDef(*NewDef(maxRegCount)); in InitBB()
402 bb.SetUse(*NewUse(maxRegCount)); in InitBB()
H A Dcg.cpp23 uint32 VregInfo::maxRegCount = 0; member in maplebe::VregInfo

Completed in 3 milliseconds