| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| D | PostfixExpression.h | 53 enum OpType { enum 59 BinaryOpNode(OpType op_type, Node &left, Node &right) in BinaryOpNode() 62 OpType GetOpType() const { return m_op_type; } in GetOpType() 73 OpType m_op_type; 134 enum OpType { enum 138 UnaryOpNode(OpType op_type, Node &operand) in UnaryOpNode() 141 OpType GetOpType() const { return m_op_type; } in GetOpType() 149 OpType m_op_type;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ |
| D | AddressSanitizerCommon.h | 29 Type *OpType; variable 36 class Type *OpType, MaybeAlign Alignment, 38 : IsWrite(IsWrite), OpType(OpType), Alignment(Alignment), in IsWrite() 41 TypeSize = DL.getTypeStoreSizeInBits(OpType); in IsWrite()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/ |
| D | AsmWriterInst.h | 27 enum OpType { enum 54 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {} in OperandType() 57 OpType op = isLiteralTextOperand) 62 OpType op = isMachineInstrOperand, bool PCRel = false)
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/M68k/Disassembler/ |
| D | M68kDisassembler.cpp | 496 SmallVector<OperandType, 6> OpType(NumOperands, OperandType::Invalid); in getInstruction() local 530 assert(((OpType[MIOpIdx] == OperandType::Invalid) || in getInstruction() 531 (OpType[MIOpIdx] == OperandType::Reg)) && in getInstruction() 533 OpType[MIOpIdx] = OperandType::Reg; in getInstruction() 543 assert(((OpType[MIOpIdx] == OperandType::Invalid) || in getInstruction() 544 (OpType[MIOpIdx] == OperandType::Imm)) && in getInstruction() 546 OpType[MIOpIdx] = OperandType::Imm; in getInstruction() 575 assert(OpType[DstMIOpIdx + I] == OperandType::Invalid && in getInstruction() 577 OpType[DstMIOpIdx + I] = OpType[SrcMIOpIdx + I]; in getInstruction() 584 switch (OpType[O]) { in getInstruction()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/ |
| D | EvalEmitter.cpp | 98 template <PrimType OpType> bool EvalEmitter::emitRet(const SourceInfo &Info) { in emitRet() 101 using T = typename PrimConv<OpType>::T; in emitRet() 206 template <PrimType OpType> 211 using T = typename PrimConv<OpType>::T; in emitGetLocal() 220 template <PrimType OpType> 225 using T = typename PrimConv<OpType>::T; in emitSetLocal()
|
| /freebsd-12-stable/sys/contrib/dev/acpica/components/dispatcher/ |
| D | dswexec.c | 505 UINT32 OpType; in AcpiDsExecEndOp() local 518 OpType = WalkState->OpInfo->Type; in AcpiDsExecEndOp() 590 Status = AcpiGbl_OpTypeDispatch[OpType] (WalkState); in AcpiDsExecEndOp() 634 switch (OpType) in AcpiDsExecEndOp() 864 OpClass, OpType, Op->Common.AmlOpcode, Op)); in AcpiDsExecEndOp()
|
| /freebsd-12-stable/sys/contrib/dev/acpica/components/parser/ |
| D | psopinfo.c | 312 UINT32 OpType) in AcpiPsGetArgumentCount() argument 315 if (OpType <= AML_TYPE_EXEC_6A_0T_1R) in AcpiPsGetArgumentCount() 317 return (AcpiGbl_ArgumentCount[OpType]); in AcpiPsGetArgumentCount()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/ |
| D | MCDwarf.h | 436 enum OpType { enum 457 OpType Operation; 468 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V, 475 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2) in MCCFIInstruction() 480 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, unsigned AS) in MCCFIInstruction() 597 OpType getOperation() const { return Operation; } in getOperation()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/ |
| D | PostfixExpression.cpp | 22 static llvm::Optional<BinaryOpNode::OpType> 37 static llvm::Optional<UnaryOpNode::OpType>
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | SIRegisterInfo.h | 215 bool opCanUseLiteralConstant(unsigned OpType) const; 220 bool opCanUseInlineConstant(unsigned OpType) const;
|
| D | AMDGPUPrintfRuntimeBinding.cpp | 64 bool shouldPrintAsStr(char Specifier, Type *OpType) const; 134 Type *OpType) const { in shouldPrintAsStr() 137 const PointerType *PT = dyn_cast<PointerType>(OpType); in shouldPrintAsStr()
|
| D | SIRegisterInfo.cpp | 2240 bool SIRegisterInfo::opCanUseInlineConstant(unsigned OpType) const { in opCanUseInlineConstant() 2241 if (OpType >= AMDGPU::OPERAND_REG_INLINE_AC_FIRST && in opCanUseInlineConstant() 2242 OpType <= AMDGPU::OPERAND_REG_INLINE_AC_LAST) in opCanUseInlineConstant() 2245 return OpType >= AMDGPU::OPERAND_SRC_FIRST && in opCanUseInlineConstant() 2246 OpType <= AMDGPU::OPERAND_SRC_LAST; in opCanUseInlineConstant() 2273 bool SIRegisterInfo::opCanUseLiteralConstant(unsigned OpType) const { in opCanUseLiteralConstant() 2275 return OpType >= AMDGPU::OPERAND_REG_IMM_FIRST && in opCanUseLiteralConstant() 2276 OpType <= AMDGPU::OPERAND_REG_IMM_LAST; in opCanUseLiteralConstant()
|
| D | SIInstrInfo.h | 798 uint8_t OpType = (Size == 8) ? in isInlineConstant() local 800 return isInlineConstant(MO, OpType); in isInlineConstant()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| D | AMDGPUBaseInfo.cpp | 1565 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSISrcOperand() local 1566 return OpType >= AMDGPU::OPERAND_SRC_FIRST && in isSISrcOperand() 1567 OpType <= AMDGPU::OPERAND_SRC_LAST; in isSISrcOperand() 1572 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSISrcFPOperand() local 1573 switch (OpType) { in isSISrcFPOperand() 1599 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSISrcInlinableOperand() local 1600 return OpType >= AMDGPU::OPERAND_REG_INLINE_C_FIRST && in isSISrcInlinableOperand() 1601 OpType <= AMDGPU::OPERAND_REG_INLINE_C_LAST; in isSISrcInlinableOperand()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | MatrixBuilder.h | 116 auto *OpType = cast<VectorType>(Matrix->getType()); variable 118 FixedVectorType::get(OpType->getElementType(), Rows * Columns);
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| D | SystemZInstrFormats.td | 35 // counterpart. OpKey uniquely identifies <INSN>R, while OpType is 38 string OpType = "none"; 143 let ColFields = ["OpType"]; 2598 let OpType = "mem"; 2610 let OpType = "mem"; 2882 let OpType = "reg"; 2891 let OpType = "reg"; 2950 let OpType = "mem"; 2999 let OpType = "mem"; 3010 let OpType = "mem"; [all …]
|
| /freebsd-12-stable/sys/contrib/dev/acpica/include/ |
| D | acparser.h | 292 UINT32 OpType);
|
| D | acdebug.h | 208 UINT32 OpType))
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | StackMaps.h | 286 using OpType = enum { DirectMemRefOp, IndirectMemRefOp, ConstantOp };
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| D | RISCVInstrInfo.cpp | 859 unsigned OpType = OI.value().OperandType; in verifyInstruction() local 860 if (OpType >= RISCVOp::OPERAND_FIRST_RISCV_IMM && in verifyInstruction() 861 OpType <= RISCVOp::OPERAND_LAST_RISCV_IMM) { in verifyInstruction() 866 switch (OpType) { in verifyInstruction()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| D | HexagonInstrInfo.h | 360 bool isExpr(unsigned OpType) const;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| D | InstCombineCompares.cpp | 6284 Type *OpType = Op0->getType(); in visitFCmpInst() local 6285 assert(OpType == Op1->getType() && "fcmp with different-typed operands?"); in visitFCmpInst() 6295 I.setOperand(1, Constant::getNullValue(OpType)); in visitFCmpInst() 6304 I.setOperand(1, Constant::getNullValue(OpType)); in visitFCmpInst() 6313 return replaceOperand(I, 0, ConstantFP::getNullValue(OpType)); in visitFCmpInst() 6316 return replaceOperand(I, 1, ConstantFP::getNullValue(OpType)); in visitFCmpInst() 6342 return replaceOperand(I, 1, ConstantFP::getNullValue(OpType)); in visitFCmpInst() 6424 if (auto *VecTy = dyn_cast<VectorType>(OpType)) in visitFCmpInst()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | ScalarEvolutionExpander.cpp | 2278 Type *OpType = S->getOperand(0)->getType(); in costAndCollectOperands() local 2280 Opcode, OpType, CmpInst::makeCmpResultType(OpType), in costAndCollectOperands()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| D | MemorySanitizer.cpp | 2737 Type *OpType = Op->getType(); in handleBswap() local 2739 F.getParent(), Intrinsic::bswap, makeArrayRef(&OpType, 1)); in handleBswap() 4049 Type *OpType = Operand->getType(); in instrumentAsmArgument() local 4052 if (!OpType->isPointerTy() || !isOutput) { in instrumentAsmArgument() 4056 Type *ElType = OpType->getPointerElementType(); in instrumentAsmArgument()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| D | CombinerHelper.cpp | 200 LLT OpType = MRI.getType(Reg); in matchCombineConcatVectors() local 204 Undef = Builder.buildUndef(OpType.getScalarType()); in matchCombineConcatVectors() 207 OpType.getScalarType() && in matchCombineConcatVectors() 211 for (unsigned EltIdx = 0, EltEnd = OpType.getNumElements(); in matchCombineConcatVectors()
|