Displaying 2 results from an estimated 2 matches for "baselayer".
Did you mean:
baselayert
2016 Apr 01
2
Kaleidoscope on Windows - bug maybe found?
...bol(mangle(Name));
}
JITSymbol findSymbol(const std::string &Name) {
return CompileLayer.findSymbol(Name, true);
}
CompileLayerT CompileLayer;
typedef IRCompileLayer<ObjLayerT> CompileLayerT;
C:\llvm\include\llvm\ExecutionEngine\Orc\IRCompileLayer.h
template <typename BaseLayerT> class IRCompileLayer {
JITSymbol findSymbol(const std::string &Name, bool ExportedSymbolsOnly) {
return BaseLayer.findSymbol(Name, ExportedSymbolsOnly);
}
C:\llvm\examples\Kaleidoscope\Orc\initial\toy.cpp
typedef ObjectLinkingLayer<> ObjLayerT;
C:\llvm\include\llvm\Exec...
2016 Apr 01
0
Kaleidoscope on Windows - bug maybe found?
...mbol(const std::string &Name) {
> return CompileLayer.findSymbol(Name, true);
> }
>
> CompileLayerT CompileLayer;
> typedef IRCompileLayer<ObjLayerT> CompileLayerT;
>
> C:\llvm\include\llvm\ExecutionEngine\Orc\IRCompileLayer.h
>
> template <typename BaseLayerT> class IRCompileLayer {
>
> JITSymbol findSymbol(const std::string &Name, bool ExportedSymbolsOnly) {
> return BaseLayer.findSymbol(Name, ExportedSymbolsOnly);
> }
>
> C:\llvm\examples\Kaleidoscope\Orc\initial\toy.cpp
>
> typedef ObjectLinkingLayer<>...