Searched refs:CurrentBlock (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/compiler/ |
D | raw-machine-assembler.cc | 75 schedule()->AddGoto(CurrentBlock(), Use(label)); in Goto() 84 schedule()->AddBranch(CurrentBlock(), branch, Use(true_val), Use(false_val)); in Branch() 92 schedule()->AddCall(CurrentBlock(), call, Use(if_success), Use(if_exception)); in Continuations() 118 schedule()->AddSwitch(CurrentBlock(), switch_node, succ_blocks, succ_count); in Switch() 125 schedule()->AddReturn(CurrentBlock(), ret); in Return() 133 schedule()->AddReturn(CurrentBlock(), ret); in Return() 141 schedule()->AddReturn(CurrentBlock(), ret); in Return() 148 schedule()->AddReturn(CurrentBlock(), ret); in PopAndReturn() 155 schedule()->AddReturn(CurrentBlock(), ret); in PopAndReturn() 163 schedule()->AddReturn(CurrentBlock(), ret); in PopAndReturn() [all …]
|
D | raw-machine-assembler.h | 814 BasicBlock* CurrentBlock();
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | GVN.cpp | 2226 BasicBlock *CurrentBlock = *DI; in performPRE() local 2229 if (CurrentBlock == &F.getEntryBlock()) continue; in performPRE() 2232 if (CurrentBlock->isLandingPad()) continue; in performPRE() 2234 for (BasicBlock::iterator BI = CurrentBlock->begin(), in performPRE() 2235 BE = CurrentBlock->end(); BI != BE; ) { in performPRE() 2263 for (pred_iterator PI = pred_begin(CurrentBlock), in performPRE() 2264 PE = pred_end(CurrentBlock); PI != PE; ++PI) { in performPRE() 2269 if (P == CurrentBlock) { in performPRE() 2301 unsigned SuccNum = GetSuccessorNumber(PREPred, CurrentBlock); in performPRE() 2347 pred_iterator PB = pred_begin(CurrentBlock), PE = pred_end(CurrentBlock); in performPRE() [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 2368 BasicBlock *CurrentBlock = CurInst->getParent(); in performScalarPRE() local 2371 for (BasicBlock *P : predecessors(CurrentBlock)) { in performScalarPRE() 2375 if (P == CurrentBlock) { in performScalarPRE() 2416 unsigned SuccNum = GetSuccessorNumber(PREPred, CurrentBlock); in performScalarPRE() 2440 CurInst->getName() + ".pre-phi", &CurrentBlock->front()); in performScalarPRE() 2449 addToLeaderTable(ValNo, Phi, CurrentBlock); in performScalarPRE() 2455 removeFromLeaderTable(ValNo, CurInst, CurrentBlock); in performScalarPRE() 2471 for (BasicBlock *CurrentBlock : depth_first(&F.getEntryBlock())) { in performPRE() 2473 if (CurrentBlock == &F.getEntryBlock()) in performPRE() 2477 if (CurrentBlock->isEHPad()) in performPRE() [all …]
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 203 const CFGBlock *CurrentBlock) in TransferFunctions() argument 204 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {} in TransferFunctions()
|
/external/mesa3d/src/mesa/main/ |
D | dlist.c | 1354 n = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos; in dlist_alloc() 1366 ctx->ListState.CurrentBlock = newblock; in dlist_alloc() 1379 n = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos; in dlist_alloc() 1496 if ((list->CurrentList->Head == list->CurrentBlock) && in trim_list() 1501 list->CurrentBlock = realloc(list->CurrentBlock, newSize); in trim_list() 1502 if (!list->CurrentBlock) { in trim_list() 9338 ctx->ListState.CurrentBlock = ctx->ListState.CurrentList->Head; in _mesa_NewList() 9394 ctx->ListState.CurrentBlock = NULL; in _mesa_EndList() 10500 ctx->ListState.CurrentBlock = NULL; in _mesa_init_display_list()
|
D | mtypes.h | 4146 union gl_dlist_node *CurrentBlock; /**< Pointer to current block of nodes */ member
|