HomeSort by relevance Sort by last modified time
    Searched refs:Opcode (Results 26 - 50 of 253) sorted by null

12 3 4 5 6 7 8 91011

  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 221 if ((Opcode.IFEQ <= op && op <= Opcode.IF_ACMPNE)
222 || op == Opcode.IFNULL || op == Opcode.IFNONNULL) {
227 else if (Opcode.GOTO <= op && op <= Opcode.LOOKUPSWITCH)
229 case Opcode.GOTO :
232 case Opcode.JSR :
235 case Opcode.RET :
238 case Opcode.TABLESWITCH :
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 198 uint32_t Opcode = mcInst.getOpcode();
205 if (Opcode != X86::BLENDPSrri && Opcode != X86::BLENDPDrri &&
206 Opcode != X86::PBLENDWrri && Opcode != X86::MPSADBWrri &&
207 Opcode != X86::DPPSrri && Opcode != X86::DPPDrri &&
208 Opcode != X86::INSERTPSrr && Opcode != X86::VBLENDPSYrri &&
209 Opcode != X86::VBLENDPSYrmi && Opcode != X86::VBLENDPDYrri &
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 36 #include "Opcode.h"
76 Opcode getOpcode(OpcodeID id)
85 OpcodeID getOpcodeID(Opcode opcode)
88 ASSERT(isOpcode(opcode));
89 return m_opcodeIDTable.get(opcode);
91 return opcode;
95 bool isOpcode(Opcode);
152 bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode (…)
    [all...]
  /external/javassist/src/main/javassist/
CtConstructor.java 161 return op0 == Opcode.RETURN // empty static initializer
162 || (op0 == Opcode.ALOAD_0
163 && it.byteAt(pos = it.next()) == Opcode.INVOKESPECIAL
167 && it.byteAt(it.next()) == Opcode.RETURN
384 iterator.writeByte(Opcode.POP, pos++); // this
385 iterator.writeByte(Opcode.NOP, pos);
386 iterator.writeByte(Opcode.NOP, pos + 1);
391 iterator.writeByte(it.is2byte() ? Opcode.POP2 : Opcode.POP,
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 48 /// getOpcodeName - Return the name of the specified opcode enum (e.g.
50 virtual StringRef getOpcodeName(unsigned Opcode) const;
MCExpr.h 230 enum Opcode {
238 Opcode Op;
241 MCUnaryExpr(Opcode _Op, const MCExpr *_Expr)
248 static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
268 Opcode getOpcode() const { return Op; }
284 enum Opcode {
310 Opcode Op;
313 MCBinaryExpr(Opcode _Op, const MCExpr *_LHS, const MCExpr *_RHS)
320 static const MCBinaryExpr *Create(Opcode Op, const MCExpr *LHS,
400 Opcode getOpcode() const { return Op;
    [all...]
MCInst.h 131 unsigned Opcode;
134 MCInst() : Opcode(0) {}
136 void setOpcode(unsigned Op) { Opcode = Op; }
138 unsigned getOpcode() const { return Opcode; }
  /external/llvm/lib/Target/MBlaze/InstPrinter/
MBlazeInstPrinter.h 32 static const char *getInstructionName(unsigned Opcode);
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 164 /// OperandAllocator - Pool allocation for machine-opcode SDNode operands.
509 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT);
510 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N);
511 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT, SDValue N1, SDValue N2);
512 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
514 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
516 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
519 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
521 SDValue getNode(unsigned Opcode, DebugLoc DL, EVT VT,
523 SDValue getNode(unsigned Opcode, DebugLoc DL
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 91 int Offset, unsigned Base, bool BaseKill, int Opcode,
102 int Opcode,
109 int Opcode, unsigned Size,
132 static int getLoadStoreMultipleOpcode(int Opcode, ARM_AM::AMSubMode Mode) {
133 switch (Opcode) {
134 default: llvm_unreachable("Unhandled opcode!");
213 AMSubMode getLoadStoreMultipleSubMode(int Opcode) {
214 switch (Opcode) {
215 default: llvm_unreachable("Unhandled opcode!");
292 int Opcode, ARMCC::CondCodes Pred
    [all...]
ARMCodeEmitter.cpp 280 unsigned Reloc = (MCID.Opcode == ARM::MOVi16 ?
354 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
413 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
863 unsigned Opcode = MI.getDesc().Opcode;
872 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
879 switch (Opcode) {
    [all...]
  /external/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.h 84 static const char *getInstructionName(unsigned Opcode);
87 virtual StringRef getOpcodeName(unsigned Opcode) const;
  /external/javassist/src/main/javassist/compiler/
Javac.java 31 import javassist.bytecode.Opcode;
238 if (op == Opcode.DRETURN)
239 value = Opcode.DCONST_0;
240 else if (op == Opcode.FRETURN)
241 value = Opcode.FCONST_0;
242 else if (op == Opcode.LRETURN)
243 value = Opcode.LCONST_0;
244 else if (op == Opcode.RETURN)
245 value = Opcode.NOP;
247 value = Opcode.ICONST_0
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 54 int Opcode = isU6 ? XCore::LDWSP_ru6 : XCore::LDWSP_lru6;
55 BuildMI(MBB, I, dl, TII.get(Opcode), DstReg)
69 int Opcode = isU6 ? XCore::STWSP_ru6 : XCore::STWSP_lru6;
70 BuildMI(MBB, I, dl, TII.get(Opcode))
127 int Opcode;
129 Opcode = (isU6) ? XCore::ENTSP_u6 : XCore::ENTSP_lu6;
134 Opcode = (isU6) ? XCore::EXTSP_u6 : XCore::EXTSP_lu6;
136 BuildMI(MBB, MBBI, dl, TII.get(Opcode)).addImm(FrameSize);
264 int Opcode = (isU6) ? XCore::RETSP_u6 : XCore::RETSP_lu6;
265 BuildMI(MBB, MBBI, dl, TII.get(Opcode)).addImm(FrameSize)
    [all...]
  /external/llvm/include/llvm/Analysis/
ConstantFolding.h 52 Constant *ConstantFoldInstOperands(unsigned Opcode, Type *DestTy,
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.h 73 /// GetInstrType - Classify the specified powerpc opcode according to its
75 PPCII::PPC970_Unit GetInstrType(unsigned Opcode,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 278 BinaryOperator::Opcode Op;
283 SymIntExpr(const SymExpr *lhs, BinaryOperator::Opcode op,
291 BinaryOperator::Opcode getOpcode() const { return Op; }
299 BinaryOperator::Opcode op, const llvm::APSInt& rhs,
321 BinaryOperator::Opcode Op;
326 SymSymExpr(const SymExpr *lhs, BinaryOperator::Opcode op, const SymExpr *rhs,
330 BinaryOperator::Opcode getOpcode() const { return Op; }
341 BinaryOperator::Opcode op, const SymExpr *rhs, QualType t) {
407 const SymIntExpr *getSymIntExpr(const SymExpr *lhs, BinaryOperator::Opcode op,
410 const SymIntExpr *getSymIntExpr(const SymExpr &lhs, BinaryOperator::Opcode op
    [all...]
SValBuilder.h 75 virtual SVal evalBinOpNN(const ProgramState *state, BinaryOperator::Opcode op,
78 virtual SVal evalBinOpLL(const ProgramState *state, BinaryOperator::Opcode op,
81 virtual SVal evalBinOpLN(const ProgramState *state, BinaryOperator::Opcode op,
88 SVal evalBinOp(const ProgramState *state, BinaryOperator::Opcode op,
220 NonLoc makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op,
223 NonLoc makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op,
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 15 import javassist.bytecode.Opcode;
74 int pos = findOpcode(info, Opcode.RETURN);
79 private static int findOpcode(MethodInfo info, int opcode) throws BadBytecode {
86 if (iter.byteAt(pos) == opcode)
101 if (iter.byteAt(pos) == Opcode.ARETURN)
121 if (iter.byteAt(pos) == Opcode.AALOAD)
142 private static void addJump(Bytecode code, int opcode, int pos) {
144 code.addOpcode(opcode);
204 /* 1 */ addJump(code, Opcode.GOTO, 5);
208 /* 9 */ code.addOpcode(Opcode.ARETURN)
    [all...]
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.h 36 virtual StringRef getOpcodeName(unsigned Opcode) const;
38 static const char *getInstructionName(unsigned Opcode);
  /external/javassist/src/main/javassist/expr/
FieldAccess.java 27 int opcode; field in class:FieldAccess
32 opcode = op;
64 return isStatic(opcode);
68 return c == Opcode.GETSTATIC || c == Opcode.PUTSTATIC;
75 return opcode == Opcode.GETFIELD || opcode == Opcode.GETSTATIC;
82 return opcode == Opcode.PUTFIELD || opcode == Opcode.PUTSTATIC
226 int opcode; field in class:FieldAccess.ProceedForRead
274 int opcode; field in class:FieldAccess.ProceedForWrite
    [all...]
NewExpr.java 142 if (op == Opcode.DUP)
144 else if (op == Opcode.DUP_X1
145 && iterator.byteAt(newPos + 4) == Opcode.SWAP)
  /external/llvm/include/llvm/
Instruction.h 90 static const char* getOpcodeName(unsigned OpCode);
92 static inline bool isTerminator(unsigned OpCode) {
93 return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
96 static inline bool isBinaryOp(unsigned Opcode) {
97 return Opcode >= BinaryOpsBegin && Opcode < BinaryOpsEnd;
100 /// @brief Determine if the Opcode is one of the shift instructions.
101 static inline bool isShift(unsigned Opcode) {
102 return Opcode >= Shl && Opcode <= AShr
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 190 unsigned Opcode = Node->getOpcode();
206 switch(Opcode) {
218 if (Opcode == ISD::ADDE) {
249 Op = (Opcode == ISD::UMUL_LOHI ? Mips::MULTu : Mips::MULT);
275 assert((Opcode == ISD::MUL || Node->getValueType(0) != MVT::i64) &&
281 unsigned MulOp = (Opcode == ISD::MULHU ?
289 if (Opcode == ISD::MUL) {
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 202 /// opcode and if it only has one use.
203 static BinaryOperator *isReassociableOp(Value *V, unsigned Opcode) {
205 cast<Instruction>(V)->getOpcode() == Opcode)
275 unsigned Opcode = I->getOpcode();
278 BinaryOperator *LHSBO = isReassociableOp(LHS, Opcode);
279 BinaryOperator *RHSBO = isReassociableOp(RHS, Opcode);
286 LHSBO = isReassociableOp(LHS, Opcode);
290 RHSBO = isReassociableOp(RHS, Opcode);
325 assert(!isReassociableOp(RHS, Opcode) && "LinearizeExpr failed!");
662 static Value *OptimizeAndOrXor(unsigned Opcode,
    [all...]

Completed in 568 milliseconds

12 3 4 5 6 7 8 91011