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

  /external/llvm/include/llvm/
Instruction.h 199 /// isAssociative - Return true if the instruction is associative:
205 bool isAssociative() const { return isAssociative(getOpcode()); }
206 static bool isAssociative(unsigned op);
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 334 if (!I->isAssociative() || !I->isCommutative()) return 0;
Reassociate.cpp     [all...]
  /external/llvm/lib/VMCore/
Instruction.cpp 361 /// isAssociative - Return true if the instruction is associative:
367 bool Instruction::isAssociative(unsigned Opcode) {
ConstantFold.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 186 if (I.isAssociative()) {
237 if (I.isAssociative() && I.isCommutative()) {
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 234 assert(Instruction::isAssociative(Opcode) && "Not an associative operation!");
    [all...]

Completed in 137 milliseconds