/external/llvm/lib/Target/ARM/ |
ARMJITInfo.cpp | 118 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)StubAddr); 129 *(intptr_t *)(StubAddr+4) = NewVal;
|
ARMISelLowering.cpp | 5987 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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 224 Value *NewVal; 227 NewVal = handleSpecial(Fun, *I); 229 NewVal = ConstantRead(Fun, *I); 231 if (NewVal) { 232 I->Val->replaceAllUsesWith(NewVal);
|
/external/llvm/lib/Target/X86/ |
X86JITInfo.cpp | 377 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr); 386 *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4); 399 intptr_t diff = NewVal-RetAddr+7; 404 *(intptr_t *)(RetAddr - 0xa) = NewVal;
|
/external/mesa3d/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 224 Value *NewVal; 227 NewVal = handleSpecial(Fun, *I); 229 NewVal = ConstantRead(Fun, *I); 231 if (NewVal) { 232 I->Val->replaceAllUsesWith(NewVal);
|
/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 && 713 SDValue NewVal(M, i); 715 RemapValue(NewVal); 716 DAG.ReplaceAllUsesOfValueWith(OldVal, NewVal); 720 // all the way to NewVal. 721 ReplacedValues[OldVal] = NewVal; [all...] |
SelectionDAG.cpp | [all...] |
DAGCombiner.cpp | [all...] |
/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 | 772 Value *NewVal = ConstantInt::get(AndCst->getType()->getContext(), N); 773 return Builder->CreateICmp(LHSCC, NewAnd, NewVal); [all...] |
/external/llvm/lib/Transforms/Utils/ |
SSAUpdater.cpp | 444 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent()); 445 replaceLoadWithValue(ALoad, NewVal); 448 if (NewVal == ALoad) NewVal = UndefValue::get(NewVal->getType()); 449 ALoad->replaceAllUsesWith(NewVal); 450 ReplacedLoads[ALoad] = NewVal; 466 Value *NewVal = ReplacedLoads[User]; 467 assert(NewVal && "not a replaced load?"); 472 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/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/TableGen/ |
Record.cpp | 1051 Init *NewVal = NewOp->Fold(CurRec, CurMultiClass); 1052 if (NewVal != NewOp) 1053 return NewVal; [all...] |
/external/llvm/lib/Transforms/Scalar/ |
JumpThreading.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGBuiltin.cpp | [all...] |
/external/llvm/lib/Target/Sparc/ |
SparcISelLowering.cpp | [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelLowering.cpp | [all...] |