/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | [all...] |
/external/llvm/lib/Target/Alpha/ |
AlphaISelLowering.cpp | 176 const char *AlphaTargetLowering::getTargetNodeName(unsigned Opcode) const { 177 switch (Opcode) { [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430ISelLowering.cpp | 603 assert(0 && "Invalid shift opcode!"); [all...] |
/external/llvm/lib/Target/Sparc/ |
SparcISelLowering.cpp | 810 const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const { 811 switch (Opcode) { [all...] |
/external/llvm/lib/Transforms/Scalar/ |
IndVarSimplify.cpp | [all...] |
/dalvik/libdex/ |
InstrUtils.cpp | 21 * automatically by the opcode-gen tool. Any edits to the generated 29 * Table that maps each opcode to the full width of instructions that 30 * use that opcode, in (16-bit) code units. Unimplemented opcodes as 31 * well as the "breakpoint" opcode have a width of zero. 34 // BEGIN(libdex-widths); GENERATED AUTOMATICALLY BY opcode-gen 71 * Table that maps each opcode to the flags associated with that 72 * opcode. 75 // BEGIN(libdex-flags); GENERATED AUTOMATICALLY BY opcode-gen 592 * Table that maps each opcode to the instruction format associated 593 * that opcode 887 Opcode opcode = dexOpcodeFromCodeUnit(inst); local [all...] |
/dalvik/vm/analysis/ |
DexVerify.cpp | 76 * - opcode of first instruction begins at index 0 104 Opcode opcode = dexOpcodeFromCodeUnit(*insns); local 105 if (opcode == OP_NEW_INSTANCE || opcode == OP_NEW_INSTANCE_JUMBO) 107 if (opcode == OP_MONITOR_ENTER) 230 * - opcode of first instruction begins at index 0 820 switch (decInsn.opcode) { [all...] |
CodeVerify.cpp | 461 Opcode opcode = dexOpcodeFromCodeUnit(*insns); local 462 if (opcode == OP_NEW_INSTANCE || opcode == OP_NEW_INSTANCE_JUMBO) 3258 Opcode opcode = dexOpcodeFromCodeUnit(*oldInsns); local [all...] |
/external/clang/lib/AST/ |
Expr.cpp | 595 /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it 597 const char *UnaryOperator::getOpcodeStr(Opcode Op) { 631 OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) { [all...] |
/external/javassist/src/main/javassist/bytecode/ |
Bytecode.java | 113 public class Bytecode extends ByteVector implements Cloneable, Opcode { 401 * Appends an 8bit opcode to the end of the bytecode sequence. [all...] |
CodeIterator.java | 34 public class CodeIterator implements Opcode { 174 * (not the operand following the current opcode). 733 * Calculates the index of the next opcode. 738 int opcode; local 740 opcode = code[index] & 0xff; 743 throw new BadBytecode("invalid opcode address"); 747 int len = opcodeLength[opcode]; 750 else if (opcode == WIDE) 757 if (opcode == LOOKUPSWITCH) { 761 else if (opcode == TABLESWITCH) 1413 int opcode(int op) { method in class:CodeIterator.If16 [all...] |
/external/javassist/src/main/javassist/compiler/ |
TypeChecker.java | 26 public class TypeChecker extends Visitor implements Opcode, TokenId { [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | 416 E->setOpcode((UnaryOperator::Opcode)Record[Idx++]); 541 E->setOpcode((BinaryOperator::Opcode)Record[Idx++]); [all...] |
/dalvik/dexdump/ |
DexDump.cpp | 716 switch (dexGetFormatFromOpcode(pDecInsn->opcode)) { 866 if (pDecInsn->opcode == OP_NOP) { 881 printf("|%04x: %s", insnIdx, dexGetOpcodeName(pDecInsn->opcode)); 889 switch (dexGetFormatFromOpcode(pDecInsn->opcode)) { 929 // The printed format varies a bit based on the actual opcode. 930 if (pDecInsn->opcode == OP_CONST_HIGH16) { 1102 Opcode opcode = dexOpcodeFromCodeUnit(instr); local [all...] |
/external/llvm/include/llvm/Target/ |
TargetLowering.h | 321 unsigned opc; // target opcode [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeIntegerTypes.cpp | 457 unsigned Opcode = N->getOpcode() == ISD::SADDO ? ISD::ADD : ISD::SUB; 458 SDValue Res = DAG.getNode(Opcode, dl, NVT, LHS, RHS); 620 unsigned Opcode = N->getOpcode() == ISD::UADDO ? ISD::ADD : ISD::SUB; 621 SDValue Res = DAG.getNode(Opcode, dl, NVT, LHS, RHS); [all...] |
SelectionDAGBuilder.cpp | [all...] |
/external/webkit/Source/JavaScriptCore/interpreter/ |
Interpreter.cpp | 531 bool Interpreter::isOpcode(Opcode opcode) 534 return opcode != HashTraits<Opcode>::emptyValue() 535 && !HashTraits<Opcode>::isDeletedValue(opcode) 536 && m_opcodeIDTable.contains(opcode); 538 return opcode >= 0 && opcode <= op_end; [all...] |
/external/clang/lib/Sema/ |
SemaExpr.cpp | [all...] |
SemaOverload.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | 858 BinaryOperator::Opcode Op = B->getOpcode(); [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm.mli | 186 module Opcode : sig 280 | Instruction of Opcode.t 667 val constexpr_opcode : llvalue -> Opcode.t [all...] |
/external/llvm/lib/Target/CellSPU/ |
SPUISelLowering.cpp | 475 SPUTargetLowering::getTargetNodeName(unsigned Opcode) const 505 std::map<unsigned, const char *>::iterator i = node_names.find(Opcode); [all...] |
/external/llvm/lib/VMCore/ |
Instructions.cpp | 2374 Instruction::CastOps opcode = local 2388 Instruction::CastOps opcode = local 2402 Instruction::CastOps opcode = local 2415 Instruction::CastOps opcode = local [all...] |
/external/v8/src/ |
objects.cc | 6386 Translation::Opcode opcode = local [all...] |