Lines Matching refs:testExpr
93 void testExpr(ArrayRef<uint8_t> ExprData);
189 void DWARFExpressionCopyBytesTest::testExpr(ArrayRef<uint8_t> ExprData) { in testExpr() function in DWARFExpressionCopyBytesTest
203 TEST_F(DWARFExpressionCopyBytesTest, Test_OP_reg0) { testExpr({DW_OP_reg0}); } in TEST_F()
205 TEST_F(DWARFExpressionCopyBytesTest, Test_OP_reg10) { testExpr({DW_OP_reg10}); } in TEST_F()
208 testExpr({DW_OP_regx, 0x80, 0x02}); in TEST_F()
212 testExpr({DW_OP_breg0, 0x04}); in TEST_F()
216 testExpr({DW_OP_breg0, 0x80, 0x02}); in TEST_F()
220 testExpr({DW_OP_breg13, 0x10}); in TEST_F()
224 testExpr({DW_OP_breg13, 0x00}); in TEST_F()
228 testExpr({DW_OP_breg0, 0x70}); in TEST_F()
232 testExpr({DW_OP_bregx, 0x0d, 0x28}); in TEST_F()
236 testExpr({DW_OP_breg13, 0x04, DW_OP_stack_value}); in TEST_F()
240 testExpr({DW_OP_entry_value, 0x01, DW_OP_reg0, DW_OP_stack_value}); in TEST_F()
244 testExpr({DW_OP_entry_value, 0x02, DW_OP_breg13, 0x10, DW_OP_stack_value}); in TEST_F()