/external/chromium_org/v8/test/cctest/ |
test-representation.cc | 35 void TestPairPositive(Representation more_general, 36 Representation less_general) { 41 void TestPairNegative(Representation more_general, 42 Representation less_general) { 48 TestPairNegative(Representation::None(), Representation::None()); 49 TestPairPositive(Representation::Integer8(), Representation::None()); 50 TestPairPositive(Representation::UInteger8(), Representation::None()) [all...] |
test-macro-assembler-ia32.cc | 74 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8()); 79 __ Load(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8()); 88 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer8()); 93 __ Load(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer8()); 102 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::Integer16()); 107 __ Load(edx, Operand(esp, 0 * kPointerSize), Representation::Integer16()); 116 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger16()); 121 __ Load(edx, Operand(esp, 0 * kPointerSize), Representation::UInteger16());
|
test-macro-assembler-arm.cc | 159 __ Store(r2, MemOperand(sp, 0 * kPointerSize), Representation::UInteger8()); 165 __ Load(r3, MemOperand(sp, 0 * kPointerSize), Representation::UInteger8()); 174 __ Store(r2, MemOperand(sp, 0 * kPointerSize), Representation::Integer8()); 180 __ Load(r3, MemOperand(sp, 0 * kPointerSize), Representation::Integer8()); 189 __ Store(r2, MemOperand(sp, 0 * kPointerSize), Representation::UInteger16()); 195 __ Load(r3, MemOperand(sp, 0 * kPointerSize), Representation::UInteger16()); 204 __ Store(r2, MemOperand(sp, 0 * kPointerSize), Representation::Integer16()); 210 __ Load(r3, MemOperand(sp, 0 * kPointerSize), Representation::Integer16());
|
/external/chromium_org/v8/src/ |
property-details.h | 81 class Representation { 98 Representation() : kind_(kNone) { } 100 static Representation None() { return Representation(kNone); } 101 static Representation Tagged() { return Representation(kTagged); } 102 static Representation Integer8() { return Representation(kInteger8); } 103 static Representation UInteger8() { return Representation(kUInteger8); 270 Representation representation() { function in class:v8::internal::BASE_EMBEDDED [all...] |
hydrogen-instructions.h | 299 bool AddAndCheckOverflow(const Representation& r, Range* other); 300 bool SubAndCheckOverflow(const Representation& r, Range* other); 301 bool MulAndCheckOverflow(const Representation& r, Range* other); 383 bool ToStringOrToNumberCanBeObserved(Representation representation) { 398 return !representation.IsSmiOrInteger32() && !representation.IsDouble(); 660 Representation representation() const { return representation_; } 661 void ChangeRepresentation(Representation r) 5917 inline Representation representation() const { function in class:v8::V8_FINAL 6223 Representation representation = access.representation(); local [all...] |
hydrogen-representation-changes.h | 48 Representation to);
|
hydrogen-instructions.cc | 32 #include "hydrogen-infer-representation.h" 71 void HValue::AssumeRepresentation(Representation r) { 74 // The representation of the value is dictated by type feedback and 83 Representation new_rep = RepresentationFromInputs(); 87 if (representation().IsSmi() && HasNonSmiUse()) { 89 Representation::Integer32(), h_infer, "use requirements"); 94 Representation HValue::RepresentationFromUses() { 95 if (HasNoUses()) return Representation::None(); 97 // Array of use counts for each representation. 98 int use_count[Representation::kNumRepresentations] = { 0 } 4301 Representation representation; local [all...] |
property.h | 89 Representation representation, 93 details_(attributes, type, representation, field_index) { } 104 Representation representation) 106 FIELD, representation, field_index) {} 126 Representation::Tagged()) {} 189 details_(NONE, NONEXISTENT, Representation::None()) { 211 return value->FitsRepresentation(details_.representation()); 216 details_ = PropertyDetails(NONE, TRANSITION, Representation::None()) 266 Representation representation() { function in class:v8::internal::BASE_EMBEDDED [all...] |
hydrogen-minus-zero.cc | 42 Representation from = change->value()->representation(); 55 if (check->value()->representation().IsSmiOrInteger32()) {
|
hydrogen-infer-representation.cc | 28 #include "hydrogen-infer-representation.h" 34 if (current->representation().IsTagged()) return; 159 // Lastly: any instruction that we don't have representation information 166 if (phi->representation().IsNone()) { 167 phi->ChangeRepresentation(Representation::Tagged()); 172 if (current->representation().IsNone() && 175 current->ChangeRepresentation(Representation::Double()); 177 current->ChangeRepresentation(Representation::Tagged());
|
hydrogen-representation-changes.cc | 28 #include "hydrogen-representation-changes.h" 34 HValue* value, HValue* use_value, int use_index, Representation to) { 35 // Insert the representation change right before its use. For phi-uses we 43 // For constants we try to make the representation change at compile 44 // time. When a representation change is not possible without loss of 52 // Try to create a new copy of the constant with the new representation. 78 Representation r = value->representation(); 85 Representation req = use_value->RequiredInputRepresentation(use_index); 113 if (phi->representation().IsInteger32()) [all...] |
types.cc | 519 Representation Representation::FromType(Handle<Type> type) { 520 if (type->Is(Type::None())) return Representation::None(); 521 if (type->Is(Type::Smi())) return Representation::Smi(); 522 if (type->Is(Type::Signed32())) return Representation::Integer32(); 523 if (type->Is(Type::Number())) return Representation::Double(); 524 return Representation::Tagged();
|
type-info.cc | 601 Representation Representation::FromType(TypeInfo info) { 602 if (info.IsUninitialized()) return Representation::None(); 603 if (info.IsSmi()) return Representation::Smi(); 604 if (info.IsInteger32()) return Representation::Integer32(); 605 if (info.IsDouble()) return Representation::Double(); 606 if (info.IsNumber()) return Representation::Double(); 607 return Representation::Tagged();
|
/external/v8/src/ |
hydrogen-instructions.h | 291 class Representation { 302 Representation() : kind_(kNone) { } 304 static Representation None() { return Representation(kNone); } 305 static Representation Tagged() { return Representation(kTagged); } 306 static Representation Integer32() { return Representation(kInteger32); } 307 static Representation Double() { return Representation(kDouble); [all...] |
hydrogen-instructions.cc | 56 const char* Representation::Mnemonic() const { 78 void HValue::AssumeRepresentation(Representation r) { 81 // The representation of the value is dictated by type feedback and 350 if (!other->representation().Equals(representation())) return false; 437 if (!representation().IsTagged() || type().Equals(HType::Tagged())) return; 852 if (!representation().IsInteger32()) return this; 870 if (!representation().IsInteger32()) return this; 877 if (!representation().IsInteger32()) return this; 1023 result->set_can_be_minus_zero(!representation().IsInteger32()) [all...] |
/external/clang/include/clang/Serialization/ |
ContinuousRangeMap.h | 45 typedef SmallVector<value_type, InitialCapacity> Representation; 46 Representation Rep; 83 typedef typename Representation::iterator iterator; 84 typedef typename Representation::const_iterator const_iterator;
|
/external/clang/lib/AST/ |
NestedNameSpecifier.cpp | 440 : Representation(Other.Representation), Buffer(0), 463 Representation = Other.Representation; 504 Representation = NestedNameSpecifier::Create(Context, Representation, 517 Representation = NestedNameSpecifier::Create(Context, Representation, 529 Representation = NestedNameSpecifier::Create(Context, Representation, [all...] |
/external/clang/include/clang/AST/ |
NestedNameSpecifier.h | 325 /// \brief The current representation of the nested-name-specifier we're 327 NestedNameSpecifier *Representation; 347 : Representation(0), Buffer(0), BufferSize(0), BufferCapacity(0) { } 359 /// \brief Retrieve the representation of the nested-name-specifier. 360 NestedNameSpecifier *getRepresentation() const { return Representation; } 438 return NestedNameSpecifierLoc(Representation, Buffer).getSourceRange(); 454 return NestedNameSpecifierLoc(Representation, Buffer); 460 Representation = 0;
|
/external/chromium_org/v8/src/arm/ |
lithium-gap-resolver-arm.cc | 250 Representation r = cgen_->IsSmi(constant_source) 251 ? Representation::Smi() : Representation::Integer32(); 264 Representation r = cgen_->IsSmi(constant_source) 265 ? Representation::Smi() : Representation::Integer32();
|
/external/chromium_org/v8/src/mips/ |
lithium-gap-resolver-mips.cc | 254 Representation r = cgen_->IsSmi(constant_source) 255 ? Representation::Smi() : Representation::Integer32(); 268 Representation r = cgen_->IsSmi(constant_source) 269 ? Representation::Smi() : Representation::Integer32();
|
/external/chromium_org/v8/src/ia32/ |
lithium-gap-resolver-ia32.cc | 309 Representation r = cgen_->IsSmi(constant_source) 310 ? Representation::Smi() : Representation::Integer32(); 342 Representation r = cgen_->IsSmi(constant_source) 343 ? Representation::Smi() : Representation::Integer32();
|
lithium-codegen-ia32.h | 97 Immediate ToImmediate(LOperand* op, const Representation& r) const { 293 int32_t ToRepresentation(LConstantOperand* op, const Representation& r) const; 299 Representation key_representation,
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
p1.cpp | 32 class Representation {}; 33 friend class Representation;
|
/external/robolectric/src/main/java/android/net/ |
Uri__FromAndroid.java | 336 * Compares the string representation of this Uri with that of 344 * Returns the encoded string representation of this URI. 411 /** URI string representation. */ 1970 int representation = parcel.readInt(); local 2154 int representation = parcel.readInt(); local [all...] |
/frameworks/base/core/java/android/net/ |
Uri.java | 345 * Compares the string representation of this Uri with that of 353 * Returns the encoded string representation of this URI. 359 * Return a string representation of the URI that is safe to print 462 /** URI string representation. */ 2013 int representation = parcel.readInt(); local 2198 int representation = parcel.readInt(); local [all...] |