Lines Matching full:result
33 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in LoadObjByName()
37 builder.LoadICByName(&result, &tryFastPath, &slowPath, &exit); in LoadObjByName()
41 result = GetPropertyByName(glue, receiver, propKey); in LoadObjByName()
42 Branch(TaggedIsHole(*result), &slowPath, &exit); in LoadObjByName()
47 result = CallRuntime(glue, RTSTUB_ID(LoadICByName), in LoadObjByName()
52 auto ret = *result; in LoadObjByName()
67 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in DeprecatedLoadObjByName()
71 result = GetPropertyByName(glue, receiver, propKey); in DeprecatedLoadObjByName()
72 Branch(TaggedIsHole(*result), &slowPath, &exit); in DeprecatedLoadObjByName()
76 result = CallRuntime(glue, RTSTUB_ID(LoadICByName), in DeprecatedLoadObjByName()
81 auto ret = *result; in DeprecatedLoadObjByName()
96 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in StoreObjByName()
99 builder.StoreICByName(&result, &tryFastPath, &slowPath, &exit); in StoreObjByName()
103 result = SetPropertyByName(glue, receiver, propKey, value, false); in StoreObjByName()
104 Branch(TaggedIsHole(*result), &slowPath, &exit); in StoreObjByName()
109 result = CallRuntime(glue, RTSTUB_ID(StoreICByName), in StoreObjByName()
115 auto ret = *result; in StoreObjByName()
141 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in LoadObjByValue()
145 builder.LoadICByValue(&result, &tryFastPath, &slowPath, &exit); in LoadObjByValue()
148 result = GetPropertyByValue(glue, receiver, key); in LoadObjByValue()
149 Branch(TaggedIsHole(*result), &slowPath, &exit); in LoadObjByValue()
153 result = CallRuntime(glue, RTSTUB_ID(LoadICByValue), in LoadObjByValue()
158 auto ret = *result; in LoadObjByValue()
173 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in DeprecatedLoadObjByValue()
177 result = GetPropertyByValue(glue, receiver, key); in DeprecatedLoadObjByValue()
178 Branch(TaggedIsHole(*result), &slowPath, &exit); in DeprecatedLoadObjByValue()
182 result = CallRuntime(glue, RTSTUB_ID(LoadICByValue), in DeprecatedLoadObjByValue()
187 auto ret = *result; in DeprecatedLoadObjByValue()
202 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in StoreObjByValue()
205 builder.StoreICByValue(&result, &tryFastPath, &slowPath, &exit); in StoreObjByValue()
208 result = SetPropertyByValue(glue, receiver, key, value, false); in StoreObjByValue()
209 Branch(TaggedIsHole(*result), &slowPath, &exit); in StoreObjByValue()
213 result = CallRuntime(glue, RTSTUB_ID(StoreICByValue), in StoreObjByValue()
218 auto ret = *result; in StoreObjByValue()
233 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in TryLoadGlobalByName()
238 builder.TryLoadGlobalICByName(&result, &tryFastPath, &slowPath, &exit); in TryLoadGlobalByName()
248 result = Load(VariableType::JS_ANY(), record, IntPtr(PropertyBox::VALUE_OFFSET)); in TryLoadGlobalByName()
254 result = GetGlobalOwnProperty(glue, globalObject, propKey); in TryLoadGlobalByName()
255 Branch(TaggedIsHole(*result), &slowPath, &exit); in TryLoadGlobalByName()
261 result = CallRuntime(glue, RTSTUB_ID(TryLdGlobalICByName), in TryLoadGlobalByName()
267 auto ret = *result; in TryLoadGlobalByName()
282 DEFVARIABLE(result, VariableType::JS_ANY(), Undefined()); in TryStoreGlobalByName()
286 builder.TryStoreGlobalICByName(&result, &tryFastPath, &slowPath, &exit); in TryStoreGlobalByName()
296 result = CallRuntime(glue, RTSTUB_ID(TryUpdateGlobalRecord), { propKey, value }); in TryStoreGlobalByName()
302 result = GetGlobalOwnProperty(glue, globalObject, propKey); in TryStoreGlobalByName()
305 Branch(TaggedIsHole(*result), ¬FoundInGlobal, &isFoundInGlobal); in TryStoreGlobalByName()
308 result = CallRuntime(glue, RTSTUB_ID(StGlobalVar), { propKey, value }); in TryStoreGlobalByName()
313 result = CallRuntime(glue, RTSTUB_ID(ThrowReferenceError), { propKey }); in TryStoreGlobalByName()
322 result = CallRuntime(glue, RTSTUB_ID(StoreMiss), in TryStoreGlobalByName()
329 auto ret = *result; in TryStoreGlobalByName()
344 DEFVARIABLE(result, VariableType::JS_ANY(), Hole()); in LoadGlobalVar()
349 builder.TryLoadGlobalICByName(&result, &tryFastPath, &slowPath, &exit); in LoadGlobalVar()
354 result = GetGlobalOwnProperty(glue, globalObject, propKey); in LoadGlobalVar()
355 Branch(TaggedIsHole(*result), &slowPath, &exit); in LoadGlobalVar()
361 result = CallRuntime(glue, RTSTUB_ID(LdGlobalICVar), in LoadGlobalVar()
367 auto ret = *result; in LoadGlobalVar()
382 DEFVARIABLE(result, VariableType::JS_ANY(), Undefined()); in StoreGlobalVar()
386 builder.TryStoreGlobalICByName(&result, &tryFastPath, &slowPath, &exit); in StoreGlobalVar()
391 result = CallRuntime(glue, RTSTUB_ID(StGlobalVar), { propKey, value }); in StoreGlobalVar()
398 result = CallRuntime(glue, RTSTUB_ID(StoreMiss), in StoreGlobalVar()
405 auto ret = *result; in StoreGlobalVar()