Searched defs:Simplified (Results 1 - 3 of 3) sorted by path

/external/llvm/include/llvm/Target/
H A DTargetOptions.h46 Simplified, // Use one table per function type, with types projected enumerator in enum:llvm::JumpTable::JumpTableType
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp333 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV); local
334 if (Simplified && Simplified->getOpcode() == Opcode) {
341 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
342 Simplified->getOperand(1) == UnsimplifiedRHS)
343 return Simplified;
344 if (Simplified->isCommutative() &&
345 Simplified->getOperand(1) == UnsimplifiedLHS &&
346 Simplified->getOperand(0) == UnsimplifiedRHS)
347 return Simplified;
3196 bool Simplified = false; local
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp236 DEBUG(dbgs() << "INDVARS: Simplified rem: " << *Rem << '\n');
341 SmallPtrSet<Instruction*,16> &Simplified,
349 // If Def is a LoopPhi, it may not be in the Simplified set, so check for
351 if (UI != Def && Simplified.insert(UI))
394 SmallPtrSet<Instruction*,16> Simplified;
402 pushIVUsers(CurrIV, Simplified, SimpleIVUsers);
420 assert(N <= Simplified.size() && "runaway iteration");
431 pushIVUsers(IVOperand, Simplified, SimpleIVUsers);
440 pushIVUsers(UseOper.first, Simplified, SimpleIVUsers);
339 pushIVUsers( Instruction *Def, SmallPtrSet<Instruction*,16> &Simplified, SmallVectorImpl< std::pair<Instruction*,Instruction*> > &SimpleIVUsers) argument

Completed in 213 milliseconds