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

  /external/chromium_org/v8/src/compiler/
machine-type.cc 33 PRINT(kTypeUint32);
machine-type.h 35 kTypeUint32 = 1 << 10,
46 kMachUint8 = kRepWord8 | kTypeUint32,
48 kMachUint16 = kRepWord16 | kTypeUint32,
50 kMachUint32 = kRepWord32 | kTypeUint32,
65 const MachineTypeUnion kTypeMask = kTypeBool | kTypeInt32 | kTypeUint32 |
representation-change.h 62 use_type & kTypeUint32);
77 if (output_type & kTypeUint32) {
99 if (output_type & kTypeUint32) {
120 if (output_type & kTypeUint32) {
137 if (output_type & kTypeUint32) {
175 if (output_type & kTypeUint32 || use_unsigned) {
181 if (output_type & kTypeUint32 || use_unsigned) {
316 if (type->Is(Type::Unsigned32())) return kTypeUint32;
simplified-lowering.cc 308 } else if (use_type & kTypeInt32 || use_type & kTypeUint32) {
486 (use & (kTypeUint32 | kTypeNumber | kTypeAny)) == 0) {
535 if ((in & kTypeMask) == kTypeUint32 ||
538 VisitUnop(node, kTypeUint32 | use_rep, kTypeUint32 | use_rep);
543 VisitUnop(node, kTypeUint32 | kRepFloat64,
544 kTypeUint32 | kRepWord32);
549 VisitUnop(node, kTypeUint32, kTypeUint32 | use_rep);
643 return VisitBinop(node, kRepWord32, kRepWord32 | kTypeUint32);
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-representation-change.cc 160 Node* c = r.changer()->GetRepresentationFor(n, kRepWord32 | kTypeUint32,
186 CheckChange(IrOpcode::kChangeUint32ToTagged, kRepWord32 | kTypeUint32,
192 CheckChange(IrOpcode::kChangeTaggedToUint32, kRepTagged | kTypeUint32,
199 CheckChange(IrOpcode::kChangeUint32ToFloat64, kRepWord32 | kTypeUint32,
203 CheckChange(IrOpcode::kChangeFloat64ToUint32, kRepFloat64 | kTypeUint32,
215 kRepWord32 | kTypeUint32);
288 r.CheckTypeError(kRepWord64, kRepWord32 | kTypeUint32);
289 r.CheckTypeError(kRepWord32 | kTypeUint32, kRepWord64);
test-simplified-lowering.cc 701 } else if (type & kTypeUint32) {
725 } else if (type & kTypeUint32) {
    [all...]
  /external/chromium_org/v8/src/compiler/arm/
instruction-selector-arm.cc 301 opcode = typ == kTypeUint32 ? kArmLdrb : kArmLdrsb;
304 opcode = typ == kTypeUint32 ? kArmLdrh : kArmLdrsh;

Completed in 403 milliseconds