Home
last modified time | relevance | path

Searched refs:OpType (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
DPostfixExpression.h53 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/
DAddressSanitizerCommon.h29 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/
DAsmWriterInst.h27 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/
DM68kDisassembler.cpp496 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/
DEvalEmitter.cpp98 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/
Ddswexec.c505 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/
Dpsopinfo.c312 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/
DMCDwarf.h436 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/
DPostfixExpression.cpp22 static llvm::Optional<BinaryOpNode::OpType>
37 static llvm::Optional<UnaryOpNode::OpType>
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DSIRegisterInfo.h215 bool opCanUseLiteralConstant(unsigned OpType) const;
220 bool opCanUseInlineConstant(unsigned OpType) const;
DAMDGPUPrintfRuntimeBinding.cpp64 bool shouldPrintAsStr(char Specifier, Type *OpType) const;
134 Type *OpType) const { in shouldPrintAsStr()
137 const PointerType *PT = dyn_cast<PointerType>(OpType); in shouldPrintAsStr()
DSIRegisterInfo.cpp2240 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()
DSIInstrInfo.h798 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/
DAMDGPUBaseInfo.cpp1565 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/
DMatrixBuilder.h116 auto *OpType = cast<VectorType>(Matrix->getType()); variable
118 FixedVectorType::get(OpType->getElementType(), Rows * Columns);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZInstrFormats.td35 // 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/
Dacparser.h292 UINT32 OpType);
Dacdebug.h208 UINT32 OpType))
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DStackMaps.h286 using OpType = enum { DirectMemRefOp, IndirectMemRefOp, ConstantOp };
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
DRISCVInstrInfo.cpp859 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/
DHexagonInstrInfo.h360 bool isExpr(unsigned OpType) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp6284 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/
DScalarEvolutionExpander.cpp2278 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/
DMemorySanitizer.cpp2737 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/
DCombinerHelper.cpp200 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()

12