| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 namespace v8 { | 36 namespace v8 { |
| 37 namespace internal { | 37 namespace internal { |
| 38 | 38 |
| 39 #define __ ACCESS_MASM((&masm_)) | 39 #define __ ACCESS_MASM((&masm_)) |
| 40 | 40 |
| 41 | 41 |
| 42 Object* CallStubCompiler::CompileCallConstant(Object* a, | 42 Object* CallStubCompiler::CompileCallConstant(Object* a, |
| 43 JSObject* b, | 43 JSObject* b, |
| 44 JSFunction* c, | 44 JSFunction* c, |
| 45 StubCompiler::CheckType d) { | 45 String* d, |
| 46 StubCompiler::CheckType e) { |
| 46 UNIMPLEMENTED(); | 47 UNIMPLEMENTED(); |
| 47 return NULL; | 48 return NULL; |
| 48 } | 49 } |
| 49 | 50 |
| 50 Object* CallStubCompiler::CompileCallField(Object* a, | 51 Object* CallStubCompiler::CompileCallField(Object* a, |
| 51 JSObject* b, | 52 JSObject* b, |
| 52 int c, | 53 int c, |
| 53 String* d) { | 54 String* d) { |
| 54 UNIMPLEMENTED(); | 55 UNIMPLEMENTED(); |
| 55 return NULL; | 56 return NULL; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 __ lea(rcx, FieldOperand(rax, Code::kHeaderSize)); | 172 __ lea(rcx, FieldOperand(rax, Code::kHeaderSize)); |
| 172 __ jmp(rcx); | 173 __ jmp(rcx); |
| 173 | 174 |
| 174 return GetCodeWithFlags(flags, "LazyCompileStub"); | 175 return GetCodeWithFlags(flags, "LazyCompileStub"); |
| 175 } | 176 } |
| 176 | 177 |
| 177 #undef __ | 178 #undef __ |
| 178 | 179 |
| 179 | 180 |
| 180 } } // namespace v8::internal | 181 } } // namespace v8::internal |
| OLD | NEW |