本文整理匯總了Golang中github.com/tsavola/wag/internal/loader.L.Count方法的典型用法代碼示例。如果您正苦於以下問題:Golang L.Count方法的具體用法?Golang L.Count怎麽用?Golang L.Count使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/tsavola/wag/internal/loader.L
的用法示例。
在下文中一共展示了L.Count方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: genData
func (m *Module) genData(load loader.L) {
if debug {
debugf("data section")
debugDepth++
}
if m.memoryOffset&15 != 0 {
// not 16-byte aligned? (assume at least 8-byte alignment.)
n := len(m.globals)
m.globals = append(m.globals, global{})
m.data = appendGlobalsData(m.data, m.globals[n:])
m.memoryOffset = len(m.data)
}
for i := range load.Count() {
if debug {
debugf("data segment")
debugDepth++
}
if index := load.Varuint32(); index != 0 {
panic(fmt.Errorf("unsupported memory index: %d", index))
}
offset := readOffsetInitExpr(load, m)
size := load.Varuint32()
needMemorySize := int64(offset) + int64(size)
if needMemorySize >= int64(m.memoryLimits.initial) {
panic(fmt.Errorf("memory segment #%d exceeds initial memory size", i))
}
needDataSize := int64(m.memoryOffset) + needMemorySize
if needDataSize > int64(len(m.data)) {
if int64(cap(m.data)) >= needDataSize {
m.data = m.data[:needDataSize]
} else {
buf := make([]byte, needDataSize)
copy(buf, m.data)
m.data = buf
}
}
dataOffset := m.memoryOffset + int(offset)
load.Into(m.data[dataOffset:needDataSize])
if debug {
debugDepth--
debugf("data segmented: offset=0x%x size=0x%x", offset, size)
}
}
if debug {
debugDepth--
debugf("data sectioned")
}
}