HomeSort by relevance Sort by last modified time
    Searched refs:Idx (Results 226 - 250 of 1357) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
LiveInterval.h 390 const Segment *getSegmentContaining(SlotIndex Idx) const {
391 const_iterator I = FindSegmentContaining(Idx);
397 Segment *getSegmentContaining(SlotIndex Idx) {
398 iterator I = FindSegmentContaining(Idx);
402 /// getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
403 VNInfo *getVNInfoAt(SlotIndex Idx) const {
404 const_iterator I = FindSegmentContaining(Idx);
409 /// necessarilly including Idx, or NULL. Use this to find the reaching def
411 VNInfo *getVNInfoBefore(SlotIndex Idx) const {
412 const_iterator I = FindSegmentContaining(Idx.getPrevSlot())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveInterval.h 390 const Segment *getSegmentContaining(SlotIndex Idx) const {
391 const_iterator I = FindSegmentContaining(Idx);
397 Segment *getSegmentContaining(SlotIndex Idx) {
398 iterator I = FindSegmentContaining(Idx);
402 /// getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
403 VNInfo *getVNInfoAt(SlotIndex Idx) const {
404 const_iterator I = FindSegmentContaining(Idx);
409 /// necessarilly including Idx, or NULL. Use this to find the reaching def
411 VNInfo *getVNInfoBefore(SlotIndex Idx) const {
412 const_iterator I = FindSegmentContaining(Idx.getPrevSlot())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
LiveInterval.h 390 const Segment *getSegmentContaining(SlotIndex Idx) const {
391 const_iterator I = FindSegmentContaining(Idx);
397 Segment *getSegmentContaining(SlotIndex Idx) {
398 iterator I = FindSegmentContaining(Idx);
402 /// getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
403 VNInfo *getVNInfoAt(SlotIndex Idx) const {
404 const_iterator I = FindSegmentContaining(Idx);
409 /// necessarilly including Idx, or NULL. Use this to find the reaching def
411 VNInfo *getVNInfoBefore(SlotIndex Idx) const {
412 const_iterator I = FindSegmentContaining(Idx.getPrevSlot())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
LiveInterval.h 390 const Segment *getSegmentContaining(SlotIndex Idx) const {
391 const_iterator I = FindSegmentContaining(Idx);
397 Segment *getSegmentContaining(SlotIndex Idx) {
398 iterator I = FindSegmentContaining(Idx);
402 /// getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
403 VNInfo *getVNInfoAt(SlotIndex Idx) const {
404 const_iterator I = FindSegmentContaining(Idx);
409 /// necessarilly including Idx, or NULL. Use this to find the reaching def
411 VNInfo *getVNInfoBefore(SlotIndex Idx) const {
412 const_iterator I = FindSegmentContaining(Idx.getPrevSlot())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
LiveInterval.h 390 const Segment *getSegmentContaining(SlotIndex Idx) const {
391 const_iterator I = FindSegmentContaining(Idx);
397 Segment *getSegmentContaining(SlotIndex Idx) {
398 iterator I = FindSegmentContaining(Idx);
402 /// getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
403 VNInfo *getVNInfoAt(SlotIndex Idx) const {
404 const_iterator I = FindSegmentContaining(Idx);
409 /// necessarilly including Idx, or NULL. Use this to find the reaching def
411 VNInfo *getVNInfoBefore(SlotIndex Idx) const {
412 const_iterator I = FindSegmentContaining(Idx.getPrevSlot())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveInterval.h 390 const Segment *getSegmentContaining(SlotIndex Idx) const {
391 const_iterator I = FindSegmentContaining(Idx);
397 Segment *getSegmentContaining(SlotIndex Idx) {
398 iterator I = FindSegmentContaining(Idx);
402 /// getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
403 VNInfo *getVNInfoAt(SlotIndex Idx) const {
404 const_iterator I = FindSegmentContaining(Idx);
409 /// necessarilly including Idx, or NULL. Use this to find the reaching def
411 VNInfo *getVNInfoBefore(SlotIndex Idx) const {
412 const_iterator I = FindSegmentContaining(Idx.getPrevSlot())
    [all...]
  /external/llvm/lib/CodeGen/GlobalISel/
RegisterBankInfo.cpp 47 DEBUG(for (unsigned Idx = 0, End = getNumRegBanks(); Idx != End; ++Idx) {
48 const RegisterBank &RegBank = getRegBank(Idx);
49 assert(Idx == RegBank.getID() &&
474 for (unsigned Idx = 0; Idx < NumOperands; ++Idx) {
475 const MachineOperand &MO = MI.getOperand(Idx);
476 const RegisterBankInfo::ValueMapping &MOMapping = getOperandMapping(Idx);
    [all...]
  /external/llvm/lib/CodeGen/
LiveRangeEdit.cpp 223 SlotIndex Idx = LIS.getInstructionIndex(MI).getRegSlot();
224 if (LI.Query(Idx).isKill())
230 if ((S.LaneMask & LaneMask) != 0 && S.Query(Idx).isKill())
240 SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
248 DEBUG(dbgs() << "Won't delete: " << Idx << '\t' << *MI);
255 DEBUG(dbgs() << "Can't delete: " << Idx << '\t' << *MI);
259 DEBUG(dbgs() << "Deleting dead def " << Idx << '\t' << *MI);
270 VNInfo *OrigVNI = OrigLI.getVNInfoAt(Idx);
276 isOrigDef = SlotIndex::isSameInstr(OrigVNI->def, Idx);
290 LIS.removePhysRegDefAt(Reg, Idx);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LiveInterval.h 396 const LiveRange *getLiveRangeContaining(SlotIndex Idx) const {
397 const_iterator I = FindLiveRangeContaining(Idx);
403 LiveRange *getLiveRangeContaining(SlotIndex Idx) {
404 iterator I = FindLiveRangeContaining(Idx);
408 /// getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
409 VNInfo *getVNInfoAt(SlotIndex Idx) const {
410 const_iterator I = FindLiveRangeContaining(Idx);
415 /// necessarilly including Idx, or NULL. Use this to find the reaching def
417 VNInfo *getVNInfoBefore(SlotIndex Idx) const {
418 const_iterator I = FindLiveRangeContaining(Idx.getPrevSlot())
    [all...]
  /external/llvm/include/llvm/ADT/
BitVector.h 51 reference(BitVector &b, unsigned Idx) {
52 WordRef = &b.Bits[Idx / BITWORD_SIZE];
53 BitPos = Idx % BITWORD_SIZE;
225 BitVector &set(unsigned Idx) {
227 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
265 BitVector &reset(unsigned Idx) {
266 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
306 BitVector &flip(unsigned Idx) {
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
225 BitVector &set(unsigned Idx) {
227 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
265 BitVector &reset(unsigned Idx) {
266 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
306 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
BitVector.h 50 reference(BitVector &b, unsigned Idx) {
51 WordRef = &b.Bits[Idx / BITWORD_SIZE];
52 BitPos = Idx % BITWORD_SIZE;
260 BitVector &set(unsigned Idx) {
262 Bits[Idx / BITWORD_SIZE] |= BitWord(1) << (Idx % BITWORD_SIZE);
300 BitVector &reset(unsigned Idx) {
301 Bits[Idx / BITWORD_SIZE] &= ~(BitWord(1) << (Idx % BITWORD_SIZE));
341 BitVector &flip(unsigned Idx) {
    [all...]
  /external/clang/unittests/AST/
CommentParser.cpp 94 size_t Idx,
99 if (Idx >= C->child_count())
101 << "Idx out of range. Idx = " << Idx
104 Comment::child_iterator I = C->child_begin() + Idx;
119 size_t Idx,
122 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC);
140 size_t Idx,
143 ::testing::AssertionResult AR = GetChildAt(C, Idx, TC)
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/SmmAccess/
SmmAccessPei.c 355 UINTN Idx;
362 for (Idx = 0; Idx < Count; ++Idx) {
364 SmramMap[Idx].PhysicalStart, SmramMap[Idx].PhysicalSize,
365 SmramMap[Idx].CpuStart, SmramMap[Idx].RegionState));
  /external/llvm/include/llvm/IR/
TypeFinder.h 60 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
  /external/llvm/lib/IR/
ConstantFold.h 36 Constant *ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx);
38 Constant *Idx);
  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.h 47 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
48 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCMachineFunctionInfo.h 88 void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; }
91 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; }

Completed in 395 milliseconds

1 2 3 4 5 6 7 8 91011>>