Home
last modified time | relevance | path

Searched refs:fallthru (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/v8/src/compiler/ia32/
Dcode-generator-ia32.cc407 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch() local
409 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
410 Label::Distance flabel_distance = fallthru ? Label::kNear : Label::kFar; in AssembleArchBranch()
467 if (!fallthru) __ jmp(flabel, flabel_distance); // no fallthru to flabel. in AssembleArchBranch()
/external/chromium_org/v8/src/compiler/x64/
Dcode-generator-x64.cc629 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch() local
631 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
632 Label::Distance flabel_distance = fallthru ? Label::kNear : Label::kFar; in AssembleArchBranch()
689 if (!fallthru) __ jmp(flabel, flabel_distance); // no fallthru to flabel. in AssembleArchBranch()
/external/chromium_org/v8/src/compiler/arm64/
Dcode-generator-arm64.cc479 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch() local
481 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
538 if (!fallthru) __ B(flabel); // no fallthru to flabel. in AssembleArchBranch()
/external/chromium_org/v8/src/compiler/arm/
Dcode-generator-arm.cc453 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch() local
455 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
512 if (!fallthru) __ b(flabel); // no fallthru to flabel. in AssembleArchBranch()
/external/llvm/test/CodeGen/SystemZ/
Dspill-01.ll427 br i1 %cond, label %skip, label %fallthru
429 fallthru:
444 %newval8 = phi i64 [ %val8, %entry ], [ %val9, %fallthru ]