2006-01-25 Cesar Lopez Nataren <cnataren@novell.com>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / BitwiseBinary.cs
1 //
2 // BitwiseBinary.cs:
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Diagnostics;
33
34 namespace Microsoft.JScript {
35
36         public sealed class BitwiseBinary : BinaryOp {
37
38                 public BitwiseBinary (int operatorTok)
39                         : base (null, null, null, (JSToken) operatorTok, null)
40                 {
41                 }
42
43                 [DebuggerStepThroughAttribute]
44                 [DebuggerHiddenAttribute]
45                 public object EvaluateBitwiseBinary (object v1, object v2)
46                 {
47                         int num1 = Convert.ToInt32 (v1);
48                         int num2 = Convert.ToInt32 (v2);
49
50                         switch (operatorTok) {
51                         case JSToken.BitwiseAnd:
52                                 return num1 & num2;
53                         case JSToken.BitwiseXor:
54                                 return num1 ^ num2;
55                         case JSToken.BitwiseOr:
56                                 return num1 | num2;
57                         case JSToken.LeftShift:
58                                 return num1 << num2;
59                         case JSToken.RightShift:
60                                 return num1 >> num2;
61                         case JSToken.UnsignedRightShift:
62                                 return UnsignedRightShift (num1, num2);
63                         }
64
65                         Console.WriteLine ("EvaluateBitwiseBinary: operatorTok = {0}", operatorTok);
66                         throw new NotImplementedException ();
67                 }
68
69                 internal static uint UnsignedRightShift (int num1, int num2)
70                 {
71                         return (uint) num1 >> num2;
72                 }
73
74                 internal override bool Resolve (Environment env)
75                 {
76                         throw new NotImplementedException ();
77                 }
78
79                 internal override bool Resolve (Environment env, bool no_effect)
80                 {
81                         throw new NotImplementedException ();
82                 }
83
84                 internal override void Emit (EmitContext ec)
85                 {
86                         throw new NotImplementedException ();
87                 }
88         }
89 }