HomeSort by relevance Sort by last modified time
    Searched defs:NewVal (Results 1 - 19 of 19) sorted by null

  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 118 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)StubAddr);
129 *(intptr_t *)(StubAddr+4) = NewVal;
ARMISelLowering.cpp 5680 unsigned newval = MI->getOperand(3).getReg(); local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 126 Value *NewVal = BinaryOperator::Create(Instruction::Add, OldVal,
129 new StoreInst(NewVal, ElementPtr, InsertPos);
  /external/llvm/lib/IR/
DebugLoc.cpp 259 MDNode *NewVal = dyn_cast<MDNode>(NewVa);
260 if (NewVal == 0) return deleted();
276 setValPtr(NewVal);
278 int NewEntry = Ctx->getOrAddScopeRecordIdxEntry(NewVal, Idx);
280 // If NewVal already has an entry, this becomes a non-canonical reference,
305 setValPtr(NewVal);
309 // If NewVal already has an entry, this becomes a non-canonical reference,
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 166 intptr_t NewVal = (intptr_t) JITCompilerFunction((void*) StubAddr);
171 // lui $t9, %hi(NewVal)
172 // addiu $t9, $t9, %lo(NewVal)
176 int Hi = ((unsigned)NewVal & 0xffff0000) >> 16;
177 if ((NewVal & 0x8000) != 0)
179 int Lo = (int)(NewVal & 0xffff);
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86JITInfo.cpp 376 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
385 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
398 intptr_t diff = NewVal-RetAddr+7;
403 *(intptr_t *)(RetAddr - 0xa) = NewVal;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 72 Value *NewVal = SimplifyDemandedUseBits(U.get(), DemandedMask,
74 if (NewVal == 0) return false;
75 U = NewVal;
662 Instruction *NewVal = BinaryOperator::CreateLShr(
664 return InsertNewInstWith(NewVal, *I);
706 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
708 NewVal->setIsExact(cast<BinaryOperator>(I)->isExact());
709 return InsertNewInstWith(NewVal, *I);
    [all...]
InstCombineAndOrXor.cpp 776 Value *NewVal = ConstantInt::get(AndCst->getType()->getContext(), N);
777 return Builder->CreateICmp(LHSCC, NewAnd, NewVal);
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 483 Value *NewVal = PN->getIncomingValue(0);
485 if (NewVal == PN) NewVal = UndefValue::get(PN->getType());
486 PN->replaceAllUsesWith(NewVal);
    [all...]
SSAUpdater.cpp 482 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
483 replaceLoadWithValue(ALoad, NewVal);
486 if (NewVal == ALoad) NewVal = UndefValue::get(NewVal->getType());
487 ALoad->replaceAllUsesWith(NewVal);
488 ReplacedLoads[ALoad] = NewVal;
504 Value *NewVal = ReplacedLoads[User];
505 assert(NewVal && "not a replaced load?");
510 DenseMap<Value*, Value*>::iterator RLI = ReplacedLoads.find(NewVal);
    [all...]
  /external/llvm/include/llvm/Support/
IntegersSubset.h 48 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
49 return IntItem(cast<ConstantInt>(NewVal)); \
55 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
56 return IntItem(cast<ConstantInt>(NewVal)); \
63 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
64 ConstantIntVal = cast<ConstantInt>(NewVal); \
72 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
73 ConstantIntVal = cast<ConstantInt>(NewVal); \
81 Constant *NewVal = ConstantInt::get(ConstantIntVal->getContext(), res); \
83 ConstantIntVal = cast<ConstantInt>(NewVal); \
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 96 SDValue NewVal = ReplacedValues[Res];
97 DenseMap<SDValue, SDValue>::iterator I = ReplacedValues.find(NewVal);
99 NewVal = I->second;
100 I = ReplacedValues.find(NewVal);
102 assert(NewVal.getNode()->getNodeId() != NewNode &&
710 SDValue NewVal(M, i);
712 RemapValue(NewVal);
713 DAG.ReplaceAllUsesOfValueWith(OldVal, NewVal);
717 // all the way to NewVal.
718 ReplacedValues[OldVal] = NewVal;
    [all...]
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/TableGen/
Record.cpp 1051 Init *NewVal = NewOp->Fold(CurRec, CurMultiClass);
1052 if (NewVal != NewOp)
1053 return NewVal;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 396 milliseconds