Changeset 155482 in webkit for trunk/Source/JavaScriptCore/dfg/DFGNode.h
- Timestamp:
- Sep 10, 2013, 3:16:00 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGNode.h
r155023 r155482 1200 1200 } 1201 1201 1202 bool shouldSpeculateInt eger()1202 bool shouldSpeculateInt32() 1203 1203 { 1204 1204 return isInt32Speculation(prediction()); 1205 1205 } 1206 1206 1207 bool shouldSpeculateInt egerForArithmetic()1207 bool shouldSpeculateInt32ForArithmetic() 1208 1208 { 1209 1209 return isInt32SpeculationForArithmetic(prediction()); 1210 1210 } 1211 1211 1212 bool shouldSpeculateInt egerExpectingDefined()1212 bool shouldSpeculateInt32ExpectingDefined() 1213 1213 { 1214 1214 return isInt32SpeculationExpectingDefined(prediction()); … … 1350 1350 } 1351 1351 1352 static bool shouldSpeculateInt eger(Node* op1, Node* op2)1353 { 1354 return op1->shouldSpeculateInt eger() && op2->shouldSpeculateInteger();1355 } 1356 1357 static bool shouldSpeculateInt egerForArithmetic(Node* op1, Node* op2)1358 { 1359 return op1->shouldSpeculateInt egerForArithmetic() && op2->shouldSpeculateIntegerForArithmetic();1360 } 1361 1362 static bool shouldSpeculateInt egerExpectingDefined(Node* op1, Node* op2)1363 { 1364 return op1->shouldSpeculateInt egerExpectingDefined() && op2->shouldSpeculateIntegerExpectingDefined();1352 static bool shouldSpeculateInt32(Node* op1, Node* op2) 1353 { 1354 return op1->shouldSpeculateInt32() && op2->shouldSpeculateInt32(); 1355 } 1356 1357 static bool shouldSpeculateInt32ForArithmetic(Node* op1, Node* op2) 1358 { 1359 return op1->shouldSpeculateInt32ForArithmetic() && op2->shouldSpeculateInt32ForArithmetic(); 1360 } 1361 1362 static bool shouldSpeculateInt32ExpectingDefined(Node* op1, Node* op2) 1363 { 1364 return op1->shouldSpeculateInt32ExpectingDefined() && op2->shouldSpeculateInt32ExpectingDefined(); 1365 1365 } 1366 1366 … … 1390 1390 } 1391 1391 1392 bool canSpeculateInt eger()1393 { 1394 return nodeCanSpeculateInt eger(arithNodeFlags());1392 bool canSpeculateInt32() 1393 { 1394 return nodeCanSpeculateInt32(arithNodeFlags()); 1395 1395 } 1396 1396
Note:
See TracChangeset
for help on using the changeset viewer.