Lines Matching refs:isa
52 void SetUpFrame(InstructionSet isa) { in SetUpFrame() argument
53 OverrideInstructionSetFeatures(isa, "default"); in SetUpFrame()
96 void Check(InstructionSet isa, in Check() argument
106 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
113 void TestImpl(InstructionSet isa, const char* in TestImpl() argument
117 SetUpFrame(isa); in TestImpl()
119 Check(isa, isa_str, expected_asm, expected_cfi); in TestImpl()
150 #define TEST_ISA(isa) \ argument
151 TEST_F(OptimizingCFITest, isa) { \
153 expected_asm_##isa, \
154 expected_asm_##isa + arraysize(expected_asm_##isa)); \
156 expected_cfi_##isa, \
157 expected_cfi_##isa + arraysize(expected_cfi_##isa)); \
158 TestImpl(InstructionSet::isa, #isa, expected_asm, expected_cfi); \