HomeSort by relevance Sort by last modified time
    Searched refs:HType (Results 1 - 22 of 22) sorted by null

  /external/v8/src/
hydrogen-instructions.cc 236 const char* HType::ToString() {
255 HType HType::TypeFromValue(Handle<Object> value) {
256 HType result = HType::Tagged();
258 result = HType::Smi();
260 result = HType::HeapNumber();
262 result = HType::String();
264 result = HType::Boolean();
266 result = HType::JSObject()
    [all...]
hydrogen-instructions.h 335 class HType {
337 HType() : type_(kUninitialized) { }
339 static HType Tagged() { return HType(kTagged); }
340 static HType TaggedPrimitive() { return HType(kTaggedPrimitive); }
341 static HType TaggedNumber() { return HType(kTaggedNumber); }
342 static HType Smi() { return HType(kSmi);
    [all...]
  /external/chromium_org/v8/src/
hydrogen-instructions.h 346 class HType {
348 static HType None() { return HType(kNone); }
349 static HType Tagged() { return HType(kTagged); }
350 static HType TaggedPrimitive() { return HType(kTaggedPrimitive); }
351 static HType TaggedNumber() { return HType(kTaggedNumber); }
352 static HType Smi() { return HType(kSmi);
    [all...]
hydrogen-instructions.cc 337 const char* HType::ToString() {
358 HType HType::TypeFromValue(Handle<Object> value) {
359 HType result = HType::Tagged();
361 result = HType::Smi();
363 result = HType::HeapNumber();
365 result = HType::String();
367 result = HType::Boolean();
369 result = HType::JSObject()
    [all...]
code-stubs-hydrogen.cc 163 stack_parameter_count->set_type(HType::Smi());
427 HInstruction* object = Add<HAllocate>(size_in_bytes, HType::JSObject(),
452 HInstruction* object = Add<HAllocate>(size, HType::JSObject(), TENURED,
hydrogen.cc 647 #define DEFINE_GET_CONSTANT(Name, name, htype, boolean_value) \
654 htype, \
666 DEFINE_GET_CONSTANT(True, true, HType::Boolean(), true)
667 DEFINE_GET_CONSTANT(False, false, HType::Boolean(), false)
668 DEFINE_GET_CONSTANT(Hole, the_hole, HType::Tagged(), false)
669 DEFINE_GET_CONSTANT(Null, null, HType::Tagged(), false)
    [all...]
  /external/v8/src/arm/
lithium-codegen-arm.cc     [all...]
lithium-arm.cc 1056 HType type = value->type();
    [all...]
  /external/v8/src/ia32/
lithium-codegen-ia32.cc     [all...]
lithium-ia32.cc 1058 HType type = value->type();
    [all...]
  /external/v8/src/mips/
lithium-codegen-mips.cc     [all...]
lithium-mips.cc 1056 HType type = value->type();
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.cc     [all...]
lithium-x64.cc 1053 HType type = value->type();
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc     [all...]
lithium-arm.cc 1005 HType type = value->type();
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.cc     [all...]
lithium-mips.cc 1010 HType type = value->type();
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-codegen-x64.cc     [all...]
lithium-x64.cc 1012 HType type = value->type();
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 1063 HType type = value->type()
    [all...]
lithium-codegen-ia32.cc     [all...]

Completed in 208 milliseconds