summary refs log tree commit diff stats
path: root/lib/pure/marshal.nim
Commit message (Expand)AuthorAgeFilesLines
* got rid of akPureObjectAraq2011-09-241-2/+2
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-1/+32
* code gen bugfixes; marshal.nim implementedAraq2011-06-261-0/+288
06-15 22:12:03 -0700 committer Kartik Agaram <vc@akkartik.com> 2018-06-15 22:12:03 -0700 4257 - abortive attempt at safe fat pointers' href='/akkartik/mu/commit/037abandon.cc?h=hlt&id=0edd9b9fc60440213e4df926ea511419ee291f1e'>0edd9b9f ^
acce384b ^
0edd9b9f ^


dc9afcbd ^

0edd9b9f ^
dc9afcbd ^
dc9afcbd ^




acce384b ^













0be82cde ^
acce384b ^






0edd9b9f ^
0be82cde ^
acce384b ^




dc9afcbd ^
6c96a437 ^
dc9afcbd ^

0edd9b9f ^
0be82cde ^

dc9afcbd ^

059def11 ^


0edd9b9f ^
059def11 ^

9a6f8798 ^
dc9afcbd ^
a89c1bed ^
dc9afcbd ^
a89c1bed ^
dc9afcbd ^
9a6f8798 ^
6c96a437 ^
dc9afcbd ^




9a6f8798 ^
dc9afcbd ^



192d59d3 ^
0edd9b9f ^
acce384b ^
0edd9b9f ^


dc9afcbd ^

0edd9b9f ^
dc9afcbd ^


192d59d3 ^
0edd9b9f ^
acce384b ^
0edd9b9f ^


dc9afcbd ^
38f72faa ^
0edd9b9f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
                                               


                       
                                  
                                                                              
                       


                                                                                    

                                                        
                             
 




                                                                                   













                                                                                                                                                                                   
   






                                                                         
                                                                                                  
   




                                             
                 
                                                                 

                                         
                                                                                            

                                                                                

 


                                                                     
                                    

 
                                 
                                                      
                                                                                  
                                                               
                                                                  
                                                                       
                         
                                                         




                                                                                                                                                                        
                



                                         
                                  
                             
                       


                                                             

          
                             


                             
                                           
                                   
                             


                                                        
 
                                                
                             
//: Reclaiming memory when it's no longer used.

:(scenario new_reclaim)
def main [
  1:address:num <- new number:type
  3:num <- copy 1:address:num  # because 1 will get reset during abandon below
  abandon 1:address:num
  4:address:num <- new number:type  # must be same size as abandoned memory to reuse
  6:num <- copy 4:address:num
  7:bool <- equal 3:num, 6:num
]
# both allocations should have returned the same address
+mem: storing 1 in location 7

//: When abandoning addresses we'll save them to a 'free list', segregated by size.

:(before "End routine Fields")
map<int, int> free_list;

:(before "End Primitive Recipe Declarations")
ABANDON,
:(before "End Primitive Recipe Numbers")
put(Recipe_ordinal, "abandon", ABANDON);
:(before "End Primitive Recipe Checks")
case ABANDON: {
  if (!inst.products.empty()) {
    raise << maybe(get(Recipe, r).name) << "'abandon' shouldn't write to any products in '" << to_original_string(inst) << "'\n" << end();
    break;
  }
  for (int i = 0;  i < SIZE(inst.ingredients);  ++i) {
    if (!is_mu_address(inst.ingredients.at(i)))
      raise << maybe(get(Recipe, r).name) << "ingredients of 'abandon' should be addresses, but ingredient " << i << " is '" << to_string(inst.ingredients.at(i)) << '\n' << end();
    break;
  }
  break;
}
:(before "End Primitive Recipe Implementations")
case ABANDON: {
  for (int i = 0;  i < SIZE(current_instruction().ingredients);  ++i) {
    reagent/*copy*/ ingredient = current_instruction().ingredients.at(i);
    canonize(ingredient);
    abandon(get_or_insert(Memory, ingredient.value+/*skip alloc id*/1), payload_size(ingredient));
  }
  break;
}

:(code)
void abandon(int address, int payload_size) {
  // clear memory
  for (int curr = address;  curr < address+payload_size;  ++curr)
    put(Memory, curr, 0);
  // append existing free list to address
  trace("mem") << "saving " << address << " in free-list of size " << payload_size << end();
  put(Memory, address, get_or_insert(Current_routine->free_list, payload_size));
  put(Current_routine->free_list, payload_size, address);
}

int payload_size(reagent/*copy*/ x) {
  x.properties.push_back(pair<string, string_tree*>("lookup", NULL));
  lookup_memory_core(x, /*check_for_null*/false);
  return size_of(x) + /*alloc id*/1;
}

:(after "Allocate Special-cases")
if (get_or_insert(Current_routine->free_list, size)) {
  trace("abandon") << "picking up space from free-list of size " << size << end();
  int result = get_or_insert(Current_routine->free_list, size);
  trace("mem") << "new alloc from free list: " << result << end();
  put(Current_routine->free_list, size, get_or_insert(Memory, result));
  put(Memory, result, 0);
  for (int curr = result;  curr < result+size;  ++curr) {
    if (get_or_insert(Memory, curr) != 0) {
      raise << maybe(current_recipe_name()) << "memory in free list was not zeroed out: " << curr << '/' << result << "; somebody wrote to us after free!!!\n" << end();
      break;  // always fatal
    }
  }
  return result;
}

:(scenario new_differing_size_no_reclaim)
def main [
  1:address:num <- new number:type
  3:num <- copy 1:address:num
  abandon 1:address:num
  4:address:array:num <- new number:type, 2  # different size
  6:num <- copy 4:address:array:num
  7:bool <- equal 3:num, 6:num
]
# no reuse
+mem: storing 0 in location 7

:(scenario new_reclaim_array)
def main [
  1:address:array:num <- new number:type, 2
  3:num <- copy 1:address:array:num
  abandon 1:address:array:num
  4:address:array:num <- new number:type, 2  # same size
  6:num <- copy 4:address:array:num
  7:bool <- equal 3:num, 6:num
]
# both calls to new returned identical addresses
+mem: storing 1 in location 7