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

  /external/v8/src/compiler/
machine-type.h 27 kRepWord64 = 1 << 4,
51 kMachInt64 = kRepWord64 | kTypeInt64,
52 kMachUint64 = kRepWord64 | kTypeUint64,
53 kMachPtr = (kPointerSize == 4) ? kRepWord32 : kRepWord64,
63 kRepWord32 | kRepWord64 | kRepFloat32 |
93 case kRepWord64:
machine-type.cc 26 PRINT(kRepWord64);
simplified-lowering.cc 293 } else if (use_rep & kRepWord64) {
294 rep = kRepWord64;
307 rep = kRepWord64;
382 return VisitLeaf(node, kRepWord64);
693 return VisitBinop(node, kRepWord64, kRepWord64);
695 return VisitBinop(node, kRepWord64, kRepBit);
699 kTypeInt32 | kRepWord64);
702 kTypeUint32 | kRepWord64);
705 return VisitUnop(node, kTypeInt32 | kRepWord64,
    [all...]
representation-change.h 63 } else if (use_type & kRepWord64) {
214 } else if (output_type & kRepWord64) {
229 return TypeError(node, output_type, kRepWord64);
machine-operator-unittest.cc 43 const MachineType kMachineReps[] = {kRepWord32, kRepWord64};
50 kRepWord32, kRepWord64, kRepFloat32, kRepFloat64, kRepTagged};
303 MachineOperatorBuilder machine(kRepWord64);
machine-operator.h 147 bool Is64() const { return word() == kRepWord64; }
change-lowering-unittest.cc 49 case kRepWord64:
180 ::testing::Values(kRepWord32, kRepWord64));
343 return kRepWord64;
machine-operator.cc 195 DCHECK(word == kRepWord32 || word == kRepWord64);
  /external/v8/test/cctest/compiler/
test-representation-change.cc 92 static const MachineType all_reps[] = {kRepBit, kRepWord32, kRepWord64,
237 r.CheckNop(kRepWord64, kRepBit);
238 r.CheckNop(kRepWord64, kRepBit | kTypeBool);
256 r.CheckNop(kRepBit, kRepWord64);
257 r.CheckNop(kRepBit | kTypeBool, kRepWord64);
277 r.CheckTypeError(kRepWord64, kRepTagged | kTypeBool);
278 r.CheckTypeError(kRepWord64, kRepTagged);
279 r.CheckTypeError(kRepWord64, kRepTagged | kTypeBool);
280 r.CheckTypeError(kRepTagged, kRepWord64);
281 r.CheckTypeError(kRepTagged | kTypeBool, kRepWord64);
    [all...]
test-simplified-lowering.cc 712 } else if (type & kRepWord64) {
731 } else if (type & kRepWord64) {
    [all...]
  /external/v8/src/compiler/arm64/
instruction-selector-arm64.cc 189 case kRepWord64:
252 case kRepWord64:
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 85 case kRepWord64:
154 case kRepWord64:

Completed in 149 milliseconds