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

1 2 3 4 56 7 8 91011

  /dalvik/vm/compiler/codegen/arm/armv7-a-neon/
MethodCodegenDriver.cpp 123 Opcode dalvikOpcode = mir->dalvikInsn.opcode;
140 Opcode dalvikOpcode = mir->dalvikInsn.opcode;
250 labelList[blockId].opcode = kArmPseudoNormalBlockLabel;
281 Opcode dalvikOpcode = mir->dalvikInsn.opcode;
403 LOGE("%#06x: Opcode %#x (%s) / Fmt %d not handled",
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 403 SVal evalBinOp(const ProgramState *state, BinaryOperator::Opcode op,
408 SVal evalBinOp(const ProgramState *state, BinaryOperator::Opcode op,
413 SVal evalBinOp(const ProgramState *ST, BinaryOperator::Opcode Op,
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 28 static void print(raw_ostream &os, BinaryOperator::Opcode Op) {
178 BinaryOperator::Opcode op,
196 BinaryOperator::Opcode op,
SVals.cpp 224 BinaryOperator::Opcode Op,
250 BinaryOperator::Opcode Op,
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 594 static int Lookup(const TableEntry *Table, unsigned N, unsigned Opcode) {
595 const TableEntry *I = std::lower_bound(Table, Table+N, Opcode);
596 if (I != Table+N && I->from == Opcode)
784 static unsigned getConcreteOpcode(unsigned Opcode) {
786 int Opc = Lookup(OpcodeTable, array_lengthof(OpcodeTable), Opcode);
837 int Opcode = Lookup(PopTable, array_lengthof(PopTable), I->getOpcode());
838 if (Opcode != -1) {
839 I->setDesc(TII->get(Opcode));
840 if (Opcode == X86::UCOM_FPPr)
    [all...]
  /external/llvm/lib/Transforms/Utils/
AddrModeMatcher.cpp 153 bool AddressingModeMatcher::MatchOperationAddr(User *AddrInst, unsigned Opcode,
158 switch (Opcode) {
210 if (Opcode == Instruction::Shl)
  /external/v8/src/
deoptimizer.h 457 enum Opcode {
495 static int NumberOfOperandsFor(Opcode opcode);
498 static const char* StringFor(Opcode opcode);
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp     [all...]
  /external/javassist/src/main/javassist/
CtMethod.java 230 return it.hasNext() && it.byteAt(it.next()) == Opcode.RETURN
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 146 Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
ScalarEvolutionExpander.h 169 Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS);
  /external/llvm/lib/CodeGen/
ScoreboardHazardRecognizer.cpp 178 if (DAG->TII->isZeroCost(MCID->Opcode))
MachineLICM.cpp 97 // For each opcode, keep a list of potential CSE instructions.
    [all...]
MachineSSAUpdater.cpp 112 MachineInstr *InsertNewDef(unsigned Opcode,
118 return BuildMI(*BB, I, DebugLoc(), TII->get(Opcode), NewVR);
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.h 107 virtual const char *getTargetNodeName(unsigned Opcode) const;
  /external/llvm/lib/Target/MBlaze/
MBlazeISelLowering.h 102 virtual const char *getTargetNodeName(unsigned Opcode) const;
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 83 virtual const char *getTargetNodeName(unsigned Opcode) const;
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 108 virtual const char *getTargetNodeName(unsigned Opcode) const;
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 67 virtual const char *getTargetNodeName(unsigned Opcode) const;
  /external/llvm/lib/VMCore/
ConstantsContext.h 39 UnaryConstantExpr(unsigned Opcode, Constant *C, Type *Ty)
40 : ConstantExpr(Ty, Opcode, &Op<0>(), 1) {
55 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2,
57 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
309 : opcode(opc), subclassoptionaldata(optionalflags), subclassdata(flags),
311 uint8_t opcode; member in struct:llvm::ExprMapKeyType
317 return this->opcode == that.opcode &&
324 if (this->opcode != that.opcode) return this->opcode < that.opcode
    [all...]
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 94 /// getCallFrameSetup/DestroyOpcode - These methods return the opcode of the
474 /// getOpcodeAfterMemoryUnfold - Returns the opcode of the would be new
476 /// specified opcode. It returns zero if the specified unfolding is not
634 bool isZeroCost(unsigned Opcode) const {
635 return Opcode <= TargetOpcode::COPY;
661 /// isHighLatencyDef - Return true if this opcode has high latency to its
    [all...]
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 26 StringRef PPCInstPrinter::getOpcodeName(unsigned Opcode) const {
27 return getInstructionName(Opcode);
  /external/webkit/Source/WebCore/xml/
XPathGrammar.y 63 NumericOp::Opcode numop;
64 EqTestOp::Opcode eqop;
  /sdk/emulator/qtools/
thumbdis.cpp 31 * "decode()" function that maps a thumb instruction to an opcode enum.
42 #include "opcode.h"
48 Opcode opcode; member in struct:thumb_opcode
253 Opcode decode_insn_thumb(uint32_t given)
259 return insn->opcode;
  /external/llvm/include/llvm/Support/
PatternMatch.h 270 template<typename LHS_t, typename RHS_t, unsigned Opcode>
279 if (V->getValueID() == Value::InstructionVal + Opcode) {
284 return CE->getOpcode() == Opcode && L.match(CE->getOperand(0)) &&
524 template<typename Op_t, unsigned Opcode>
533 return I->getOpcode() == Opcode && Op.match(I->getOperand(0));
535 return CE->getOpcode() == Opcode && Op.match(CE->getOperand(0));

Completed in 600 milliseconds

1 2 3 4 56 7 8 91011