Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp1306 static const unsigned OpcTable[2][2][2] = { in emitAddSub_rr() local
1313 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rr()
1348 static const unsigned OpcTable[2][2][2] = { in emitAddSub_ri() local
1355 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_ri()
1392 static const unsigned OpcTable[2][2][2] = { in emitAddSub_rs() local
1399 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rs()
1433 static const unsigned OpcTable[2][2][2] = { in emitAddSub_rx() local
1440 unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit]; in emitAddSub_rx()
1661 static const unsigned OpcTable[3][2] = { in emitLogicalOp_ri() local
1677 Opc = OpcTable[Idx][0]; in emitLogicalOp_ri()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp1619 static const unsigned OpcTable[2][2] = {{AArch64::TBZX, AArch64::TBNZX}, in emitTestBit() local
1621 unsigned Opc = OpcTable[UseWReg][IsNegative]; in emitTestBit()
1682 static const unsigned OpcTable[2][2] = {{AArch64::CBZW, AArch64::CBZX}, in emitCBZ() local
1684 unsigned Opc = OpcTable[IsNegative][Width == 64]; in emitCBZ()
2659 static const unsigned OpcTable[2][2] = { in select() local
2664 unsigned Opc = OpcTable[IsSigned][Size == 64]; in select()
4439 const std::array<std::array<unsigned, 2>, 5> OpcTable{ in emitADD() local
4445 return emitAddSub(OpcTable, DefReg, LHS, RHS, MIRBuilder); in emitADD()
4452 const std::array<std::array<unsigned, 2>, 5> OpcTable{ in emitADDS() local
4458 return emitAddSub(OpcTable, Dst, LHS, RHS, MIRBuilder); in emitADDS()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp2253 static const uint16_t OpcTable[2][4] = { in X86FastEmitSSESelect() local
2261 case MVT::f32: Opc = &OpcTable[0][0]; break; in X86FastEmitSSESelect()
2262 case MVT::f64: Opc = &OpcTable[1][0]; break; in X86FastEmitSSESelect()