HomeSort by: relevance | last modified time | path
    Searched refs:Unset (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenInstruction.cpp 405 bool Unset;
406 mayLoad = R->getValueAsBitOrUnset("mayLoad", Unset);
407 mayLoad_Unset = Unset;
408 mayStore = R->getValueAsBitOrUnset("mayStore", Unset);
409 mayStore_Unset = Unset;
411 hasSideEffects = R->getValueAsBitOrUnset("hasSideEffects", Unset);
412 hasSideEffects_Unset = Unset;
CodeGenDAGPatterns.cpp 1141 bool Unset;
1142 // The return value will be false when IsAPFloat is unset.
1144 Unset);
1149 bool Unset;
1151 getOrigPatFragRecord()->getRecord()->getValueAsBitOrUnset(Field, Unset);
1152 if (Unset)
GlobalISelEmitter.cpp 5831 bool Unset;
5832 return !R->getValueAsBitOrUnset("IsAPFloat", Unset) &&
5836 bool Unset;
5837 return R->getValueAsBitOrUnset("IsAPFloat", Unset);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Local.cpp 2848 enum { Unset = -1 };
2921 if (A->Provenance[BitIdx] != BitPart::Unset &&
2922 B->Provenance[BitIdx] != BitPart::Unset &&
2926 if (A->Provenance[BitIdx] == BitPart::Unset)
2957 P.insert(P.begin(), BitShift.getZExtValue(), BitPart::Unset);
2960 P.insert(P.end(), BitShift.getZExtValue(), BitPart::Unset);
2967 // unset the appropriate bits.
2986 Result->Provenance[BitIdx] = BitPart::Unset;
3002 Result->Provenance[BitIdx] = BitPart::Unset;
3144 [](int8_t I) { return I == BitPart::Unset || 0 <= I; }) &
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
InstrRefBasedImpl.cpp 2722 Unset = 0,
2728 } OurState = Unset;
2751 if (OurState == Unset) {
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangAttrEmitter.cpp 1949 bool Unset;
1951 Attribute.getValueAsBitOrUnset("PragmaAttributeSupport", Unset);
1952 if (!Unset)
3800 // If the attribute has an empty or unset list of language requirements,
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 2213 assert(Value && "Cannot create unset value for current type!");
2221 assert(Value && "Cannot create unset value for current type!");
2620 bool Record::getValueAsBitOrUnset(StringRef FieldName, bool &Unset) const {
2627 Unset = true;
2630 Unset = false;
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 335 /// Is this a complete value with no unset (uninitialized) subvalues?
339 /// stuck operations? Unset values are concrete.
450 /// Get the singleton unset Init.
460 /// Is this a complete value with no unset (uninitialized) subvalues?
1697 /// Return true if the named field is unset.
1754 /// returns its value as a bit. If the field is unset, sets Unset to true and
1756 bool getValueAsBitOrUnset(StringRef FieldName, bool &Unset) const;
2016 // encodings by keeping references to unset variables within a record.
2053 /// Resolve all variables from a record except for unset variables
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.mli 1388 the global value [g]. Unset it otherwise.

Completed in 53 milliseconds