HomeSort by relevance Sort by last modified time
    Searched refs:Old (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 571 /// Replace all direct calls of Old with calls of New. Will bitcast New if
573 void replaceDirectCallers(Function *Old, Function *New);
682 // Replace direct callers of Old with New.
683 void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
684 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
685 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
  /external/v8/test/mjsunit/
debug-liveedit-2.js 55 // because old value of parameter "p" was not saved.
65 // Old instance of closure is not patched.
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
SemaType.cpp     [all...]
SemaDeclCXX.cpp 380 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
402 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403 ParmVarDecl *OldParam = Old->getParamDecl(p);
409 NamedDecl *ND = Old;
411 // Ignore default parameters of old decl if they are not in
426 // Merge the old default argument into the new parameter.
450 // actually written, which may be a declaration prior to Old.
451 for (FunctionDecl *Older = Old->getPreviousDecl();
462 // Merge the old default argument into the new parameter.
477 Diag(Old->getLocation(), diag::note_template_prev_declaration
    [all...]
SemaLookup.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 368 void CodeGenFunction::PopCleanupBlocks(EHScopeStack::stable_iterator Old) {
369 assert(Old.isValid());
371 while (EHStack.stable_begin() != Old) {
374 // As long as Old strictly encloses the scope's enclosing normal
378 Old.strictlyEncloses(Scope.getEnclosingNormalCleanup());
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 987 ImmutableSet add(ImmutableSet Old, value_type_ref V) {
988 TreeTy *NewT = F.add(Old.Root, V);
999 ImmutableSet remove(ImmutableSet Old, value_type_ref V) {
1000 TreeTy *NewT = F.remove(Old.Root, V);
    [all...]
  /external/llvm/include/llvm/CodeGen/
FastISel.h 138 /// into the local value area and return the old insert position.
141 /// leaveLocalValueArea - Reset InsertPt to the given old insert position.
142 void leaveLocalValueArea(SavePoint Old);
MachineBasicBlock.h 400 /// replaceSuccessor - Replace successor OLD with NEW and update weight info.
402 void replaceSuccessor(MachineBasicBlock *Old, MachineBasicBlock *New);
557 /// 'Old', change the code and CFG so that it branches to 'New' instead.
558 void ReplaceUsesOfBlockWith(MachineBasicBlock *Old, MachineBasicBlock *New);
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 30 void ARMJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
Thumb1RegisterInfo.cpp 316 MachineInstr *Old = I;
317 DebugLoc dl = Old->getDebugLoc();
318 unsigned Amount = Old->getOperand(0).getImm();
327 unsigned Opc = Old->getOpcode();
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 120 /// The current mapping from old local values to new local values.
123 /// The current mapping from old blocks to new blocks.
145 bool operator()(const BlockPair &Old, const BlockPair &New) {
146 return fde.getUnprocPredCount(Old.first)
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 56 static void onDelete(ExecutionEngineState *EES, const GlobalValue *Old);
290 /// entry for the global is removed from the mappings. This returns the old
343 /// modified. Then the entry to the old copy is overwritten with a branch to
344 /// the new copy. If there was no old copy, this acts just like
  /external/llvm/include/llvm/Support/
ValueHandle.h 116 static void ValueIsRAUWd(Value *Old, Value *New);
178 /// if another object happens to get allocated to the same address as the old
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 131 void NoteDeletion(SDNode *Old, SDNode *New) {
132 ExpungeNode(Old);
134 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
135 ReplacedValues[SDValue(Old, i)] = SDValue(New, i);
    [all...]
LegalizeDAG.cpp 158 void ReplaceNode(SDNode *Old, SDNode *New) {
159 DAG.ReplaceAllUsesWith(Old, New, this);
160 ReplacedNode(Old);
162 void ReplaceNode(SDValue Old, SDValue New) {
163 DAG.ReplaceAllUsesWith(Old, New, this);
164 ReplacedNode(Old.getNode());
166 void ReplaceNode(SDNode *Old, const SDValue *New) {
167 DAG.ReplaceAllUsesWith(Old, New, this);
168 ReplacedNode(Old);
507 // Compute the new VT that is half the size of the old one. This is a
    [all...]
  /external/clang/lib/AST/
TypePrinter.cpp 31 bool Old;
35 : Policy(Policy), Old(Policy.SuppressStrongLifetime) {
40 Policy.SuppressStrongLifetime = Old;
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 383 void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
385 if (!ExtraRegInfo.inBounds(Old))
392 ExtraRegInfo[Old].Stage = RS_Assign;
394 ExtraRegInfo[New] = ExtraRegInfo[Old];
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 160 // Delete the old switch.
179 // Delete the old switch.
600 // in the PHI node are the entries from the old PHI.
637 BB->eraseFromParent(); // Delete the old basic block.
698 PHINode *Old = Pair.first->second;
700 CollisionMap[PN] = Old;
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp 210 void ReplaceStmt(Stmt *Old, Stmt *New) {
211 Stmt *ReplacingStmt = ReplacedNodes[Old];
220 if (!Rewrite.ReplaceStmt(Old, New)) {
221 ReplacedNodes[Old] = New;
226 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag)
227 << Old->getSourceRange();
230 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) {
234 // Measure the old text.
237 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag)
238 << Old->getSourceRange()
    [all...]
RewriteObjC.cpp 196 void ReplaceStmt(Stmt *Old, Stmt *New) {
197 Stmt *ReplacingStmt = ReplacedNodes[Old];
206 if (!Rewrite.ReplaceStmt(Old, New)) {
207 ReplacedNodes[Old] = New;
212 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag)
213 << Old->getSourceRange();
216 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) {
220 // Measure the old text.
223 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag)
224 << Old->getSourceRange()
    [all...]

Completed in 1129 milliseconds

1 23 4