1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/TableGen/GlobalISelEmitter-PR39045.td
Jessica Paquette 582c860a72 [GlobalISel][NFC] Factor out common target code from GlobalISelEmitterTests
Factor out commonly-used target code from the GlobalISelEmitter tests into
a GlobalISelEmitterCommon.td file. This is tested by the original
GlobalISelEmitter.td test.

This reduces the amount of boilerplate code necessary for tests like this.

Differential Revision: https://reviews.llvm.org/D65777

llvm-svn: 368757
2019-08-13 22:14:37 +00:00

41 lines
1.1 KiB
TableGen

// RUN: llvm-tblgen -gen-global-isel -I %p/../../include -I %p/Common %s -o %t
// RUN: FileCheck %s < %t
// Both predicates should be tested
// CHECK-DAG: GIM_CheckCxxInsnPredicate, /*MI*/0, /*FnId*/GIPFP_MI_Predicate_pat_frag_b,
// CHECK-DAG: GIM_CheckCxxInsnPredicate, /*MI*/0, /*FnId*/GIPFP_MI_Predicate_pat_frag_a,
include "llvm/Target/Target.td"
include "GlobalISelEmitterCommon.td"
def pat_frag_a : PatFrag <(ops node:$ptr), (load node:$ptr), [{}]> {
let PredicateCode = [{ return isInstA(MI); }];
let GISelPredicateCode = [{ return isInstA(MI); }];
}
def pat_frag_b : PatFrag <(ops node:$ptr), (load node:$ptr), [{}]> {
let PredicateCode = [{ return isInstB(MI); }];
let GISelPredicateCode = [{ return isInstB(MI); }];
}
def inst_a : Instruction {
let OutOperandList = (outs GPR32:$dst);
let InOperandList = (ins GPR32:$src);
}
def inst_b : Instruction {
let OutOperandList = (outs GPR32:$dst);
let InOperandList = (ins GPR32:$src);
}
def : Pat <
(pat_frag_a GPR32:$src),
(inst_a GPR32:$src)
>;
def : Pat <
(pat_frag_b GPR32:$src),
(inst_b GPR32:$src)
>;