Home
last modified time | relevance | path

Searched refs:NewScope (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h93 void closeInsnRange(LexicalScope *NewScope = nullptr) {
100 if (Parent && (!NewScope || !Parent->dominates(NewScope)))
101 Parent->closeInsnRange(NewScope);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerMemIntrinsics.cpp41 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name); in createMemCpyLoopKnownSize() local
86 MDNode::get(Ctx, NewScope)); in createMemCpyLoopKnownSize()
93 Store->setMetadata(LLVMContext::MD_noalias, MDNode::get(Ctx, NewScope)); in createMemCpyLoopKnownSize()
137 MDNode::get(Ctx, NewScope)); in createMemCpyLoopKnownSize()
145 Store->setMetadata(LLVMContext::MD_noalias, MDNode::get(Ctx, NewScope)); in createMemCpyLoopKnownSize()
195 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name); in createMemCpyLoopUnknownSize() local
247 Load->setMetadata(LLVMContext::MD_alias_scope, MDNode::get(Ctx, NewScope)); in createMemCpyLoopUnknownSize()
254 Store->setMetadata(LLVMContext::MD_noalias, MDNode::get(Ctx, NewScope)); in createMemCpyLoopUnknownSize()
316 MDNode::get(Ctx, NewScope)); in createMemCpyLoopUnknownSize()
323 Store->setMetadata(LLVMContext::MD_noalias, MDNode::get(Ctx, NewScope)); in createMemCpyLoopUnknownSize()
H A DCodeExtractor.cpp1331 DILocalScope *NewScope = DILocalScope::cloneScopeForSubprogram( in fixupDebugInfoPostExtraction() local
1334 NewScope, OldVar->getName(), OldVar->getFile(), OldVar->getLine(), in fixupDebugInfoPostExtraction()
1349 DILocalScope *NewScope = DILocalScope::cloneScopeForSubprogram( in fixupDebugInfoPostExtraction() local
1352 DILabel::get(Ctx, NewScope, OldLabel->getName(), OldLabel->getFile(), in fixupDebugInfoPostExtraction()
H A DCloneFunction.cpp1186 MDNode *NewScope = MDB.createAnonymousAliasScope( in cloneNoAliasScopes() local
1188 ClonedScopes.insert(std::make_pair(MD, NewScope)); in cloneNoAliasScopes()
H A DInlineFunction.cpp1165 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name); in AddAliasScopeMetadata() local
1166 NewScopes.insert(std::make_pair(A, NewScope)); in AddAliasScopeMetadata()
1171 MDNode *AScopeList = MDNode::get(CalledFunc->getContext(), NewScope); in AddAliasScopeMetadata()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp121 DIScope *NewScope = DILocalScope::cloneScopeForSubprogram( in replaceInlinedAtSubprogram() local
124 LocToUpdate->getColumn(), NewScope); in replaceInlinedAtSubprogram()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1449 auto LookupAllocationFunction = [&](AllocationFunctionScope NewScope = in makeNewAndDeleteExpr()
1459 if (NewScope == AllocationFunctionScope::Both) in makeNewAndDeleteExpr()
1460 NewScope = PromiseContainsNew ? AllocationFunctionScope::Class in makeNewAndDeleteExpr()
1470 Loc, SourceRange(), NewScope, in makeNewAndDeleteExpr()
H A DSemaExprCXX.cpp2906 AllocationFunctionScope NewScope, AllocationFunctionScope DeleteScope, in FindAllocationFunctions() argument
2990 NewScope != AllocationFunctionScope::Global) in FindAllocationFunctions()
3002 if (NewScope == AllocationFunctionScope::Class) in FindAllocationFunctions()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMemoryLegalizer.cpp2258 uint64_t NewScope = Value & AMDGPU::CPol::SCOPE; in setScope() local
2259 if ((CPol->getImm() & AMDGPU::CPol::SCOPE) != NewScope) { in setScope()
2260 CPol->setImm((CPol->getImm() & ~AMDGPU::CPol::SCOPE) | NewScope); in setScope()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2950 DILexicalBlockFile *NewScope = in cloneWithDiscriminator() local
2952 return DILocation::get(getContext(), getLine(), getColumn(), NewScope, in cloneWithDiscriminator()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h8501 AllocationFunctionScope NewScope, AllocationFunctionScope DeleteScope,