HomeSort by relevance Sort by last modified time
    Searched defs:MapValue (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
ValueMapper.h 10 // This file defines the MapValue interface which is used by various parts of
56 Value *MapValue(const Value *V, ValueToValueMapTy &VM,
64 /// MapValue - provide versions that preserve type safety for MDNode and
66 inline MDNode *MapValue(const MDNode *V, ValueToValueMapTy &VM,
69 return cast<MDNode>(MapValue((const Value*)V, VM, Flags, TypeMapper));
71 inline Constant *MapValue(const Constant *V, ValueToValueMapTy &VM,
74 return cast<Constant>(MapValue((const Value*)V, VM, Flags, TypeMapper));
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 10 // This file defines the MapValue function, which is shared by various parts of
26 Value *llvm::MapValue(const Value *V, ValueToValueMapTy &VM, RemapFlags Flags,
66 if (OP == 0 || MapValue(OP, VM, Flags, TypeMapper) == OP) continue;
73 Elts.push_back(Op ? MapValue(Op, VM, Flags, TypeMapper) : 0);
97 cast<Function>(MapValue(BA->getFunction(), VM, Flags, TypeMapper));
98 BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(), VM,
109 Mapped = MapValue(Op, VM, Flags, TypeMapper);
136 Ops.push_back(MapValue(cast<Constant>(C->getOperand(OpNo)), VM,
164 Value *V = MapValue(*op, VMap, Flags, TypeMapper);
176 Value *V = MapValue(PN->getIncomingBlock(i), VMap, Flags)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ItemType.java 64 itemTypeIntegerMap.put(itemType.MapValue, itemType);
73 public final int MapValue;
92 * @param mapValue value when represented in a MapItem
97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) {
98 this.MapValue = mapValue;
121 return MapValue <= 0x1000;

Completed in 47 milliseconds