HomeSort by: relevance | last modified time | path
    Searched defs:Predicates (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
X86RecognizableInstr.cpp 110 std::vector<Record*> Predicates = Rec->getValueAsListOfDefs("Predicates");
111 for (unsigned i = 0, e = Predicates.size(); i != e; ++i) {
112 if (Predicates[i]->getName().find("Not64Bit") != Name.npos ||
113 Predicates[i]->getName().find("In32Bit") != Name.npos) {
117 if (Predicates[i]->getName().find("In64Bit") != Name.npos) {
X86RecognizableInstr.cpp 110 std::vector<Record*> Predicates = Rec->getValueAsListOfDefs("Predicates");
111 for (unsigned i = 0, e = Predicates.size(); i != e; ++i) {
112 if (Predicates[i]->getName().find("Not64Bit") != Name.npos ||
113 Predicates[i]->getName().find("In32Bit") != Name.npos) {
117 if (Predicates[i]->getName().find("In64Bit") != Name.npos) {
InstrDocsEmitter.cpp 17 // * Predicates
206 // Predicates.
207 std::vector<Record *> Predicates =
208 II->TheDef->getValueAsListOfDefs("Predicates");
209 if (!Predicates.empty()) {
210 OS << "Predicates: ";
212 for (Record *P : Predicates)
InstrDocsEmitter.cpp 17 // * Predicates
206 // Predicates.
207 std::vector<Record *> Predicates =
208 II->TheDef->getValueAsListOfDefs("Predicates");
209 if (!Predicates.empty()) {
210 OS << "Predicates: ";
212 for (Record *P : Predicates)
CodeGenSchedule.h 334 std::vector<PredicateInfo> Predicates;
344 ArrayRef<PredicateInfo> getPredicates() const { return Predicates; }
CodeGenSchedule.h 334 std::vector<PredicateInfo> Predicates;
344 ArrayRef<PredicateInfo> getPredicates() const { return Predicates; }
FixedLenDecoderEmitter.cpp 94 PredicateSet Predicates;
147 PredicateSet &Predicates,
485 // Emits code to check the Predicates member of an instruction are true.
940 emitPredicateFunction(formatted_raw_ostream &OS, PredicateSet &Predicates,
947 if (!Predicates.empty()) {
951 for (const auto &Predicate : Predicates) {
1200 ListInit *Predicates =
1201 AllInstructions[Opc].EncodingDef->getValueAsListInit("Predicates");
1203 for (unsigned i = 0; i < Predicates->size(); ++i) {
1204 Record *Pred = Predicates->getElementAsRecord(i)
    [all...]
FixedLenDecoderEmitter.cpp 94 PredicateSet Predicates;
147 PredicateSet &Predicates,
485 // Emits code to check the Predicates member of an instruction are true.
940 emitPredicateFunction(formatted_raw_ostream &OS, PredicateSet &Predicates,
947 if (!Predicates.empty()) {
951 for (const auto &Predicate : Predicates) {
1200 ListInit *Predicates =
1201 AllInstructions[Opc].EncodingDef->getValueAsListInit("Predicates");
1203 for (unsigned i = 0; i < Predicates->size(); ++i) {
1204 Record *Pred = Predicates->getElementAsRecord(i)
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/ia64/
efisetjmp_arch.h 44 UINT64 Predicates;
efisetjmp_arch.h 44 UINT64 Predicates;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolution.h 393 /// This class represents a composition of other SCEV predicates, and is the
395 /// logical "AND" of all the predicates in the union.
404 /// Vector with references to all predicates in this union.
407 /// Maps SCEVs to predicates for quick look-ups.
420 /// Returns a reference to a vector containing all predicates which apply to
431 /// predicates in the union.
565 /// Predicates. If successful return these <AddRecExpr, Predicates>;
567 /// whether to actually add the predicates and carry out the rewrites).
782 /// SCEV predicates to Predicates that are required to be true in order fo
    [all...]
ScalarEvolution.h 393 /// This class represents a composition of other SCEV predicates, and is the
395 /// logical "AND" of all the predicates in the union.
404 /// Vector with references to all predicates in this union.
407 /// Maps SCEVs to predicates for quick look-ups.
420 /// Returns a reference to a vector containing all predicates which apply to
431 /// predicates in the union.
565 /// Predicates. If successful return these <AddRecExpr, Predicates>;
567 /// whether to actually add the predicates and carry out the rewrites).
782 /// SCEV predicates to Predicates that are required to be true in order fo
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMLowOverheadLoops.cpp 168 SetVector<MachineInstr*> Predicates;
173 Predicates.insert(Preds.begin(), Preds.end());
247 SetVector<MachineInstr *> &Predicates = PredicatedInsts[MI]->Predicates;
248 if (Exclusive && Predicates.size() != 1)
250 for (auto *PredMI : Predicates)
ARMLowOverheadLoops.cpp 168 SetVector<MachineInstr*> Predicates;
173 Predicates.insert(Preds.begin(), Preds.end());
247 SetVector<MachineInstr *> &Predicates = PredicatedInsts[MI]->Predicates;
248 if (Exclusive && Predicates.size() != 1)
250 for (auto *PredMI : Predicates)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 258 PredMap Predicates;
457 /// Analyze the predecessors of each block and build up predicates
461 BBPredicates &Pred = Predicates[BB];
518 Predicates.clear();
560 BBPredicates &Preds = Loops ? LoopPreds[SuccFalse] : Predicates[SuccTrue];
781 /// Does BB dominate all the predicates of Node?
783 BBPredicates &Preds = Predicates[Node->getEntry()];
791 BBPredicates &Preds = Predicates[Node->getEntry()];
1077 Predicates.clear();
StructurizeCFG.cpp 258 PredMap Predicates;
457 /// Analyze the predecessors of each block and build up predicates
461 BBPredicates &Pred = Predicates[BB];
518 Predicates.clear();
560 BBPredicates &Preds = Loops ? LoopPreds[SuccFalse] : Predicates[SuccTrue];
781 /// Does BB dominate all the predicates of Node?
783 BBPredicates &Preds = Predicates[Node->getEntry()];
791 BBPredicates &Preds = Predicates[Node->getEntry()];
1077 Predicates.clear();

Completed in 221 milliseconds