Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djump-threading.cc75 bool fallthru = true; in ComputeForwarding() local
82 fallthru = false; in ComputeForwarding()
86 fallthru = false; in ComputeForwarding()
95 fallthru = false; in ComputeForwarding()
99 fallthru = false; in ComputeForwarding()
103 if (fallthru) { in ComputeForwarding()
146 bool fallthru = true; in ApplyForwarding() local
150 fallthru = false; // branches don't fall through to the next block. in ApplyForwarding()
157 fallthru = false; // jumps don't fall through to the next block. in ApplyForwarding()
160 prev_fallthru = fallthru; in ApplyForwarding()
Dcode-generator.h27 bool fallthru; member
Dcode-generator.cc311 branch.fallthru = IsNextInAssemblyOrder(false_rpo); in AssembleInstruction()
/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 ]
/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc1113 branch->fallthru ? Label::kNear : Label::kFar; in AssembleArchBranch()
1164 if (!branch->fallthru) __ jmp(flabel); in AssembleArchBranch()
/external/v8/src/compiler/x64/
Dcode-generator-x64.cc1635 branch->fallthru ? Label::kNear : Label::kFar; in AssembleArchBranch()
1685 if (!branch->fallthru) __ jmp(flabel, flabel_distance); in AssembleArchBranch()
/external/v8/src/compiler/x87/
Dcode-generator-x87.cc1489 branch->fallthru ? Label::kNear : Label::kFar; in AssembleArchBranch()
1540 if (!branch->fallthru) __ jmp(flabel); in AssembleArchBranch()
/external/v8/src/compiler/arm/
Dcode-generator-arm.cc1011 if (!branch->fallthru) __ b(flabel); // no fallthru to flabel. in AssembleArchBranch()
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc1279 if (!branch->fallthru) __ B(flabel); // no fallthru to flabel. in AssembleArchBranch()
/external/v8/src/compiler/mips/
Dcode-generator-mips.cc1241 if (!branch->fallthru) __ Branch(flabel); // no fallthru to flabel. in AssembleArchBranch()
/external/v8/src/compiler/ppc/
Dcode-generator-ppc.cc1442 if (!branch->fallthru) __ b(flabel); // no fallthru to flabel. in AssembleArchBranch()
/external/v8/src/compiler/mips64/
Dcode-generator-mips64.cc1467 if (!branch->fallthru) __ Branch(flabel); // no fallthru to flabel. in AssembleArchBranch()