/external/iproute2/tc/ |
D | f_tcindex.c | 165 int fall_through; in tcindex_print_opt() local 168 sizeof(fall_through)) in tcindex_print_opt() 170 fall_through = *(int *) RTA_DATA(tb[TCA_TCINDEX_FALL_THROUGH]); in tcindex_print_opt() 171 fprintf(f,fall_through ? "fall_through " : "pass_on "); in tcindex_print_opt()
|
/external/v8/src/full-codegen/ |
D | full-codegen.h | 303 Label* fall_through); 314 Label* fall_through); 321 Label* fall_through); 323 void Split(Condition cc, Label* if_true, Label* if_false, Label* fall_through, 329 Label* fall_through); 377 Label* fall_through) { in VisitForControl() argument 378 TestContext context(this, expr, if_true, if_false, fall_through); in VisitForControl() 799 Label** fall_through) const = 0; 838 Label** fall_through) const override; 857 Label** fall_through) const override; [all …]
|
D | full-codegen.cc | 326 Label** fall_through) const { in PrepareTest() 329 *if_true = *if_false = *fall_through = materialize_true; in PrepareTest() 338 Label** fall_through) const { in PrepareTest() 339 *if_true = *fall_through = materialize_true; in PrepareTest() 349 Label** fall_through) const { in PrepareTest() 350 *if_true = *fall_through = materialize_true; in PrepareTest() 360 Label** fall_through) const { in PrepareTest() 363 *fall_through = fall_through_; in PrepareTest() 371 context->fall_through()); in DoTest() 668 test->fall_through()); in VisitInDuplicateContext()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 685 Label* fall_through) { in DoTest() argument 689 Split(eq, if_true, if_false, fall_through); in DoTest() 700 Label* fall_through) { in Split() argument 701 if (if_false == fall_through) { in Split() 703 } else if (if_true == fall_through) { in Split() 704 DCHECK(if_false != fall_through); in Split() 2810 Label* fall_through = NULL; in EmitIsSmi() local 2812 &if_true, &if_false, &fall_through); in EmitIsSmi() 2815 __ TestAndSplit(x0, kSmiTagMask, if_true, if_false, fall_through); in EmitIsSmi() 2830 Label* fall_through = NULL; in EmitIsJSReceiver() local [all …]
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 657 Label* if_false, Label* fall_through) { in DoTest() argument 661 Split(eq, if_true, if_false, fall_through); in DoTest() 666 Label* fall_through, CRegister cr) { in Split() argument 667 if (if_false == fall_through) { in Split() 669 } else if (if_true == fall_through) { in Split() 3079 Label* fall_through = NULL; in EmitIsSmi() local 3081 &if_false, &fall_through); in EmitIsSmi() 3085 Split(eq, if_true, if_false, fall_through, cr0); in EmitIsSmi() 3100 Label* fall_through = NULL; in EmitIsJSReceiver() local 3102 &if_false, &fall_through); in EmitIsJSReceiver() [all …]
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 688 Label* fall_through) { in DoTest() argument 692 Split(eq, if_true, if_false, fall_through); in DoTest() 699 Label* fall_through) { in Split() argument 700 if (if_false == fall_through) { in Split() 702 } else if (if_true == fall_through) { in Split() 3093 Label* fall_through = NULL; in EmitIsSmi() local 3095 &if_true, &if_false, &fall_through); in EmitIsSmi() 3099 Split(eq, if_true, if_false, fall_through); in EmitIsSmi() 3114 Label* fall_through = NULL; in EmitIsJSReceiver() local 3116 &if_true, &if_false, &fall_through); in EmitIsJSReceiver() [all …]
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 632 Label* fall_through) { in DoTest() argument 636 Split(equal, if_true, if_false, fall_through); in DoTest() 643 Label* fall_through) { in Split() argument 644 if (if_false == fall_through) { in Split() 646 } else if (if_true == fall_through) { in Split() 2960 Label* fall_through = NULL; in EmitIsSmi() local 2962 &if_true, &if_false, &fall_through); in EmitIsSmi() 2966 Split(zero, if_true, if_false, fall_through); in EmitIsSmi() 2981 Label* fall_through = NULL; in EmitIsJSReceiver() local 2983 &if_true, &if_false, &fall_through); in EmitIsJSReceiver() [all …]
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 635 Label* fall_through) { in DoTest() argument 639 Split(equal, if_true, if_false, fall_through); in DoTest() 646 Label* fall_through) { in Split() argument 647 if (if_false == fall_through) { in Split() 649 } else if (if_true == fall_through) { in Split() 2968 Label* fall_through = NULL; in EmitIsSmi() local 2970 &if_true, &if_false, &fall_through); in EmitIsSmi() 2974 Split(zero, if_true, if_false, fall_through); in EmitIsSmi() 2989 Label* fall_through = NULL; in EmitIsJSReceiver() local 2991 &if_true, &if_false, &fall_through); in EmitIsJSReceiver() [all …]
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 681 Label* fall_through) { in DoTest() argument 686 Split(eq, result_register(), Operand(at), if_true, if_false, fall_through); in DoTest() 695 Label* fall_through) { in Split() argument 696 if (if_false == fall_through) { in Split() 698 } else if (if_true == fall_through) { in Split() 3080 Label* fall_through = NULL; in EmitIsSmi() local 3082 &if_true, &if_false, &fall_through); in EmitIsSmi() 3086 Split(eq, t0, Operand(zero_reg), if_true, if_false, fall_through); in EmitIsSmi() 3101 Label* fall_through = NULL; in EmitIsJSReceiver() local 3103 &if_true, &if_false, &fall_through); in EmitIsJSReceiver() [all …]
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 680 Label* fall_through) { in DoTest() argument 685 Split(eq, result_register(), Operand(at), if_true, if_false, fall_through); in DoTest() 694 Label* fall_through) { in Split() argument 695 if (if_false == fall_through) { in Split() 697 } else if (if_true == fall_through) { in Split() 3085 Label* fall_through = NULL; in EmitIsSmi() local 3087 &if_true, &if_false, &fall_through); in EmitIsSmi() 3091 Split(eq, a4, Operand(zero_reg), if_true, if_false, fall_through); in EmitIsSmi() 3106 Label* fall_through = NULL; in EmitIsJSReceiver() local 3108 &if_true, &if_false, &fall_through); in EmitIsJSReceiver() [all …]
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 647 Label* fall_through) { in DoTest() argument 651 Split(equal, if_true, if_false, fall_through); in DoTest() 658 Label* fall_through) { in Split() argument 659 if (if_false == fall_through) { in Split() 661 } else if (if_true == fall_through) { in Split() 2955 Label* fall_through = NULL; in EmitIsSmi() local 2957 &if_true, &if_false, &fall_through); in EmitIsSmi() 2976 Label* fall_through = NULL; in EmitIsJSReceiver() local 2978 &if_true, &if_false, &fall_through); in EmitIsJSReceiver() 2983 Split(above_equal, if_true, if_false, fall_through); in EmitIsJSReceiver() [all …]
|
/external/v8/src/wasm/ |
D | asm-wasm-builder.cc | 229 void CompileCase(CaseClause* clause, uint16_t fall_through, in CompileCase() argument 240 AddLeb128(fall_through, true); in CompileCase() 242 SetLocalTo(fall_through, 1); in CompileCase() 253 uint16_t fall_through = current_function_builder_->AddLocal(kAstI32); in VisitSwitchStatement() local 254 SetLocalTo(fall_through, 0); in VisitSwitchStatement() 260 CompileCase(clause, fall_through, tag); in VisitSwitchStatement()
|
/external/v8/src/regexp/ |
D | jsregexp.cc | 1747 Label* fall_through, in EmitBoundaryTest() argument 1750 if (below != fall_through) { in EmitBoundaryTest() 1752 if (above_or_equal != fall_through) masm->GoTo(above_or_equal); in EmitBoundaryTest() 1762 Label* fall_through, in EmitDoubleBoundaryTest() argument 1765 if (in_range == fall_through) { in EmitDoubleBoundaryTest() 1777 if (out_of_range != fall_through) masm->GoTo(out_of_range); in EmitDoubleBoundaryTest() 1790 Label* fall_through, in EmitUseLookupTable() argument 1809 if (even_label == fall_through) { in EmitUseLookupTable() 1839 if (on_bit_clear != fall_through) masm->GoTo(on_bit_clear); in EmitUseLookupTable() 1950 Label* fall_through, in GenerateBranches() argument [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | aarch64-fix-cortex-a53-835769.ll | 495 define i64 @fall_through(i64 %a, i64 %b, i64* nocapture readonly %c) #0 { 503 %tmp = ptrtoint i8* blockaddress(@fall_through, %block1) to i64 507 ; CHECK-LABEL: fall_through 513 ; CHECK-NOWORKAROUND-LABEL: fall_through
|
/external/v8/src/arm64/ |
D | macro-assembler-arm64.cc | 3515 Label* fall_through) { in CompareAndSplit() argument 3516 if ((if_true == if_false) && (if_false == fall_through)) { in CompareAndSplit() 3520 } else if (if_false == fall_through) { in CompareAndSplit() 3522 } else if (if_true == fall_through) { in CompareAndSplit() 3535 Label* fall_through) { in TestAndSplit() argument 3536 if ((if_all_clear == if_any_set) && (if_any_set == fall_through)) { in TestAndSplit() 3540 } else if (if_all_clear == fall_through) { in TestAndSplit() 3542 } else if (if_any_set == fall_through) { in TestAndSplit()
|
D | macro-assembler-arm64.h | 1500 Label* fall_through); 1508 Label* fall_through);
|