Searched refs:current_bytecode (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/interpreter/ |
D | bytecode-array-iterator.cc | 19 bytecode_offset_ += Bytecodes::Size(current_bytecode()); in Advance() 28 Bytecode BytecodeArrayIterator::current_bytecode() const { in current_bytecode() function in v8::internal::interpreter::BytecodeArrayIterator 36 return Bytecodes::Size(current_bytecode()); in current_bytecode_size() 43 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(current_bytecode())); in GetRawOperand() 45 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetRawOperand() 48 Bytecodes::GetOperandOffset(current_bytecode(), operand_index); in GetRawOperand() 69 Bytecodes::GetOperandSize(current_bytecode(), operand_index); in GetCountOperand() 79 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetIndexOperand() 89 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetRegisterOperand() 107 Bytecode bytecode = current_bytecode(); in GetJumpTargetOffset()
|
D | bytecode-array-iterator.h | 22 Bytecode current_bytecode() const;
|
/external/v8/test/unittests/interpreter/ |
D | bytecode-array-iterator-unittest.cc | 56 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdaConstant); in TEST_F() 61 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdaConstant); in TEST_F() 66 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdaZero); in TEST_F() 70 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdaSmi8); in TEST_F() 75 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdaConstant); in TEST_F() 80 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdar); in TEST_F() 85 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLoadICSloppy); in TEST_F() 92 CHECK_EQ(iterator.current_bytecode(), Bytecode::kStar); in TEST_F() 97 CHECK_EQ(iterator.current_bytecode(), Bytecode::kCallRuntime); in TEST_F() 105 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); in TEST_F()
|
D | bytecode-array-builder-unittest.cc | 458 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJump); in TEST_F() 465 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfTrue); in TEST_F() 472 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfFalse); in TEST_F() 479 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfToBooleanTrue); in TEST_F() 486 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfToBooleanFalse); in TEST_F() 491 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpConstant); in TEST_F() 499 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfTrueConstant); in TEST_F() 507 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfFalseConstant); in TEST_F() 515 CHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpIfToBooleanTrueConstant); in TEST_F() 523 CHECK_EQ(iterator.current_bytecode(), in TEST_F() [all …]
|
/external/v8/src/compiler/ |
D | bytecode-branch-analysis.cc | 60 interpreter::Bytecode bytecode = iterator.current_bytecode(); in Analyze()
|
D | bytecode-graph-builder.cc | 533 switch (iterator.current_bytecode()) { in VisitBytecodes()
|
/external/v8/test/cctest/interpreter/ |
D | test-bytecode-generator.cc | 212 Bytecode bytecode = iterator.current_bytecode(); in CheckBytecodeArrayEqual()
|