Home
last modified time | relevance | path

Searched refs:maxTlabSize (Results 1 - 3 of 3) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/
H A Dthread.cpp244 size_t maxTlabSize = Runtime::GetOptions().GetMaxTlabSize(); in ManagedThread() local
248 if (initTlabSize > maxTlabSize) { in ManagedThread()
252 initTlabSize, maxTlabSize, MAX_GROW_RATIO, WEIGHT, DESIRED_FILL_FRACTION); in ManagedThread()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dcodegen.cpp1176 auto maxTlabSize = runtime->GetTLABMaxSize(); in CreateNewObjCall() local
1177 if (maxTlabSize == 0 || in CreateNewObjCall()
1197 if (classSize > maxTlabSize) { in CreateNewObjCall()
1211 auto maxTlabSize = runtime->GetTLABMaxSize(); in CreateNewObjCallOld() local
1214 if (maxTlabSize == 0 || in CreateNewObjCallOld()
1234 if (classSize > maxTlabSize) { in CreateNewObjCallOld()
2244 auto maxTlabSize = runtime->GetTLABMaxSize(); in VisitNewArray() local
2246 if (maxTlabSize == 0 || GetArch() == Arch::AARCH32) { in VisitNewArray()
2263 if (arraySize > maxTlabSize) { in VisitNewArray()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H A Dllvm_ir_constructor.cpp4139 auto maxTlabSize = runtime->GetTLABMaxSize(); in VisitNewArray() local
4140 if (maxTlabSize == 0) { in VisitNewArray()
4157 if (arraySize > maxTlabSize) { in VisitNewArray()
4180 auto maxTlabSize = runtime->GetTLABMaxSize(); in VisitNewObject() local
4181 if (maxTlabSize == 0 || srcInst->GetOpcode() != Opcode::LoadAndInitClass) { in VisitNewObject()
4198 if (classSize > maxTlabSize) { in VisitNewObject()

Completed in 21 milliseconds