Home
last modified time | relevance | path

Searched refs:BasePointer (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/CodeGen/
DSafeStack.cpp160 Instruction *BasePointer,
516 Instruction *BasePointer, AllocaInst *StackGuardSlot) { in moveStaticAllocasToUnsafeStack() argument
518 return BasePointer; in moveStaticAllocasToUnsafeStack()
569 IRB.SetInsertPoint(BasePointer->getNextNode()); in moveStaticAllocasToUnsafeStack()
570 BasePointer = cast<Instruction>(IRB.CreateIntToPtr( in moveStaticAllocasToUnsafeStack()
571 IRB.CreateAnd(IRB.CreatePtrToInt(BasePointer, IntPtrTy), in moveStaticAllocasToUnsafeStack()
576 IRB.SetInsertPoint(BasePointer->getNextNode()); in moveStaticAllocasToUnsafeStack()
580 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8* in moveStaticAllocasToUnsafeStack()
598 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8* in moveStaticAllocasToUnsafeStack()
604 replaceDbgDeclare(Arg, BasePointer, BasePointer->getNextNode(), DIB, in moveStaticAllocasToUnsafeStack()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DSafeStack.cpp176 Instruction *BasePointer,
486 Instruction *BasePointer, AllocaInst *StackGuardSlot) { in moveStaticAllocasToUnsafeStack() argument
488 return BasePointer; in moveStaticAllocasToUnsafeStack()
539 IRB.SetInsertPoint(BasePointer->getNextNode()); in moveStaticAllocasToUnsafeStack()
540 BasePointer = cast<Instruction>(IRB.CreateIntToPtr( in moveStaticAllocasToUnsafeStack()
541 IRB.CreateAnd(IRB.CreatePtrToInt(BasePointer, IntPtrTy), in moveStaticAllocasToUnsafeStack()
546 IRB.SetInsertPoint(BasePointer->getNextNode()); in moveStaticAllocasToUnsafeStack()
550 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8* in moveStaticAllocasToUnsafeStack()
569 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8* in moveStaticAllocasToUnsafeStack()
575 replaceDbgDeclare(Arg, BasePointer, BasePointer->getNextNode(), DIB, in moveStaticAllocasToUnsafeStack()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DDelinearization.cpp88 const SCEVUnknown *BasePointer = in print() local
91 if (!BasePointer) in print()
93 AccessFn = SE->getMinusSCEV(AccessFn, BasePointer); in print()
108 O << "Base offset: " << *BasePointer << "\n"; in print()
/external/llvm/lib/Analysis/
DDelinearization.cpp98 const SCEVUnknown *BasePointer = in print() local
101 if (!BasePointer) in print()
103 AccessFn = SE->getMinusSCEV(AccessFn, BasePointer); in print()
118 O << "Base offset: " << *BasePointer << "\n"; in print()
/external/tensorflow/tensorflow/lite/
Darena_planner.cc43 int64_t ArenaPlanner::BasePointer(TfLiteAllocationType type) { in BasePointer() function in tflite::ArenaPlanner
45 return persistent_arena_.BasePointer(); in BasePointer()
48 return arena_.BasePointer(); in BasePointer()
Darena_planner.h65 int64_t BasePointer(TfLiteAllocationType type);
Dsimple_memory_arena.h72 int64_t BasePointer() const { in BasePointer() function
Darena_planner_test.cc188 planner_->BasePointer(tensor.allocation_type); in GetOffset()