OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OldGV
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/LTO/
LTO.cpp
1073
GlobalVariable *
OldGV
= RegularLTO.CombinedModule->getNamedGlobal(I.first);
1074
if (
OldGV
&& DL.getTypeAllocSize(
OldGV
->getValueType()) == I.second.Size) {
1077
OldGV
->setAlignment(I.second.Align);
1086
if (
OldGV
) {
1087
OldGV
->replaceAllUsesWith(ConstantExpr::getBitCast(GV,
OldGV
->getType()));
1088
GV->takeName(
OldGV
);
1089
OldGV
->eraseFromParent();
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp
354
llvm::GlobalVariable *
OldGV
= GV;
357
CGM.getModule(), Init->getType(),
OldGV
->isConstant(),
358
OldGV
->getLinkage(), Init, "",
359
/*InsertBefore*/
OldGV
,
OldGV
->getThreadLocalMode(),
360
OldGV
->getType()->getPointerAddressSpace());
361
GV->setVisibility(
OldGV
->getVisibility());
362
GV->setDSOLocal(
OldGV
->isDSOLocal());
363
GV->setComdat(
OldGV
->getComdat());
366
GV->takeName(
OldGV
);
[
all
...]
CGObjCGNU.cpp
1363
auto *
OldGV
= TheModule.getGlobalVariable(SymName);
1372
assert(!
OldGV
);
1421
if (
OldGV
) {
1422
OldGV
->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GV,
1423
OldGV
->getType()));
1424
OldGV
->removeFromParent();
CodeGenModule.cpp
4020
llvm::GlobalVariable *
OldGV
= nullptr;
4030
OldGV
= GV;
4037
if (
OldGV
) {
4039
GV->takeName(
OldGV
);
4041
if (!
OldGV
->use_empty()) {
4043
llvm::ConstantExpr::getBitCast(GV,
OldGV
->getType());
4044
OldGV
->replaceAllUsesWith(NewPtrForOldDecl);
4047
OldGV
->eraseFromParent();
4362
// We must make a new GlobalVariable* and update everything that used
OldGV
ItaniumCXXABI.cpp
3656
llvm::GlobalVariable *
OldGV
= CGM.getModule().getNamedGlobal(Name);
3657
if (
OldGV
&& !
OldGV
->isDeclaration()) {
3658
assert(!
OldGV
->hasAvailableExternallyLinkage() &&
3661
return llvm::ConstantExpr::getBitCast(
OldGV
, CGM.Int8PtrTy);
3821
llvm::GlobalVariable *
OldGV
= M.getNamedGlobal(Name);
3839
if (
OldGV
) {
3840
GV->takeName(
OldGV
);
3842
llvm::ConstantExpr::getBitCast(GV,
OldGV
->getType());
3843
OldGV
->replaceAllUsesWith(NewPtr)
[
all
...]
Completed in 35 milliseconds
Indexes created Wed Jun 24 00:24:50 UTC 2026