Home
last modified time | relevance | path

Searched refs:CurVal (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsAsmBackend.cpp227 uint64_t CurVal = 0; in applyFixup() local
235 CurVal |= (uint64_t)((uint8_t)Data[Offset + Idx]) << (i*8); in applyFixup()
240 CurVal |= Value & Mask; in applyFixup()
247 Data[Offset + Idx] = (uint8_t)((CurVal >> (i*8)) & 0xff); in applyFixup()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp217 uint64_t &CurVal = EEState.getGlobalAddressMap()[Name]; in addGlobalMapping() local
218 assert((!CurVal || !Addr) && "GlobalMapping already established!"); in addGlobalMapping()
219 CurVal = Addr; in addGlobalMapping()
223 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in addGlobalMapping()
262 uint64_t &CurVal = Map[Name]; in updateGlobalMapping() local
263 uint64_t OldVal = CurVal; in updateGlobalMapping()
265 if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) in updateGlobalMapping()
266 EEState.getGlobalAddressReverseMap().erase(CurVal); in updateGlobalMapping()
267 CurVal = Addr; in updateGlobalMapping()
271 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in updateGlobalMapping()
/external/llvm/utils/TableGen/
DCodeGenMapTable.cpp534 Init *CurVal = FieldValues[i]; in emitEnums() local
536 if (CurVal == FieldValues[j]) { in emitEnums()
/external/llvm/lib/TableGen/
DTGParser.cpp102 BitsInit *CurVal = dyn_cast<BitsInit>(RV->getValue()); in SetValue() local
103 if (!CurVal) in SetValue()
115 SmallVector<Init *, 16> NewBits(CurVal->getNumBits()); in SetValue()
126 for (unsigned i = 0, e = CurVal->getNumBits(); i != e; ++i) in SetValue()
128 NewBits[i] = CurVal->getBit(i); in SetValue()