Searched refs:instructions (Results 1 - 25 of 83) sorted by relevance

1234

/macosx-10.10.1/llvmCore-3425.0.34/bindings/python/llvm/tests/
H A Dtest_disassembler.py24 instructions = list(disassembler.get_instructions(sequence))
25 self.assertEqual(len(instructions), 2)
27 self.assertEqual(instructions[0], (0, 3, '\tjcxz\t-127'))
28 self.assertEqual(instructions[1], (3, 2, '\taddl\t%eax, %edi'))
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecompiler/
H A DStaticPropertyAnalysis.h38 static PassRefPtr<StaticPropertyAnalysis> create(Vector<UnlinkedInstruction, 0, UnsafeVectorOverflow>* instructions, unsigned target) argument
40 return adoptRef(new StaticPropertyAnalysis(instructions, target));
53 StaticPropertyAnalysis(Vector<UnlinkedInstruction, 0, UnsafeVectorOverflow>* instructions, unsigned target) argument
54 : m_instructions(instructions)
H A DBytecodeGenerator.cpp270 instructions().append(argumentsRegister->index());
409 m_codeBlock->addPropertyAccessInstruction(instructions().size());
411 instructions().append(kill(&m_thisRegister));
412 instructions().append(0);
471 instructions().append(reg->index());
599 unsigned newLabelIndex = instructions().size();
621 size_t opcodePosition = instructions().size();
625 instructions().append(opcodeID);
658 ASSERT(instructions().size() >= 4);
659 size_t size = instructions()
[all...]
H A DStaticPropertyAnalyzer.h57 inline StaticPropertyAnalyzer::StaticPropertyAnalyzer(Vector<UnlinkedInstruction, 0, UnsafeVectorOverflow>* instructions) argument
58 : m_instructions(instructions)
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/generic/
H A DxotclCompile.c17 static XOTclCompEnv instructions[] = { variable
27 return &instructions[0];
43 TclEmitOpcode(instructions[INST_INITPROC].bytecode, envPtr);
56 TclEmitOpcode(instructions[INST_NEXT].bytecode, envPtr);
68 TclEmitOpcode(instructions[INST_SELF].bytecode, envPtr);
87 /*TclEmitOpcode(instructions[INST_SELF].bytecode, envPtr);*/
120 TclEmitInstInt1(instructions[INST_SELF_DISPATCH].bytecode, wordIdx, envPtr);
132 if ((instructions[i].bytecode =
134 instructions[i].callProc,
135 instructions[
[all...]
/macosx-10.10.1/postfix-255/postfix/
H A DMakefile18 @echo Please review the INSTALL instructions first.
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Darc-ext.h48 struct ExtInstruction *instructions[NUM_EXT_INST]; member in struct:arcExtMap
H A Darc-ext.c49 if (!arc_extension_map.instructions[opcode])
51 *flags = arc_extension_map.instructions[opcode]->flags;
52 return arc_extension_map.instructions[opcode]->name;
124 /* clean instructions */
127 insn = arc_extension_map.instructions[i];
160 For instructions:
193 arc_extension_map.instructions[(int) opcode] = insn;
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DUnlinkedInstructionStream.cpp78 UnlinkedInstructionStream::UnlinkedInstructionStream(const Vector<UnlinkedInstruction>& instructions) argument
79 : m_instructionCount(instructions.size())
87 const UnlinkedInstruction* instructionsData = instructions.data();
H A DPreciseJumpTargets.cpp106 Instruction* instructionsBegin = codeBlock->instructions().begin();
107 unsigned instructionCount = codeBlock->instructions().size();
133 Instruction* instructionsBegin = codeBlock->instructions().begin();
H A DUnlinkedCodeBlock.cpp251 ASSERT(bytecodeOffset < instructions().count());
284 const auto& instructions = instructionStream.unpackForDebugging();
285 OpcodeID opcode = instructions[instructionOffset].u.opcode;
288 switch (instructions[instructionOffset + 1].u.operand) {
311 dumpLineColumnEntry(i, instructions(), info.instructionOffset, line, column);
320 ASSERT(bytecodeOffset < instructions().count());
442 void UnlinkedCodeBlock::setInstructions(std::unique_ptr<UnlinkedInstructionStream> instructions)
444 m_unlinkedInstructions = WTF::move(instructions);
447 const UnlinkedInstructionStream& UnlinkedCodeBlock::instructions() const
H A DCodeBlock.cpp318 Instruction* instruction = instructions().begin() + location;
457 for (size_t i = 0; i < instructions().size(); i += opcodeLengths[exec->interpreter()->getOpcodeID(instructions()[i].u.opcode)])
463 static_cast<unsigned long>(instructions().size()),
464 static_cast<unsigned long>(instructions().size() * sizeof(Instruction)),
486 const Instruction* begin = instructions().begin();
487 const Instruction* end = instructions().end();
1390 const Instruction* it = instructions().begin() + bytecodeOffset;
1391 dumpBytecode(out, exec, instructions().begin(), it, stubInfos, callLinkInfos);
1395 macro(instructions) \
[all...]
H A DBytecodeBasicBlock.cpp133 Instruction* instructionsBegin = codeBlock->instructions().begin();
134 unsigned instructionCount = codeBlock->instructions().size();
H A DCodeBlock.h248 RELEASE_ASSERT(returnAddress >= instructions().begin() && returnAddress < instructions().end());
249 return static_cast<Instruction*>(returnAddress) - instructions().begin();
255 RefCountedArray<Instruction>& instructions() { return m_instructions; } function in class:JSC::CodeBlock
256 const RefCountedArray<Instruction>& instructions() const { return m_instructions; } function in class:JSC::CodeBlock
434 ASSERT(instructions()[bytecodeOffset + opcodeLength(
436 instructions()[bytecodeOffset].u.opcode)) - 1].u.profile == result);
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfilerBytecodeSequence.cpp54 for (unsigned bytecodeIndex = 0; bytecodeIndex < codeBlock->instructions().size();) {
57 m_sequence.append(Bytecode(bytecodeIndex, codeBlock->vm()->interpreter->getOpcodeID(codeBlock->instructions()[bytecodeIndex].u.opcode), out.toCString()));
60 codeBlock->instructions()[bytecodeIndex].u.opcode));
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DCallFrame.cpp52 return currentVPC() - codeBlock()->instructions().begin();
58 setCurrentVPC(codeBlock()->instructions().begin() + offset);
64 return codeBlock()->instructions().begin() + locationAsBytecodeOffset();
68 setLocationAsBytecodeOffset(vpc - codeBlock()->instructions().begin());
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITExceptions.cpp56 catchPCForInterpreter = &callFrame->codeBlock()->instructions()[handler->target];
H A DSlowPathCall.h49 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeOffset, true);
77 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeOffset, false);
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGCapabilities.cpp237 Instruction* instructionsBegin = codeBlock->instructions().begin();
238 unsigned instructionCount = codeBlock->instructions().size();
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dblank.vim16 " Blank instructions
H A Dnsis.vim155 "FUNCTIONS - Branching, flow control, error checking, user interaction, etc instructions
161 "FUNCTIONS - File and directory i/o instructions
165 "FUNCTIONS - Misc instructions
181 "FUNCTIONS - Uninstaller instructions
184 "FUNCTIONS - Install logging instructions
187 "FUNCTIONS - Section management instructions
/macosx-10.10.1/ruby-106/ruby/tool/
H A Deval.rb13 opt-instructions-unification
/macosx-10.10.1/ruby-106/ruby/
H A Dinsns.inc2 This file contains YARV instructions list.
/macosx-10.10.1/tcl-105/tcl84/tcl/win/
H A Dbuildall.vc.bat5 :: the instructions for calling makefile.vc found in makefile.vc
/macosx-10.10.1/tcl-105/tk84/tk/win/
H A Dbuildall.vc.bat5 :: the instructions for calling makefile.vc found in makefile.vc

Completed in 260 milliseconds

1234