Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/JIT/
DJITMemoryManager.cpp310 MemoryRangeHeader *CurBlock; member in __anon73c4a9620211::DefaultJITMemoryManager
379 CurBlock = candidateBlock; in startFunctionBody()
383 ActualSize = CurBlock->BlockSize - sizeof(MemoryRangeHeader); in startFunctionBody()
384 return (uint8_t *)(CurBlock + 1); in startFunctionBody()
427 assert(FunctionStart == (uint8_t *)(CurBlock+1) && in endFunctionBody()
430 uintptr_t BlockSize = FunctionEnd - (uint8_t *)CurBlock; in endFunctionBody()
433 FreeMemoryList =CurBlock->TrimAllocationToSize(FreeMemoryList, BlockSize); in endFunctionBody()
439 CurBlock = FreeMemoryList; in allocateSpace()
442 uint8_t *result = (uint8_t *)(CurBlock + 1); in allocateSpace()
448 uintptr_t BlockSize = result + Size - (uint8_t *)CurBlock; in allocateSpace()
[all …]
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp259 BasicBlock *CurBlock = SI->getParent(); in processSwitchInst() local
260 BasicBlock *OrigBlock = CurBlock; in processSwitchInst()
261 Function *F = CurBlock->getParent(); in processSwitchInst()
267 BranchInst::Create(SI->getDefaultDest(), CurBlock); in processSwitchInst()
268 CurBlock->getInstList().erase(SI); in processSwitchInst()
304 CurBlock->getInstList().erase(SI); in processSwitchInst()
/external/llvm/lib/Target/R600/
DAMDILCFGStructurizer.cpp207 int patternMatch(BlockT *CurBlock);
208 int patternMatchGroup(BlockT *CurBlock);
210 int serialPatternMatch(BlockT *CurBlock);
211 int ifPatternMatch(BlockT *CurBlock);
212 int switchPatternMatch(BlockT *CurBlock);
213 int loopendPatternMatch(BlockT *CurBlock);
214 int loopPatternMatch(BlockT *CurBlock);
241 void mergeIfthenelseBlock(InstrT *BranchInstr, BlockT *CurBlock,
261 BlockT *cloneBlockForPredecessor(BlockT *CurBlock, BlockT *PredBlock);
272 bool isActiveLoophead(BlockT *CurBlock);
/external/clang/lib/Sema/
DSemaExpr.cpp9477 BlockScopeInfo *CurBlock = getCurBlock(); in ActOnBlockArguments() local
9521 CurBlock->TheDecl->setSignatureAsWritten(Sig); in ActOnBlockArguments()
9522 CurBlock->FunctionType = T; in ActOnBlockArguments()
9529 CurBlock->TheDecl->setIsVariadic(isVariadic); in ActOnBlockArguments()
9543 CurBlock->ReturnType = RetTy; in ActOnBlockArguments()
9544 CurBlock->TheDecl->setBlockMissingReturnType(false); in ActOnBlockArguments()
9545 CurBlock->HasImplicitReturnType = false; in ActOnBlockArguments()
9567 BuildParmVarDeclForTypedef(CurBlock->TheDecl, in ActOnBlockArguments()
9576 CurBlock->TheDecl->setParams(Params); in ActOnBlockArguments()
9577 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(), in ActOnBlockArguments()
[all …]
DSemaChecking.cpp1340 BlockScopeInfo *CurBlock = getCurBlock(); in SemaBuiltinVAStart() local
1342 if (CurBlock) in SemaBuiltinVAStart()
1343 isVariadic = CurBlock->TheDecl->isVariadic(); in SemaBuiltinVAStart()
1364 if (CurBlock) in SemaBuiltinVAStart()
1365 LastArg = *(CurBlock->TheDecl->param_end()-1); in SemaBuiltinVAStart()
DSemaStmt.cpp2352 if (BlockScopeInfo *CurBlock = dyn_cast<BlockScopeInfo>(CurCap)) { in ActOnCapScopeReturnStmt() local
2353 if (CurBlock->FunctionType->getAs<FunctionType>()->getNoReturnAttr()) { in ActOnCapScopeReturnStmt()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2052 MachineBasicBlock *CurBlock = CR.CaseBB; in handleSmallSwitchRange() local
2056 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); in handleSmallSwitchRange()
2080 /* me */ CurBlock, in handleSmallSwitchRange()
2088 if (CurBlock == SwitchBB) in handleSmallSwitchRange()
2093 CurBlock = FallThrough; in handleSmallSwitchRange()