Lines Matching refs:HValue
22 HValue* object_;
23 HValue* last_value_;
48 case HValue::kLoadNamedField: { in Process()
54 HValue* result = load(l); in Process()
62 case HValue::kStoreNamedField: { in Process()
69 HValue* result = store(s); in Process()
77 case HValue::kTransitionElementsKind: { in Process()
79 HValue* object = t->object()->ActualValue(); in Process()
201 HValue* load(HLoadNamedField* instr) { in load()
209 HValue* object = instr->object()->ActualValue(); in load()
229 HValue* store(HStoreNamedField* instr) { in store()
239 HValue* object = instr->object()->ActualValue(); in store()
240 HValue* value = instr->value(); in store()
287 HValue* KillIfMisaligned(HStoreNamedField* instr) { in KillIfMisaligned()
293 HValue* object = instr->object()->ActualValue(); in KillIfMisaligned()
307 HFieldApproximation* Find(HValue* object, int field) { in Find()
318 HFieldApproximation* FindOrCreate(HValue* object, int field) { in FindOrCreate()
349 void KillFieldInternal(HValue* object, int field, HValue* value) { in KillFieldInternal()
372 bool Equal(HValue* a, HValue* b) { in Equal()
374 if (a != NULL && b != NULL && a->CheckFlag(HValue::kUseGVN)) { in Equal()