Lines Matching refs:EntryPoint
1956 JITEvaluatedSymbol EntryPoint; in getEntryPoint() local
1961 EntryPoint = *EP; in getEntryPoint()
1966 << "\": " << formatv("{0:x16}", EntryPoint.getAddress()) << "\n"; in getEntryPoint()
1973 EntryPoint = *EP; in getEntryPoint()
1978 << formatv("{0:x16}", EntryPoint.getAddress()) << ")\n"; in getEntryPoint()
1982 return EntryPoint; in getEntryPoint()
2046 Expected<JITEvaluatedSymbol> EntryPoint(nullptr); in main() local
2048 ExpectedAsOutParameter<JITEvaluatedSymbol> _(&EntryPoint); in main()
2050 EntryPoint = getEntryPoint(*S); in main()
2062 if (!EntryPoint) { in main()
2065 reportLLVMJITLinkError(EntryPoint.takeError()); in main()
2080 ExitOnErr(runWithRuntime(*S, ExecutorAddr(EntryPoint->getAddress()))); in main()
2083 runWithoutRuntime(*S, ExecutorAddr(EntryPoint->getAddress()))); in main()