Searched defs:OpCode (Results 1 - 25 of 44) sorted by relevance

12

/external/llvm/bindings/python/llvm/tests/
H A Dtest_bitreader.py2 from ..core import OpCode namespace
H A Dtest_core.py7 from ..core import OpCode namespace
117 inst_list = [('arg1', OpCode.ExtractValue),
118 ('arg2', OpCode.ExtractValue),
119 ('', OpCode.Call),
120 ('', OpCode.Ret)]
/external/llvm/bindings/python/llvm/
H A Dbit_reader.py8 from .core import OpCode namespace
H A Dcore.py24 "OpCode",
82 class OpCode(LLVMEnumeration): class in inherits:LLVMEnumeration
83 """Represents an individual OpCode enumeration."""
88 super(OpCode, self).__init__(name, value)
417 return OpCode.from_value(lib.LLVMGetInstructionOpcode(self))
594 (OpCode, enumerations.OpCodes),
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVOpCode.h58 inline bool isAtomicOpCode(Op OpCode) { argument
60 return ((unsigned)OpCode >= OpAtomicLoad
61 && (unsigned)OpCode <= OpAtomicXor)
62 || OpCode == OpAtomicFlagTestAndSet
63 || OpCode == OpAtomicFlagClear;
65 inline bool isBinaryOpCode(Op OpCode) { argument
66 return ((unsigned)OpCode >= OpIAdd &&
67 (unsigned)OpCode <= OpFMod) ||
68 OpCode == OpDot;
71 inline bool isShiftOpCode(Op OpCode) { argument
76 isLogicalOpCode(Op OpCode) argument
81 isBitwiseOpCode(Op OpCode) argument
86 isBinaryShiftLogicalBitwiseOpCode(Op OpCode) argument
92 isCmpOpCode(Op OpCode) argument
98 isCvtOpCode(Op OpCode) argument
105 isCvtToUnsignedOpCode(Op OpCode) argument
111 isCvtFromUnsignedOpCode(Op OpCode) argument
117 isOpaqueGenericTypeOpCode(Op OpCode) argument
122 isGenericNegateOpCode(Op OpCode) argument
128 isAccessChainOpCode(Op OpCode) argument
133 hasExecScope(Op OpCode) argument
141 hasGroupOperation(Op OpCode) argument
146 isGroupOpCode(Op OpCode) argument
151 isPipeOpCode(Op OpCode) argument
155 isTypeOpCode(Op OpCode) argument
160 isConstantOpCode(Op OpCode) argument
167 isModuleScopeAllowedOpCode(Op OpCode) argument
[all...]
H A DSPIRVStream.cpp87 :IS(InputStream), M(*F.getModule()), WordCount(0), OpCode(OpNop),
91 :IS(InputStream), M(*BB.getModule()), WordCount(0), OpCode(OpNop),
194 OpCode = OpNop;
196 WordCount << " " << OpCode << '\n'); local
205 OpCode = OpNop;
207 WordCount << " " << OpCode << '\n'); local
210 *this >> OpCode;
216 OpCode = static_cast<Op>(WordCountAndOpCode & 0xFFFF);
223 OpCode = OpNop;
225 WordCount << " " << OpCode << '\ local
[all...]
H A DSPIRVStream.h70 :IS(InputStream), M(Module), WordCount(0), OpCode(OpNop),
83 Op OpCode; member in class:SPIRV::SPIRVDecoder
H A DSPIRVEnum.h60 mkWord(unsigned WordCount, Op OpCode) { argument
61 return (WordCount << 16) | OpCode;
H A DSPIRVEntry.cpp66 SPIRVEntry::create(Op OpCode) { argument
86 OpToFactoryMapTy::const_iterator Loc = OpToFactoryMap.find(OpCode);
90 SPIRVDBG(spvdbgs() << "No factory for OpCode " << (unsigned)OpCode << '\n';)
192 getEncoder(O) << WordCount << OpCode; local
196 getEncoder(O) << mkWord(WordCount, OpCode);
338 if (OpCode == OpFunction)
368 return OpCode == OpFunction || OpCode == OpVariable;
507 assert(OpCode
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp80 unsigned OpCode = CE->getOpcode(); local
81 switch (OpCode) {
105 Builder.CreateBinOp((Instruction::BinaryOps)OpCode,
121 Builder.CreateCast((Instruction::CastOps)OpCode,
H A DXCoreRegisterInfo.cpp169 unsigned OpCode = MI.getOpcode(); local
172 if (OpCode==XCore::STWFI) {
182 switch (OpCode) {
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstruction.cpp96 const char *Instruction::getOpcodeName(unsigned OpCode) { argument
97 switch (OpCode) {
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXISelDAGToDAG.cpp110 int OpCode; local
119 OpCode = PTX::READPARAMPRED;
121 OpCode = PTX::READPARAMI16;
123 OpCode = PTX::READPARAMI32;
125 OpCode = PTX::READPARAMI64;
127 OpCode = PTX::READPARAMF32;
130 OpCode = PTX::READPARAMF64;
138 return CurDAG->getMachineNode(OpCode, dl, VT, Ops, 4);
146 int OpCode; local
157 OpCode
[all...]
/external/llvm/include/llvm/IR/
H A DInstruction.h111 static const char* getOpcodeName(unsigned OpCode);
113 static inline bool isTerminator(unsigned OpCode) { argument
114 return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
136 /// Determine if the OpCode is one of the CastInst instructions.
137 static inline bool isCast(unsigned OpCode) { argument
138 return OpCode >= CastOpsBegin && OpCode < CastOpsEnd;
141 /// Determine if the OpCode is one of the FuncletPadInst instructions.
142 static inline bool isFuncletPad(unsigned OpCode) { argument
[all...]
/external/llvm/lib/IR/
H A DInstruction.cpp258 const char *Instruction::getOpcodeName(unsigned OpCode) { argument
259 switch (OpCode) {
/external/skia/tools/
H A Dremote_demo.cpp44 enum class OpCode : int32_t { class in inherits:int32_t
54 Op(OpCode opCode, SkFontID typefaceId, const SkScalerContextRec& rec)
58 const OpCode opCode;
82 Op* op = this->createOp(OpCode::kFontMetrics, tf, rec);
92 Op* op = this->createOp(OpCode::kGlyphMetrics, tf, rec);
104 Op* op = this->createOp(OpCode::kGlyphImage, tf, rec);
116 Op* op = this->createOp(OpCode::kGlyphMetricsAndImage, tf, rec);
129 Op* op = this->createOp(OpCode::kGlyphPath, tf, rec);
138 Op* createOp(OpCode opCode, const SkTypefaceProxy& tf,
283 case OpCode
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/
H A DInstruction.h90 static const char* getOpcodeName(unsigned OpCode);
92 static inline bool isTerminator(unsigned OpCode) { argument
93 return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
116 /// @brief Determine if the OpCode is one of the CastInst instructions.
117 static inline bool isCast(unsigned OpCode) { argument
118 return OpCode >= CastOpsBegin && OpCode < CastOpsEnd;
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DInstruction.h120 static const char* getOpcodeName(unsigned OpCode);
122 static inline bool isTerminator(unsigned OpCode) { argument
123 return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
150 /// Determine if the OpCode is one of the CastInst instructions.
151 static inline bool isCast(unsigned OpCode) { argument
152 return OpCode >= CastOpsBegin && OpCode < CastOpsEnd;
155 /// Determine if the OpCode is one of the FuncletPadInst instructions.
156 static inline bool isFuncletPad(unsigned OpCode) { argument
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp749 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL; local
808 BuildMI(MBB, MI, dl, get(OpCode), DestReg)
/external/spirv-llvm/lib/SPIRV/
H A DOCLUtil.cpp291 getOCLOpaqueTypeAddrSpace(Op OpCode) { argument
292 switch (OpCode) {
/external/syslinux/com32/lua/src/
H A Dlopcodes.h89 #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0)))
225 } OpCode; typedef in typeref:enum:__anon23744
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h259 BinaryAnnotationsOpCode OpCode; member in struct:llvm::codeview::BinaryAnnotationIterator::AnnotationData
362 Result.OpCode = static_cast<BinaryAnnotationsOpCode>(Op);
363 switch (Result.OpCode) {
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp967 unsigned OpCode = (RISBG.Mask == 0xff ? SystemZ::LLGCR : SystemZ::LLGHR); local
970 OpCode = (RISBG.Mask == 0xff ? SystemZ::LLCRMux : SystemZ::LLHRMux);
972 OpCode = (RISBG.Mask == 0xff ? SystemZ::LLCR : SystemZ::LLHR);
977 DL, VT, SDValue(CurDAG->getMachineNode(OpCode, DL, VT, In), 0));
/external/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1084 unsigned OpCode = MI.getOperand(0).getImm(); local
1086 Ret.setOpcode(OpCode);
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DNanoWSD.java53 import fi.iki.elonen.NanoWSD.WebSocketFrame.OpCode;
71 private WebSocketFrame.OpCode continuousOpCode = null;
191 if (frame.getOpCode() != OpCode.Continuation) {
218 if (frame.getOpCode() == OpCode.Close) {
220 } else if (frame.getOpCode() == OpCode.Ping) {
221 sendFrame(new WebSocketFrame(OpCode.Pong, true, frame.getBinaryPayload()));
222 } else if (frame.getOpCode() == OpCode.Pong) {
224 } else if (!frame.isFin() || frame.getOpCode() == OpCode.Continuation) {
228 } else if (frame.getOpCode() == OpCode.Text || frame.getOpCode() == OpCode
384 public static enum OpCode { enum in class:NanoWSD.WebSocketFrame
403 private OpCode(int code) { method in class:NanoWSD.WebSocketFrame.OpCode
[all...]

Completed in 1319 milliseconds

12