| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 Object* CallStubCompiler::CompileCallInterceptor(Object* a, | 59 Object* CallStubCompiler::CompileCallInterceptor(Object* a, |
| 60 JSObject* b, | 60 JSObject* b, |
| 61 String* c) { | 61 String* c) { |
| 62 UNIMPLEMENTED(); | 62 UNIMPLEMENTED(); |
| 63 return NULL; | 63 return NULL; |
| 64 } | 64 } |
| 65 | 65 |
| 66 | 66 |
| 67 | 67 |
| 68 Object* CallStubCompiler::CompileCallGlobal(GlobalObject* object, | 68 Object* CallStubCompiler::CompileCallGlobal(JSObject* object, |
| 69 GlobalObject* holder, |
| 69 JSGlobalPropertyCell* cell, | 70 JSGlobalPropertyCell* cell, |
| 70 JSFunction* function, | 71 JSFunction* function, |
| 71 String* name) { | 72 String* name) { |
| 72 UNIMPLEMENTED(); | 73 UNIMPLEMENTED(); |
| 73 return NULL; | 74 return NULL; |
| 74 } | 75 } |
| 75 | 76 |
| 76 | 77 |
| 77 Object* LoadStubCompiler::CompileLoadCallback(JSObject* a, | 78 Object* LoadStubCompiler::CompileLoadCallback(JSObject* a, |
| 78 JSObject* b, | 79 JSObject* b, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 102 | 103 |
| 103 | 104 |
| 104 Object* LoadStubCompiler::CompileLoadInterceptor(JSObject* a, | 105 Object* LoadStubCompiler::CompileLoadInterceptor(JSObject* a, |
| 105 JSObject* b, | 106 JSObject* b, |
| 106 String* c) { | 107 String* c) { |
| 107 UNIMPLEMENTED(); | 108 UNIMPLEMENTED(); |
| 108 return NULL; | 109 return NULL; |
| 109 } | 110 } |
| 110 | 111 |
| 111 | 112 |
| 112 Object* LoadStubCompiler::CompileLoadGlobal(GlobalObject* object, | 113 Object* LoadStubCompiler::CompileLoadGlobal(JSObject* object, |
| 114 GlobalObject* holder, |
| 113 JSGlobalPropertyCell* cell, | 115 JSGlobalPropertyCell* cell, |
| 114 String* name, | 116 String* name, |
| 115 bool is_dont_delete) { | 117 bool is_dont_delete) { |
| 116 UNIMPLEMENTED(); | 118 UNIMPLEMENTED(); |
| 117 return NULL; | 119 return NULL; |
| 118 } | 120 } |
| 119 | 121 |
| 120 | 122 |
| 121 Object* StoreStubCompiler::CompileStoreCallback(JSObject* a, | 123 Object* StoreStubCompiler::CompileStoreCallback(JSObject* a, |
| 122 AccessorInfo* b, | 124 AccessorInfo* b, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 __ lea(rcx, FieldOperand(rax, Code::kHeaderSize)); | 171 __ lea(rcx, FieldOperand(rax, Code::kHeaderSize)); |
| 170 __ jmp(rcx); | 172 __ jmp(rcx); |
| 171 | 173 |
| 172 return GetCodeWithFlags(flags, "LazyCompileStub"); | 174 return GetCodeWithFlags(flags, "LazyCompileStub"); |
| 173 } | 175 } |
| 174 | 176 |
| 175 #undef __ | 177 #undef __ |
| 176 | 178 |
| 177 | 179 |
| 178 } } // namespace v8::internal | 180 } } // namespace v8::internal |
| OLD | NEW |