Displaying 3 results from an estimated 3 matches for "removeallmark".
2020 May 06
2
Unexpected behavior found in Stack Coloring pass, need clarification
...nction(..) method present in the StackColoring.cpp file. The
original source can be found here:
https://llvm.org/doxygen/StackColoring_8cpp_source.html
bool StackColoring::runOnMachineFunction(MachineFunction &Func) {
...
...
remapInstructions(SlotRemap);
+ bool markerCount = removeAllMarkers();
+ DenseMap<int, int>::iterator itr = SlotRemap.begin();
+ const AllocaInst *dInst = MFI->getObjectAllocation(itr->first);
+ LLVM_DEBUG(dbgs() << "Set break point here to inspect dInst\n");
+ return markerCount;
}
I'm using the following test-case to...
2009 Dec 13
0
r65 committed - Use the GeoCommons addOverlay method
...marker.toProprietary(this.api);
+ // TODO: Add provider code
+ // map.addOverlay(pin);
+ return pin;
+ },
+
+ removeMarker: function(marker) {
+ var map = this.maps[this.api];
+ // TODO: Add provider code
+
+ },
+
+ removeAllMarkers: function() {
+ // Done in mxn.core.js
+ },
+
+ declutterMarkers: function(opts) {
+ var map = this.maps[this.api];
+
+ // TODO: Add provider code
+ },
+
+ addPolyline: function(polyline, old) {
+ var map = this.maps[this.api];
+...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...TODO: Add provider code
-
+ map.addOverlay(pin);
return pin;
},
removeMarker: function(marker) {
var map = this.maps[this.api];
-
- // TODO: Add provider code
+ map.removeOverlay(marker.proprietary_marker);
},
removeAllMarkers: function() {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
+ // Done in mxn.core.js
},
declutterMarkers: function(opts) {
@@ -88,47 +107,37 @@
addPolyline: function(polyline, old) {
var map = this.maps[this...