Home
last modified time | relevance | path

Searched refs:Opcode (Results 1 – 19 of 19) sorted by relevance

/external/webkit/WebCore/xml/
DXPathPredicate.h62 enum Opcode { enum
65 NumericOp(Opcode, Expression* lhs, Expression* rhs);
68 Opcode m_opcode;
73 enum Opcode { OP_EQ, OP_NE, OP_GT, OP_LT, OP_GE, OP_LE }; enum
74 EqTestOp(Opcode, Expression* lhs, Expression* rhs);
78 Opcode m_opcode;
83 enum Opcode { OP_And, OP_Or }; enum
84 LogicalOp(Opcode, Expression* lhs, Expression* rhs);
88 Opcode m_opcode;
DXPathParser.h51 NumericOp::Opcode numop;
52 EqTestOp::Opcode eqop;
57 Token(int t, NumericOp::Opcode v): type(t), numop(v) {} in Token()
58 Token(int t, EqTestOp::Opcode v): type(t), eqop(v) {} in Token()
97 Token makeTokenAndAdvance(int type, NumericOp::Opcode, int advance = 1);
98 Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1);
DXPathPredicate.cpp70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs) in NumericOp()
101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs) in EqTestOp()
204 LogicalOp::LogicalOp(Opcode opcode, Expression* lhs, Expression* rhs) in LogicalOp()
DXPathGrammar.y59 NumericOp::Opcode numop;
60 EqTestOp::Opcode eqop;
DXPathParser.cpp159 Token Parser::makeTokenAndAdvance(int code, NumericOp::Opcode val, int advance) in makeTokenAndAdvance()
165 Token Parser::makeTokenAndAdvance(int code, EqTestOp::Opcode val, int advance) in makeTokenAndAdvance()
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.h126 Opcode getOpcode(OpcodeID id) in getOpcode()
135 OpcodeID getOpcodeID(Opcode opcode) in getOpcodeID()
145 bool isOpcode(Opcode);
347 …bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op… in isCallBytecode()
382 Opcode m_opcodeTable[numOpcodeIDs]; // Maps OpcodeID => Opcode for compiling
383 HashMap<Opcode, OpcodeID> m_opcodeIDTable; // Maps Opcode => OpcodeID for decompiling
DInterpreter.cpp686 bool Interpreter::isOpcode(Opcode opcode) in isOpcode()
689 return opcode != HashTraits<Opcode>::emptyValue() in isOpcode()
690 && !HashTraits<Opcode>::isDeletedValue(opcode) in isOpcode()
/external/webkit/JavaScriptCore/bytecode/
DInstruction.h114 Instruction(Opcode opcode) in Instruction()
138 Opcode opcode;
DOpcode.h190 typedef void* Opcode; typedef
192 typedef OpcodeID Opcode; typedef
/external/webkit/JavaScriptCore/
DAndroid.mk57 bytecode/Opcode.cpp \
DJavaScriptCore.pri86 bytecode/Opcode.cpp \
DGNUmakefile.am98 JavaScriptCore/bytecode/Opcode.cpp \
99 JavaScriptCore/bytecode/Opcode.h \
DJavaScriptCore.scons123 'bytecode/Opcode.cpp',
DChangeLog-2008-08-10177 * VM/Opcode.h:
276 * VM/Opcode.h:
520 …* VM/Opcode.cpp: SamplingTool moved to SamplingTool.cpp/.h, opcodeNames generated fr…
521 * VM/Opcode.h:
988 * VM/Opcode.cpp:
989 * VM/Opcode.h:
1021 * VM/Opcode.cpp:
1023 * VM/Opcode.h:
1038 Enable Switches by setting SAMPLING_TOOL_ENABLED in Opcode.h.
1043 * VM/Opcode.cpp: Tool implementation.
[all …]
DChangeLog56 is zeroed, and modify the Instruction constructor taking an Opcode so that
57 if !HAVE(COMPUTED_GOTO) (i.e. when Opcode is an enum, and is potentially only
2318 * bytecode/Opcode.h:
2416 * bytecode/Opcode.h: Change length of op_get_global_var to match op_resolve_global.
4715 have compiled with Opcode sampling where we will continue to require it
5667 * bytecode/Opcode.h:
5988 * bytecode/Opcode.cpp:
5989 * bytecode/Opcode.h:
8088 * bytecode/Opcode.h:
8268 * bytecode/Opcode.h:
[all …]
/external/webkit/JavaScriptCore/JavaScriptCore.xcodeproj/
Dproject.pbxproj156 …969A079A0ED1D3AE00F1F681 /* Opcode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 969A07940ED1…
157 …969A079B0ED1D3AE00F1F681 /* Opcode.h in Headers */ = {isa = PBXBuildFile; fileRef = 969A07950ED1D3…
650 …0ED1D3AE00F1F681 /* Opcode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
651 …7950ED1D3AE00F1F681 /* Opcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
1444 969A07940ED1D3AE00F1F681 /* Opcode.cpp */,
1445 969A07950ED1D3AE00F1F681 /* Opcode.h */,
1623 969A079B0ED1D3AE00F1F681 /* Opcode.h in Headers */,
2034 969A079A0ED1D3AE00F1F681 /* Opcode.cpp in Sources */,
/external/elfutils/po/
Delfutils.pot1052 " Opcode base: %<PRIuFAST8>\n"
/external/webkit/WebKitTools/
DChangeLog2247 Add an exception for Opcode.o to the global initializers check so that
/external/webkit/WebCore/
DChangeLog-2006-12-3150468 * xpath/impl/XPathParser.h: Changed Token to hold a String, Step::Axis, NumericOp::Opcode,
50469 … and EqTestOp::Opcode. The token ID number tells us which to use. Rearranged to put the private