Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCWin64EH.h29 typedef Win64EH::UnwindOpcodes OpType; typedef
31 OpType Operation;
36 MCWin64EHInstruction(OpType Op, MCSymbol *L, unsigned Reg) in MCWin64EHInstruction()
43 MCWin64EHInstruction(OpType Op, MCSymbol *L, unsigned Reg, unsigned Off) in MCWin64EHInstruction()
51 MCWin64EHInstruction(OpType Op, MCSymbol *L, bool Code) in MCWin64EHInstruction()
55 OpType getOperation() const { return Operation; } in getOperation()
DMCDwarf.h232 enum OpType { SameValue, Remember, Restore, Move, RelMove }; enum
234 OpType Operation;
240 MCCFIInstruction(OpType Op, MCSymbol *L) in MCCFIInstruction()
244 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned Register) in MCCFIInstruction()
252 MCCFIInstruction(OpType Op, MCSymbol *L, const MachineLocation &D, in MCCFIInstruction()
257 OpType getOperation() const { return Operation; } in getOperation()
/external/swiftshader/third_party/LLVM/utils/TableGen/
DAsmWriterInst.h28 enum OpType { enum
57 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {} in OperandType()
60 OpType op = isLiteralTextOperand)
67 OpType op = isMachineInstrOperand)
/external/llvm/utils/TableGen/
DAsmWriterInst.h28 enum OpType { enum
53 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {} in OperandType()
56 OpType op = isLiteralTextOperand)
62 OpType op = isMachineInstrOperand)
/external/llvm/include/llvm/MC/
DMCDwarf.h327 enum OpType { enum
346 OpType Operation;
355 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V) in MCCFIInstruction()
361 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2) in MCCFIInstruction()
461 OpType getOperation() const { return Operation; } in getOperation()
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
DSIMCCodeEmitter.cpp80 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSrcOperand() local
82 return OpType == AMDGPU::OPERAND_REG_IMM32 || in isSrcOperand()
83 OpType == AMDGPU::OPERAND_REG_INLINE_C; in isSrcOperand()
/external/llvm/lib/Target/AMDGPU/
DSIRegisterInfo.h148 bool opCanUseLiteralConstant(unsigned OpType) const;
153 bool opCanUseInlineConstant(unsigned OpType) const;
DSIRegisterInfo.cpp894 bool SIRegisterInfo::opCanUseLiteralConstant(unsigned OpType) const { in opCanUseLiteralConstant()
895 return OpType == AMDGPU::OPERAND_REG_IMM32; in opCanUseLiteralConstant()
898 bool SIRegisterInfo::opCanUseInlineConstant(unsigned OpType) const { in opCanUseInlineConstant()
899 if (opCanUseLiteralConstant(OpType)) in opCanUseInlineConstant()
902 return OpType == AMDGPU::OPERAND_REG_INLINE_C; in opCanUseInlineConstant()
/external/skia/tools/debugger/
DSkDrawCommand.h25 enum OpType { enum
72 SkDrawCommand(OpType opType);
111 OpType getType() const { return fOpType; } in getType()
123 static const char* GetCommandString(OpType type);
150 OpType fOpType;
DSkDrawCommand.cpp195 SkDrawCommand::SkDrawCommand(OpType type) in SkDrawCommand()
204 const char* SkDrawCommand::GetCommandString(OpType type) { in GetCommandString()
/external/llvm/lib/Target/SystemZ/
DSystemZInstrFormats.td32 // counterpart. OpKey uniquely identifies <INSN>, while OpType is
35 string OpType = "none";
124 let ColFields = ["OpType"];
1113 let OpType = "mem";
1125 let OpType = "mem";
1274 let OpType = "reg";
1283 let OpType = "reg";
1291 let OpType = "reg";
1441 let OpType = "mem";
1452 let OpType = "mem";
[all …]
/external/skia/debugger/
DSkDebugger.cpp83 overview->append(SkDrawCommand::GetCommandString((SkDrawCommand::OpType) i)); in getOverviewText()
/external/llvm/include/llvm/CodeGen/
DStackMaps.h163 typedef enum { DirectMemRefOp, IndirectMemRefOp, ConstantOp } OpType; typedef
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.h305 bool isExpr(unsigned OpType) const;
DHexagonInstrInfo.cpp2054 bool HexagonInstrInfo::isExpr(unsigned OpType) const { in isExpr()
2055 switch(OpType) { in isExpr()
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVType.h655 #define _SPIRV_OP(x) typedef SPIRVOpaqueGenericType<OpType##x> SPIRVType##x;
/external/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp1803 PointerType *OpType = cast<PointerType>(Operand->getType()); in visitGetElementPtrInst() local
1835 if (FindElementAtOffset(OpType, Offset.getSExtValue(), NewIndices)) { in visitGetElementPtrInst()
/external/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp2053 Type *OpType = Op->getType(); in handleBswap() local
2055 F.getParent(), Intrinsic::bswap, makeArrayRef(&OpType, 1)); in handleBswap()