Home
last modified time | relevance | path

Searched defs:sparseSet (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
Dsparseset.go10 type sparseSet struct { struct
11 dense []ID
12 sparse []int32
21 func (s *sparseSet) cap() int {
25 func (s *sparseSet) size() int {
29 func (s *sparseSet) contains(x ID) bool {
34 func (s *sparseSet) add(x ID) {
43 func (s *sparseSet) addAll(a []ID) {
49 func (s *sparseSet) addAllValues(a []*Value) {
55 func (s *sparseSet) remove(x ID) {
[all …]
Dbranchelim.go75 func canCondSelect(v *Value, arch string, loadAddr *sparseSet) bool {
115 func elimIf(f *Func, loadAddr *sparseSet, dom *Block) bool {
309 func elimIfElse(f *Func, loadAddr *sparseSet, b *Block) bool {
Dschedule.go377 func storeOrder(values []*Value, sset *sparseSet, storeNumber []int32) []*Value {
Dallocators.go105 func (c *Cache) freeSparseSet(s *sparseSet) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssagen/
Dphi.go421 type sparseSet struct { struct
422 dense []ssa.ID
423 sparse []int32
432 func (s *sparseSet) contains(x ssa.ID) bool {
437 func (s *sparseSet) add(x ssa.ID) {
446 func (s *sparseSet) clear() {