about summary refs log tree commit diff stats
path: root/067parse-hex.subx
Commit message (Expand)AuthorAgeFilesLines
* 6507 - use syscall names everywhereKartik Agaram2020-06-101-2/+1
* 6182 - start of support for safe handlesKartik Agaram2020-04-031-3/+3
* 6178Kartik Agaram2020-03-311-1/+1
* 6085Kartik Agaram2020-03-061-17/+78
* 6083Kartik Agaram2020-03-061-38/+38
* 6014Kartik Agaram2020-02-171-1/+1
* 5924Kartik Agaram2020-01-271-24/+24
* 5897 - rename comparison instructionsKartik Agaram2020-01-161-21/+21
* 5883 - drop the `ref` keywordKartik Agaram2020-01-121-14/+14
* 5876 - address -> addrKartik Agaram2020-01-031-4/+4
* 5804Kartik Agaram2019-12-081-25/+27
* 5790Kartik Agaram2019-12-051-2/+2
* 5770Kartik Agaram2019-11-281-1/+1
* 5769 - support uppercase hex in SubXKartik Agaram2019-11-281-8/+12
* 5714Kartik Agaram2019-10-251-4/+2
* 5698Kartik Agaram2019-10-151-34/+34
* 5668 - start reorg to permit syntax sugar in layersKartik Agaram2019-09-191-1/+1
* 5592 - switch register names to lowercaseKartik Agaram2019-08-261-440/+440
* desugar: parsing seems completeKartik Agaram2019-08-251-2/+2
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+874
orm framework for mu's lightweight tools' href='/akkartik/mu/commit/cpp/023transform?h=hlt&id=37e4573b9382707a0c345246d7507dc269bd0df3'>37e4573b ^
1ec3eb4c ^



5a481085 ^
215365d4 ^




5a481085 ^

215365d4 ^

1ec3eb4c ^
215365d4 ^
37e4573b ^
dd2e01e4 ^
6c96a437 ^

37e4573b ^
37e4573b ^
91abd257 ^
363be37f ^
37e4573b ^


3ba63579 ^
7cca03bd ^
3ba63579 ^

7858a06a ^











3ba63579 ^
dd2e01e4 ^
6c96a437 ^
3ba63579 ^

6c96a437 ^
05d17773 ^
6c96a437 ^
05d17773 ^
3ba63579 ^
6c96a437 ^
05d17773 ^
3ba63579 ^





9cc16d04 ^
7f73795c ^
0f125d5f ^

37e4573b ^
a70ce311 ^





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
                                                                              
   
                                     

                                

                                                                     
   
                                                                            







                                                                            
 
                             
                      

                                  

                     
                                                   



                               



                              
                     




                                                      

                   

                 
 
 
                      
                                                             

                                                                                              
                            
                                               
                             
                                                     


                              
                                                                       
                      

 











                                                                             
                           
                                                                                            
                                                                                            

                                  
                                                           
                                            
                                                          
                                               
       
                                                       
                                            





                                 
                            
                                   

                                  
 





                                               
//: Phase 2: Filter loaded recipes through an extensible list of 'transforms'.
//:
//:   The process of running Mu code:
//:     load -> transform -> run
//:
//: The hope is that this framework of transform tools will provide a
//: deconstructed alternative to conventional compilers.
//:
//: We're going to have many transforms in Mu, and getting their order right
//: (not the same as ordering of layers) is a well-known problem. Some tips:
//:   a) Design each layer to rely on as few previous layers as possible.
//:
//:   b) When positioning transforms, try to find the tightest constraint in
//:   each transform relative to previous layers.
//:
//:   c) Even so you'll periodically need to try adjusting each transform
//:   relative to those in previous layers to find a better arrangement.

:(before "End recipe Fields")
int transformed_until;
:(before "End recipe Constructor")
transformed_until = -1;

:(before "End Types")
typedef void (*transform_fn)(const recipe_ordinal);

:(before "End Globals")
vector<transform_fn> Transform;

:(before "End One-time Setup")
initialize_transforms();
:(code)
void initialize_transforms() {
  // Begin Transforms
    // Begin Instruction Inserting/Deleting Transforms
    // End Instruction Inserting/Deleting Transforms

    // Begin Instruction Modifying Transforms
    // End Instruction Modifying Transforms
  // End Transforms

  // Begin Checks
  // End Checks
}

void transform_all() {
  trace(9990, "transform") << "=== transform_all()" << end();
  for (int t = 0;  t < SIZE(Transform);  ++t) {
    for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin();  p != Recipe.end();  ++p) {
      recipe& r = p->second;
      if (r.transformed_until != t-1) continue;
      // End Transform Checks
      (*Transform.at(t))(/*recipe_ordinal*/p->first);
      r.transformed_until = t;
    }
  }
  parse_int_reagents();  // do this after all other transforms have run
  // End transform_all
}

//: Even though a run will involve many calls to transform_all() for tests,
//: our logical model is to load all code, then transform all code, then run.
//: If you load new code that should cause already-transformed recipes to
//: change, that's not supported. To help detect such situations and raise
//: helpful errors we track a count of the number of calls made to
//: transform_all().
:(before "End Globals")
int Num_calls_to_transform_all = 0;
:(after "void transform_all()")
  ++Num_calls_to_transform_all;

:(code)
void parse_int_reagents() {
  trace(9991, "transform") << "--- parsing any uninitialized reagents as integers" << end();
  for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin();  p != Recipe.end();  ++p) {
    recipe& r = p->second;
    if (r.steps.empty()) continue;
    for (int index = 0;  index < SIZE(r.steps);  ++index) {
      instruction& inst = r.steps.at(index);
      for (int i = 0;  i < SIZE(inst.ingredients);  ++i) {
        populate_value(inst.ingredients.at(i));
      }
      for (int i = 0;  i < SIZE(inst.products);  ++i) {
        populate_value(inst.products.at(i));
      }
    }
  }
}

void populate_value(reagent& r) {
  if (r.initialized) return;
  // End Reagent-parsing Exceptions
  if (!is_integer(r.name)) return;
  r.set_value(to_integer(r.name));
}

// helper for tests -- temporarily suppress run
void transform(string form) {
  load(form);
  transform_all();
}