HomeSort by relevance Sort by last modified time
    Searched refs:Old (Results 26 - 50 of 347) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 109 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
113 /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update
115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 109 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
113 /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update
115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 109 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
113 /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update
115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 109 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
113 /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update
115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
  /external/llvm/include/llvm/Support/
Allocator.h 151 // Manually implement a move constructor as we must clear the old allocator's
153 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old)
154 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)),
155 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)),
156 BytesAllocated(Old.BytesAllocated),
157 Allocator(std::move(Old.Allocator)) {
158 Old.CurPtr = Old.End = nullptr
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Allocator.h 154 // Manually implement a move constructor as we must clear the old allocator's
156 BumpPtrAllocatorImpl(BumpPtrAllocatorImpl &&Old)
157 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)),
158 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)),
159 BytesAllocated(Old.BytesAllocated),
160 Allocator(std::move(Old.Allocator)) {
161 Old.CurPtr = Old.End = nullptr
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 212 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) {
229 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
238 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) {
240 << hasImplicitExceptionSpec(Old);
241 if (Old->getLocation().isValid())
242 Diag(Old->getLocation(), diag::note_previous_declaration);
264 (Old->getLocation().isInvalid() ||
265 Context.getSourceManager().isInSystemHeader(Old->getLocation())) &&
266 Old->isExternC())
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 238 MachineInstr &Old = *I;
239 uint64_t Amount = Old.getOperand(0).getImm();
247 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) {
249 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP)
253 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode());
255 uint64_t CalleeAmt = Old.getOperand(1).getImm();
258 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri),
276 MachineInstr &Old = *I;
278 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP)
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SCCIterator.h 187 /// ReplaceNode - This informs the scc_iterator that the specified Old node
189 void ReplaceNode(NodeType *Old, NodeType *New) {
190 assert(nodeVisitNumbers.count(Old) && "Old not in scc_iterator?");
191 nodeVisitNumbers[New] = nodeVisitNumbers[Old];
192 nodeVisitNumbers.erase(Old);
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetJITInfo.h 37 /// whose machine code is at OLD turns into a call to NEW, perhaps by
38 /// overwriting OLD with a branch to NEW. This is used for self-modifying
41 virtual void replaceMachineCodeForFunction(void *Old, void *New) = 0;
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86JITInfo.h 34 /// whose machine code is at OLD turns into a call to NEW, perhaps by
35 /// overwriting OLD with a branch to NEW. This is used for self-modifying
38 virtual void replaceMachineCodeForFunction(void *Old, void *New);
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaRegisterInfo.cpp 93 MachineInstr *Old = I;
94 uint64_t Amount = Old->getOperand(0).getImm();
103 if (Old->getOpcode() == Alpha::ADJUSTSTACKDOWN) {
104 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30)
107 assert(Old->getOpcode() == Alpha::ADJUSTSTACKUP);
108 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Alpha::LDA), Alpha::R30)
166 //fix up the old:
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Value.cpp 205 // Remove old name.
233 // Remove old name.
460 // point into the old table. Handle this by checking for reallocation and
569 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
570 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
571 assert(Old != New && "Changing value into itself!");
575 LLVMContextImpl *pImpl = Old->getContext().pImpl;
576 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
601 // Weak goes to the new value, which will unlink it from Old's list.
614 if (Old->HasValueHandle
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
VirtRegMap.h 334 void transferSpillPts(MachineInstr *Old, MachineInstr *New) {
336 I = SpillPt2VirtMap.find(Old);
374 void transferRestorePts(MachineInstr *Old, MachineInstr *New) {
376 RestorePt2VirtMap.find(Old);
413 void transferEmergencySpills(MachineInstr *Old, MachineInstr *New) {
415 EmergencySpillMap.find(Old);
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreRegisterInfo.cpp 123 MachineInstr *Old = I;
124 uint64_t Amount = Old->getOperand(0).getImm();
146 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
148 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
151 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
153 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
307 // Erase old instruction.
  /external/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {
  /external/compiler-rt/lib/profile/
InstrProfilingUtil.c 61 void *Old = *Mem;
63 return Old;
  /external/llvm/unittests/IR/
ValueMapTest.cpp 167 // By default, we overwrite the old value with the replaced value.
187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
191 static void onDelete(const ExtraData &Data, KeyT Old) {
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
245 static void onDelete(const ExtraData &Data, KeyT Old) {
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) {
275 (*Map)->erase(Old);
277 static void onDelete(ExtraData Map, KeyT Old) {
278 (*Map)->erase(Old);
  /external/swiftshader/third_party/LLVM/unittests/VMCore/
ValueMapTest.cpp 168 // By default, we overwrite the old value with the replaced value.
188 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
192 static void onDelete(const ExtraData &Data, KeyT Old) {
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
245 static void onDelete(const ExtraData &Data, KeyT Old) {
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) {
275 (*Map)->erase(Old);
277 static void onDelete(ExtraData Map, KeyT Old) {
278 (*Map)->erase(Old);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
ASTUnresolvedSet.h 57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
59 if (I->getDecl() == Old) {

Completed in 1356 milliseconds

12 3 4 5 6 7 8 91011>>