Home | History | Annotate | Download | only in MCJIT

Lines Matching refs:FB

217   // Module B { Extern FA, Function FB which calls FA },
218 // Module C { Extern FB, Function FC which calls FB },
221 std::unique_ptr<Module> &B, Function *&FB,
228 FB = insertSimpleCallFunction<int32_t(int32_t, int32_t)>(B.get(), FAExtern_in_B);
231 Function *FBExtern_in_C = insertExternalReferenceToFunction(C.get(), FB);
237 // Module B { Function FB }
239 std::unique_ptr<Module> &B, Function *&FB) {
244 FB = insertAddFunction(B.get());
248 // Module B { Extern FA, Function FB which calls FA }
250 std::unique_ptr<Module> &B, Function *&FB) {
256 FB = insertSimpleCallFunction<int32_t(int32_t, int32_t)>(B.get(),
261 // Module B { Extern FA, Function FB which calls FA },
262 // Module C { Extern FB, Function FC which calls FA },
264 std::unique_ptr<Module> &B, Function *&FB,
271 FB = insertSimpleCallFunction<int32_t(int32_t, int32_t)>(B.get(), FAExtern_in_B);