| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUAsanInstrumentation.cpp | 245 unsigned OpOffset = IsWrite ? 1 : 0; in getInterestingMemoryOperands() local 249 if (auto *Op = dyn_cast<ConstantInt>(CI->getOperand(1 + OpOffset))) in getInterestingMemoryOperands() 251 Value *Mask = CI->getOperand(2 + OpOffset); in getInterestingMemoryOperands() 252 Interesting.emplace_back(I, OpOffset, IsWrite, Ty, Alignment, Mask); in getInterestingMemoryOperands() 258 unsigned OpOffset = IsWrite ? 1 : 0; in getInterestingMemoryOperands() local 259 auto *BasePtr = CI->getOperand(OpOffset); in getInterestingMemoryOperands() 263 Value *Mask = CI->getOperand(1 + OpOffset); in getInterestingMemoryOperands() 271 Interesting.emplace_back(I, OpOffset, IsWrite, Ty, Alignment, TrueMask, in getInterestingMemoryOperands()
|
| H A D | AMDGPULegalizerInfo.cpp | 5945 int OpOffset = 0; in legalizeBufferStore() local 5948 OpOffset = 1; in legalizeBufferStore() 5953 Register VOffset = MI.getOperand(3 + OpOffset).getReg(); in legalizeBufferStore() 5954 Register SOffset = MI.getOperand(4 + OpOffset).getReg(); in legalizeBufferStore() 5958 Format = MI.getOperand(5 + OpOffset).getImm(); in legalizeBufferStore() 5959 ++OpOffset; in legalizeBufferStore() 5962 unsigned AuxiliaryData = MI.getOperand(5 + OpOffset).getImm(); in legalizeBufferStore() 6043 int OpOffset = 0; in legalizeBufferLoad() local 6048 ++OpOffset; in legalizeBufferLoad() 6051 castBufferRsrcArgToV4I32(MI, B, 2 + OpOffset); in legalizeBufferLoad() [all …]
|
| H A D | AMDGPUInstructionSelector.cpp | 3388 int OpOffset = 0; in selectBufferLoadLds() local 3391 OpOffset = 1; in selectBufferLoadLds() 3394 Register VOffset = MI.getOperand(4 + OpOffset).getReg(); in selectBufferLoadLds() 3463 MIB.add(MI.getOperand(5 + OpOffset)); // soffset in selectBufferLoadLds() 3464 MIB.add(MI.getOperand(6 + OpOffset)); // imm offset in selectBufferLoadLds() 3466 unsigned Aux = MI.getOperand(7 + OpOffset).getImm(); in selectBufferLoadLds() 3476 LoadPtrI.Offset = MI.getOperand(6 + OpOffset).getImm(); in selectBufferLoadLds()
|
| H A D | SIISelLowering.cpp | 10364 unsigned OpOffset = HasVIndex ? 1 : 0; in LowerINTRINSIC_VOID() local 10365 SDValue VOffset = Op.getOperand(5 + OpOffset); in LowerINTRINSIC_VOID() 10423 Ops.push_back(Op.getOperand(6 + OpOffset)); // soffset in LowerINTRINSIC_VOID() 10424 Ops.push_back(Op.getOperand(7 + OpOffset)); // imm offset in LowerINTRINSIC_VOID() 10426 unsigned Aux = Op.getConstantOperandVal(8 + OpOffset); in LowerINTRINSIC_VOID()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64AsmBackend.cpp | 625 if (LRPush.getOperation() != MCCFIInstruction::OpOffset) in generateCompactUnwindEncoding() 628 if (FPPush.getOperation() != MCCFIInstruction::OpOffset) in generateCompactUnwindEncoding() 655 case MCCFIInstruction::OpOffset: { in generateCompactUnwindEncoding() 667 if (Inst2.getOperation() != MCCFIInstruction::OpOffset) in generateCompactUnwindEncoding()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemProfInstrumentation.cpp | 325 unsigned OpOffset = 0; in isInterestingMemoryAccess() local 330 OpOffset = 1; in isInterestingMemoryAccess() 340 auto *BasePtr = CI->getOperand(0 + OpOffset); in isInterestingMemoryAccess() 341 Access.MaybeMask = CI->getOperand(2 + OpOffset); in isInterestingMemoryAccess()
|
| H A D | AddressSanitizer.cpp | 1506 unsigned OpOffset = IsWrite ? 1 : 0; in getInterestingMemoryOperands() local 1510 auto BasePtr = CI->getOperand(OpOffset); in getInterestingMemoryOperands() 1516 if (auto *Op = dyn_cast<ConstantInt>(CI->getOperand(1 + OpOffset))) in getInterestingMemoryOperands() 1518 Value *Mask = CI->getOperand(2 + OpOffset); in getInterestingMemoryOperands() 1519 Interesting.emplace_back(I, OpOffset, IsWrite, Ty, Alignment, Mask); in getInterestingMemoryOperands() 1525 unsigned OpOffset = IsWrite ? 1 : 0; in getInterestingMemoryOperands() local 1528 auto BasePtr = CI->getOperand(OpOffset); in getInterestingMemoryOperands() 1535 Value *Mask = CI->getOperand(1 + OpOffset); in getInterestingMemoryOperands() 1541 Interesting.emplace_back(I, OpOffset, IsWrite, Ty, Alignment, TrueMask, in getInterestingMemoryOperands()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCDwarf.h | 515 OpOffset, enumerator 629 return MCCFIInstruction(OpOffset, L, Register, Offset, Loc); 728 assert(Operation == OpDefCfa || Operation == OpOffset || in getRegister() 748 assert(Operation == OpDefCfa || Operation == OpOffset || in getOffset()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFCFIChecker/ |
| H A D | DWARFCFIState.cpp | 90 case MCCFIInstruction::OpOffset: in convert()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DWARFLinkerCompileUnit.cpp | 1100 uint64_t OpOffset = 0; in cloneDieAttrExpression() local 1114 assert(OpOffset < Op.getEndOffset()); in cloneDieAttrExpression() 1115 uint32_t ULEBsize = Op.getEndOffset() - OpOffset - 1; in cloneDieAttrExpression() 1221 InputExpression.getData().slice(OpOffset, Op.getEndOffset()); in cloneDieAttrExpression() 1224 OpOffset = Op.getEndOffset(); in cloneDieAttrExpression()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinterDwarf.cpp | 226 case MCCFIInstruction::OpOffset: in emitCFIInstruction()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CFIInstrInserter.cpp | 213 case MCCFIInstruction::OpOffset: in calculateOutgoingCFAInfo()
|
| H A D | MachineOperand.cpp | 692 case MCCFIInstruction::OpOffset: in printCFI()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinker.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFLinker.cpp | 1164 uint64_t OpOffset = 0; in cloneExpression() local 1178 assert(OpOffset < Op.getEndOffset()); in cloneExpression() 1179 uint32_t ULEBsize = Op.getEndOffset() - OpOffset - 1; in cloneExpression() 1271 StringRef Bytes = Data.getData().slice(OpOffset, Op.getEndOffset()); in cloneExpression() 1274 OpOffset = Op.getEndOffset(); in cloneExpression()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVInstructionSelector.cpp | 1147 unsigned OpOffset = isa<GIntrinsic>(I) ? 1 : 0; in selectLoad() local 1148 Register Ptr = I.getOperand(1 + OpOffset).getReg(); in selectLoad() 1178 addMemoryOperands(I.getOperand(2 + OpOffset).getImm(), MIB); in selectLoad() 1187 unsigned OpOffset = isa<GIntrinsic>(I) ? 1 : 0; in selectStore() local 1188 Register StoreVal = I.getOperand(0 + OpOffset).getReg(); in selectStore() 1189 Register Ptr = I.getOperand(1 + OpOffset).getReg(); in selectStore() 1228 addMemoryOperands(I.getOperand(2 + OpOffset).getImm(), MIB); in selectStore()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMAsmBackend.cpp | 1213 case MCCFIInstruction::OpOffset: // DW_CFA_offset in generateCompactUnwindEncoding()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86AsmBackend.cpp | 1405 case MCCFIInstruction::OpOffset: { in generateCompactUnwindEncoding()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeIntegerTypes.cpp | 2655 unsigned OpOffset = IsStrict ? 1 : 0; in PromoteIntOp_ExpOp() local 2671 NewOps[1 + OpOffset] = SExtPromotedInteger(N->getOperand(1 + OpOffset)); in PromoteIntOp_ExpOp() 2683 N->getOperand(1 + OpOffset).getValueType().getSizeInBits() && in PromoteIntOp_ExpOp() 2687 SDValue Ops[2] = {N->getOperand(0 + OpOffset), N->getOperand(1 + OpOffset)}; in PromoteIntOp_ExpOp()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 1447 case MCCFIInstruction::OpOffset: in emitCFIInstruction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrInfo.cpp | 2837 unsigned OpOffset = X86II::isKMasked(Desc.TSFlags) ? 1 : 0; in findCommutedOpIndices() local 2841 unsigned Imm = MI.getOperand(3 + OpOffset).getImm() & 0x7; in findCommutedOpIndices() 2858 return fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, 1 + OpOffset, in findCommutedOpIndices() 2859 2 + OpOffset); in findCommutedOpIndices()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 15198 unsigned OpOffset = Slct.getOpcode() == RISCVISD::SELECT_CC ? 2 : 0; in combineSelectAndUse() local 15199 SDValue TrueVal = Slct.getOperand(1 + OpOffset); in combineSelectAndUse() 15200 SDValue FalseVal = Slct.getOperand(2 + OpOffset); in combineSelectAndUse()
|