コード例 #1
0
ファイル: AllocationScheme.cs プロジェクト: xeno-by/conflux
 public MemoryTier this[Sym sym]
 {
     get
     {
         return Symbols[sym];
     }
 }
コード例 #2
0
 public static bool IsLocal(this Sym sym)
 {
     return(sym is Local);
 }
コード例 #3
0
 public static bool IsParam(this Sym sym)
 {
     return(sym is Param);
 }
コード例 #4
0
 private int Alloc(Sym sym) { return _allocs[sym.AssertCast<Local>()]; }