mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
582c860a72
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
41 lines
1.1 KiB
TableGen
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)
|
|
>;
|
|
|