runtime.h 9.98 KB
Newer Older
1
// Copyright 2006-2008 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#ifndef V8_RUNTIME_H_
#define V8_RUNTIME_H_

namespace v8 { namespace internal {

// The interface to C++ runtime functions.

// ----------------------------------------------------------------------------
36 37 38
// RUNTIME_FUNCTION_LIST_ALWAYS defines runtime calls available in both
// release and debug mode.
// This macro should only be used by the macro RUNTIME_FUNCTION_LIST.
39

40
#define RUNTIME_FUNCTION_LIST_ALWAYS(F) \
41 42
  /* Property access */ \
  F(GetProperty, 2) \
43
  F(KeyedGetProperty, 2) \
44 45 46 47 48 49 50 51
  F(DeleteProperty, 2) \
  F(HasLocalProperty, 2) \
  F(HasProperty, 2) \
  F(HasElement, 2) \
  F(IsPropertyEnumerable, 2) \
  F(GetPropertyNames, 1) \
  F(GetPropertyNamesFast, 1) \
  F(GetArgumentsProperty, 1) \
52 53
  F(ToFastProperties, 1) \
  F(ToSlowProperties, 1) \
54 55 56
  \
  F(IsInPrototypeChain, 2) \
  \
57
  F(IsConstructCall, 0) \
58 59
  \
  /* Utilities */ \
60
  F(GetCalledFunction, 0) \
61 62
  F(GetFunctionDelegate, 1) \
  F(NewArguments, 1) \
63
  F(NewArgumentsFast, 3) \
64 65 66
  F(LazyCompile, 1) \
  F(SetNewFunctionAttributes, 1) \
  \
67 68
  /* Array join support */ \
  F(PushIfAbsent, 2) \
69
  F(ArrayConcat, 1) \
70
  \
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
  /* Conversions */ \
  F(ToBool, 1) \
  F(Typeof, 1) \
  \
  F(StringToNumber, 1) \
  F(StringFromCharCodeArray, 1) \
  F(StringParseInt, 2) \
  F(StringParseFloat, 1) \
  F(StringToLowerCase, 1) \
  F(StringToUpperCase, 1) \
  F(CharFromCode, 1) \
  F(URIEscape, 1) \
  F(URIUnescape, 1) \
  \
  F(NumberToString, 1) \
  F(NumberToInteger, 1) \
  F(NumberToJSUint32, 1) \
  F(NumberToJSInt32, 1) \
89
  F(NumberToSmi, 1) \
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
  \
  /* Arithmetic operations */ \
  F(NumberAdd, 2) \
  F(NumberSub, 2) \
  F(NumberMul, 2) \
  F(NumberDiv, 2) \
  F(NumberMod, 2) \
  F(NumberUnaryMinus, 1) \
  \
  F(StringAdd, 2) \
  F(StringBuilderConcat, 2) \
  \
  /* Bit operations */ \
  F(NumberOr, 2) \
  F(NumberAnd, 2) \
  F(NumberXor, 2) \
  F(NumberNot, 1) \
  \
  F(NumberShl, 2) \
  F(NumberShr, 2) \
  F(NumberSar, 2) \
  \
  /* Comparisons */ \
  F(NumberEquals, 2) \
  F(StringEquals, 2) \
  \
  F(NumberCompare, 3) \
117
  F(SmiLexicographicCompare, 2) \
118 119 120 121 122 123 124 125 126 127 128 129 130 131
  F(StringCompare, 2) \
  \
  /* Math */ \
  F(Math_abs, 1) \
  F(Math_acos, 1) \
  F(Math_asin, 1) \
  F(Math_atan, 1) \
  F(Math_atan2, 2) \
  F(Math_ceil, 1) \
  F(Math_cos, 1) \
  F(Math_exp, 1) \
  F(Math_floor, 1) \
  F(Math_log, 1) \
  F(Math_pow, 2) \
132
  F(Math_random, 0) \
133 134 135 136 137 138 139
  F(Math_round, 1) \
  F(Math_sin, 1) \
  F(Math_sqrt, 1) \
  F(Math_tan, 1) \
  \
  /* Regular expressions */ \
  F(RegExpCompile, 3) \
140 141
  F(RegExpExec, 4) \
  F(RegExpExecGlobal, 3) \
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
  \
  /* Strings */ \
  F(StringCharCodeAt, 2) \
  F(StringIndexOf, 3) \
  F(StringLastIndexOf, 3) \
  F(StringLocaleCompare, 2) \
  F(StringSlice, 3) \
  \
  /* Numbers */ \
  F(NumberToRadixString, 2) \
  F(NumberToFixed, 2) \
  F(NumberToExponential, 2) \
  F(NumberToPrecision, 2) \
  \
  /* Reflection */ \
  F(FunctionSetInstanceClassName, 2) \
  F(FunctionSetLength, 2) \
  F(FunctionSetPrototype, 2) \
  F(FunctionGetName, 1) \
161
  F(FunctionSetName, 2) \
162 163 164
  F(FunctionGetSourceCode, 1) \
  F(FunctionGetScript, 1) \
  F(FunctionGetScriptSourcePosition, 1) \
165
  F(FunctionIsAPIFunction, 1) \
166 167 168
  F(GetScript, 1) \
  \
  F(ClassOf, 1) \
169 170 171 172 173 174 175 176
  F(HasDateClass, 1) \
  F(HasStringClass, 1) \
  F(HasArrayClass, 1) \
  F(HasFunctionClass, 1) \
  F(HasNumberClass, 1) \
  F(HasBooleanClass, 1) \
  F(HasArgumentsClass, 1) \
  F(HasRegExpClass, 1) \
177 178 179 180 181
  F(SetCode, 2) \
  \
  F(CreateApiFunction, 1) \
  F(IsTemplate, 1) \
  F(GetTemplateField, 2) \
182 183
  F(DisableAccessChecks, 1) \
  F(EnableAccessChecks, 1) \
184 185
  \
  /* Dates */ \
186
  F(DateCurrentTime, 0) \
187 188
  F(DateParseString, 1) \
  F(DateLocalTimezone, 1) \
189
  F(DateLocalTimeOffset, 0) \
190 191 192
  F(DateDaylightSavingsOffset, 1) \
  \
  /* Numbers */ \
193
  F(NumberIsFinite, 1) \
194 195
  \
  /* Globals */ \
196
  F(CompileString, 2) \
197 198 199 200
  F(CompileScript, 4) \
  F(GlobalPrint, 1) \
  \
  /* Eval */ \
201
  F(GlobalReceiver, 1) \
202
  F(ResolvePossiblyDirectEval, 2) \
203 204
  \
  F(SetProperty, -1 /* 3 or 4 */) \
205
  F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \
206 207 208 209 210 211 212 213 214 215 216 217
  \
  /* Arrays */ \
  F(RemoveArrayHoles, 1) \
  F(GetArrayKeys, 2) \
  F(MoveArrayContents, 2) \
  F(EstimateNumberOfElements, 1) \
  \
  /* Getters and Setters */ \
  F(DefineAccessor, -1 /* 4 or 5 */) \
  F(LookupAccessor, 3) \
  \
  /* Debugging */ \
218
  F(SetDebugEventListener, 2) \
219
  F(Break, 0) \
220
  F(DebugGetPropertyDetails, 2) \
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
  F(DebugGetProperty, 2) \
  F(DebugLocalPropertyNames, 1) \
  F(DebugLocalElementNames, 1) \
  F(DebugPropertyTypeFromDetails, 1) \
  F(DebugPropertyAttributesFromDetails, 1) \
  F(DebugPropertyIndexFromDetails, 1) \
  F(DebugInterceptorInfo, 1) \
  F(DebugNamedInterceptorPropertyNames, 1) \
  F(DebugIndexedInterceptorElementNames, 1) \
  F(DebugNamedInterceptorPropertyValue, 2) \
  F(DebugIndexedInterceptorElementValue, 2) \
  F(CheckExecutionState, 1) \
  F(GetFrameCount, 1) \
  F(GetFrameDetails, 2) \
  F(GetCFrames, 1) \
  F(GetBreakLocations, 1) \
  F(SetFunctionBreakPoint, 3) \
  F(SetScriptBreakPoint, 3) \
  F(ClearBreakPoint, 1) \
  F(ChangeBreakOnException, 2) \
  F(PrepareStep, 3) \
242
  F(ClearStepping, 0) \
243 244
  F(DebugEvaluate, 4) \
  F(DebugEvaluateGlobal, 3) \
245
  F(DebugGetLoadedScripts, 0) \
246 247
  F(DebugReferencedBy, 3) \
  F(DebugConstructedBy, 2) \
248
  F(DebugGetPrototype, 1) \
249
  F(SystemBreak, 0) \
250 251 252
  \
  /* Literals */ \
  F(MaterializeRegExpLiteral, 4)\
253
  F(CreateArrayLiteralBoilerplate, 3) \
254
  F(CreateObjectLiteralBoilerplate, 3) \
255
  F(CloneLiteralBoilerplate, 1) \
256
  \
257 258 259
  /* Catch context extension objects */ \
  F(CreateCatchExtensionObject, 2) \
  \
260 261 262 263 264 265 266 267 268
  /* Statements */ \
  F(NewClosure, 2) \
  F(NewObject, 1) \
  F(Throw, 1) \
  F(ReThrow, 1) \
  F(ThrowReferenceError, 1) \
  F(StackGuard, 1) \
  \
  /* Contexts */ \
269 270
  F(NewContext, 1) \
  F(PushContext, 1) \
271
  F(PushCatchContext, 1) \
272 273 274 275 276 277 278
  F(LookupContext, 2) \
  F(LoadContextSlot, 2) \
  F(LoadContextSlotNoReferenceError, 2) \
  F(StoreContextSlot, 3) \
  \
  /* Declarations and initialization */ \
  F(DeclareGlobals, 3) \
279
  F(DeclareContextSlot, 4) \
280
  F(InitializeVarGlobal, -1 /* 1 or 2 */) \
281
  F(InitializeConstGlobal, 2) \
282 283 284 285
  F(InitializeConstContextSlot, 3) \
  \
  /* Debugging */ \
  F(DebugPrint, 1) \
286 287
  F(DebugTrace, 0) \
  F(TraceEnter, 0) \
288
  F(TraceExit, 1) \
289
  F(DebugBreak, 0) \
290 291
  F(FunctionGetAssemblerCode, 1) \
  F(Abort, 2) \
292 293
  /* Logging */ \
  F(Log, 2) \
294 295 296 297 298
  \
  /* Pseudo functions - handled as macros by parser */ \
  F(IS_VAR, 1)


299 300 301
#ifdef DEBUG
#define RUNTIME_FUNCTION_LIST_DEBUG(F) \
  /* Testing */ \
302
  F(ListNatives, 0)
303 304 305 306 307 308 309 310 311 312 313 314 315 316
#else
#define RUNTIME_FUNCTION_LIST_DEBUG(F)
#endif


// ----------------------------------------------------------------------------
// RUNTIME_FUNCTION_LIST defines all runtime functions accessed
// either directly by id (via the code generator), or indirectly
// via a native call by name (from within JS code).

#define RUNTIME_FUNCTION_LIST(F) \
  RUNTIME_FUNCTION_LIST_ALWAYS(F) \
  RUNTIME_FUNCTION_LIST_DEBUG(F)

317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
// ----------------------------------------------------------------------------
// Runtime provides access to all C++ runtime functions.

class Runtime : public AllStatic {
 public:
  enum FunctionId {
#define F(name, nargs) k##name,
    RUNTIME_FUNCTION_LIST(F)
    kNofFunctions
#undef F
  };

  // Runtime function descriptor.
  struct Function {
    // The JS name of the function.
    const char* name;

    // The name of the stub that calls the runtime function.
    const char* stub_name;

    // The C++ (native) entry point.
    byte* entry;

    // The number of arguments expected; nargs < 0 if variable no. of
    // arguments.
    int nargs;
    int stub_id;
  };

  // Get the runtime function with the given function id.
  static Function* FunctionForId(FunctionId fid);

  // Get the runtime function with the given name.
  static Function* FunctionForName(const char* name);

352
  static int StringMatch(Handle<String> sub, Handle<String> pat, int index);
353

354 355 356 357 358 359 360 361 362 363 364 365
  // TODO(1240886): The following three methods are *not* handle safe,
  // but accept handle arguments. This seems fragile.

  // Support getting the characters in a string using [] notation as
  // in Firefox/SpiderMonkey, Safari and Opera.
  static Object* GetElementOrCharAt(Handle<Object> object, uint32_t index);

  static Object* SetObjectProperty(Handle<Object> object,
                                   Handle<Object> key,
                                   Handle<Object> value,
                                   PropertyAttributes attr);

366
  static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key);
367 368 369 370 371 372 373 374 375

  // Helper functions used stubs.
  static void PerformGC(Object* result);
};


} }  // namespace v8::internal

#endif  // V8_RUNTIME_H_