• Home
  • Raw
  • Download

Lines Matching refs:operand_index

157 Node* InterpreterAssembler::BytecodeOperand(int operand_index) {  in BytecodeOperand()  argument
158 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperand()
160 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperand()
165 bytecode_, operand_index)))); in BytecodeOperand()
169 Node* InterpreterAssembler::BytecodeOperandSignExtended(int operand_index) { in BytecodeOperandSignExtended() argument
170 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperandSignExtended()
172 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperandSignExtended()
177 bytecode_, operand_index)))); in BytecodeOperandSignExtended()
186 Node* InterpreterAssembler::BytecodeOperandShort(int operand_index) { in BytecodeOperandShort() argument
187 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperandShort()
189 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperandShort()
195 bytecode_, operand_index)))); in BytecodeOperandShort()
198 interpreter::Bytecodes::GetOperandOffset(bytecode_, operand_index); in BytecodeOperandShort()
219 int operand_index) { in BytecodeOperandShortSignExtended() argument
220 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); in BytecodeOperandShortSignExtended()
222 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperandShortSignExtended()
224 interpreter::Bytecodes::GetOperandOffset(bytecode_, operand_index); in BytecodeOperandShortSignExtended()
258 Node* InterpreterAssembler::BytecodeOperandCount(int operand_index) { in BytecodeOperandCount() argument
259 switch (interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)) { in BytecodeOperandCount()
263 interpreter::Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandCount()
264 return BytecodeOperand(operand_index); in BytecodeOperandCount()
268 interpreter::Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandCount()
269 return BytecodeOperandShort(operand_index); in BytecodeOperandCount()
277 Node* InterpreterAssembler::BytecodeOperandImm(int operand_index) { in BytecodeOperandImm() argument
279 interpreter::Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandImm()
280 return BytecodeOperandSignExtended(operand_index); in BytecodeOperandImm()
284 Node* InterpreterAssembler::BytecodeOperandIdx(int operand_index) { in BytecodeOperandIdx() argument
285 switch (interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)) { in BytecodeOperandIdx()
289 interpreter::Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandIdx()
290 return BytecodeOperand(operand_index); in BytecodeOperandIdx()
294 interpreter::Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandIdx()
295 return BytecodeOperandShort(operand_index); in BytecodeOperandIdx()
303 Node* InterpreterAssembler::BytecodeOperandReg(int operand_index) { in BytecodeOperandReg() argument
304 switch (interpreter::Bytecodes::GetOperandType(bytecode_, operand_index)) { in BytecodeOperandReg()
310 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperandReg()
311 return BytecodeOperandSignExtended(operand_index); in BytecodeOperandReg()
315 interpreter::Bytecodes::GetOperandSize(bytecode_, operand_index)); in BytecodeOperandReg()
316 return BytecodeOperandShortSignExtended(operand_index); in BytecodeOperandReg()