Lines Matching refs:CHECK_EQ
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()
71 CHECK_EQ(Smi::FromInt(iterator.GetImmediateOperand(0)), smi_0); in TEST_F()
75 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdaConstant); in TEST_F()
76 CHECK_EQ(*iterator.GetConstantForIndexOperand(0), smi_1); in TEST_F()
80 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLdar); in TEST_F()
81 CHECK_EQ(iterator.GetRegisterOperand(0).index(), reg_0.index()); in TEST_F()
85 CHECK_EQ(iterator.current_bytecode(), Bytecode::kLoadICSloppy); in TEST_F()
86 CHECK_EQ(iterator.GetRegisterOperand(0).index(), reg_1.index()); in TEST_F()
87 CHECK_EQ(iterator.GetIndexOperand(1), name_index); in TEST_F()
88 CHECK_EQ(iterator.GetIndexOperand(2), feedback_slot); in TEST_F()
92 CHECK_EQ(iterator.current_bytecode(), Bytecode::kStar); in TEST_F()
93 CHECK_EQ(iterator.GetRegisterOperand(0).index(), reg_2.index()); in TEST_F()
97 CHECK_EQ(iterator.current_bytecode(), Bytecode::kCallRuntime); in TEST_F()
98 CHECK_EQ(static_cast<Runtime::FunctionId>(iterator.GetIndexOperand(0)), in TEST_F()
100 CHECK_EQ(iterator.GetRegisterOperand(1).index(), reg_0.index()); in TEST_F()
101 CHECK_EQ(iterator.GetCountOperand(2), 1); in TEST_F()
105 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); in TEST_F()