Searched defs:jmp (Results 1 - 16 of 16) sorted by relevance

/external/valgrind/main/callgrind/
H A Djumps.c79 static UInt jcc_hash_idx(BBCC* from, UInt jmp, BBCC* to, UInt size) argument
81 return (UInt) ( (UWord)from + 7* (UWord)to + 13*jmp) % size;
108 new_idx = jcc_hash_idx(curr_jcc->from, curr_jcc->jmp,
140 static jCC* new_jcc(BBCC* from, UInt jmp, BBCC* to) argument
153 jcc->jmp = jmp;
164 CLG_ASSERT((0 <= jmp) && (jmp <= from->bb->cjmp_count));
165 jcc->next_from = from->jmp[jmp]
190 get_jcc(BBCC* from, UInt jmp, BBCC* to) argument
[all...]
H A Dcallstack.c186 void CLG_(push_call_stack)(BBCC* from, UInt jmp, BBCC* to, Addr sp, Bool skip) argument
207 /* this is a jmp from skipped to nonskipped */
217 jcc = CLG_(get_jcc)(from, jmp, to);
H A Ddump.c786 Int jcc_count = 0, instr, i, jmp; local
800 jmp = 0;
834 if (bb->jmp[jmp].instr == instr) {
836 for(jcc=bbcc->jmp[jmp].jcc_list; jcc; jcc=jcc->next_from)
850 for(jcc=bbcc->jmp[jmp].jcc_list; jcc; jcc=jcc->next_from) {
859 if (jmp < bb->cjmp_count)
860 if (bb->jmp[jm
[all...]
H A Dglobal.h262 UInt jmp; /* jump no. in source */ member in struct:_jCC
326 CJmpInfo* jmp; /* array of info for condition jumps, member in struct:_BB
409 JmpData jmp[0]; member in struct:_BBCC
780 void CLG_(push_call_stack)(BBCC* from, UInt jmp, BBCC* to, Addr sp, Bool skip);
/external/llvm/test/MC/X86/
H A Dx86-32.s463 jmp *8(%eax)
603 jmp $0x7ace,$0x7ace label
/external/libvpx/vpx/internal/
H A Dvpx_codec_internal.h444 jmp_buf jmp; member in struct:vpx_internal_error_info
469 longjmp(info->jmp, info->error_code);
/external/webkit/Source/JavaScriptCore/assembler/
H A DAbstractMacroAssembler.h339 Call(JmpSrc jmp, Flags flags) argument
340 : m_jmp(jmp)
376 Jump(JmpSrc jmp) argument
377 : m_jmp(jmp)
H A DMacroAssemblerSH4.h1108 Jump jmp = branchTest32(cond, addressTempRegister, mask); local
1110 return jmp;
1123 Jump jmp = branch32(cond, addressTempRegister, right); local
1125 return jmp;
1442 return Jump(m_assembler.jmp());
1726 Jump m_jump = Jump(m_assembler.jmp(scr));
H A DARMAssembler.h718 JmpSrc jmp(Condition cc = AL, int useConstantPool = 0) function in class:JSC::ARMAssembler
H A DSH4Assembler.h1206 JmpSrc jmp() function in class:JSC::SH4Assembler
1218 JmpSrc jmp(RegisterID dst) function in class:JSC::SH4Assembler
H A DX86Assembler.h1235 JmpSrc jmp() function in class:JSC::X86Assembler
/external/v8/src/mips/
H A Dmacro-assembler-mips.h263 void jmp(Label* L) { function in class:v8::internal::MacroAssembler
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c939 IRTemp jmp,
951 args = mkIRExprVec_1(IRExpr_RdTmp (jmp));
935 add_stmt_call_invalidate_if_not_gdbserved( IRSB* sb_in, VexGuestLayout* layout, VexGuestExtents* vge, IRTemp jmp, IRSB* irsb) argument
/external/v8/src/arm/
H A Dassembler-arm.h1165 void jmp(Label* L) { b(L, al); } function in class:v8::internal::Assembler
/external/v8/src/ia32/
H A Dassembler-ia32.cc108 __ jmp(&done);
1361 ASSERT(byte_at(fixup_pos - 1) == 0xE9); // jmp expected
1452 void Assembler::jmp(Label* L, Label::Distance distance) { function in class:v8::internal::Assembler
1479 void Assembler::jmp(byte* entry, RelocInfo::Mode rmode) { function in class:v8::internal::Assembler
1487 void Assembler::jmp(const Operand& adr) { function in class:v8::internal::Assembler
1494 void Assembler::jmp(Handle<Code> code, RelocInfo::Mode rmode) { function in class:v8::internal::Assembler
/external/v8/src/x64/
H A Dassembler-x64.cc96 __ jmp(&done);
1223 jmp(L);
1285 void Assembler::jmp(Label* L, Label::Distance distance) { function in class:v8::internal::Assembler
1327 void Assembler::jmp(Handle<Code> target, RelocInfo::Mode rmode) { function in class:v8::internal::Assembler
1335 void Assembler::jmp(Register target) { function in class:v8::internal::Assembler
1344 void Assembler::jmp(const Operand& src) { function in class:v8::internal::Assembler

Completed in 273 milliseconds