Searched refs:JD2 (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/ |
| H A D | CoreAPIsTest.cpp | 246 auto &JD2 = ES.createBareJITDylib("JD2"); in TEST_F() local 247 cantFail(JD2.define(absoluteSymbols({{Bar, QuxSym}}))); in TEST_F() 250 auto Result = cantFail(ES.lookup(makeJITDylibSearchOrder({&JD, &JD2}), in TEST_F() 357 auto &JD2 = ES.createBareJITDylib("JD2"); in TEST_F() local 361 auto Result = cantFail(ES.lookup(makeJITDylibSearchOrder(&JD2), Bar)); in TEST_F() 382 auto &JD2 = ES.createBareJITDylib("JD2"); in TEST_F() local 384 cantFail(JD2.define(reexports( in TEST_F() 387 auto Result = cantFail(ES.lookup(makeJITDylibSearchOrder(&JD2), Baz)); in TEST_F() 397 auto &JD2 = ES.createBareJITDylib("JD2"); in TEST_F() local 398 cantFail(JD2.define(absoluteSymbols({{Foo, FooSym}, {Bar, BarSym}}))); in TEST_F() [all …]
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | ORCv2.rst | 403 auto &JD2 = ... ; 405 // Make 'bar' in JD2 an alias for 'foo' from JD1. 406 JD2.define( 448 ``JD2`` by calling: 453 JD2.define( 523 JITDylib &JD2 = ...; 525 auto Sym = ES.lookup({&JD1, &JD2}, ES.intern("_main"));
|