Home
last modified time | relevance | path

Searched refs:Truncation (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/compiler/
Drepresentation-change.h15 class Truncation final {
18 static Truncation None() { return Truncation(TruncationKind::kNone); } in None()
19 static Truncation Bool() { return Truncation(TruncationKind::kBool); } in Bool()
20 static Truncation Word32() { return Truncation(TruncationKind::kWord32); } in Word32()
21 static Truncation Word64() { return Truncation(TruncationKind::kWord64); } in Word64()
22 static Truncation Float64() { return Truncation(TruncationKind::kFloat64); } in Float64()
23 static Truncation Any() { return Truncation(TruncationKind::kAny); } in Any()
25 static Truncation Generalize(Truncation t1, Truncation t2) { in Generalize()
26 return Truncation(Generalize(t1.kind(), t2.kind())); in Generalize()
50 bool operator==(Truncation other) const { return kind() == other.kind(); }
[all …]
Drepresentation-change.cc19 const char* Truncation::description() const { in description()
57 Truncation::TruncationKind Truncation::Generalize(TruncationKind rep1, in Generalize()
78 bool Truncation::LessGeneral(TruncationKind rep1, TruncationKind rep2) { in LessGeneral()
361 Truncation truncation) { in GetTaggedRepresentationFor()
436 Truncation truncation) { in GetFloat32RepresentationFor()
Dsimplified-lowering.cc249 Truncation old_truncation = truncation_; in AddUse()
250 truncation_ = Truncation::Generalize(truncation_, info.truncation()); in AddUse()
261 Truncation truncation() const { return truncation_; } in truncation()
279 Truncation truncation_ = Truncation::None(); // Information about uses.
871 Truncation use) { in GetOutputInfoForPhi()
899 void VisitSelect(Node* node, Truncation truncation, in VisitSelect()
924 void VisitPhi(Node* node, Truncation truncation, in VisitPhi()
1165 void LowerToCheckedInt32Mul(Node* node, Truncation truncation, in LowerToCheckedInt32Mul()
1189 void VisitSpeculativeAdditiveOp(Node* node, Truncation truncation, in VisitSpeculativeAdditiveOp()
1259 void VisitSpeculativeNumberModulus(Node* node, Truncation truncation, in VisitSpeculativeNumberModulus()
[all …]
/external/fio/examples/
Dftruncate.fio13 # bs option is stub here. Truncation is performed on the current block offset.
/external/v8/src/inspector/
DBUILD.gn101 "/wd4267", # Truncation from size_t to int.
102 "/wd4305", # Truncation from 'type1' to 'type2'.
/external/pcre/dist2/testdata/
Dtestoutput11-16582 ** Truncation will probably give the wrong result.
584 ** Truncation will probably give the wrong result.
586 ** Truncation will probably give the wrong result.
588 ** Truncation will probably give the wrong result.
Dtestoutput911 ** Truncation will probably give the wrong result.
15 ** Truncation will probably give the wrong result.
/external/llvm/test/CodeGen/AArch64/
Dldst-unscaledimm.ll174 ; Truncation from 64-bits
Dldst-unsignedimm.ll144 ; Truncation from 64-bits
/external/libchrome/base/strings/
Dsafe_sprintf_unittest.cc480 TEST(SafeSPrintfTest, Truncation) { in TEST() argument
/external/v8/gypfiles/
Dstandalone.gypi934 4302, # Truncation from 'type 1' to 'type 2'
935 4309, # Truncation of constant value
/external/v8/
DChangeLog20398 [turbofan] Truncation of Bit/Word8/16 to Word32 is a no-op (Chromium