Searched refs:instruction (Results 26 - 50 of 83) sorted by relevance

1234

/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DSH4Assembler.h1437 SH4Word instruction = *instructionPtr; local
1438 SH4Word index = instruction & 0xff;
1440 if ((instruction & 0xf000) != MOVIMM_OPCODE)
1446 instruction &= 0x0f00;
1447 instruction |= 0xd000;
1449 instruction |= (offset >> 2);
1450 *instructionPtr = instruction;
1451 printInstr(instruction, reinterpret_cast<uint32_t>(loadAddr));
1512 SH4Word* instruction = reinterpret_cast<SH4Word*>(instructionStart); local
1513 intptr_t difference = reinterpret_cast<intptr_t>(to) - (reinterpret_cast<intptr_t>(instruction)
1570 uint16_t instruction = instructionPtr[0]; local
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rexml/parsers/
H A Dstreamparser.rb31 @listener.instruction( *event[1,2] )
H A Dpullparser.rb132 def instruction?
H A Dxpathparser.rb283 PI = /^processing-instruction\(/
301 raise ParseException.new("Missing ')' after processing instruction") if path[0] != ?)
579 NT = /^comment|text|processing-instruction|node$/
/macosx-10.10.1/ruby-106/ruby/lib/rss/
H A Dxmlparser.rb55 @listener.instruction(target, content)
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dsh64-dis.c51 to determine an instruction's operator.
52 The index is as same as the instruction in the opcode table.
56 /* Initialize the SH64 opcode mask table for each instruction in SHmedia
180 unsigned long instruction; local
210 /* Rearrange the bytes to make up an instruction. */
212 instruction = bfd_getl32 (insn);
214 instruction = bfd_getb32 (insn);
220 && ((instruction & shmedia_opcode_mask_table[n]) != op->opcode_base);
227 fprintf_fn (stream, ".long 0x%08lx", instruction);
235 unsigned long temp = instruction >> o
[all...]
H A Dtic30-dis.c29 /* Gets the type of instruction based on the top 2 or 3 bits of the
30 instruction word. */
41 /* Specific instruction id bits. */
59 /* TMS320C30 program counter for current instruction. */
62 struct instruction struct
70 get_tic30_instruction (unsigned long insn_word, struct instruction *insn)
338 struct instruction *insn)
354 /* Determine whether instruction is a store or a normal instruction. */
373 /* Check for the NOP instruction befor
[all...]
H A Dm88k-dis.c526 /* Initialize the disassembler instruction table.
528 Initialize the hash table and instruction table for the
555 /* Decode an Operand of an instruction.
557 This function formats and writes an operand of an instruction to
559 set this is the first operand of an instruction. Undefined operand
565 UINT inst instruction from which operand is extracted
566 UINT pc pc of instruction; used for pc-relative disp.
568 operand of an instruction
570 The operand specified is extracted from the instruction and is
572 a comma if it is not the first operand of an instruction an
691 m88kdis(bfd_vma pc, unsigned long instruction, struct disassemble_info *info) argument
732 (*info->fprintf_func) (info->stream, "word\\t%08lx", instruction); local
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/kxld/
H A Dkxld_reloc.c121 u_char *instruction, u_int length, u_int pcrel, kxld_addr_t base_pc,
134 u_char *instruction, u_int length, u_int pcrel, kxld_addr_t base_pc,
149 u_char *instruction, u_int length, u_int pcrel, kxld_addr_t base_pc,
162 u_char *instruction, u_int length, u_int pcrel, kxld_addr_t base_pc,
727 u_char *instruction = NULL; local
738 /* Find the instruction */
740 instruction = sect->data + reloc->address;
753 rval = relocator->process_reloc(relocator, instruction, reloc->length,
792 u_char *instruction = NULL; local
802 /* Find the instruction */
1163 generic_process_reloc(const KXLDRelocator *relocator, u_char *instruction, u_int length, u_int pcrel, kxld_addr_t _base_pc, kxld_addr_t _link_pc, kxld_addr_t _link_disp __unused, u_int _type, kxld_addr_t _target, kxld_addr_t _pair_target, boolean_t swap __unused) argument
1254 x86_64_process_reloc(const KXLDRelocator *relocator __unused, u_char *instruction, u_int length, u_int pcrel, kxld_addr_t _base_pc __unused, kxld_addr_t _link_pc, kxld_addr_t _link_disp, u_int _type, kxld_addr_t _target, kxld_addr_t _pair_target, boolean_t swap __unused) argument
1484 arm_process_reloc(const KXLDRelocator *relocator __unused, u_char *instruction, u_int length, u_int pcrel, kxld_addr_t _base_pc __unused, kxld_addr_t _link_pc __unused, kxld_addr_t _link_disp __unused, u_int _type __unused, kxld_addr_t _target __unused, kxld_addr_t _pair_target __unused, boolean_t swap __unused) argument
1597 arm64_process_reloc(const KXLDRelocator *relocator __unused, u_char *instruction, u_int length, u_int pcrel, kxld_addr_t _base_pc __unused, kxld_addr_t _link_pc, kxld_addr_t _link_disp __unused, u_int _type, kxld_addr_t _target, kxld_addr_t _pair_target __unused, boolean_t swap) argument
[all...]
H A Dkxld_reloc.h55 u_char *instruction, u_int length, u_int pcrel, kxld_addr_t base_pc,
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLAbstractHeap.cpp49 void AbstractHeap::decorateInstruction(LValue instruction, const AbstractHeapRepository& repository) const argument
53 setMetadata(instruction, repository.m_tbaaKind, tbaaMetadata(repository));
H A DFTLAbstractHeap.h96 void decorateInstruction(LValue instruction, const AbstractHeapRepository&) const;
H A DFTLAbbreviations.h135 static inline void setMetadata(LValue instruction, unsigned kind, LValue metadata) { llvm->SetMetadata(instruction, kind, metadata); } argument
288 static inline void setInstructionCallingConvention(LValue instruction, LCallConv callingConvention) { llvm->SetInstructionCallConv(instruction, callingConvention); } argument
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DCallLinkStatus.cpp104 Instruction* instruction = profiledBlock->instructions().begin() + bytecodeIndex; local
105 OpcodeID op = vm.interpreter->getOpcodeID(instruction[0].u.opcode);
109 LLIntCallLinkInfo* callLinkInfo = instruction[5].u.callLinkInfo;
H A DGetByIdStatus.cpp64 Instruction* instruction = profiledBlock->instructions().begin() + bytecodeIndex; local
66 if (instruction[0].u.opcode == LLInt::getOpcode(op_get_array_length))
69 Structure* structure = instruction[4].u.structure.get();
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Dxmlswitch.tcl41 processing-instruction processingInstruction
443 processing-instruction,processingInstruction {
491 processing-instruction {
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Dcompiler_peg_mecpu.tcl176 $g node set [Who entry] instruction .C
219 $g node set [Who entry] instruction .C
343 # Build instruction graph.
386 # Build instruction graph.
420 # For the loop we create the sub-expression instruction graph a
462 # Build instruction graph.
528 # Build instruction graph.
873 # Process the following instruction,
885 set code [$g node get $current instruction]
954 page_info " Removed [plural $count instruction] i
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dredir.c106 switch (temp->instruction)
209 switch (redirect->instruction)
631 ri = redirect->instruction;
688 if (new_redirect->instruction == r_err_and_out)
709 ri = new_redirect->instruction;
1084 n += stdin_redirection (rp->instruction, rp->redirector);
H A Dprint_cmd.c823 if (redirects->instruction == r_reading_until || redirects->instruction == r_deblank_reading_until)
835 else if (redirects->instruction == r_duplicating_output_word && redirects->redirector == 1)
838 redirects->instruction = r_err_and_out;
840 redirects->instruction = r_duplicating_output_word;
877 switch (redirect->instruction)
/macosx-10.10.1/ruby-106/ruby/
H A Dinsns_info.inc2 This file contains instruction information for yarv instruction sequence.
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITStubsMSVC64.asm35 ; The stack alignment is needed to fix a crash in the CRT library on a floating point instruction.
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Devalstring.c289 command->value.Simple->redirects->instruction == r_input_direction)
346 if (r->instruction != r_input_direction)
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGOSRExitCompilerCommon.cpp147 Instruction* instruction = baselineCodeBlock->instructions().begin() + codeOrigin.bytecodeIndex; local
148 uint32_t locationBits = CallFrame::Location::encodeAsBytecodeInstruction(instruction);
171 Instruction* instruction = jit.baselineCodeBlock()->instructions().begin() + codeOrigin.bytecodeIndex; local
172 uint32_t locationBits = CallFrame::Location::encodeAsBytecodeInstruction(instruction);
/macosx-10.10.1/dyld-353.2.1/src/
H A DthreadLocalHelpers.s78 cpuid # get cpu features to check on xsave instruction support
/macosx-10.10.1/JavaScriptCore-7600.1.17/llint/
H A DLowLevelInterpreter.cpp226 void* instruction; member in union:JSC::CLoopRegister::__anon2627
241 operator Instruction*() { return reinterpret_cast<Instruction*>(instruction); }

Completed in 233 milliseconds

1234