/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 194 const Twine &NameStr, Instruction *InsertBefore) in LandingPadInst() argument 195 : Instruction(RetTy, Instruction::LandingPad, nullptr, 0, InsertBefore) { in LandingPadInst() 220 Instruction *InsertBefore) { in Create() argument 221 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertBefore); in Create() 423 Instruction *InsertBefore) in CallInst() argument 425 OperandTraits<CallBase>::op_end(this) - 1, 1, InsertBefore) { in CallInst() 522 static Instruction *createMalloc(Instruction *InsertBefore, in createMalloc() argument 528 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && in createMalloc() 538 if (InsertBefore) in createMalloc() 540 "", InsertBefore); in createMalloc() [all …]
|
D | DIBuilder.cpp | 854 Instruction *InsertBefore) { in insertDeclare() argument 855 return insertDeclare(Storage, VarInfo, Expr, DL, InsertBefore->getParent(), in insertDeclare() 856 InsertBefore); in insertDeclare() 864 Instruction *InsertBefore = InsertAtEnd->getTerminator(); in insertDeclare() local 865 return insertDeclare(Storage, VarInfo, Expr, DL, InsertAtEnd, InsertBefore); in insertDeclare() 869 Instruction *InsertBefore) { in insertLabel() argument 871 LabelInfo, DL, InsertBefore ? InsertBefore->getParent() : nullptr, in insertLabel() 872 InsertBefore); in insertLabel() 884 Instruction *InsertBefore) { in insertDbgValueIntrinsic() argument 886 V, VarInfo, Expr, DL, InsertBefore ? InsertBefore->getParent() : nullptr, in insertDbgValueIntrinsic() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Instructions.h | 72 Instruction *InsertBefore = nullptr); 77 const Twine &Name, Instruction *InsertBefore = nullptr); 82 const Twine &Name = "", Instruction *InsertBefore = nullptr); 180 Instruction *InsertBefore = nullptr); 183 Instruction *InsertBefore = nullptr); 187 MaybeAlign Align, Instruction *InsertBefore = nullptr); 193 Instruction *InsertBefore = nullptr); 200 Instruction *InsertBefore = nullptr) 202 InsertBefore) {} 207 Instruction *InsertBefore = nullptr) [all …]
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 180 const Twine &NameStr, Instruction *InsertBefore) in LandingPadInst() argument 181 : Instruction(RetTy, Instruction::LandingPad, nullptr, 0, InsertBefore) { in LandingPadInst() 206 Instruction *InsertBefore) { in Create() argument 207 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertBefore); in Create() 287 Instruction *InsertBefore) in CallInst() argument 292 1, InsertBefore) { in CallInst() 441 static Instruction *createMalloc(Instruction *InsertBefore, in createMalloc() argument 447 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && in createMalloc() 457 if (InsertBefore) in createMalloc() 459 "", InsertBefore); in createMalloc() [all …]
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 62 Instruction *InsertBefore = nullptr); 66 AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = nullptr); 70 const Twine &Name = "", Instruction *InsertBefore = nullptr); 173 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore); 176 Instruction *InsertBefore = nullptr); 178 Instruction *InsertBefore = nullptr) 180 NameStr, isVolatile, InsertBefore) {} 184 Instruction *InsertBefore = nullptr) 186 NameStr, isVolatile, Align, InsertBefore) {} 188 unsigned Align, Instruction *InsertBefore = nullptr); [all …]
|
D | InstrTypes.h | 42 Instruction *InsertBefore = nullptr) 43 : Instruction(Ty, iType, Ops, NumOps, InsertBefore) {} in Instruction() argument 334 const Twine &Name, Instruction *InsertBefore); 358 Instruction *InsertBefore = nullptr); 491 Instruction *InsertBefore = nullptr); 495 Instruction *InsertBefore = nullptr); 499 Instruction *InsertBefore = nullptr); 503 Instruction *InsertBefore = nullptr); 507 Instruction *InsertBefore = nullptr); 570 const Twine &NameStr = "", Instruction *InsertBefore = nullptr) [all …]
|
D | BasicBlock.h | 75 BasicBlock *InsertBefore = nullptr); 93 BasicBlock *InsertBefore = nullptr) { 94 return new BasicBlock(Context, Name, Parent, InsertBefore); 186 void insertInto(Function *Parent, BasicBlock *InsertBefore = nullptr);
|
/external/llvm-project/llvm/lib/IR/ |
D | Instructions.cpp | 186 const Twine &NameStr, Instruction *InsertBefore) in LandingPadInst() argument 187 : Instruction(RetTy, Instruction::LandingPad, nullptr, 0, InsertBefore) { in LandingPadInst() 212 Instruction *InsertBefore) { in Create() argument 213 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertBefore); in Create() 479 Instruction *InsertBefore) in CallInst() argument 481 OperandTraits<CallBase>::op_end(this) - 1, 1, InsertBefore) { in CallInst() 591 static Instruction *createMalloc(Instruction *InsertBefore, in createMalloc() argument 597 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && in createMalloc() 607 if (InsertBefore) in createMalloc() 609 "", InsertBefore); in createMalloc() [all …]
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Instructions.h | 79 const Twine &Name, Instruction *InsertBefore); 84 Instruction *InsertBefore); 89 const Twine &Name = "", Instruction *InsertBefore = nullptr); 192 Instruction *InsertBefore); 195 Instruction *InsertBefore); 199 Align Align, Instruction *InsertBefore = nullptr); 205 Instruction *InsertBefore = nullptr); 320 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore); 322 StoreInst(Value *Val, Value *Ptr, bool isVolatile, Instruction *InsertBefore); 325 Instruction *InsertBefore = nullptr); [all …]
|
D | InstrTypes.h | 108 const Twine &Name, Instruction *InsertBefore); 126 Instruction *InsertBefore = nullptr); 160 Instruction *InsertBefore = nullptr) { 161 UnaryOperator *UO = Create(Opc, V, Name, InsertBefore); 168 Instruction *InsertBefore = nullptr) { 170 InsertBefore); 195 const Twine &Name, Instruction *InsertBefore); 220 Instruction *InsertBefore = nullptr); 379 Instruction *InsertBefore = nullptr); 383 Instruction *InsertBefore = nullptr); [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/ |
D | transformation_replace_linear_algebra_instruction.cpp | 301 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 311 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 326 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 365 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesScalar() 375 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesScalar() 420 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 434 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 444 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 460 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 497 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesMatrix() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | transformation_replace_linear_algebra_instruction.cpp | 302 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 312 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 327 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 366 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesScalar() 376 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesScalar() 421 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 435 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 445 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 461 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 498 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesMatrix() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | transformation_replace_linear_algebra_instruction.cpp | 302 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 312 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 327 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpTranspose() 366 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesScalar() 376 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesScalar() 421 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 435 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 445 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 461 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpMatrixTimesScalar() 498 linear_algebra_instruction->InsertBefore(MakeUnique<opt::Instruction>( in ReplaceOpVectorTimesMatrix() [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | instruction_list.cpp | 20 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() function in spvtools::opt::InstructionList::iterator 24 i.release()->InsertBefore(node_); in InsertBefore() 30 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() function in spvtools::opt::InstructionList::iterator 32 i.get()->InsertBefore(node_); in InsertBefore()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | instruction_list.cpp | 20 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() function in spvtools::opt::InstructionList::iterator 24 i.release()->InsertBefore(node_); in InsertBefore() 30 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() function in spvtools::opt::InstructionList::iterator 32 i.get()->InsertBefore(node_); in InsertBefore()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | instruction_list.cpp | 20 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() function in spvtools::opt::InstructionList::iterator 24 i.release()->InsertBefore(node_); in InsertBefore() 30 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() function in spvtools::opt::InstructionList::iterator 32 i.get()->InsertBefore(node_); in InsertBefore()
|
/external/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 70 MachineBasicBlock::iterator InsertBefore, 75 MachineBasicBlock::iterator InsertBefore, 80 MachineBasicBlock::iterator InsertBefore, 84 MachineBasicBlock::iterator InsertBefore, 89 MachineBasicBlock::iterator InsertBefore, 94 MachineBasicBlock::iterator InsertBefore, 427 MachineBasicBlock::iterator InsertBefore, in createDupLane() argument 433 InsertBefore, in createDupLane() 445 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, in createExtractSubreg() argument 450 InsertBefore, in createExtractSubreg() [all …]
|
/external/llvm-project/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 67 MachineBasicBlock::iterator InsertBefore, 72 MachineBasicBlock::iterator InsertBefore, 77 MachineBasicBlock::iterator InsertBefore, 81 MachineBasicBlock::iterator InsertBefore, 86 MachineBasicBlock::iterator InsertBefore, 91 MachineBasicBlock::iterator InsertBefore, 417 MachineBasicBlock::iterator InsertBefore, in createDupLane() argument 422 BuildMI(MBB, InsertBefore, DL, in createDupLane() 433 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, in createExtractSubreg() argument 438 InsertBefore, in createExtractSubreg() [all …]
|
D | ARMInstructionSelector.cpp | 484 : MBB(*MIB->getParent()), InsertBefore(std::next(MIB->getIterator())), in InsertInfo() 488 const MachineBasicBlock::instr_iterator InsertBefore; member 494 (void)BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, TII.get(Opcodes.MOVi)) in putConstant() 580 BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, TII.get(Helper.ComparisonOpcode)) in insertComparison() 589 auto ReadI = BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, in insertComparison() 597 auto Mov1I = BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, in insertComparison() 693 auto InsertBefore = std::next(MIB->getIterator()); in selectGlobal() local 694 auto MIBLoad = BuildMI(MBB, InsertBefore, MIB->getDebugLoc(), in selectGlobal() 770 auto InsertBefore = std::next(MIB->getIterator()); in selectSelect() local 777 auto CmpI = BuildMI(MBB, InsertBefore, DbgLoc, TII.get(Opcodes.TSTri)) in selectSelect() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 67 MachineBasicBlock::iterator InsertBefore, 72 MachineBasicBlock::iterator InsertBefore, 77 MachineBasicBlock::iterator InsertBefore, 81 MachineBasicBlock::iterator InsertBefore, 86 MachineBasicBlock::iterator InsertBefore, 91 MachineBasicBlock::iterator InsertBefore, 417 MachineBasicBlock::iterator InsertBefore, in createDupLane() argument 422 BuildMI(MBB, InsertBefore, DL, in createDupLane() 433 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, in createExtractSubreg() argument 438 InsertBefore, in createExtractSubreg() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LowerMemIntrinsics.cpp | 25 void llvm::createMemCpyLoopKnownSize(Instruction *InsertBefore, Value *SrcAddr, in createMemCpyLoopKnownSize() argument 34 BasicBlock *PreLoopBB = InsertBefore->getParent(); in createMemCpyLoopKnownSize() 51 PostLoopBB = PreLoopBB->splitBasicBlock(InsertBefore, "memcpy-split"); in createMemCpyLoopKnownSize() 94 : InsertBefore); in createMemCpyLoopKnownSize() 135 void llvm::createMemCpyLoopUnknownSize(Instruction *InsertBefore, in createMemCpyLoopUnknownSize() argument 141 BasicBlock *PreLoopBB = InsertBefore->getParent(); in createMemCpyLoopUnknownSize() 143 PreLoopBB->splitBasicBlock(InsertBefore, "post-loop-memcpy-expansion"); in createMemCpyLoopUnknownSize() 287 static void createMemMoveLoop(Instruction *InsertBefore, in createMemMoveLoop() argument 292 BasicBlock *OrigBB = InsertBefore->getParent(); in createMemMoveLoop() 303 ICmpInst *PtrCompare = new ICmpInst(InsertBefore, ICmpInst::ICMP_ULT, in createMemMoveLoop() [all …]
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | LowerMemIntrinsics.cpp | 17 void llvm::createMemCpyLoopKnownSize(Instruction *InsertBefore, Value *SrcAddr, in createMemCpyLoopKnownSize() argument 26 BasicBlock *PreLoopBB = InsertBefore->getParent(); in createMemCpyLoopKnownSize() 44 PostLoopBB = PreLoopBB->splitBasicBlock(InsertBefore, "memcpy-split"); in createMemCpyLoopKnownSize() 91 : InsertBefore); in createMemCpyLoopKnownSize() 133 void llvm::createMemCpyLoopUnknownSize(Instruction *InsertBefore, in createMemCpyLoopUnknownSize() argument 139 BasicBlock *PreLoopBB = InsertBefore->getParent(); in createMemCpyLoopUnknownSize() 141 PreLoopBB->splitBasicBlock(InsertBefore, "post-loop-memcpy-expansion"); in createMemCpyLoopUnknownSize() 291 static void createMemMoveLoop(Instruction *InsertBefore, Value *SrcAddr, in createMemMoveLoop() argument 296 BasicBlock *OrigBB = InsertBefore->getParent(); in createMemMoveLoop() 308 ICmpInst *PtrCompare = new ICmpInst(InsertBefore, ICmpInst::ICMP_ULT, in createMemMoveLoop() [all …]
|
/external/antlr/runtime/Ruby/lib/antlr3/streams/ |
D | rewrite.rb | 104 class InsertBefore < RewriteOperation class in ANTLR3.TokenRewriteStream 191 op = InsertBefore.new( @stream, index, text ) 199 op = InsertBefore.new( @stream, index + 1, text ) 225 when InsertBefore 235 when InsertBefore 240 when InsertBefore 297 operation.is_a?( InsertBefore )
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | BasicBlock.h | 72 BasicBlock *InsertBefore = nullptr); 95 BasicBlock *InsertBefore = nullptr) { 96 return new BasicBlock(Context, Name, Parent, InsertBefore); 187 void insertInto(Function *Parent, BasicBlock *InsertBefore = nullptr);
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 251 InsertBefore(programName, index + 1, text); in InsertAfter() 255 public virtual void InsertBefore(IToken t, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 256 InsertBefore(DEFAULT_PROGRAM_NAME, t, text); in InsertBefore() 259 public virtual void InsertBefore(int index, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 260 InsertBefore(DEFAULT_PROGRAM_NAME, index, text); in InsertBefore() 263 public virtual void InsertBefore(string programName, IToken t, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 264 InsertBefore(programName, t.TokenIndex, text); in InsertBefore() 267 public virtual void InsertBefore(string programName, int index, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream
|