Home
last modified time | relevance | path

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

/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsAsmBackend.cpp217 uint64_t CurVal = 0; in applyFixup() local
225 CurVal |= (uint64_t)((uint8_t)Data[Offset + Idx]) << (i*8); in applyFixup()
230 CurVal |= Value & Mask; in applyFixup()
237 Data[Offset + Idx] = (uint8_t)((CurVal >> (i*8)) & 0xff); in applyFixup()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp193 uint64_t &CurVal = EEState.getGlobalAddressMap()[Name]; in addGlobalMapping() local
194 assert((!CurVal || !Addr) && "GlobalMapping already established!"); in addGlobalMapping()
195 CurVal = Addr; in addGlobalMapping()
199 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in addGlobalMapping()
239 uint64_t &CurVal = Map[Name]; in updateGlobalMapping() local
240 uint64_t OldVal = CurVal; in updateGlobalMapping()
242 if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) in updateGlobalMapping()
243 EEState.getGlobalAddressReverseMap().erase(CurVal); in updateGlobalMapping()
244 CurVal = Addr; in updateGlobalMapping()
248 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in updateGlobalMapping()
/external/llvm/utils/TableGen/
DCodeGenMapTable.cpp538 Init *CurVal = FieldValues[i]; in emitEnums() local
540 if (CurVal == FieldValues[j]) { in emitEnums()
/external/llvm/lib/TableGen/
DTGParser.cpp106 BitsInit *CurVal = dyn_cast<BitsInit>(RV->getValue()); in SetValue() local
107 if (!CurVal) in SetValue()
121 SmallVector<Init *, 16> NewBits(CurVal->getNumBits()); in SetValue()
132 for (unsigned i = 0, e = CurVal->getNumBits(); i != e; ++i) in SetValue()
134 NewBits[i] = CurVal->getBit(i); in SetValue()