Searched refs:operandIndex (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/tools/llvm-mc/
H A DDisassembler.cpp268 int operandIndex = token->operandID(); local
270 if (operandIndex >= 0)
271 Out << operandIndex << "-"; local
320 for (unsigned operandIndex = 0; operandIndex != numOperands;
321 ++operandIndex) {
322 Out << operandIndex << ":"; local
325 if (inst->getOperand(operand, operandIndex)) {
/macosx-10.10/llvmCore-3425.0.34/lib/MC/MCDisassembler/
H A DEDToken.cpp103 unsigned int operandIndex; local
107 operandIndex = 0;
137 ++operandIndex;
190 /// operandIndex == 0 means the operand is the instruction (which the
192 /// operandIndex == 0 and subtract 1 from all other operand indices.
194 if (operandIndex > 0)
195 token->setOperandID(operandOrder[operandIndex - 1]);
/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DX86RecognizableInstr.cpp473 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
474 const std::string &recName = OperandList[operandIndex].Rec->getName();
482 void RecognizableInstr::handleOperand(bool optional, unsigned &operandIndex, argument
496 while (operandMapping[operandIndex] != operandIndex) {
497 Spec->operands[operandIndex].encoding = ENCODING_DUP;
498 Spec->operands[operandIndex].type =
499 (OperandType)(TYPE_DUP0 + operandMapping[operandIndex]);
[all...]
H A DX86RecognizableInstr.h188 /// @param operandIndex - The index into the generated operand table.
201 unsigned &operandIndex,
H A DEDEmitter.cpp868 for (unsigned operandIndex = 0;
869 operandIndex < EDIS_MAX_OPERANDS;
870 ++operandIndex) {
871 operandTypes[operandIndex] = new LiteralConstantEmitter;
872 operandTypeArray->addEntry(operandTypes[operandIndex]);
874 operandFlags[operandIndex] = new FlagsConstantEmitter;
875 operandFlagArray->addEntry(operandFlags[operandIndex]);
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGFixupPhase.cpp805 for (unsigned operandIndex = 0; operandIndex < node->numChildren(); ++operandIndex)
806 fixEdge<Int32Use>(m_graph.m_varArgChildren[node->firstChild() + operandIndex]);
809 for (unsigned operandIndex = 0; operandIndex < node->numChildren(); ++operandIndex)
810 fixEdge<DoubleRepRealUse>(m_graph.m_varArgChildren[node->firstChild() + operandIndex]);
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLLowerDFGToLLVM.cpp2611 for (unsigned operandIndex = 0; operandIndex < m_node->numChildren(); ++operandIndex)
2612 speculate(m_graph.varArgChild(m_node, operandIndex));
2625 for (unsigned operandIndex = 0; operandIndex < m_node->numChildren(); ++operandIndex) {
2626 Edge edge = m_graph.varArgChild(m_node, operandIndex);
2637 arrayValues.butterfly, m_heaps.indexedDoubleProperties[operandIndex]);
2645 m_heaps.forIndexingType(m_node->indexingType())->at(operandIndex));
[all...]

Completed in 203 milliseconds