| OLD | NEW |
| 1 // Copyright 2006-2010 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2010 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 UNIMPLEMENTED_MIPS(); | 252 UNIMPLEMENTED_MIPS(); |
| 253 return false; | 253 return false; |
| 254 } | 254 } |
| 255 | 255 |
| 256 | 256 |
| 257 void RegExpMacroAssemblerMIPS::Fail() { | 257 void RegExpMacroAssemblerMIPS::Fail() { |
| 258 UNIMPLEMENTED_MIPS(); | 258 UNIMPLEMENTED_MIPS(); |
| 259 } | 259 } |
| 260 | 260 |
| 261 | 261 |
| 262 Handle<Object> RegExpMacroAssemblerMIPS::GetCode(Handle<String> source) { | 262 Handle<HeapObject> RegExpMacroAssemblerMIPS::GetCode(Handle<String> source) { |
| 263 UNIMPLEMENTED_MIPS(); | 263 UNIMPLEMENTED_MIPS(); |
| 264 return Handle<Object>::null(); | 264 return Handle<HeapObject>::null(); |
| 265 } | 265 } |
| 266 | 266 |
| 267 | 267 |
| 268 void RegExpMacroAssemblerMIPS::GoTo(Label* to) { | 268 void RegExpMacroAssemblerMIPS::GoTo(Label* to) { |
| 269 UNIMPLEMENTED_MIPS(); | 269 UNIMPLEMENTED_MIPS(); |
| 270 } | 270 } |
| 271 | 271 |
| 272 | 272 |
| 273 void RegExpMacroAssemblerMIPS::IfRegisterGE(int reg, | 273 void RegExpMacroAssemblerMIPS::IfRegisterGE(int reg, |
| 274 int comparand, | 274 int comparand, |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 } | 469 } |
| 470 | 470 |
| 471 | 471 |
| 472 #undef __ | 472 #undef __ |
| 473 | 473 |
| 474 #endif // V8_INTERPRETED_REGEXP | 474 #endif // V8_INTERPRETED_REGEXP |
| 475 | 475 |
| 476 }} // namespace v8::internal | 476 }} // namespace v8::internal |
| 477 | 477 |
| 478 #endif // V8_TARGET_ARCH_MIPS | 478 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |