HomeSort by relevance Sort by last modified time
    Searched full:true_label (Results 1 - 25 of 47) sorted by null

1 2

  /frameworks/base/tests/net/java/android/net/apf/
Bpf2Apf.java 210 String true_label = line.substring(jt_offset + 2, jf_offset).trim(); local
212 boolean true_label_is_fallthrough = Integer.parseInt(true_label) == label + 1;
220 gen.addJumpIfR0EqualsR1(true_label);
222 gen.addJumpIfR0Equals(val, true_label);
237 gen.addJumpIfR0AnyBitsSetR1(true_label);
239 gen.addJumpIfR0AnyBitsSet(val, true_label);
252 gen.addJumpIfR0GreaterThanR1(true_label);
254 gen.addJumpIfR0GreaterThan(val, true_label);
279 gen.addJump(true_label);
281 gen.addJumpIfR0GreaterThan(val - 1, true_label);
    [all...]
  /external/v8/src/compiler/
code-assembler.cc 658 void CodeAssembler::GotoIf(Node* condition, Label* true_label) {
660 Branch(condition, true_label, &false_label);
665 Label true_label(this);
666 Branch(condition, &true_label, false_label);
667 Bind(&true_label);
670 void CodeAssembler::Branch(Node* condition, Label* true_label,
672 true_label->MergeVariables();
674 return raw_assembler()->Branch(condition, true_label->label_,
code-assembler.h 243 void GotoIf(Node* condition, Label* true_label);
245 void Branch(Node* condition, Label* true_label, Label* false_label);
instruction-selector.h 178 // Branch(c, true_label, false_label)
186 // Branch(c, true_label, false_label)
code-generator.h 32 Label* true_label; member in struct:v8::internal::compiler::BranchInfo
code-generator.cc 443 branch.true_label = GetLabel(true_rpo);
459 branch.true_label = exit->label();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
gimple.def 33 /* GIMPLE_COND <COND_CODE, OP1, OP2, TRUE_LABEL, FALSE_LABEL>
36 if (OP1 COND_CODE OP2) goto TRUE_LABEL else goto FALSE_LABEL
44 TRUE_LABEL and FALSE_LABEL are the LABEL_DECL nodes used as the
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 256 Condition EmitTypeofIs(Label* true_label, Label* false_label, Register input,
lithium-codegen-ppc.cc     [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.h 255 Condition EmitTypeofIs(Label* true_label, Label* false_label, Register input,
  /external/v8/src/full-codegen/
full-codegen.h 731 Label* true_label,
736 true_label_(true_label),
746 Label* true_label() const { return true_label_; } function in class:v8::internal::final::TestContext
    [all...]
full-codegen.cc 458 context->true_label(),
745 VisitForControl(expr, test->true_label(), test->false_label(),
772 VisitForControl(left, test->true_label(), &eval_right, &eval_right);
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 283 Condition EmitTypeofIs(Label* true_label,
lithium-codegen-arm.cc     [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.h 299 Condition EmitTypeofIs(Label* true_label,
lithium-codegen-mips.cc     [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 302 Condition EmitTypeofIs(Label* true_label,
lithium-codegen-mips64.cc     [all...]
  /art/compiler/optimizing/
code_generator_x86.h 289 void GenerateFPJumps(HCondition* cond, LabelType* true_label, LabelType* false_label);
292 LabelType* true_label,
code_generator_x86.cc 1464 __ j(X86Condition(true_high_cond), true_label); local
1468 __ j(X86Condition(true_high_cond), true_label); local
1479 __ j(X86Condition(true_high_cond), true_label); local
1483 __ j(X86Condition(true_high_cond), true_label); local
1492 __ j(X86Condition(true_high_cond), true_label); local
1496 __ j(X86Condition(true_high_cond), true_label); local
1900 NearLabel true_label, false_label; local
    [all...]
code_generator_x86_64.h 277 void GenerateFPJumps(HCondition* cond, LabelType* true_label, LabelType* false_label);
code_generator_x86_64.cc 1883 NearLabel true_label, false_label; local
    [all...]
code_generator_arm_vixl.cc 2202 __ B(ARMCondition(true_high_cond), true_label, is_far_target); local
2206 __ B(ARMCondition(true_high_cond), true_label, is_far_target); local
2217 __ B(ARMCondition(true_high_cond), true_label, is_far_target); local
2221 __ B(ARMCondition(true_high_cond), true_label, is_far_target); local
2302 vixl32::Label true_label, false_label; local
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 1752 Label* true_label = instr->TrueLabel(chunk_); local
2234 Label* true_label = instr->TrueLabel(chunk_); local
5367 Label* true_label = instr->TrueLabel(chunk_); local
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 4846 Label* true_label = instr->TrueLabel(chunk_); local
    [all...]

Completed in 3227 milliseconds

1 2