Home
last modified time | relevance | path

Searched refs:isAdd (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp600 bool isAdd = true; in EncodeAddrModeOpValues() local
605 isAdd = false; in EncodeAddrModeOpValues()
611 isAdd = false; in EncodeAddrModeOpValues()
615 return isAdd; in EncodeAddrModeOpValues()
981 bool isAdd = true; in getAddrModeImm12OpValue() local
987 isAdd = EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm12, Fixups, STI); in getAddrModeImm12OpValue()
992 isAdd = false; // 'U' bit is set as part of the fixup. in getAddrModeImm12OpValue()
998 isAdd = false; // 'U' bit is set as part of the fixup. in getAddrModeImm12OpValue()
1012 isAdd = false; in getAddrModeImm12OpValue()
1015 isAdd = false; in getAddrModeImm12OpValue()
[all …]
H A DARMAsmBackend.cpp498 bool isAdd = true; in adjustFixupValue() local
501 isAdd = false; in adjustFixupValue()
507 Value |= isAdd << 23; in adjustFixupValue()
727 bool isAdd = true; in adjustFixupValue() local
730 isAdd = false; in adjustFixupValue()
738 return Value | (isAdd << 23); in adjustFixupValue()
747 bool isAdd = true; in adjustFixupValue() local
750 isAdd = false; in adjustFixupValue()
758 Value |= isAdd << 23; in adjustFixupValue()
774 bool isAdd = true; in adjustFixupValue() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DInstrDocsEmitter.cpp111 FLAG(isAdd) in EmitInstrDocs()
H A DCodeGenInstruction.h248 bool isAdd : 1; variable
H A DCodeGenInstruction.cpp382 isAdd = R->getValueAsBit("isAdd"); in CodeGenInstruction()
H A DInstrInfoEmitter.cpp954 if (Inst.isAdd) OS << "|(1ULL<<MCID::Add)"; in emitRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCInstrDesc.h270 bool isAdd() const { return Flags & (1ULL << MCID::Add); } in isAdd() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp861 bool isAdd; member
3028 ARM_AM::getAM3Opc(PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub, 0); in addAM3OffsetOperands()
3274 bool isAdd = Imm >= 0; in addPostIdxImm8Operands() local
3276 Imm = (Imm < 0 ? -Imm : Imm) | (int)isAdd << 8; in addPostIdxImm8Operands()
3285 bool isAdd = Imm >= 0; in addPostIdxImm8s4Operands() local
3288 Imm = ((Imm < 0 ? -Imm : Imm) / 4) | (int)isAdd << 8; in addPostIdxImm8s4Operands()
3295 Inst.addOperand(MCOperand::createImm(PostIdxReg.isAdd)); in addPostIdxRegOperands()
3303 ARM_AM::AddrOpc opc = PostIdxReg.isAdd ? ARM_AM::add : ARM_AM::sub; in addPostIdxRegShiftedOperands()
3821 CreatePostIdxReg(unsigned RegNum, bool isAdd, ARM_AM::ShiftOpc ShiftTy, in CreatePostIdxReg() argument
3825 Op->PostIdxReg.isAdd = isAdd; in CreatePostIdxReg()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMInstrInfo.td2880 // {12} isAdd
2898 // {12} isAdd
2990 // {12} isAdd
3009 // {12} isAdd
3026 // {12} isAdd
3045 // {12} isAdd
3162 // {12} isAdd
3180 // {12} isAdd
3324 // {12} isAdd
3343 // {12} isAdd
[all …]
H A DARMInstrFormats.td797 // {12} isAdd
815 // {12} isAdd
836 // {12} isAdd
889 // {8} isAdd
H A DARMInstrThumb.td966 let isAdd = 1 in {
H A DARMInstrThumb2.td2341 let isAdd = 1 in
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp442 if (DI->getDesc().isAdd()) { in findInductionRegister()
1639 if (DI->getDesc().isAdd()) { in fixupInductionVariable()
H A DHexagonDepInstrInfo.td220 let isAdd = 1;
236 let isAdd = 1;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/
H A DTarget.td529 bit isAdd = false; // Is this instruction an add instruction?
/netbsd-src/external/apache2/llvm/dist/llvm/docs/TableGen/
H A DProgRef.rst1907 bit isAdd = 0;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp42925 auto combineMulShlAddOrSub = [&](int Mult, int Shift, bool isAdd) { in combineMulSpecial() argument
42930 Result = DAG.getNode(isAdd ? ISD::ADD : ISD::SUB, DL, VT, Result, in combineMulSpecial()
42935 auto combineMulMulAddOrSub = [&](int Mul1, int Mul2, bool isAdd) { in combineMulSpecial() argument
42940 Result = DAG.getNode(isAdd ? ISD::ADD : ISD::SUB, DL, VT, Result, in combineMulSpecial()