OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 static void SetFunctionInfo(Handle<JSFunction> fun, | 64 static void SetFunctionInfo(Handle<JSFunction> fun, |
65 FunctionLiteral* lit, | 65 FunctionLiteral* lit, |
66 bool is_toplevel, | 66 bool is_toplevel, |
67 Handle<Script> script); | 67 Handle<Script> script); |
68 | 68 |
69 static bool RecordPositions(MacroAssembler* masm, | 69 static bool RecordPositions(MacroAssembler* masm, |
70 int pos, | 70 int pos, |
71 bool right_here = false); | 71 bool right_here = false); |
72 | 72 |
73 DEFINE_AST_VISITOR_SUBCLASS_METHODS(); | |
74 | |
75 private: | 73 private: |
76 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 74 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
77 }; | 75 }; |
78 | 76 |
79 | 77 |
80 class StringCharLoadGenerator : public AllStatic { | 78 class StringCharLoadGenerator : public AllStatic { |
81 public: | 79 public: |
82 // Generates the code for handling different string types and loading the | 80 // Generates the code for handling different string types and loading the |
83 // indexed character into |result|. We expect |index| as untagged input and | 81 // indexed character into |result|. We expect |index| as untagged input and |
84 // |result| as untagged output. | 82 // |result| as untagged output. |
(...skipping 19 matching lines...) Expand all Loading... |
104 Register temp2, | 102 Register temp2, |
105 Register temp3); | 103 Register temp3); |
106 | 104 |
107 private: | 105 private: |
108 DISALLOW_COPY_AND_ASSIGN(MathExpGenerator); | 106 DISALLOW_COPY_AND_ASSIGN(MathExpGenerator); |
109 }; | 107 }; |
110 | 108 |
111 } } // namespace v8::internal | 109 } } // namespace v8::internal |
112 | 110 |
113 #endif // V8_MIPS_CODEGEN_MIPS_H_ | 111 #endif // V8_MIPS_CODEGEN_MIPS_H_ |
OLD | NEW |