Lines Matching defs:constant
278 // We allocate the heap number constant eagerly at this point instead of
281 // to generate constant lookups for embedded builtins.
1272 int32_t constant;
1273 if (TryToInt32Constant(condition, &constant)) {
1276 return Goto(constant ? true_label : false_label);
1288 int32_t constant;
1289 if (TryToInt32Constant(condition, &constant)) {
1290 return constant ? true_body() : false_body();
1305 int32_t constant;
1306 if (TryToInt32Constant(condition, &constant)) {
1307 return constant ? Goto(true_label) : false_body();
1319 int32_t constant;
1320 if (TryToInt32Constant(condition, &constant)) {
1321 return constant ? true_body() : Goto(false_label);