OLD | NEW |
---|---|
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
59 default: | 59 default: |
60 throw 'Unknown API tag <' + tag + '>'; | 60 throw 'Unknown API tag <' + tag + '>'; |
61 } | 61 } |
62 } | 62 } |
63 | 63 |
64 | 64 |
65 function InstantiateFunction(data, name) { | 65 function InstantiateFunction(data, name) { |
66 // We need a reference to kApiFunctionCache in the stack frame | 66 // We need a reference to kApiFunctionCache in the stack frame |
67 // if we need to bail out from a stack overflow. | 67 // if we need to bail out from a stack overflow. |
68 var cache = kApiFunctionCache; | 68 var cache = kApiFunctionCache; |
69 var flags = %GetTemplateField(data, kApiFlagOffset); | |
70 var doNotCache = flags & (1 << kDoNotCacheBit); | |
69 var serialNumber = %GetTemplateField(data, kApiSerialNumberOffset); | 71 var serialNumber = %GetTemplateField(data, kApiSerialNumberOffset); |
70 var isFunctionCached = | 72 var isFunctionCached = |
71 (serialNumber in cache) && (cache[serialNumber] != kUninitialized); | 73 (!doNotCache && |
74 (serialNumber in cache) && (cache[serialNumber] != kUninitialized)); | |
72 if (!isFunctionCached) { | 75 if (!isFunctionCached) { |
73 try { | 76 try { |
74 cache[serialNumber] = null; | 77 cache[serialNumber] = null; |
Michael Starzinger
2013/09/13 08:59:08
Couldn't we just remove this initialization to "nu
| |
75 var fun = %CreateApiFunction(data); | 78 var fun = %CreateApiFunction(data); |
76 if (name) %FunctionSetName(fun, name); | 79 if (name) %FunctionSetName(fun, name); |
77 var flags = %GetTemplateField(data, kApiFlagOffset); | |
78 var doNotCache = flags & (1 << kDoNotCacheBit); | |
79 if (!doNotCache) cache[serialNumber] = fun; | 80 if (!doNotCache) cache[serialNumber] = fun; |
80 if (flags & (1 << kRemovePrototypeBit)) { | 81 if (flags & (1 << kRemovePrototypeBit)) { |
81 %FunctionRemovePrototype(fun); | 82 %FunctionRemovePrototype(fun); |
82 } else { | 83 } else { |
83 var prototype = %GetTemplateField(data, kApiPrototypeTemplateOffset); | 84 var prototype = %GetTemplateField(data, kApiPrototypeTemplateOffset); |
84 // Note: Do not directly use an object template as a condition, our | 85 // Note: Do not directly use an object template as a condition, our |
85 // internal ToBoolean doesn't handle that! | 86 // internal ToBoolean doesn't handle that! |
86 fun.prototype = typeof prototype === 'undefined' ? | 87 fun.prototype = typeof prototype === 'undefined' ? |
87 {} : Instantiate(prototype); | 88 {} : Instantiate(prototype); |
88 if (flags & (1 << kReadOnlyPrototypeBit)) { | 89 if (flags & (1 << kReadOnlyPrototypeBit)) { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 obj, name, getter, setter, attribute, access_control); | 133 obj, name, getter, setter, attribute, access_control); |
133 } else { | 134 } else { |
134 throw "Bad properties array"; | 135 throw "Bad properties array"; |
135 } | 136 } |
136 i += length + 1; | 137 i += length + 1; |
137 } | 138 } |
138 } finally { | 139 } finally { |
139 if (requires_access_checks) %EnableAccessChecks(obj); | 140 if (requires_access_checks) %EnableAccessChecks(obj); |
140 } | 141 } |
141 } | 142 } |
OLD | NEW |