OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NewInst
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Transforms/Utils/
CloneFunction.cpp
49
Instruction *
NewInst
= II->clone();
51
NewInst
->setName(II->getName()+NameSuffix);
52
NewBB->getInstList().push_back(
NewInst
);
53
VMap[II] =
NewInst
; // Add instruction map to value.
264
Instruction *
NewInst
= II->clone();
268
if (!isa<PHINode>(
NewInst
)) {
269
RemapInstruction(
NewInst
, VMap,
275
if (Value *V = SimplifyInstruction(
NewInst
, TD)) {
282
delete
NewInst
;
288
NewInst
->setName(II->getName()+NameSuffix)
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp
[
all
...]
InstCombineAddSub.cpp
178
void createInstPostProc(Instruction *
NewInst
);
[
all
...]
/external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp
329
const SwitchInst *
NewInst
= cast_or_null<SwitchInst>(NewI);
330
assert(
NewInst
&& "All instructions that are in SrcBB must be in VMap.");
332
NewLoopProps.UnswitchedVals[
NewInst
] = OldLoopProps.UnswitchedVals[OldInst];
[
all
...]
Completed in 618 milliseconds