Home
last modified time | relevance | path

Searched refs:isExternal (Results 1 – 25 of 56) sorted by relevance

123

/llvm-project-15.0.7/lld/COFF/
H A DSymbols.h106 : symbolKind(k), isExternal(true), isCOMDAT(false), in symbolKind()
115 unsigned isExternal : 1; variable
201 bool isExternal = false,
205 this->isExternal = isExternal; in DefinedCOFF()
226 this->isExternal = true; in DefinedCOFF()
248 isExternal = s.isExternal(); in DefinedAbsolute()
H A DInputFiles.cpp143 if (coffSym.isUndefined() || !coffSym.isExternal() || in parseLazy()
358 if (sym.isExternal()) { in createRegular()
607 if (sym.isExternal()) in createDefined()
639 if (sym.isExternal()) { in createDefined()
/llvm-project-15.0.7/mlir/lib/Analysis/
H A DCallGraph.cpp28 bool CallGraphNode::isExternal() const { return !callableRegion; } in isExternal() function in CallGraphNode
33 assert(!isExternal() && "the external node has no callable region"); in getCallableRegion()
40 assert(isExternal() && "abstract edges are only valid on external nodes"); in addAbstractEdge()
179 if (node->isExternal()) { in print()
/llvm-project-15.0.7/mlir/lib/Dialect/MemRef/Transforms/
H A DNormalizeMemRefs.cpp154 if (funcOp.isExternal()) in areMemRefsNormalizable()
206 if (!funcOp.isExternal()) { in updateFunctionSignature()
313 if (!funcOp.isExternal()) in updateFunctionSignature()
358 if (newMemRefType == memrefType || funcOp.isExternal()) { in normalizeFuncOpMemRefs()
399 !funcOp.isExternal()) { in normalizeFuncOpMemRefs()
450 if (funcOp.isExternal()) { in normalizeFuncOpMemRefs()
/llvm-project-15.0.7/lld/MachO/
H A DSymbols.cpp44 uint64_t value, uint64_t size, bool isWeakDef, bool isExternal, in Defined() argument
54 weakDef(isWeakDef), external(isExternal), isec(isec), value(value), in Defined()
H A DSymbols.h119 uint64_t size, bool isWeakDef, bool isExternal, bool isPrivateExtern,
126 return isWeakDef() && isExternal() && !privateExtern; in isExternalWeakDef()
130 bool isExternal() const { return external; } in isExternal() function
H A DLTO.cpp84 defined->isExternal() && !defined->privateExtern && exportDynamic; in add()
H A DMarkLive.cpp268 if (!defined->isExternal() && defined->noDeadStrip) in markLive()
H A DConcatOutputSection.cpp329 if (!isa<Defined>(funcSym) || cast<Defined>(funcSym)->isExternal()) { in finalize()
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/Transforms/
H A DLoopUnrollAndJam.cpp73 if (getOperation().isExternal()) in runOnOperation()
H A DLoopUnroll.cpp84 if (func.isExternal()) in runOnOperation()
/llvm-project-15.0.7/mlir/lib/Dialect/Bufferization/Transforms/
H A DBufferResultsToOutParams.cpp81 if (func.isExternal()) in updateFuncOp()
171 if (func.isExternal()) in promoteBufferResultsToOutParams()
H A DDropEquivalentBufferResults.cpp67 if (funcOp.isExternal()) in dropEquivalentBufferResults()
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/JITLink/
H A DLinkGraphTests.cpp226 EXPECT_FALSE(S1.isExternal()) << "Symbol should not be external"; in TEST()
245 EXPECT_TRUE(S1.isExternal()) << "Symbol should be external"; in TEST()
273 EXPECT_TRUE(S1.isExternal()) << "Symbol should be external"; in TEST()
291 EXPECT_FALSE(S1.isExternal()) << "Symbol should not be external"; in TEST()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/MLProgram/IR/
H A DMLProgramOps.td67 return isExternal() ? nullptr : &getBody();
95 bool isDeclaration() { return isExternal(); }
415 ::mlir::Region *getCallableRegion() { return isExternal() ? nullptr : &getBody(); }
435 bool isDeclaration() { return isExternal(); }
/llvm-project-15.0.7/mlir/lib/IR/
H A DFunctionImplementation.cpp268 bool isExternal = body.empty(); in printFunctionSignature() local
276 if (!isExternal) { in printFunctionSignature()
/llvm-project-15.0.7/mlir/test/lib/IR/
H A DTestSymbolUses.cpp46 if (funcSymbol && funcSymbol.isExternal()) in operateOnSymbol()
/llvm-project-15.0.7/mlir/lib/Transforms/
H A DInliner.cpp348 if (!targetNode->isExternal()) in collectCallOps()
471 if (node->isExternal()) in inlineCallsInSCC()
711 if (node->isExternal()) in optimizeSCC()
/llvm-project-15.0.7/mlir/include/mlir/Analysis/
H A DCallGraph.h92 bool isExternal() const;
/llvm-project-15.0.7/llvm/lib/MC/
H A DMachObjectWriter.cpp378 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined())) in writeNlist()
574 if (!Symbol.isExternal() && !Symbol.isUndefined()) in computeSymbolTable()
600 if (Symbol.isExternal() || Symbol.isUndefined()) in computeSymbolTable()
1069 if (it->Symbol->isDefined() && !it->Symbol->isExternal()) { in writeObject()
H A DWinCOFFObjectWriter.cpp354 if (Symbol.isCommon() && Symbol.isExternal()) in getSymbolValue()
374 if (Aliasee.isUndefined() || Aliasee.isExternal()) in getLinkedSymbol()
437 bool IsExternal = MCSym.isExternal() || in DefineSymbol()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DCOFF.h377 bool isExternal() const { in isExternal() function
382 return isExternal() && getSectionNumber() == COFF::IMAGE_SYM_UNDEFINED && in isCommon()
387 return isExternal() && getSectionNumber() == COFF::IMAGE_SYM_UNDEFINED && in isUndefined()
396 return isExternal() && getBaseType() == COFF::IMAGE_SYM_TYPE_NULL && in isFunctionDefinition()
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSymbol.h401 bool isExternal() const { return IsExternal; } in isExternal() function
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Func/IR/
H A DFuncOps.td295 ::mlir::Region *getCallableRegion() { return isExternal() ? nullptr : &getBody(); }
322 bool isDeclaration() { return isExternal(); }
/llvm-project-15.0.7/mlir/lib/Dialect/Func/IR/
H A DFuncOps.cpp306 if (!isExternal()) { in clone()

123