| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMCCodeEmitter.cpp | 600 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 D | ARMAsmBackend.cpp | 498 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 D | InstrDocsEmitter.cpp | 111 FLAG(isAdd) in EmitInstrDocs()
|
| H A D | CodeGenInstruction.h | 248 bool isAdd : 1; variable
|
| H A D | CodeGenInstruction.cpp | 382 isAdd = R->getValueAsBit("isAdd"); in CodeGenInstruction()
|
| H A D | InstrInfoEmitter.cpp | 954 if (Inst.isAdd) OS << "|(1ULL<<MCID::Add)"; in emitRecord()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| H A D | MCInstrDesc.h | 270 bool isAdd() const { return Flags & (1ULL << MCID::Add); } in isAdd() function
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 861 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 D | ARMInstrInfo.td | 2880 // {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 D | ARMInstrFormats.td | 797 // {12} isAdd 815 // {12} isAdd 836 // {12} isAdd 889 // {8} isAdd
|
| H A D | ARMInstrThumb.td | 966 let isAdd = 1 in {
|
| H A D | ARMInstrThumb2.td | 2341 let isAdd = 1 in
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonHardwareLoops.cpp | 442 if (DI->getDesc().isAdd()) { in findInductionRegister() 1639 if (DI->getDesc().isAdd()) { in fixupInductionVariable()
|
| H A D | HexagonDepInstrInfo.td | 220 let isAdd = 1; 236 let isAdd = 1;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/ |
| H A D | Target.td | 529 bit isAdd = false; // Is this instruction an add instruction?
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/TableGen/ |
| H A D | ProgRef.rst | 1907 bit isAdd = 0;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 42925 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()
|