Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:Value

61   static SmallPtrSet<Value *, 8> findAllDefs(Value *V) {
62 SmallPtrSet<Value *, 8> Defs;
63 SmallVector<Value *, 8> WorkList;
67 Value *Curr = WorkList.back();
77 // Translate a i1 value to an equivalent i32 value:
78 static Value *translate(Value *V) {
85 Value *Zero = Constant::getNullValue(Int32Ty);
95 assert((A || I) && "Unknown value type");
124 auto IsValidUser = [] (const Value *V) -> bool {
128 auto IsValidOperand = [] (const Value *V) -> bool {
140 auto IsPromotable = [&Promotable] (const Value *V) -> bool {
162 typedef DenseMap<Value *, Value *> B2IMap;
196 if (!std::any_of(Defs.begin(), Defs.end(), isa<Instruction, Value *>))
232 Value *IntRetVal = BoolToIntMap[U];
235 Value *BackToBool = new TruncInst(IntRetVal, Int1Ty, "backToBool", I);