Lines Matching refs:TestExprPrinter
47 void TestExprPrinter(ArrayRef<uint8_t> ExprData, StringRef Expected);
51 void DWARFExpressionCompactPrinterTest::TestExprPrinter( in TestExprPrinter() function in DWARFExpressionCompactPrinterTest
68 TestExprPrinter({DW_OP_reg0}, "R0"); in TEST_F()
72 TestExprPrinter({DW_OP_reg10}, "R10"); in TEST_F()
76 TestExprPrinter({DW_OP_regx, 0x80, 0x02}, "D0"); in TEST_F()
80 TestExprPrinter({DW_OP_breg0, 0x04}, "[R0+4]"); in TEST_F()
84 TestExprPrinter({DW_OP_breg0, 0x80, 0x02}, "[R0+256]"); in TEST_F()
88 TestExprPrinter({DW_OP_breg13, 0x10}, "[SP+16]"); in TEST_F()
92 TestExprPrinter({DW_OP_breg13, 0x00}, "[SP]"); in TEST_F()
96 TestExprPrinter({DW_OP_breg0, 0x70}, "[R0-16]"); in TEST_F()
100 TestExprPrinter({DW_OP_bregx, 0x0d, 0x28}, "[SP+40]"); in TEST_F()
104 TestExprPrinter({DW_OP_breg13, 0x04, DW_OP_stack_value}, "SP+4"); in TEST_F()
108 TestExprPrinter({DW_OP_entry_value, 0x01, DW_OP_reg0, DW_OP_stack_value}, in TEST_F()
113 TestExprPrinter( in TEST_F()