HomeSort by: relevance | last modified time | path
    Searched defs:GO (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionImportUtils.cpp 293 auto *GO = dyn_cast<GlobalObject>(&GV);
294 if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) {
298 assert(GO->hasAvailableExternallyLinkage() &&
300 GO->setComdat(nullptr);
315 for (auto &GO : M.global_objects())
316 if (auto *C = GO.getComdat()) {
319 GO.setComdat(Replacement->second);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Globals.cpp 165 if (const GlobalObject *GO = GA->getBaseObject())
166 return GO->getSection();
175 if (const GlobalObject *GO = GA->getBaseObject())
176 return const_cast<GlobalObject *>(GO)->getComdat();
284 if (auto *GO = dyn_cast<GlobalObject>(this))
285 return GO;
292 auto *GO = dyn_cast<GlobalObject>(this);
293 if (!GO)
296 return GO->getMetadata(LLVMContext::MD_absolute_symbol);
300 auto *GO = dyn_cast<GlobalObject>(this)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp 1170 const GlobalObject *GO = GV->getBaseObject();
1171 if (TLOF->isGlobalInSmallSection(GO, getTargetMachine())) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 262 GlobalObject *GO;
279 static GlobalTypeMember *create(BumpPtrAllocator &Alloc, GlobalObject *GO,
284 GTM->GO = GO;
294 return GO;
472 void verifyTypeMDNode(GlobalObject *GO, MDNode *Type);
492 /// replaceCfiUses - Go through the uses list for this definition
499 /// replaceDirectCalls - Go through the uses list for this definition and
1183 void LowerTypeTestsModule::verifyTypeMDNode(GlobalObject *GO, MDNode *Type) {
1187 if (GO->isThreadLocal()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 1231 const GlobalObject *GO = GV->getBaseObject();
1232 if (GO && Subtarget.useSmallData() && HLOF.isGlobalInSmallSection(GO, HTM))
3471 // go on the stack. We cannot check that here because at this point that
3550 const auto *GO = dyn_cast_or_null<const GlobalObject>(GA->getGlobal());
3551 return !GO || !HTM.getObjFileLowering()->isGlobalInSmallSection(GO, HTM);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 379 const GlobalObject &GO);
2250 auto AddDeclAttachedMetadata = [&](const GlobalObject &GO) {
2252 Record.push_back(VE.getValueID(&GO));
2253 pushGlobalMetadataAttachment(Record, GO);
2280 SmallVectorImpl<uint64_t> &Record, const GlobalObject &GO) {
2283 GO.getAllMetadata(MDs);
2582 const auto *GO = cast<GEPOperator>(C);
2583 Record.push_back(VE.getTypeID(GO->getSourceElementType()));
2584 if (Optional<unsigned> Idx = GO->getInRangeIndex()) {
2586 Record.push_back((*Idx << 1) | GO->isInBounds())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsISelLowering.cpp 2076 const GlobalObject *GO = GV->getBaseObject();
2077 if (GO && TLOF->IsGlobalInSmallSection(GO, getTargetMachine()))
2840 // go to stack.
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 2062 auto *GO = dyn_cast<GlobalObject>(V);
2063 if (GO) {
2064 if (GO->getComdat() == reinterpret_cast<Comdat *>(1)) {
2066 GO->setComdat(TheModule->getOrInsertComdat(V->getName()));
2068 GO->setComdat(nullptr);
2394 // Once all the constants have been read, go through and resolve forward

Completed in 97 milliseconds