Home | History | Annotate | Download | only in optimizing

Lines Matching refs:stack_index

235   static uintptr_t EncodeStackIndex(intptr_t stack_index) {
236 DCHECK(-kStackIndexBias <= stack_index);
237 DCHECK(stack_index < kStackIndexBias);
238 return static_cast<uintptr_t>(kStackIndexBias + stack_index);
241 static Location StackSlot(intptr_t stack_index) {
242 uintptr_t payload = EncodeStackIndex(stack_index);
245 DCHECK_EQ(loc.GetStackIndex(), stack_index);
253 static Location DoubleStackSlot(intptr_t stack_index) {
254 uintptr_t payload = EncodeStackIndex(stack_index);
257 DCHECK_EQ(loc.GetStackIndex(), stack_index);