Home
last modified time | relevance | path

Searched refs:fblock (Results 1 – 7 of 7) sorted by relevance

/external/v8/test/cctest/compiler/
Dtest-schedule.cc77 BasicBlock* fblock = schedule.NewBasicBlock(); in TEST() local
84 schedule.AddBranch(entry, b, tblock, fblock); in TEST()
89 CHECK_EQ(fblock, entry->SuccessorAt(1)); in TEST()
95 CHECK_EQ(1, fblock->PredecessorCount()); in TEST()
96 CHECK_EQ(entry, fblock->PredecessorAt(0)); in TEST()
97 CHECK_EQ(0, fblock->SuccessorCount()); in TEST()
/external/v8/src/compiler/
Dschedule.h237 BasicBlock* fblock) { in AddBranch() argument
242 AddSuccessor(block, fblock); in AddBranch()
/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc406 BasicBlock* fblock = i.InputBlock(instr->InputCount() - 1); in AssembleArchBranch() local
407 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch()
409 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc478 BasicBlock* fblock = i.InputBlock(instr->InputCount() - 1); in AssembleArchBranch() local
479 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch()
481 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
/external/v8/src/compiler/arm/
Dcode-generator-arm.cc452 BasicBlock* fblock = i.InputBlock(instr->InputCount() - 1); in AssembleArchBranch() local
453 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch()
455 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
/external/v8/src/compiler/x64/
Dcode-generator-x64.cc628 BasicBlock* fblock = i.InputBlock(static_cast<int>(instr->InputCount()) - 1); in AssembleArchBranch() local
629 bool fallthru = IsNextInAssemblyOrder(fblock); in AssembleArchBranch()
631 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); in AssembleArchBranch()
/external/clang/test/SemaObjC/
Darc-decls.m120 @property (copy, nonatomic) __attribute__((ns_returns_retained)) id (^fblock)(void);