Home | History | Annotate | Download | only in MCJIT

Lines Matching refs:FB

210   // Module B { Extern FA, Function FB which calls FA },
211 // Module C { Extern FB, Function FC which calls FB },
214 std::unique_ptr<Module> &B, Function *&FB,
221 FB = insertSimpleCallFunction<int32_t(int32_t, int32_t)>(B.get(), FAExtern_in_B);
224 Function *FBExtern_in_C = insertExternalReferenceToFunction(C.get(), FB);
231 // Module B { Function FB }
233 std::unique_ptr<Module> &B, Function *&FB) {
238 FB = insertAddFunction(B.get());
242 // Module B { Extern FA, Function FB which calls FA }
244 std::unique_ptr<Module> &B, Function *&FB) {
250 FB = insertSimpleCallFunction<int32_t(int32_t, int32_t)>(B.get(),
255 // Module B { Extern FA, Function FB which calls FA },
256 // Module C { Extern FB, Function FC which calls FA },
258 std::unique_ptr<Module> &B, Function *&FB,
265 FB = insertSimpleCallFunction<int32_t(int32_t, int32_t)>(B.get(), FAExtern_in_B);