Displaying 8 results from an estimated 8 matches for "hexagontargetmachin".
Did you mean:
hexagontargetmachine
2014 Apr 30
2
[LLVMdev] What is HexagonTargetMachine::addPassesForOptimizations for?
This function is marked virtual but doesn't override anything, doesn't have
any overrides, and has no in tree callers. Can it be removed?
--
~Craig
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140429/fd552b41/attachment.html>
2014 Apr 30
2
[LLVMdev] What is HexagonTargetMachine::addPassesForOptimizations for?
On 4/30/2014 8:45 AM, Rafael EspĂndola wrote:
> On 30 April 2014 00:52, Craig Topper <craig.topper at gmail.com> wrote:
>> This function is marked virtual but doesn't override anything, doesn't have
>> any overrides, and has no in tree callers. Can it be removed?
>
> Given that it is dead, yes :-)
>
It used to be called from clang, from
2014 May 01
2
[LLVMdev] What is HexagonTargetMachine::addPassesForOptimizations for?
On 4/30/2014 5:24 PM, Craig Topper wrote:
> Pranav, can you remove it?
>
Yes, I'll remove it.
Pranav
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation
2014 Apr 30
2
[LLVMdev] What is HexagonTargetMachine::addPassesForOptimizations for?
On 4/30/2014 2:00 PM, Matthew Curtis wrote:
> On 4/30/2014 9:01 AM, Krzysztof Parzyszek wrote:
>> On 4/30/2014 8:45 AM, Rafael EspĂndola wrote:
>>> On 30 April 2014 00:52, Craig Topper <craig.topper at gmail.com> wrote:
>>>> This function is marked virtual but doesn't override anything,
>>>> doesn't have
>>>> any overrides, and
2011 Dec 16
2
[LLVMdev] Update CMakeLists.txt for Target Hexagon to adjust MCTargetDesc path for HexagonMCAsmInfo.cpp
...ops.cpp
HexagonInstrInfo.cpp
HexagonISelDAGToDAG.cpp
HexagonISelLowering.cpp
*MCTargetDesc/*HexagonMCAsmInfo.cpp
HexagonOptimizeSZExtends.cpp
HexagonRegisterInfo.cpp
HexagonRemoveSZExtArgs.cpp
HexagonSelectionDAGInfo.cpp
HexagonSplitTFRCondSets.cpp
HexagonSubtarget.cpp
HexagonTargetMachine.cpp
HexagonTargetObjectFile.cpp
)
add_subdirectory(TargetInfo)
add_subdirectory(MCTargetDesc)
Add the Folder path, *MCTargetDesc/*,**to pick up /HexagonMCAsmInfo.cpp/*
*Otherwise, cmake won't configure cleanly.*
*Marc*
*
--
Marc J. Driftmeyer
Email :: mjd at reanimality.com <mai...
2011 Dec 16
0
[LLVMdev] Update CMakeLists.txt for Target Hexagon to adjust MCTargetDesc path for HexagonMCAsmInfo.cpp
...xagonISelDAGToDAG.cpp
> HexagonISelLowering.cpp
> *MCTargetDesc/*HexagonMCAsmInfo.cpp
> HexagonOptimizeSZExtends.cpp
> HexagonRegisterInfo.cpp
> HexagonRemoveSZExtArgs.cpp
> HexagonSelectionDAGInfo.cpp
> HexagonSplitTFRCondSets.cpp
> HexagonSubtarget.cpp
> HexagonTargetMachine.cpp
> HexagonTargetObjectFile.cpp
> )
>
> add_subdirectory(TargetInfo)
> add_subdirectory(MCTargetDesc)
>
>
> Add the Folder path, *MCTargetDesc/*,**to pick up /HexagonMCAsmInfo.cpp/*
>
> *Otherwise, cmake won't configure cleanly.*
>
> *Marc*
> *
>...
2015 Nov 20
2
DFAPacketizer assert failure
In the Hexagon backend we originally treated CFI instructions as "solo",
> i.e. they could not be packetized with any other instruction. Now we
> simply delay the generation of these instructions until after
> packetization. The reason for this is that two instructions that could be
> packetized together were not packetized together if there was an CFI
> instruction in
2012 Apr 19
0
[LLVMdev] Target Dependent Hexagon Packetizer patch
...exagon/CMakeLists.txt b/lib/Target/Hexagon/CMakeLists.txt
>> index af9e813..29cf8a7 100644
>> --- a/lib/Target/Hexagon/CMakeLists.txt
>> +++ b/lib/Target/Hexagon/CMakeLists.txt
>> @@ -28,6 +28,7 @@ add_llvm_target(HexagonCodeGen
>> HexagonSubtarget.cpp
>> HexagonTargetMachine.cpp
>> HexagonTargetObjectFile.cpp
>> + HexagonVLIWPacketizer.cpp
>> )
>>
>> add_subdirectory(TargetInfo)
>> diff --git a/lib/Target/Hexagon/Hexagon.h b/lib/Target/Hexagon/Hexagon.h
>> index 0808323..43858b9 100644
>> --- a/lib/Target/Hexago...