Home
last modified time | relevance | path

Searched refs:OpcTable (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp1316 static const unsigned OpcTable[2][2][2] = { in emitAddSub_rr() local
1323 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rr()
1358 static const unsigned OpcTable[2][2][2] = { in emitAddSub_ri() local
1365 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_ri()
1402 static const unsigned OpcTable[2][2][2] = { in emitAddSub_rs() local
1409 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rs()
1443 static const unsigned OpcTable[2][2][2] = { in emitAddSub_rx() local
1450 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rx()
1669 static const unsigned OpcTable[3][2] = { in emitLogicalOp_ri() local
1685 Opc = OpcTable[Idx][0]; in emitLogicalOp_ri()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp1547 static const unsigned OpcTable[2][2] = {{AArch64::TBZX, AArch64::TBNZX}, in emitTestBit() local
1549 unsigned Opc = OpcTable[UseWReg][IsNegative]; in emitTestBit()
1610 static const unsigned OpcTable[2][2] = {{AArch64::CBZW, AArch64::CBZX}, in emitCBZ() local
1612 unsigned Opc = OpcTable[IsNegative][Width == 64]; in emitCBZ()
2458 static const unsigned OpcTable[2][2] = { in select() local
2463 unsigned Opc = OpcTable[IsSigned][Size == 64]; in select()
3885 static const unsigned OpcTable[4][4][9] = { in selectVectorICmp() local
3945 unsigned Opc = OpcTable[EltIdx][NumEltsIdx][PredIdx]; in selectVectorICmp()
4523 const std::array<std::array<unsigned, 2>, 5> OpcTable{ in emitADD() local
4529 return emitAddSub(OpcTable, DefReg, LHS, RHS, MIRBuilder); in emitADD()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86FastISel.cpp2248 static const uint16_t OpcTable[2][4] = { in X86FastEmitSSESelect() local
2256 case MVT::f32: Opc = &OpcTable[0][0]; break; in X86FastEmitSSESelect()
2257 case MVT::f64: Opc = &OpcTable[1][0]; break; in X86FastEmitSSESelect()