Searched defs:opcodeName (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecode/
H A DSamplingTool.cpp297 const char* opcodeName = opcodeNames[opcodeID]; local
303 fprintf(stdout, "%s:%s%-6lld %.3f%%\t%.3f%%\t | %-6lld %.3f%%\n", opcodeName, opcodePadding, count, percentOfVM, percentOfTotal, countInCTIFunctions, percentInCTIFunctions);
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.h968 EmitNodeMatcherCommon(const std::string &opcodeName, argument
974 : Matcher(isMorphNodeTo ? MorphNodeTo : EmitNode), OpcodeName(opcodeName),
1018 EmitNodeMatcher(const std::string &opcodeName, argument
1024 : EmitNodeMatcherCommon(opcodeName, vts, numvts, operands, numops, hasChain,
1041 MorphNodeToMatcher(const std::string &opcodeName, argument
1047 : EmitNodeMatcherCommon(opcodeName, vts, numvts, operands, numops, hasChain,
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DOpcode.java318 public static Opcode getOpcodeByName(String opcodeName) { argument
319 return opcodesByName.get(opcodeName.toLowerCase().hashCode());
332 Opcode(byte opcodeValue, String opcodeName, ReferenceType referenceType, Format format) { argument
333 this(opcodeValue, opcodeName, referenceType, format, 0);
336 Opcode(byte opcodeValue, String opcodeName, ReferenceType referenceType, Format format, int flags) { argument
338 this.name = opcodeName;

Completed in 77 milliseconds