Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Index

119 /// getJumpTableEntryAddress - Return the address of the jump table with index
120 /// 'Index' in the function that last called initJumpTableInfo.
121 uintptr_t ObjectCodeEmitter::getJumpTableEntryAddress(unsigned Index) const {
122 assert(JTLocations.size() > Index && "JT not emitted!");
123 return JTLocations[Index];
126 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
128 uintptr_t ObjectCodeEmitter::getConstantPoolEntryAddress(unsigned Index) const {
129 assert(CPLocations.size() > Index && "CP not emitted!");
130 return CPLocations[Index];
133 /// getConstantPoolEntrySection - Return the section of the 'Index' entry in
135 uintptr_t ObjectCodeEmitter::getConstantPoolEntrySection(unsigned Index) const {
136 assert(CPSections.size() > Index && "CP not emitted!");
137 return CPSections[Index];