Lines Matching full:oddball
2223 ALLOCATE_PARTIAL_MAP(ODDBALL_TYPE, Oddball::kSize, undefined);
2224 ALLOCATE_PARTIAL_MAP(ODDBALL_TYPE, Oddball::kSize, null);
2225 ALLOCATE_PARTIAL_MAP(ODDBALL_TYPE, Oddball::kSize, the_hole);
2241 set_null_value(Oddball::cast(obj));
2242 Oddball::cast(obj)->set_kind(Oddball::kNull);
2248 set_undefined_value(Oddball::cast(obj));
2249 Oddball::cast(obj)->set_kind(Oddball::kUndefined);
2255 set_the_hole_value(Oddball::cast(obj));
2256 Oddball::cast(obj)->set_kind(Oddball::kTheHole);
2314 ALLOCATE_PRIMITIVE_MAP(ODDBALL_TYPE, Oddball::kSize, boolean,
2316 ALLOCATE_MAP(ODDBALL_TYPE, Oddball::kSize, uninitialized);
2317 ALLOCATE_MAP(ODDBALL_TYPE, Oddball::kSize, arguments_marker);
2318 ALLOCATE_MAP(ODDBALL_TYPE, Oddball::kSize, no_interceptor_result_sentinel);
2319 ALLOCATE_MAP(ODDBALL_TYPE, Oddball::kSize, exception);
2320 Oddball::kSize, termination_exception);
2321 ALLOCATE_MAP(ODDBALL_TYPE, Oddball::kSize, optimized_out);
2322 ALLOCATE_MAP(ODDBALL_TYPE, Oddball::kSize, stale_register);
2411 set_true_value(Oddball::cast(obj));
2412 Oddball::cast(obj)->set_kind(Oddball::kTrue);
2418 set_false_value(Oddball::cast(obj));
2419 Oddball::cast(obj)->set_kind(Oddball::kFalse);
2646 Oddball::Initialize(isolate(), factory->undefined_value(), "undefined",
2648 Oddball::kUndefined);
2651 Oddball::Initialize(isolate(), factory->null_value(), "null",
2653 Oddball::kNull);
2656 Oddball::Initialize(isolate(), factory->the_hole_value(), "hole",
2658 Oddball::kTheHole);
2661 Oddball::Initialize(isolate(), factory->true_value(), "true",
2663 Oddball::kTrue);
2666 Oddball::Initialize(isolate(), factory->false_value(), "false",
2668 Oddball::kFalse);
2673 "undefined", Oddball::kUninitialized));
2678 "undefined", Oddball::kArgumentsMarker));
2683 false, "undefined", Oddball::kOther));
2688 Oddball::kOther));
2692 "undefined", Oddball::kException));
2697 "undefined", Oddball::kOptimizedOut));
2702 "undefined", Oddball::kStaleRegister));