Displaying 2 results from an estimated 2 matches for "special2".
Did you mean:
special
2006 Oct 11
1
dispatching on group generics with more than one formal
...;foo2"),
group = "Foo2", useAsDefault = function(x, y) "Default2")
setMethod("Foo", signature(x = "numeric"), function(x) "Special")
setMethod("Foo2", signature(x = "numeric", y = "missing"),
function(x, y) "Special2")
foo(1) # gives the group method
foo2(1) # gives the default method
selectMethod("foo2", signature(x = "numeric", y = "missing")) # but
method selection appears to work correctly
__
franklin parlamis
> version
platform powerpc-apple-darwin8.7.0...
2017 Sep 25
1
TableGen questions.
...tails: the architecture has multiple
register files that are selected via a bit in the instruction. One of the
register files is a traditional one. The other is unconventional in that
all source and dest registers are both read from and written to by the
instructions. So
add special0, special1, special2
would require both the ins and outs dags in the instruction info to have
all three registers, if I understand the scheduler correctly.
My questions:
1) Is my assumption that both ins and outs dags must have all three special
registers correct?
2) Is there a way to template ins and outs and mix th...