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

  /external/chromium_org/v8/test/cctest/compiler/
test-representation-change.cc 92 static const MachineType all_reps[] = {kRepBit, kRepWord32, kRepWord64,
153 Node* c = r.changer()->GetRepresentationFor(n, kRepWord32 | kTypeInt32,
160 Node* c = r.changer()->GetRepresentationFor(n, kRepWord32 | kTypeUint32,
184 CheckChange(IrOpcode::kChangeInt32ToTagged, kRepWord32 | kTypeInt32,
186 CheckChange(IrOpcode::kChangeUint32ToTagged, kRepWord32 | kTypeUint32,
191 kRepWord32);
193 kRepWord32);
197 CheckChange(IrOpcode::kChangeInt32ToFloat64, kRepWord32 | kTypeInt32,
199 CheckChange(IrOpcode::kChangeUint32ToFloat64, kRepWord32 | kTypeUint32,
202 kRepWord32);
    [all...]
  /external/chromium_org/v8/src/compiler/
machine-type.h 26 kRepWord32 = 1 << 3,
49 kMachInt32 = kRepWord32 | kTypeInt32,
50 kMachUint32 = kRepWord32 | kTypeUint32,
53 kMachPtr = (kPointerSize == 4) ? kRepWord32 : kRepWord64,
63 kRepWord32 | kRepWord64 | kRepFloat32 |
90 case kRepWord32:
machine-type.cc 25 PRINT(kRepWord32);
simplified-lowering.cc 295 } else if (use_rep & kRepWord32) {
296 rep = kRepWord32;
309 rep = kRepWord32;
380 return VisitLeaf(node, kRepWord32);
514 if ((in & kTypeMask) == kTypeInt32 || (in & kRepMask) == kRepWord32) {
522 VisitUnop(node, kTypeInt32 | kRepFloat64, kTypeInt32 | kRepWord32);
536 (in & kRepMask) == kRepWord32) {
544 kTypeUint32 | kRepWord32);
643 return VisitBinop(node, kRepWord32, kRepWord32 | kTypeUint32)
    [all...]
machine-operator-unittest.cc 43 const MachineType kMachineReps[] = {kRepWord32, kRepWord64};
50 kRepWord32, kRepWord64, kRepFloat32, kRepFloat64, kRepTagged};
281 MachineOperatorBuilder machine(kRepWord32);
change-lowering-unittest.cc 44 bool Is32() const { return WordRepresentation() == kRepWord32; }
47 case kRepWord32:
180 ::testing::Values(kRepWord32, kRepWord64));
191 return kRepWord32;
machine-operator.h 146 bool Is32() const { return word() == kRepWord32; }
representation-change.h 33 kRepBit | kRepWord8 | kRepWord16 | kRepWord32;
187 return TypeError(node, output_type, kRepWord32);
machine-operator.cc 195 DCHECK(word == kRepWord32 || word == kRepWord64);
  /external/chromium_org/v8/src/compiler/ia32/
instruction-selector-ia32.cc 67 case kRepWord32:
138 case kRepWord32:
  /external/chromium_org/v8/src/compiler/arm64/
instruction-selector-arm64.cc 184 case kRepWord32:
247 case kRepWord32:
  /external/chromium_org/v8/src/compiler/x64/
instruction-selector-x64.cc 81 case kRepWord32:
150 case kRepWord32:
  /external/chromium_org/v8/src/compiler/arm/
instruction-selector-arm.cc 307 case kRepWord32:
362 case kRepWord32:

Completed in 1765 milliseconds