Home | History | Annotate | Download | only in radeon

Lines Matching refs:theEntry

1161       LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
1162 if (theEntry != NULL) {
2414 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2416 if (theEntry == NULL) {
2417 theEntry = new LoopLandInfo();
2419 assert(theEntry->landBlk == NULL);
2427 theEntry->landBlk = blk;
2438 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2440 if (theEntry == NULL) {
2441 theEntry = new LoopLandInfo();
2444 theEntry->breakOnRegs.insert(regNum);
2455 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2457 if (theEntry == NULL) {
2458 theEntry = new LoopLandInfo();
2460 theEntry->contOnRegs.insert(regNum);
2471 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2473 if (theEntry == NULL) {
2474 theEntry = new LoopLandInfo();
2476 theEntry->breakInitRegs.insert(regNum);
2487 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2489 if (theEntry == NULL) {
2490 theEntry = new LoopLandInfo();
2492 theEntry->contInitRegs.insert(regNum);
2504 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2506 if (theEntry == NULL) {
2507 theEntry = new LoopLandInfo();
2509 theEntry->endbranchInitRegs.insert(regNum);
2522 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2524 return theEntry;
2530 LoopLandInfo *&theEntry = loopLandInfoMap[loopRep];
2532 return theEntry ? theEntry->landBlk : NULL;