Searched refs:previousLocalValue (Results 1 – 6 of 6) sorted by relevance
28 private final Value previousLocalValue; field in Value.DebugInfo30 public DebugInfo(DebugLocalInfo local, Value previousLocalValue) { in DebugInfo() argument33 this.previousLocalValue = previousLocalValue; in DebugInfo()41 Value previousLocalValue; field in Value.DebugData47 this(info.local, info.previousLocalValue); in DebugData()50 DebugData(DebugLocalInfo local, Value previousLocalValue) { in DebugData() argument51 assert previousLocalValue == null || !previousLocalValue.isUninitializedLocal(); in DebugData()53 this.previousLocalValue = previousLocalValue; in DebugData()99 return debugData == null ? null : new DebugInfo(debugData.local, debugData.previousLocalValue); in getDebugInfo()107 return debugData == null ? null : debugData.previousLocalValue; in getPreviousLocalValue()[all …]
174 Value previousLocalValue = outValue.getPreviousLocalValue(); in consistentDefUseChains() local175 if (previousLocalValue != null) { in consistentDefUseChains()176 values.add(previousLocalValue); in consistentDefUseChains()177 assert previousLocalValue.debugUsers().contains(instruction); in consistentDefUseChains()
68 Value previousLocalValue = getPreviousLocalValue(); in setOutValue() local69 if (previousLocalValue != null) { in setOutValue()70 previousLocalValue.addDebugUser(this); in setOutValue()
117 Value previousLocalValue = current.getPreviousLocalValue(); in remove() local118 if (previousLocalValue != null) { in remove()119 previousLocalValue.removeDebugUser(current); in remove()
560 Value previousLocalValue = instruction.getPreviousLocalValue(); in unlink() local561 if (previousLocalValue != null) { in unlink()562 previousLocalValue.removeDebugUser(instruction); in unlink()
64 Value previousLocalValue = instruction.getPreviousLocalValue(); in updateWorklist() local65 if (previousLocalValue != null) { in updateWorklist()66 updateWorklist(worklist, previousLocalValue); in updateWorklist()