HomeSort by relevance Sort by last modified time
    Searched refs:NewVal (Results 1 - 25 of 27) sorted by null

1 2

  /external/llvm/lib/Transforms/Utils/
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...]
Local.cpp 483 Value *NewVal = PN->getIncomingValue(0);
485 if (NewVal == PN) NewVal = UndefValue::get(PN->getType());
486 PN->replaceAllUsesWith(NewVal);
    [all...]
  /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/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,
Instructions.cpp     [all...]
Core.cpp 447 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal) {
448 unwrap(OldVal)->replaceAllUsesWith(unwrap(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/include/llvm/ADT/
TinyPtrVector.h 180 void push_back(EltTy NewVal) {
181 assert(NewVal != 0 && "Can't add a null value");
185 Val = NewVal;
196 Val.template get<VecTy*>()->push_back(NewVal);
  /external/llvm/include/llvm/IR/
Metadata.h 111 void replaceOperand(MDNodeOperand *Op, Value *NewVal);
139 void replaceOperandWith(unsigned i, Value *NewVal);
Instructions.h 453 void Init(Value *Ptr, Value *Cmp, Value *NewVal,
462 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
465 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
    [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/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/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...]
LegalizeDAG.cpp     [all...]
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 39 static unsigned setMaskElt(unsigned Mask, unsigned Elt, unsigned NewVal) {
41 return (Mask & ~(0xF << FieldShift)) | (NewVal << FieldShift);
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.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/include/llvm-c/
Core.h 1122 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal);
    [all...]

Completed in 331 milliseconds

1 2