Home
last modified time | relevance | path

Searched refs:CLFI (Results 1 – 11 of 11) sorted by relevance

/external/valgrind/none/tests/s390x/
Dcomp-2.stdout.exp125 CLFI (0, 0) --> cc = 0
126 CLFI (0, 1) --> cc = 1
127 CLFI (1, 0) --> cc = 2
128 CLFI (2, 1) --> cc = 2
129 CLFI (2, 2) --> cc = 0
130 CLFI (2, 3) --> cc = 1
131 CLFI (127, 0) --> cc = 2
132 CLFI (127, 126) --> cc = 2
133 CLFI (127, 127) --> cc = 0
134 CLFI (0, 32767) --> cc = 1
[all …]
Dcomp-2.c180 run_scomp_reg_imm(CLFI); in signed_comparison_reg_imm()
Dopcodes.h184 #define CLFI(r1,i2) RIL_RU(c2,r1,f,i2) macro
/external/llvm/lib/Target/SystemZ/
DSystemZInstrInfo.cpp1161 expandRIPseudo(MI, SystemZ::CLFI, SystemZ::CLIH, false); in expandPostRAPseudo()
1402 case SystemZ::CLFI: in getFusedCompare()
1422 case SystemZ::CLFI: in getFusedCompare()
1443 case SystemZ::CLFI: in getFusedCompare()
1464 case SystemZ::CLFI: in getFusedCompare()
1485 case SystemZ::CLFI: in getFusedCompare()
DSystemZLongBranch.cpp420 splitCompareBranch(Branch, SystemZ::CLFI); in relaxBranch()
DSystemZInstrInfo.td1324 // Comparison with an unsigned 32-bit immediate. CLFIMux expands to CLFI
1328 def CLFI : CompareRIL<"clfi", 0xC2F, z_ucmp, GR32, uimm32>;
/external/v8/src/s390/
Ddisasm-s390.cc1082 case CLFI: in DecodeSixByte()
Dconstants-s390.h343 CLFI = 0xC2F, // Compare Logical Immediate (32) enumerator
Dsimulator-s390.h708 EVALUATE(CLFI);
Dsimulator-s390.cc929 EvalTable[CLFI] = &Simulator::Evaluate_CLFI; in EvalTableInit()
4588 case CLFI: { in DecodeSixByte()
8082 EVALUATE(CLFI) { in EVALUATE() argument
8083 DCHECK_OPCODE(CLFI); in EVALUATE()
Dassembler-s390.cc1782 void Assembler::clfi(Register r1, const Operand& i2) { ril_form(CLFI, r1, i2); } in clfi()