HomeSort by relevance Sort by last modified time
    Searched refs:mayAlias (Results 1 - 9 of 9) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
PseudoSourceValue.h 46 /// mayAlias - Return true if the memory pointed to by this
48 virtual bool mayAlias(const MachineFrameInfo *) const;
104 virtual bool mayAlias(const MachineFrameInfo *) const;
  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 81 virtual bool mayAlias(const MachineFrameInfo *) const;
101 bool mayAlias(const MachineFrameInfo *) const override;
115 bool mayAlias(const MachineFrameInfo *) const override;
ScheduleDAGInstrs.h 91 UnderlyingObject(ValueType V, bool MayAlias)
92 : PointerIntPair<ValueType, 1, bool>(V, MayAlias) {}
94 bool mayAlias() const { return getInt(); }
  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 49 bool PseudoSourceValue::mayAlias(const MachineFrameInfo *) const {
64 bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
86 bool CallEntryPseudoSourceValue::mayAlias(const MachineFrameInfo *) const {
ScheduleDAGInstrs.cpp 190 bool MayAlias = PSV->mayAlias(MFI);
191 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PseudoSourceValue.cpp 103 bool PseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
125 bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
ScheduleDAGInstrs.cpp 107 bool &MayAlias) {
108 MayAlias = true;
126 MayAlias = PSV->mayAlias(MFI);
464 bool MayAlias = true;
466 if (const Value *V = getUnderlyingObjectForInstr(MI, MFI, MayAlias)) {
471 ((MayAlias) ? AliasMemDefs.find(V) : NonAliasMemDefs.find(V));
473 ((MayAlias) ? AliasMemDefs.end() : NonAliasMemDefs.end());
479 if (MayAlias)
486 ((MayAlias) ? AliasMemUses.find(V) : NonAliasMemUses.find(V))
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64LoadStoreOptimizer.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]

Completed in 208 milliseconds