Home
last modified time | relevance | path

Searched refs:first_reg_index (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-register.h135 RegisterList(int first_reg_index, int register_count) in RegisterList() argument
136 : first_reg_index_(first_reg_index), register_count_(register_count) {} in RegisterList()
Dinterpreter-assembler.cc263 Node* first_reg_index = in LoadRegisterPairAtOperandIndex() local
265 Node* second_reg_index = NextRegister(first_reg_index); in LoadRegisterPairAtOperandIndex()
266 return std::make_pair(LoadRegister(first_reg_index), in LoadRegisterPairAtOperandIndex()
327 Node* first_reg_index = in StoreRegisterPairAtOperandIndex() local
329 StoreRegister(value1, first_reg_index); in StoreRegisterPairAtOperandIndex()
330 Node* second_reg_index = NextRegister(first_reg_index); in StoreRegisterPairAtOperandIndex()
338 Node* first_reg_index = in StoreRegisterTripleAtOperandIndex() local
340 StoreRegister(value1, first_reg_index); in StoreRegisterTripleAtOperandIndex()
341 Node* second_reg_index = NextRegister(first_reg_index); in StoreRegisterTripleAtOperandIndex()
Dbytecode-array-builder.cc1524 int first_reg_index = reg_list.first_register().index(); in RegisterListIsValid() local
1526 if (!RegisterIsValid(Register(first_reg_index + i))) { in RegisterListIsValid()