HomeSort by relevance Sort by last modified time
    Searched defs:Jump (Results 1 - 6 of 6) sorted by null

  /external/v8/src/mips/
codegen-mips-inl.h 41 void DeferredCode::Jump() {
  /external/v8/src/arm/
macro-assembler-arm.cc 74 void MacroAssembler::Jump(Register target, Condition cond) {
83 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
94 void MacroAssembler::Jump(byte* target, RelocInfo::Mode rmode,
97 Jump(reinterpret_cast<intptr_t>(target), rmode, cond);
101 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
105 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
415 nop(); // Jump table alignment.
914 Jump(adaptor, RelocInfo::CODE_TARGET);
936 Jump(code);
956 Jump(code, rmode)
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 1 //===--- JumpDiagnostics.cpp - Protected scope jump analysis ------*- C++ -*-=//
45 /// InDiag - The diagnostic to emit if there is a jump into this scope.
48 /// OutDiag - The diagnostic to emit if there is an indirect jump out
377 // Jump from the catch to the finally or try is not valid.
389 // Jump from the finally to the try or catch is not valid.
430 // Jump from the catch into the try is not allowed either.
474 Stmt *Jump = Jumps.pop_back_val();
477 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) {
485 if (IndirectGotoStmt *IGS = dyn_cast<IndirectGotoStmt>(Jump)) {
493 SwitchStmt *SS = cast<SwitchStmt>(Jump);
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
LinkBuffer.h 47 // * Jump objects may be linked to external targets,
48 // * The address of Jump objects may taken, such that it can later be relinked.
58 typedef MacroAssembler::Jump Jump;
100 void link(Jump jump, CodeLocationLabel label)
102 jump.m_jmp = applyOffset(jump.m_jmp);
103 MacroAssembler::linkJump(code(), jump, label); local
233 // Copy the instructions from the last jump to the current one
    [all...]
AbstractMacroAssembler.h 49 class Jump;
237 // during JIT code generation. For example, the type Jump is used to
238 // track the location of a jump instruction so that it may later be
245 // it may be used as a destination for a jump.
249 friend class Jump;
350 static Call fromTailJump(Jump jump)
352 return Call(jump.m_jmp, Linkable);
360 // Jump:
362 // A jump object is a reference to a jump instruction that has been plante
    [all...]
  /external/valgrind/main/memcheck/
mc_errors.c 165 // - as a jump target
189 SizeT szB; // not used for exec (jump) errors
194 // Jump to an unaddressable memory location.
197 } Jump;
486 emit( " <what>Conditional jump or move depends"
495 emit( "Conditional jump or move depends"
640 emit( " <what>Jump to the invalid address stated "
643 mc_pp_AddrInfo( VG_(get_error_address)(err), &extra->Err.Jump.ai,
646 emit( "Jump to the invalid address stated on the next line\n" );
648 mc_pp_AddrInfo( VG_(get_error_address)(err), &extra->Err.Jump.ai
    [all...]

Completed in 502 milliseconds