MCPcopy Create free account
hub / github.com/google/gapid / call

Method call

core/codegen/builder.go:69–75  ·  view source on GitHub ↗
(fn llvm.Value, sig Signature, name string, args []*Value)

Source from the content-addressed store, hash-verified

67}
68
69func (b *Builder) call(fn llvm.Value, sig Signature, name string, args []*Value) *Value {
70 l := b.callArgs(sig, name, args)
71 if sig.Result == b.m.Types.Void {
72 name = ""
73 }
74 return b.val(sig.Result, b.llvm.CreateCall(fn, l, name))
75}
76
77// Invoke invokes the function f with the specified arguments.
78// If an exception is thrown while calling f, then cleanup will be called before

Callers 2

CallMethod · 0.95
CallIndirectMethod · 0.95

Calls 2

callArgsMethod · 0.95
valMethod · 0.95

Tested by

no test coverage detected