search for: tli_

Displaying 5 results from an estimated 5 matches for "tli_".

Did you mean: tli
2013 Mar 22
2
[LLVMdev] proposed change to class BasicTTI
...d like to pass the address of the address of the TargetLoweringBase class. That way I can insert a function pass before this pass which examines the function attributes and changes the pointer. So we would get: ImmutablePass * llvm::createBasicTargetTransformInfoPass(const TargetLoweringBase **TLI_) { return new BasicTTI(TLI); } we would add the variable TargetLoweringBase **TLI_ and at the beginning of each pass TLI = *TLI_; Maybe there is a more elegant way to do this but this is essentially what I need to do.
2013 Mar 22
4
[LLVMdev] proposed change to class BasicTTI
...gt;> >> That way I can insert a function pass before this pass which examines >> the function attributes and changes the pointer. >> >> So we would get: >> >> ImmutablePass * >> llvm::createBasicTargetTransformInfoPass(const TargetLoweringBase >> **TLI_) { >> return new BasicTTI(TLI); >> } >> >> we would add the variable >> >> TargetLoweringBase **TLI_ >> >> and at the beginning of each pass >> >> TLI = *TLI_; >> >> Maybe there is a more elegant way to do this but this is e...
2013 Mar 22
0
[LLVMdev] proposed change to class BasicTTI
...n insert a function pass before this pass which examines >>> the function attributes and changes the pointer. >>> >>> So we would get: >>> >>> ImmutablePass * >>> llvm::createBasicTargetTransformInfoPass(const TargetLoweringBase >>> **TLI_) { >>> return new BasicTTI(TLI); >>> } >>> >>> we would add the variable >>> >>> TargetLoweringBase **TLI_ >>> >>> and at the beginning of each pass >>> >>> TLI = *TLI_; >>> >>> Maybe...
2013 Mar 22
0
[LLVMdev] proposed change to class BasicTTI
...ddress of the TargetLoweringBase class. > > That way I can insert a function pass before this pass which examines > the function attributes and changes the pointer. > > So we would get: > > ImmutablePass * > llvm::createBasicTargetTransformInfoPass(const TargetLoweringBase **TLI_) { > return new BasicTTI(TLI); > } > > we would add the variable > > TargetLoweringBase **TLI_ > > and at the beginning of each pass > > TLI = *TLI_; > > Maybe there is a more elegant way to do this but this is essentially > what I need to do.
2013 Mar 28
3
[LLVMdev] proposed change to class BasicTTI and dual mode mips16/32 working
...efore this pass which examines >>>> the function attributes and changes the pointer. >>>> >>>> So we would get: >>>> >>>> ImmutablePass * >>>> llvm::createBasicTargetTransformInfoPass(const TargetLoweringBase >>>> **TLI_) { >>>> return new BasicTTI(TLI); >>>> } >>>> >>>> we would add the variable >>>> >>>> TargetLoweringBase **TLI_ >>>> >>>> and at the beginning of each pass >>>> >>>> TLI = *TLI...