OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isassociative
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/IR/
Instruction.cpp
470
///
isAssociative
- Return true if the instruction is associative:
476
bool Instruction::
isAssociative
(unsigned Opcode) {
481
bool Instruction::
isAssociative
() const {
483
if (
isAssociative
(Opcode))
ConstantFold.cpp
[
all
...]
/external/llvm/include/llvm/IR/
Instruction.h
253
///
isAssociative
- Return true if the instruction is associative:
259
bool
isAssociative
() const;
260
static bool
isAssociative
(unsigned op);
/external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp
347
if (!I->
isAssociative
() || !I->isCommutative()) return 0;
Reassociate.cpp
423
assert(Instruction::
isAssociative
(Opcode) &&
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
216
if (I.
isAssociative
()) {
267
if (I.
isAssociative
() && I.isCommutative()) {
[
all
...]
/external/llvm/lib/Analysis/
InstructionSimplify.cpp
262
assert(Instruction::
isAssociative
(Opcode) && "Not an associative operation!");
[
all
...]
/external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp
[
all
...]
Completed in 398 milliseconds