Home
last modified time | relevance | path

Searched refs:hasName (Results 1 – 25 of 60) sorted by relevance

123

/NextBSD/contrib/llvm/lib/IR/
HDSymbolTableListTraitsImpl.h51 if (I->hasName()) in setSymTabObject()
59 if (I->hasName()) in setSymTabObject()
71 if (V->hasName()) in addNodeToList()
80 if (V->hasName()) in removeNodeFromList()
101 bool HasName = V.hasName(); in transferNodesFromList()
HDValue.cpp192 if (!hasName()) in getName()
199 if (NewName.isTriviallyEmpty() && !hasName()) in setNameImpl()
237 if (hasName()) { in setNameImpl()
259 if (hasName()) { in takeName()
264 if (V->hasName()) V->setName(""); in takeName()
277 if (!V->hasName()) return; in takeName()
HDValueSymbolTable.cpp38 assert(V->hasName() && "Can't insert nameless Value into symbol table"); in reinsertValue()
HDAsmWriter.cpp759 if (!Var.hasName()) in processModule()
764 if (!A.hasName()) in processModule()
775 if (!F.hasName()) in processModule()
804 if (!AI->hasName()) in processFunction()
811 if (!BB.hasName()) in processFunction()
815 if (!I.getType()->isVoidTy() && !I.hasName()) in processFunction()
924 assert(!V->hasName() && "Doesn't need a slot!"); in CreateModuleSlot()
939 assert(!V->getType()->isVoidTy() && !V->hasName() && "Doesn't need a slot!"); in CreateFunctionSlot()
1881 if (V->hasName()) { in WriteAsOperandInternal()
2631 if (Arg->hasName()) { in printArgument()
[all …]
HDMangler.cpp119 if (!GV->hasName()) { in getNameWithPrefix()
HDTypeFinder.cpp114 if (!OnlyNamed || STy->hasName()) in incorporateType()
/NextBSD/contrib/llvm/tools/llvm-diff/
HDDiffConsumer.cpp27 if (!AI->hasName()) in ComputeNumbering()
32 if (!FI->hasName()) in ComputeNumbering()
38 if (!BI->hasName() && !BI->getType()->isVoidTy()) in ComputeNumbering()
49 if (V->hasName()) { in printValue()
113 if (L->hasName() && R->hasName() && L->getName() == R->getName()) in header()
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDInstructionNamer.cpp37 if (!AI->hasName() && !AI->getType()->isVoidTy()) in runOnFunction()
41 if (!BB->hasName()) in runOnFunction()
45 if (!I->hasName() && !I->getType()->isVoidTy()) in runOnFunction()
HDCloneFunction.cpp44 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix); in CloneBasicBlock()
52 if (II->hasName()) in CloneBasicBlock()
308 if (BB->hasName()) NewBB->setName(BB->getName()+NameSuffix); in CloneBlock()
374 if (II->hasName()) in CloneBlock()
446 if (OldTI->hasName()) in CloneBlock()
HDBasicBlockUtils.cpp161 if (!PredBB->hasName()) in MergeBlockIntoPredecessor()
197 if (I.hasName() && !V->hasName()) in ReplaceInstWithValue()
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCLoopPreIncPrep.cpp288 MemI->hasName() ? MemI->getName() + ".phi" : "", in runOnLoop()
308 MemI->hasName() ? MemI->getName() + ".inc" : "", InsPoint); in runOnLoop()
321 PtrInc->hasName() ? PtrInc->getName() + ".cast" : "", InsPoint); in runOnLoop()
355 I->second->hasName() ? I->second->getName() + ".off" : "", PtrIP); in runOnLoop()
368 Ptr->hasName() ? Ptr->getName() + ".cast" : ""); in runOnLoop()
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDRewriteStatepointsForGC.cpp251 if (a->hasName() && b->hasName()) { in order_by_name()
253 } else if (a->hasName() && !b->hasName()) { in order_by_name()
255 } else if (!a->hasName() && b->hasName()) { in order_by_name()
988 cache.count(v) ? (cache[v]->hasName() ? cache[v]->getName() : "") in findBasePointer()
991 << " for: " << (v->hasName() ? v->getName() : "") in findBasePointer()
993 << " to: " << (base->hasName() ? base->getName() : "") << "\n"; in findBasePointer()
1210 LiveVariables[i]->hasName() ? LiveVariables[i]->getName() + ".relocated" in CreateGCRelocates()
1468 RelocatedValue->hasName() ? RelocatedValue->getName() + ".casted" : ""); in insertRelocationStores()
HDPartiallyInlineLibCalls.cpp81 if (CalledFunc->hasLocalLinkage() || !CalledFunc->hasName() || in runOnFunction()
/NextBSD/contrib/llvm/lib/Transforms/ObjCARC/
HDProvenanceAnalysisEvaluator.cpp49 if (!V->hasName()) in insertIfNamed()
/NextBSD/contrib/llvm/lib/Target/NVPTX/
HDNVPTXUtilities.cpp243 assert(val.hasName() && "Found texture variable with no name"); in getTextureName()
248 assert(val.hasName() && "Found surface variable with no name"); in getSurfaceName()
253 assert(val.hasName() && "Found sampler variable with no name"); in getSamplerName()
HDNVPTXReplaceImageHandles.cpp171 assert(GV->hasName() && "Global sampler must be named!"); in findIndexForHandle()
/NextBSD/contrib/llvm/tools/lli/
HDOrcLazyJIT.cpp75 if (F.hasName()) { in createDebugDumper()
/NextBSD/contrib/llvm/tools/bugpoint/
HDExtractFunction.cpp288 if (I->hasName() && I->getName()[0] == '\01') in SplitFunctionsOutOfModule()
368 if (!BB->hasName()) BB->setName("tmpbb"); in extractMappedBlocksFromModule()
/NextBSD/contrib/llvm/lib/CodeGen/
HDMIRPrinter.cpp224 YamlMBB.Name.Value = BB->hasName() ? BB->getName() : "<unnamed bb>"; in convert()
298 if (BB->hasName()) in printMBBReference()
/NextBSD/contrib/llvm/lib/Transforms/Instrumentation/
HDSafeStack.cpp422 if (AI->hasName() && isa<Instruction>(NewAI)) in moveStaticAllocasToUnsafeStack()
482 if (AI->hasName() && isa<Instruction>(NewAI)) in moveDynamicAllocasToUnsafeStack()
/NextBSD/contrib/llvm/lib/ExecutionEngine/Orc/
HDIndirectionUtils.cpp64 if (!New.hasName() || New.getName().startswith("\01L")) in needsRenaming()
/NextBSD/contrib/llvm/lib/Analysis/
HDSparsePropagation.cpp335 if (BB->hasName()) in Print()
/NextBSD/contrib/llvm/include/llvm/IR/
HDDerivedTypes.h256 bool hasName() const { return SymbolTableEntry != nullptr; } in hasName() function
/NextBSD/contrib/llvm/lib/Linker/
HDLinkModules.cpp123 if (STy->hasName()) in addTypeMapping()
240 if (STy->hasName()) { in finishType()
472 if (!SrcGV->hasName() || SrcGV->hasLocalLinkage()) in getLinkedToGlobal()
848 if (!ST->hasName()) in computeTypeMapping()
/NextBSD/contrib/llvm/utils/TableGen/
HDDAGISelMatcherGen.cpp224 assert(N->hasName() && "Unnamed ? leaf"); in EmitLeafMatchCode()
240 if (N->hasName()) in EmitLeafMatchCode()

123