Lines Matching refs:isa
50 void SetUpFrame(InstructionSet isa) { in SetUpFrame() argument
51 OverrideInstructionSetFeatures(isa, "default"); in SetUpFrame()
94 void Check(InstructionSet isa, in Check() argument
104 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
111 void TestImpl(InstructionSet isa, const char* in TestImpl() argument
115 SetUpFrame(isa); in TestImpl()
117 Check(isa, isa_str, expected_asm, expected_cfi); in TestImpl()
148 #define TEST_ISA(isa) \ argument
149 TEST_F(OptimizingCFITest, isa) { \
151 expected_asm_##isa, \
152 expected_asm_##isa + arraysize(expected_asm_##isa)); \
154 expected_cfi_##isa, \
155 expected_cfi_##isa + arraysize(expected_cfi_##isa)); \
156 TestImpl(InstructionSet::isa, #isa, expected_asm, expected_cfi); \