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

  /external/v8/src/ia32/
codegen-ia32-inl.h 40 void DeferredCode::Branch(Condition cc) { __ j(cc, &entry_label_); }
codegen-ia32.cc 422 slow->Branch(not_equal, not_taken);
431 slow->Branch(not_equal, not_taken);
642 done.Branch(not_equal);
746 dest->false_target()->Branch(zero);
748 dest->true_target()->Branch(zero);
758 dest->false_target()->Branch(equal);
762 dest->true_target()->Branch(equal);
766 dest->false_target()->Branch(equal);
771 dest->false_target()->Branch(zero);
773 dest->true_target()->Branch(zero)
    [all...]
codegen-ia32.h 168 // Emit a branch to one of the true or false targets, and bind the
175 false_target_->Branch(NegateCondition(cc));
178 true_target_->Branch(cc);
    [all...]
macro-assembler-ia32.cc 598 // Branch on the result of the map check.
618 // Branch on the result of the map check.
    [all...]
  /external/v8/src/x64/
codegen-x64-inl.h 40 void DeferredCode::Branch(Condition cc) { __ j(cc, &entry_label_); }
codegen-x64.cc 880 deferred->Branch(below);
    [all...]
codegen-x64.h 168 // Emit a branch to one of the true or false targets, and bind the
175 false_target_->Branch(NegateCondition(cc));
178 true_target_->Branch(cc);
  /external/v8/test/cctest/
test-assembler-mips.cc 112 __ Branch(ne, &L, v1, Operand(0));
173 __ Branch(ne, &error, v0, Operand(0x0f234560));
178 __ Branch(ne, &error, v0, Operand(0x00001234));
181 __ Branch(ne, &error, v1, Operand(0x80000003));
184 __ Branch(ne, &error, v1, Operand(0x7ffffffc));
191 __ Branch(ne, &error, v0, Operand(0xedcba983));
195 __ Branch(ne, &error, v0, Operand(0x1));
198 __ Branch(ne, &error, v0, Operand(0x0));
205 __ Branch(ne, &error, v0, Operand(0x00007400));
208 __ Branch(ne, &error, v1, Operand(0x80000000))
    [all...]
  /external/v8/src/
jump-target.h 113 // Emit a conditional branch to the target. There must be a current
114 // frame at the branch. The current frame will fall through to the
115 // code after the branch. The arg is a result that is live both at
117 virtual void Branch(Condition cc, Hint hint = no_hint);
118 virtual void Branch(Condition cc, Result* arg, Hint hint = no_hint);
154 // Implementations of Jump, Branch, and Bind with all arguments and
211 // Emit a conditional branch to the target. There must be a current
212 // frame at the branch. The current frame will fall through to the
213 // code after the branch.
214 virtual void Branch(Condition cc, Hint hint = no_hint)
    [all...]
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...]
codegen.h 176 inline void Branch(Condition cc);
338 // Branch to the label if the given object isn't a symbol.
  /dalvik/vm/mterp/x86-atom/
bincmp.S 24 * Description: Branch to the given destination if the comparison
40 FETCHs 1, %edx # %edx<- +CCCC, Branch offset
  /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...]
codegen-arm.h 128 // state. The new state has its own pair of branch labels.
323 void Branch(bool if_true, JumpTarget* target);
  /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...]
SkScriptTokenizer.cpp 119 Branch branch(kUnassigned, 0, 0);
120 fBranchStack.push(branch);
134 Branch& branch = fBranchStack.index(index); local
135 if (branch.fPrimed == Branch::kIsPrimed)
136 resolveBranch(branch);
139 while (fBranchStack.top().fDone == Branch::kIsDone)
691 Branch& branch = fBranchStack.index(branchIndex++) local
946 Branch& branch = fBranchStack.index(branchIndex++); local
1013 Branch& branch = fBranchStack.top(); local
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 84 void Branch(Condition cond, int16_t offset, Register rs = zero_reg,
86 void Branch(Condition cond, Label* L, Register rs = zero_reg,
88 // conditionnal branch and link
103 // We NEED a nop in the branch delay slot, as it used by v8, for example in
107 Branch(cc_always, L);
207 // Since we don't have conditionnal execution we use a Branch.
208 Branch(cond, 3, tst1, Operand(tst2));
247 Branch(eq, smi_label, scratch, Operand(zero_reg));
255 Branch(ne, not_smi_label, scratch, Operand(zero_reg));
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...]
  /dalvik/vm/arch/x86-atom/
Call386ABI.S 128 jne 1f # Branch if static
  /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/emma/lib/
emma.jar 
  /dalvik/vm/mterp/out/
InterpAsm-x86-atom.S     [all...]

Completed in 792 milliseconds