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

  /external/v8/src/ia32/
codegen-ia32-inl.h 39 void DeferredCode::Jump() { __ jmp(&entry_label_); }
jump-target-ia32.cc 31 #include "jump-target-inl.h"
50 // Backward jump. There is an expected frame to merge to.
57 // Forward jump with a preconfigured entry frame. Assert the
58 // current frame matches the expected one and jump to the block.
63 // Forward jump. Remember the current frame and emit a jump to
175 // Fast case: the jump target was manually configured with an entry
185 // possible backward jump.
223 // Fast case: no fall-through, a single forward jump, and no
284 // code block. Jump around the code we are about t
    [all...]
  /external/v8/src/mips/
codegen-mips-inl.h 39 void DeferredCode::Jump() { __ b(&entry_label_); }
jump-target-mips.cc 32 #include "jump-target-inl.h"
63 void BreakTarget::Jump() {
68 void BreakTarget::Jump(Result* arg) {
macro-assembler-mips.cc 50 void MacroAssembler::Jump(Register target, Condition cond,
52 Jump(Operand(target), cond, r1, r2);
56 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
58 Jump(Operand(target), cond, r1, r2);
62 void MacroAssembler::Jump(byte* target, RelocInfo::Mode rmode,
65 Jump(reinterpret_cast<intptr_t>(target), rmode, cond, r1, r2);
69 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
72 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
103 Jump(Operand(ra), cond, r1, r2);
710 void MacroAssembler::Jump(const Operand& target
    [all...]
  /external/v8/src/x64/
codegen-x64-inl.h 39 void DeferredCode::Jump() { __ jmp(&entry_label_); }
jump-target-x64.cc 31 #include "jump-target-inl.h"
50 // Backward jump. There is an expected frame to merge to.
57 // Forward jump with a preconfigured entry frame. Assert the
58 // current frame matches the expected one and jump to the block.
63 // Forward jump. Remember the current frame and emit a jump to
175 // Fast case: the jump target was manually configured with an entry
185 // possible backward jump.
223 // Fast case: no fall-through, a single forward jump, and no
284 // code block. Jump around the code we are about t
    [all...]
macro-assembler-x64.cc 346 Jump(stub->GetCode(), RelocInfo::CODE_TARGET);
420 // Set the entry point and jump to the C entry runtime stub.
    [all...]
  /external/v8/src/arm/
codegen-arm-inl.h 67 void DeferredCode::Jump() { __ jmp(&entry_label_); }
jump-target-arm.cc 31 #include "jump-target-inl.h"
50 // Backward jump. There already a frame expectation at the target.
163 void BreakTarget::Jump() {
174 void BreakTarget::Jump(Result* arg) {
macro-assembler-arm.cc 72 void MacroAssembler::Jump(Register target, Condition cond) {
81 void MacroAssembler::Jump(intptr_t target, RelocInfo::Mode rmode,
92 void MacroAssembler::Jump(byte* target, RelocInfo::Mode rmode,
95 Jump(reinterpret_cast<intptr_t>(target), rmode, cond);
99 void MacroAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode,
103 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond);
188 nop(); // Jump table alignment.
478 Jump(adaptor, RelocInfo::CODE_TARGET);
496 Jump(code);
516 Jump(code, rmode)
    [all...]
  /external/v8/src/
jump-target.cc 31 #include "jump-target-inl.h"
247 void JumpTarget::Jump() {
252 void JumpTarget::Jump(Result* arg) {
307 Jump(arg); // May emit merge code here.
380 Jump(); // May emit merge code here.
  /external/webkit/JavaScriptCore/assembler/
LinkBuffer.h 46 // * Jump objects may be linked to external targets,
47 // * The address of Jump objects may taken, such that it can later be relinked.
55 typedef MacroAssembler::Jump Jump;
88 void link(Jump jump, CodeLocationLabel label)
90 MacroAssembler::linkJump(code(), jump, label); local
AbstractMacroAssembler.h 51 class Jump;
208 // during JIT code generation. For example, the type Jump is used to
209 // track the location of a jump instruction so that it may later be
216 // it may be used as a destination for a jump.
220 friend class Jump;
318 static Call fromTailJump(Jump jump)
320 return Call(jump.m_jmp, Linkable);
328 // Jump:
330 // A jump object is a reference to a jump instruction that has been plante
    [all...]

Completed in 206 milliseconds