2018-03-04 17:25:32 +01:00
|
|
|
(module
|
|
|
|
(type $ii (func (param i32) (result i32)))
|
|
|
|
(type $iv (func (param i32)))
|
|
|
|
(type $iiv (func (param i32 i32)))
|
|
|
|
(type $iii (func (param i32 i32) (result i32)))
|
|
|
|
(type $v (func))
|
2018-04-03 23:56:48 +02:00
|
|
|
(global $~lib/allocator/buddy/BUCKETS_START (mut i32) (i32.const 0))
|
|
|
|
(global $~lib/allocator/buddy/BUCKETS_END (mut i32) (i32.const 0))
|
|
|
|
(global $~lib/allocator/buddy/bucket_limit (mut i32) (i32.const 0))
|
|
|
|
(global $~lib/allocator/buddy/NODE_IS_SPLIT_START (mut i32) (i32.const 0))
|
|
|
|
(global $~lib/allocator/buddy/NODE_IS_SPLIT_END (mut i32) (i32.const 0))
|
|
|
|
(global $~lib/allocator/buddy/base_ptr (mut i32) (i32.const 0))
|
|
|
|
(global $~lib/allocator/buddy/max_ptr (mut i32) (i32.const 0))
|
2018-03-04 17:25:32 +01:00
|
|
|
(global $HEAP_BASE i32 (i32.const 4))
|
|
|
|
(memory $0 1)
|
2018-04-03 23:56:48 +02:00
|
|
|
(export "allocate_memory" (func $~lib/allocator/buddy/allocate_memory))
|
|
|
|
(export "free_memory" (func $~lib/allocator/buddy/free_memory))
|
2018-03-04 17:25:32 +01:00
|
|
|
(export "memory" (memory $0))
|
|
|
|
(start $start)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/update_max_ptr (; 0 ;) (type $ii) (param $0 i32) (result i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:175:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:175:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.gt_u
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:175:18
|
|
|
|
(get_global $~lib/allocator/buddy/max_ptr)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:175:27
|
2018-03-04 17:25:32 +01:00
|
|
|
(block
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:182:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:182:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.lt_s
|
|
|
|
(grow_memory
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:182:20
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:180:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:180:19
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shr_u
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:180:25
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.and
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:180:26
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:180:27
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:180:39
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 65535)
|
|
|
|
)
|
|
|
|
(i32.const -65536)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:180:61
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 16)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:179:19
|
2018-03-04 17:25:32 +01:00
|
|
|
(current_memory)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:182:43
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 0)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:183:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
|
|
|
(i32.const 0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:186:4
|
|
|
|
(set_global $~lib/allocator/buddy/max_ptr
|
|
|
|
;;@ ~lib/allocator/buddy.ts:186:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
|
|
|
(get_local $1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:186:33
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 16)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:188:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/buckets$get (; 1 ;) (type $ii) (param $0 i32) (result i32)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:102:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:102:26
|
|
|
|
(get_global $~lib/allocator/buddy/BUCKETS_START)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:102:42
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:102:50
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 3)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/list_init (; 2 ;) (type $iv) (param $0 i32)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:197:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:197:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:198:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store offset=4
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:198:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/list_push (; 3 ;) (type $iiv) (param $0 i32) (param $1 i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $2 i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:207:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store
|
|
|
|
(get_local $1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:206:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $2
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:206:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.load
|
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:208:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store offset=4
|
|
|
|
(get_local $1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:208:15
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:209:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store offset=4
|
|
|
|
(get_local $2)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:209:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:210:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:210:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/bucket_for_request (; 4 ;) (type $ii) (param $0 i32) (result i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
|
|
|
(local $2 i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:279:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $1
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:279:15
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 26)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:280:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $2
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:280:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 16)
|
|
|
|
)
|
|
|
|
(loop $continue|0
|
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:282:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.lt_u
|
|
|
|
(get_local $2)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:282:16
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
(block
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:283:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $1
|
|
|
|
(i32.sub
|
|
|
|
(get_local $1)
|
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:284:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $2
|
|
|
|
(i32.shl
|
|
|
|
(get_local $2)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:284:12
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(br $continue|0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:287:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/node_for_ptr (; 5 ;) (type $iii) (param $0 i32) (param $1 i32) (result i32)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:252:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
|
|
|
(i32.add
|
|
|
|
(i32.shr_u
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:10
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:11
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:17
|
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:30
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:31
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 30)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:48
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:59
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:60
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:65
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:252:75
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/node_is_split$get (; 6 ;) (type $ii) (param $0 i32) (result i32)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:148:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.load8_u
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:148:18
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/NODE_IS_SPLIT_START)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:148:40
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/parent_is_split (; 7 ;) (type $ii) (param $0 i32) (result i32)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:260:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.and
|
|
|
|
(i32.shr_u
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:260:10
|
|
|
|
(call $~lib/allocator/buddy/node_is_split$get
|
|
|
|
;;@ ~lib/allocator/buddy.ts:260:28
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.div_u
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:259:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $0
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:259:10
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.div_u
|
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:259:11
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:259:19
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:259:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 2)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:260:36
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:260:43
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.and
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:260:49
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:260:57
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 7)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:260:63
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/list_remove (; 8 ;) (type $iv) (param $0 i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:222:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store offset=4
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:220:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:220:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.load
|
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:221:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $0
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:221:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.load offset=4
|
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:223:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:223:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/ptr_for_node (; 9 ;) (type $iii) (param $0 i32) (param $1 i32) (result i32)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:243:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:243:20
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:21
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:22
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:30
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:31
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:36
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:46
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:52
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:53
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 30)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:243:70
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/flip_parent_is_split (; 10 ;) (type $iv) (param $0 i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
|
|
|
(local $2 i32)
|
|
|
|
(set_local $2
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:268:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:268:18
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.div_u
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:267:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $0
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:267:10
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.div_u
|
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:267:11
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:267:19
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:267:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 2)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:268:26
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(set_local $0
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:270:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.xor
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/node_is_split$get
|
|
|
|
;;@ ~lib/allocator/buddy.ts:270:22
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:270:35
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:270:41
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:270:46
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.and
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:270:47
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:270:55
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 7)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(i32.store8
|
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/NODE_IS_SPLIT_START)
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $2)
|
|
|
|
)
|
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/lower_bucket_limit (; 11 ;) (type $ii) (param $0 i32) (result i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
|
|
|
(local $2 i32)
|
|
|
|
(loop $continue|0
|
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:296:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.lt_u
|
|
|
|
(get_local $0)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:296:18
|
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
(block
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:306:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:306:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:306:9
|
|
|
|
(call $~lib/allocator/buddy/parent_is_split
|
|
|
|
;;@ ~lib/allocator/buddy.ts:297:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:297:15
|
|
|
|
(call $~lib/allocator/buddy/node_for_ptr
|
|
|
|
;;@ ~lib/allocator/buddy.ts:297:28
|
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:297:38
|
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:306:32
|
2018-03-04 17:25:32 +01:00
|
|
|
(block
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:307:6
|
|
|
|
(call $~lib/allocator/buddy/list_remove
|
|
|
|
;;@ ~lib/allocator/buddy.ts:307:18
|
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:308:6
|
|
|
|
(call $~lib/allocator/buddy/list_init
|
|
|
|
;;@ ~lib/allocator/buddy.ts:308:16
|
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
|
|
|
;;@ ~lib/allocator/buddy.ts:308:28
|
2018-03-04 17:25:32 +01:00
|
|
|
(block (result i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/bucket_limit
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:308:30
|
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:309:6
|
|
|
|
(call $~lib/allocator/buddy/list_push
|
|
|
|
;;@ ~lib/allocator/buddy.ts:309:16
|
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
|
|
|
;;@ ~lib/allocator/buddy.ts:309:28
|
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:309:43
|
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:310:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(br $continue|0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:322:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:322:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:322:9
|
|
|
|
(call $~lib/allocator/buddy/update_max_ptr
|
|
|
|
;;@ ~lib/allocator/buddy.ts:322:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:321:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $2
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:321:18
|
|
|
|
(call $~lib/allocator/buddy/ptr_for_node
|
|
|
|
;;@ ~lib/allocator/buddy.ts:321:31
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(get_local $1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:321:38
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:321:41
|
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:322:38
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:323:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
|
|
|
(i32.const 0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:325:4
|
|
|
|
(call $~lib/allocator/buddy/list_push
|
|
|
|
;;@ ~lib/allocator/buddy.ts:325:14
|
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
|
|
|
;;@ ~lib/allocator/buddy.ts:325:26
|
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:325:41
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $2)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:326:4
|
|
|
|
(call $~lib/allocator/buddy/list_init
|
|
|
|
;;@ ~lib/allocator/buddy.ts:326:14
|
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
|
|
|
;;@ ~lib/allocator/buddy.ts:326:26
|
2018-03-04 17:25:32 +01:00
|
|
|
(block (result i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/bucket_limit
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:326:28
|
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:333:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:332:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:332:11
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.div_u
|
|
|
|
(i32.sub
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:332:12
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:332:19
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:332:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 2)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:334:6
|
|
|
|
(call $~lib/allocator/buddy/flip_parent_is_split
|
|
|
|
;;@ ~lib/allocator/buddy.ts:334:27
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(br $continue|0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:338:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/list_pop (; 12 ;) (type $ii) (param $0 i32) (result i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:231:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:231:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eq
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:230:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:230:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.load
|
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:231:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:231:27
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
|
|
|
(i32.const 0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:232:2
|
|
|
|
(call $~lib/allocator/buddy/list_remove
|
|
|
|
;;@ ~lib/allocator/buddy.ts:232:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:233:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/allocate_memory (; 13 ;) (type $ii) (param $0 i32) (result i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
|
|
|
(local $2 i32)
|
|
|
|
(local $3 i32)
|
|
|
|
(local $4 i32)
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:350:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-03 23:56:48 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:350:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.gt_u
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_local $0)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:350:16
|
|
|
|
(i32.const 1073741816)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:350:41
|
|
|
|
(unreachable)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:357:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:357:6
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:357:21
|
2018-03-04 17:25:32 +01:00
|
|
|
(block
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:359:4
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/base_ptr
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:359:15
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.and
|
|
|
|
(i32.add
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:359:16
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/NODE_IS_SPLIT_END)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:359:36
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 7)
|
|
|
|
)
|
|
|
|
(i32.const -8)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:360:4
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/max_ptr
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:360:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
|
|
|
(current_memory)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:360:41
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 16)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:361:4
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/bucket_limit
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:361:19
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 26)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:362:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:362:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:362:9
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/update_max_ptr
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:362:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:362:35
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:363:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
|
|
|
(i32.const 0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:365:4
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_init
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:365:14
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:365:26
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 26)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:366:4
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_push
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:366:14
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:366:26
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 26)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:366:45
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/base_ptr)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:374:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $4
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:373:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:373:11
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/bucket_for_request
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:373:30
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(get_local $0)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:373:40
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(loop $continue|0
|
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:381:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(get_local $1)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:381:18
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:381:26
|
2018-03-04 17:25:32 +01:00
|
|
|
(block
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:389:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:389:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:389:9
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/lower_bucket_limit
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:389:28
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:390:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
|
|
|
(i32.const 0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:398:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:398:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:397:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $2
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:397:10
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_pop
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:397:37
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:397:49
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:398:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(block
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:403:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:403:10
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.and
|
|
|
|
(if (result i32)
|
|
|
|
(tee_local $2
|
|
|
|
(i32.ne
|
|
|
|
(get_local $1)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:403:20
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
(get_local $2)
|
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:403:36
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:403:49
|
2018-03-04 17:25:32 +01:00
|
|
|
(block
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:404:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $1
|
|
|
|
(i32.sub
|
|
|
|
(get_local $1)
|
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:405:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(br $continue|0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:415:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:415:10
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:415:11
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/lower_bucket_limit
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:415:30
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
|
|
|
(get_local $1)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:415:39
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:416:15
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
|
|
|
(i32.const 0)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:418:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $2
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:418:12
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_pop
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:418:39
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:418:51
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:425:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $3
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:425:11
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.shl
|
|
|
|
(i32.const 1)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:425:16
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:425:17
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 30)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:425:34
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:427:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:427:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:427:9
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/update_max_ptr
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:427:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(get_local $2)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:426:19
|
2018-03-04 17:25:32 +01:00
|
|
|
(if (result i32)
|
|
|
|
(i32.lt_u
|
|
|
|
(get_local $1)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:426:28
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $4)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:426:46
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(i32.div_u
|
|
|
|
(get_local $3)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:426:53
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 2)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:426:57
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:426:69
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $3)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:427:45
|
2018-03-04 17:25:32 +01:00
|
|
|
(block
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:428:6
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_push
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:428:16
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:428:28
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:428:37
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $2)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:429:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
|
|
|
(i32.const 0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:444:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:443:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $3
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:443:8
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/node_for_ptr
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:443:21
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $2)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:443:26
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:445:6
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/flip_parent_is_split
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:445:27
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $3)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(loop $continue|1
|
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:455:11
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.lt_u
|
|
|
|
(get_local $1)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:455:20
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $4)
|
|
|
|
)
|
|
|
|
(block
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:458:6
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/flip_parent_is_split
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:456:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $3
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:456:10
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(i32.shl
|
|
|
|
(get_local $3)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:456:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:456:18
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:459:6
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_push
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:460:8
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:457:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $1
|
|
|
|
(i32.add
|
|
|
|
(get_local $1)
|
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:461:8
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/ptr_for_node
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:461:38
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(get_local $3)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:461:42
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:461:45
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(br $continue|1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:469:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.store
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:469:17
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $2)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:469:22
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:470:17
|
2018-03-04 17:25:32 +01:00
|
|
|
(return
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:470:11
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(get_local $2)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:470:17
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:473:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 0)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(func $~lib/allocator/buddy/free_memory (; 14 ;) (type $iv) (param $0 i32)
|
2018-03-04 17:25:32 +01:00
|
|
|
(local $1 i32)
|
|
|
|
(local $2 i32)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:483:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:483:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eqz
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:483:7
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:484:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(return)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:493:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $1
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:493:11
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/bucket_for_request
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:493:30
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(i32.load
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:492:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(tee_local $0
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:492:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
|
|
|
(get_local $0)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:492:14
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:493:49
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 8)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:494:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $0
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:494:6
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/node_for_ptr
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:494:19
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:494:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:500:2
|
2018-03-04 17:25:32 +01:00
|
|
|
(block $break|0
|
|
|
|
(loop $continue|0
|
|
|
|
(if
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:500:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
(block
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:507:4
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/flip_parent_is_split
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:507:25
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:518:6
|
2018-03-04 17:25:32 +01:00
|
|
|
(br_if $break|0
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:517:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(if (result i32)
|
|
|
|
(tee_local $2
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/parent_is_split
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:517:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(get_local $2)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:517:30
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.eq
|
|
|
|
(get_local $1)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:517:40
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/bucket_limit)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:4
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_remove
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:16
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/ptr_for_node
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:46
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
|
|
|
(i32.xor
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:47
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.sub
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:48
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:52
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:57
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:62
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:528:65
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:529:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $0
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:529:8
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.div_u
|
|
|
|
(i32.sub
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:529:9
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:529:13
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:529:18
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.const 2)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:530:4
|
2018-03-04 17:25:32 +01:00
|
|
|
(set_local $1
|
|
|
|
(i32.sub
|
|
|
|
(get_local $1)
|
|
|
|
(i32.const 1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(br $continue|0)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:539:2
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/list_push
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:539:12
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/buckets$get
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:539:24
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:539:33
|
2018-04-03 23:56:48 +02:00
|
|
|
(call $~lib/allocator/buddy/ptr_for_node
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:539:63
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $0)
|
2018-04-08 00:43:38 +02:00
|
|
|
;;@ ~lib/allocator/buddy.ts:539:66
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_local $1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(func $start (; 15 ;) (type $v)
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/BUCKETS_START
|
|
|
|
;;@ ~lib/allocator/buddy.ts:97:27
|
2018-03-04 17:25:32 +01:00
|
|
|
(get_global $HEAP_BASE)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/BUCKETS_END
|
|
|
|
;;@ ~lib/allocator/buddy.ts:98:25
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/BUCKETS_START)
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 216)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/NODE_IS_SPLIT_START
|
|
|
|
;;@ ~lib/allocator/buddy.ts:143:33
|
|
|
|
(get_global $~lib/allocator/buddy/BUCKETS_END)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
2018-04-03 23:56:48 +02:00
|
|
|
(set_global $~lib/allocator/buddy/NODE_IS_SPLIT_END
|
|
|
|
;;@ ~lib/allocator/buddy.ts:144:31
|
2018-03-04 17:25:32 +01:00
|
|
|
(i32.add
|
2018-04-03 23:56:48 +02:00
|
|
|
(get_global $~lib/allocator/buddy/NODE_IS_SPLIT_START)
|
|
|
|
;;@ ~lib/allocator/buddy.ts:144:53
|
2018-03-12 14:06:39 +01:00
|
|
|
(i32.const 8388608)
|
2018-03-04 17:25:32 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|