OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isassociative
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/IR/
Instruction.cpp
487
///
isAssociative
- Return true if the instruction is associative:
493
bool Instruction::
isAssociative
(unsigned Opcode) {
498
bool Instruction::
isAssociative
() const {
500
if (
isAssociative
(Opcode))
ConstantFold.cpp
[
all
...]
/external/llvm/include/llvm/IR/
Instruction.h
312
///
isAssociative
- Return true if the instruction is associative:
318
bool
isAssociative
() const;
319
static bool
isAssociative
(unsigned op);
/external/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp
[
all
...]
TailRecursionElimination.cpp
544
if (!I->
isAssociative
() || !I->isCommutative()) return nullptr;
[
all
...]
Reassociate.cpp
539
assert(I->
isAssociative
() && I->isCommutative() &&
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
204
if (I.
isAssociative
()) {
255
if (I.
isAssociative
() && I.isCommutative()) {
[
all
...]
/external/llvm/lib/Analysis/
InstructionSimplify.cpp
201
assert(Instruction::
isAssociative
(Opcode) && "Not an associative operation!");
[
all
...]
/external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp
[
all
...]
Completed in 872 milliseconds