Searched refs:OpType (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerCommon.h26 Type *OpType; member in class:llvm::InterestingMemoryOperand
33 class Type *OpType, MaybeAlign Alignment,
35 : IsWrite(IsWrite), OpType(OpType), Alignment(Alignment),
38 TypeSize = DL.getTypeStoreSizeInBits(OpType);
32 InterestingMemoryOperand(Instruction *I, unsigned OperandNo, bool IsWrite, class Type *OpType, MaybeAlign Alignment, Value *MaybeMask = nullptr) argument
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterInst.h27 enum OpType { enum in struct:llvm::AsmWriterOperand
54 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
57 OpType op = isLiteralTextOperand)
62 OpType op = isMachineInstrOperand, bool PCRel = false)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DPostfixExpression.h53 enum OpType { enum in class:lldb_private::postfix::BinaryOpNode
59 BinaryOpNode(OpType op_type, Node &left, Node &right)
62 OpType GetOpType() const { return m_op_type; }
73 OpType m_op_type;
134 enum OpType { enum in class:lldb_private::postfix::UnaryOpNode
138 UnaryOpNode(OpType op_type, Node &operand)
141 OpType GetOpType() const { return m_op_type; }
149 OpType m_op_type;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DEvalEmitter.cpp98 template <PrimType OpType> bool EvalEmitter::emitRet(const SourceInfo &Info) {
101 using T = typename PrimConv<OpType>::T;
206 template <PrimType OpType>
211 using T = typename PrimConv<OpType>::T;
220 template <PrimType OpType>
225 using T = typename PrimConv<OpType>::T;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.h201 bool opCanUseLiteralConstant(unsigned OpType) const {
203 return OpType >= AMDGPU::OPERAND_REG_IMM_FIRST &&
204 OpType <= AMDGPU::OPERAND_REG_IMM_LAST;
210 bool opCanUseInlineConstant(unsigned OpType) const;
H A DAMDGPUPrintfRuntimeBinding.cpp60 bool shouldPrintAsStr(char Specifier, Type *OpType) const;
136 Type *OpType) const {
139 const PointerType *PT = dyn_cast<PointerType>(OpType);
H A DSIRegisterInfo.cpp1668 bool SIRegisterInfo::opCanUseInlineConstant(unsigned OpType) const {
1669 if (OpType >= AMDGPU::OPERAND_REG_INLINE_AC_FIRST &&
1670 OpType <= AMDGPU::OPERAND_REG_INLINE_AC_LAST)
1673 return OpType >= AMDGPU::OPERAND_SRC_FIRST &&
1674 OpType <= AMDGPU::OPERAND_SRC_LAST;
H A DSIInstrInfo.h747 uint8_t OpType = (Size == 8) ? local
749 return isInlineConstant(MO, OpType);
/freebsd-13-stable/sys/contrib/dev/acpica/components/parser/
H A Dpsopinfo.c302 * PARAMETERS: OpType - Type associated with the AML opcode
312 UINT32 OpType)
315 if (OpType <= AML_TYPE_EXEC_6A_0T_1R)
317 return (AcpiGbl_ArgumentCount[OpType]);
311 AcpiPsGetArgumentCount( UINT32 OpType) argument
/freebsd-13-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddswexec.c505 UINT32 OpType; local
518 OpType = WalkState->OpInfo->Type;
590 Status = AcpiGbl_OpTypeDispatch[OpType] (WalkState);
634 switch (OpType)
864 OpClass, OpType, Op->Common.AmlOpcode, Op));
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DPostfixExpression.cpp22 static llvm::Optional<BinaryOpNode::OpType>
37 static llvm::Optional<UnaryOpNode::OpType>
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h442 enum OpType { enum in class:llvm::MCCFIInstruction
462 OpType Operation;
472 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V,
479 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
585 OpType getOperation() const { return Operation; }
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dacdebug.h210 UINT32 OpType))
H A Dacparser.h292 UINT32 OpType);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h111 auto *OpType = cast<VectorType>(Matrix->getType()); local
113 FixedVectorType::get(OpType->getElementType(), Rows * Columns);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp1083 unsigned OpType = Desc.OpInfo[OpNo].OperandType;
1084 return OpType >= AMDGPU::OPERAND_SRC_FIRST &&
1085 OpType <= AMDGPU::OPERAND_SRC_LAST;
1090 unsigned OpType = Desc.OpInfo[OpNo].OperandType;
1091 switch (OpType) {
1114 unsigned OpType = Desc.OpInfo[OpNo].OperandType;
1115 return OpType >= AMDGPU::OPERAND_REG_INLINE_C_FIRST &&
1116 OpType <= AMDGPU::OPERAND_REG_INLINE_C_LAST;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DStackMaps.h257 using OpType = enum { DirectMemRefOp, IndirectMemRefOp, ConstantOp };
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp532 unsigned OpType = OI.value().OperandType; local
533 if (OpType >= RISCVOp::OPERAND_FIRST_RISCV_IMM &&
534 OpType <= RISCVOp::OPERAND_LAST_RISCV_IMM) {
539 switch (OpType) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp2225 Type *OpType = NAry->getType(); local
2231 TTI.getArithmeticInstrCost(Instruction::Add, OpType, CostKind);
2233 TTI.getArithmeticInstrCost(Instruction::Mul, OpType, CostKind);
2282 Type *OpType = NAry->getType(); local
2288 TTI.getArithmeticInstrCost(Instruction::Add, OpType, CostKind);
2295 TTI.getArithmeticInstrCost(Instruction::Mul, OpType, CostKind);
2301 PairCost = TTI.getCmpSelInstrCost(Instruction::ICmp, OpType,
2302 CmpInst::makeCmpResultType(OpType),
2304 TTI.getCmpSelInstrCost(Instruction::Select, OpType,
2305 CmpInst::makeCmpResultType(OpType),
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h360 bool isExpr(unsigned OpType) const;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp124 LLT OpType = MRI.getType(Reg); local
128 Undef = Builder.buildUndef(OpType.getScalarType());
131 OpType.getScalarType() &&
135 for (unsigned EltIdx = 0, EltEnd = OpType.getNumElements();
H A DLegalizerHelper.cpp521 Type *OpType) {
526 Args.push_back({MI.getOperand(i).getReg(), OpType});
527 return createLibcall(MIRBuilder, Libcall, {MI.getOperand(0).getReg(), OpType},
520 simpleLibcall(MachineInstr &MI, MachineIRBuilder &MIRBuilder, unsigned Size, Type *OpType) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp6117 Type *OpType = Op0->getType();
6118 assert(OpType == Op1->getType() && "fcmp with different-typed operands?");
6128 I.setOperand(1, Constant::getNullValue(OpType));
6137 I.setOperand(1, Constant::getNullValue(OpType));
6146 return replaceOperand(I, 0, ConstantFP::getNullValue(OpType));
6149 return replaceOperand(I, 1, ConstantFP::getNullValue(OpType));
6175 return replaceOperand(I, 1, ConstantFP::getNullValue(OpType));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2616 Type *OpType = Op->getType();
2618 F.getParent(), Intrinsic::bswap, makeArrayRef(&OpType, 1));
3820 Type *OpType = Operand->getType();
3823 if (!OpType->isPointerTy() || !isOutput) {
3827 Type *ElType = OpType->getPointerElementType();
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1874 QualType OpType) {
1879 if (Ctx.hasSameUnqualifiedType(Field->getType(), OpType) &&
1873 getTargetFieldForToUnionCast(const RecordDecl *RD, QualType OpType) argument

Completed in 333 milliseconds

12