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

  /external/v8/src/ia32/
codegen-ia32-inl.h 40 void DeferredCode::Branch(Condition cc) { __ j(cc, &entry_label_); }
  /external/v8/src/x64/
codegen-x64-inl.h 40 void DeferredCode::Branch(Condition cc) { __ j(cc, &entry_label_); }
  /external/v8/src/arm/
codegen-arm-inl.h 68 void DeferredCode::Branch(Condition cc) { __ b(cc, &entry_label_); }
codegen-arm.cc 202 verified_true.Branch(eq);
464 slow->Branch(ne);
474 slow->Branch(ne);
535 materialize_true.Branch(cc_reg_);
548 // into a branch, thus it needs to be loaded explicitly.
701 false_target->Branch(eq);
706 true_target->Branch(eq);
711 false_target->Branch(eq);
715 false_target->Branch(eq);
717 true_target->Branch(eq)
    [all...]
  /external/v8/src/
jump-target.cc 260 void JumpTarget::Branch(Condition cc, Hint hint) {
280 void JumpTarget::Branch(Condition cc, Result* arg, Hint hint) {
284 // the same registers on the fall-through branch.
295 void BreakTarget::Branch(Condition cc, Result* arg, Hint hint) {
300 // We negate and branch here rather than using DoBranch's negate
301 // and branch. This gives us a hook to remove statement state
304 // Branch to fall through will not negate, because it is a
306 fall_through.Branch(NegateCondition(cc), NegateHint(hint));
368 void BreakTarget::Branch(Condition cc, Hint hint) {
373 // We negate and branch here rather than using DoBranch's negat
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 116 Branch(NegateCondition(cond), 2, src1, src2);
420 // Emulated condtional branches do not emit a nop in the branch delay slot.
423 void MacroAssembler::Branch(Condition cond, int16_t offset, Register rs,
490 void MacroAssembler::Branch(Condition cond, Label* L, Register rs,
500 // We use branch_offset as an argument for the branch instructions to be sure
501 // it is called just before generating the branch instruction, as needed.
716 Branch(NegateCondition(cond), 2, rs, rt);
725 Branch(NegateCondition(cond), 2, rs, rt);
734 Branch(NegateCondition(cond), 2, rs, rt);
749 Branch(NegateCondition(cond), 2, rs, rt)
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 737 boolean branch = false;
755 if (branch)
757 // previous instruction was a branch: this one is a leader
759 branch = false;
    [all...]
  /external/skia/src/animator/
SkScript2.h 180 struct Branch {
181 Branch() {
184 Branch(Op op, int depth, unsigned offset) : fOffset(offset), fOpStackDepth(depth), fOperator(op),
198 unsigned fOffset : 16; // offset in generated stream where branch needs to go
200 Op fOperator : 6; // operand which generated branch
201 mutable Primed fPrimed : 1; // mark when next instruction generates branch
202 Done fDone : 1; // mark when branch is complete
242 void resolveBranch(Branch& );
247 SkTDStack<Branch> fBranchStack; // logical operators, slot to store forward branch
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 312 milliseconds